diff --git a/.codeclimate.yml b/.codeclimate.yml index 70c429b2817..5d18d7275a7 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -51,6 +51,12 @@ engines: rubocop: enabled: true config: '.rubocop_cc.yml' +prepare: + fetch: + - url: "https://raw.githubusercontent.com/ManageIQ/guides/master/.rubocop_base.yml" + path: ".rubocop_base.yml" + - url: "https://raw.githubusercontent.com/ManageIQ/guides/master/.rubocop_cc_base.yml" + path: ".rubocop_cc_base.yml" ratings: paths: - Gemfile.lock diff --git a/.gitignore b/.gitignore index 0b67a90f02f..2a94e321d21 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ .bundle/ .yardoc Gemfile.lock +Gemfile.dev.rb _yardoc/ bin/* coverage/ diff --git a/.rubocop.yml b/.rubocop.yml index 8ee96c23221..4c9381b2ea4 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,47 +1,4 @@ inherit_from: -- .rubocop_base.yml -# -# Overrides -# -GlobalVars: - AllowedVariables: - # Loggers - - $audit_log - - $api_log - - $aws_log - - $azure_log - - $fog_log - - $lenovo_log - - $log - - $miq_ae_logger - - $policy_log - - $rails_log - - $rhevm_log - - $kube_log - - $mw_log - - $scvmm_log - - $vim_log - - $websocket_log - # In Automate methods - - $evm -# -# Special Exclusions -# -AllCops: - TargetRubyVersion: 2.2 - Exclude: - - lib/generators/provider/templates/**/* - - db/schema.rb - - vendor/**/* -ClassAndModuleCamelCase: - Exclude: - - lib/miq_automation_engine/service_models/*.rb -FileName: - Exclude: - - lib/miq_automation_engine/service_models/*.rb -Metrics/LineLength: - Exclude: - - Gemfile -Style/ExtraSpacing: - Exclude: - - Gemfile +- https://raw.githubusercontent.com/ManageIQ/guides/master/.rubocop_base.yml +# put all local rubocop config into .rubocop_local.yml as it will be loaded by .rubocop_cc.yml as well +- .rubocop_local.yml diff --git a/.rubocop_cc.yml b/.rubocop_cc.yml index 159233487a8..ff96a0cba60 100644 --- a/.rubocop_cc.yml +++ b/.rubocop_cc.yml @@ -1,600 +1,5 @@ inherit_from: +# this is downloaded by .codeclimate.yml - .rubocop_base.yml -AllCops: - TargetRubyVersion: 2.2 - -Lint/AmbiguousOperator: - Enabled: true -Lint/AmbiguousRegexpLiteral: - Enabled: true -Lint/AssignmentInCondition: - Enabled: true -Lint/BlockAlignment: - Enabled: true -Lint/CircularArgumentReference: - Enabled: true -Lint/ConditionPosition: - Enabled: true -Lint/Debugger: - Enabled: true -Lint/DefEndAlignment: - Enabled: true -Lint/DeprecatedClassMethods: - Enabled: true -Lint/DuplicateMethods: - Enabled: true -Lint/DuplicatedKey: - Enabled: true -Lint/EachWithObjectArgument: - Enabled: true -Lint/ElseLayout: - Enabled: true -Lint/EmptyEnsure: - Enabled: true -Lint/EmptyInterpolation: - Enabled: true -Lint/EndAlignment: - Enabled: true -Lint/EndInMethod: - Enabled: true -Lint/EnsureReturn: - Enabled: true -Lint/Eval: - Enabled: true -Lint/FloatOutOfRange: - Enabled: true -Lint/FormatParameterMismatch: - Enabled: true -Lint/HandleExceptions: - Enabled: true -Lint/ImplicitStringConcatenation: - Enabled: true -Lint/IneffectiveAccessModifier: - Enabled: true -Lint/InheritException: - Enabled: true -Lint/InvalidCharacterLiteral: - Enabled: true -Lint/LiteralInCondition: - Enabled: true -Lint/LiteralInInterpolation: - Enabled: true -Lint/Loop: - Enabled: true -Lint/NestedMethodDefinition: - Enabled: true -Lint/NextWithoutAccumulator: - Enabled: true -Lint/NonLocalExitFromIterator: - Enabled: true -Lint/ParenthesesAsGroupedExpression: - Enabled: true -Lint/PercentStringArray: - Enabled: true -Lint/PercentSymbolArray: - Enabled: true -Lint/RandOne: - Enabled: true -Lint/RequireParentheses: - Enabled: true -Lint/RescueException: - Enabled: true -Lint/ShadowedException: - Enabled: true -Lint/ShadowingOuterLocalVariable: - Enabled: true -Lint/StringConversionInInterpolation: - Enabled: true -Lint/UnderscorePrefixedVariableName: - Enabled: true -Lint/UnneededDisable: - Enabled: true -Lint/UnreachableCode: - Enabled: true -Lint/UnusedBlockArgument: - Enabled: true -Lint/UnusedMethodArgument: - Enabled: true -Lint/UselessAccessModifier: - Enabled: true -Lint/UselessArraySplat: - Enabled: true -Lint/UselessAssignment: - Enabled: true -Lint/UselessComparison: - Enabled: true -Lint/UselessElseWithoutRescue: - Enabled: true -Lint/UselessSetterCall: - Enabled: true -Lint/Void: - Enabled: true -Metrics/AbcSize: - Enabled: false -Metrics/BlockNesting: - Enabled: true -Metrics/ClassLength: - Enabled: false -Metrics/CyclomaticComplexity: - Enabled: true - Max: 11 -Metrics/LineLength: - Enabled: false -Metrics/MethodLength: - Enabled: false -Metrics/ModuleLength: - Enabled: false -Metrics/ParameterLists: - Enabled: true -Metrics/PerceivedComplexity: - Enabled: false -Performance/CaseWhenSplat: - Enabled: true -Performance/Count: - Enabled: true -Performance/Detect: - Enabled: true -Performance/DoubleStartEndWith: - Enabled: true -Performance/EndWith: - Enabled: true -Performance/FixedSize: - Enabled: true -Performance/FlatMap: - Enabled: true -Performance/HashEachMethods: - Enabled: true -Performance/LstripRstrip: - Enabled: true -Performance/PushSplat: - Enabled: true -Performance/RangeInclude: - Enabled: true -Performance/RedundantBlockCall: - Enabled: true -Performance/RedundantMatch: - Enabled: true -Performance/RedundantMerge: - Enabled: true -Performance/RedundantSortBy: - Enabled: true -Performance/ReverseEach: - Enabled: true -Performance/Sample: - Enabled: true -Performance/Size: - Enabled: true -Performance/StartWith: - Enabled: true -Performance/StringReplacement: - Enabled: true -Performance/TimesMap: - Enabled: true -Rails/ActionFilter: - Enabled: false -Rails/Date: - Enabled: false -Rails/Delegate: - Enabled: false -Rails/Exit: - Enabled: false -Rails/FindBy: - Enabled: false -Rails/FindEach: - Enabled: false -Rails/HasAndBelongsToMany: - Enabled: false -Rails/Output: - Enabled: false -Rails/OutputSafety: - Enabled: false -Rails/PluralizationGrammar: - Enabled: false -Rails/ReadWriteAttribute: - Enabled: false -Rails/RequestReferer: - Enabled: false -Rails/SaveBang: - Enabled: false -Rails/ScopeArgs: - Enabled: false -Rails/TimeZone: - Enabled: false -Rails/UniqBeforePluck: - Enabled: false -Rails/Validation: - Enabled: false -Style/AccessModifierIndentation: - Enabled: false -Style/AccessorMethodName: - Enabled: false -Style/Alias: - Enabled: false -Style/AlignArray: - Enabled: false -Style/AlignHash: - Enabled: false -Style/AlignParameters: - Enabled: false -Style/AndOr: - Enabled: false -Style/ArrayJoin: - Enabled: false -Style/AsciiComments: - Enabled: false -Style/AsciiIdentifiers: - Enabled: false -Style/Attr: - Enabled: false -Style/AutoResourceCleanup: - Enabled: false -Style/BarePercentLiterals: - Enabled: false -Style/BeginBlock: - Enabled: false -Style/BlockComments: - Enabled: false -Style/BlockDelimiters: - Enabled: false -Style/BlockEndNewline: - Enabled: false -Style/BracesAroundHashParameters: - Enabled: false -Style/CaseEquality: - Enabled: false -Style/CaseIndentation: - Enabled: false -Style/CharacterLiteral: - Enabled: false -Style/ClassAndModuleCamelCase: - Enabled: false -Style/ClassAndModuleChildren: - Enabled: false -Style/ClassCheck: - Enabled: false -Style/ClassMethods: - Enabled: false -Style/ClassVars: - Enabled: false -Style/ClosingParenthesisIndentation: - Enabled: false -Style/CollectionMethods: - Enabled: false -Style/ColonMethodCall: - Enabled: false -Style/CommandLiteral: - Enabled: false -Style/CommentAnnotation: - Enabled: false -Style/CommentIndentation: - Enabled: false -Style/ConditionalAssignment: - Enabled: false -Style/ConstantName: - Enabled: false -Style/Copyright: - Enabled: false -Style/DefWithParentheses: - Enabled: false -Style/Documentation: - Enabled: false -Style/DotPosition: - Enabled: false -Style/DoubleNegation: - Enabled: false -Style/EachForSimpleLoop: - Enabled: false -Style/EachWithObject: - Enabled: false -Style/ElseAlignment: - Enabled: false -Style/EmptyCaseCondition: - Enabled: false -Style/EmptyElse: - Enabled: false -Style/EmptyLineBetweenDefs: - Enabled: false -Style/EmptyLines: - Enabled: false -Style/EmptyLinesAroundAccessModifier: - Enabled: false -Style/EmptyLinesAroundBlockBody: - Enabled: false -Style/EmptyLinesAroundClassBody: - Enabled: false -Style/EmptyLinesAroundMethodBody: - Enabled: false -Style/EmptyLinesAroundModuleBody: - Enabled: false -Style/EmptyLiteral: - Enabled: false -Style/Encoding: - Enabled: false -Style/EndBlock: - Enabled: false -Style/EndOfLine: - Enabled: false -Style/EvenOdd: - Enabled: false -Style/ExtraSpacing: - Enabled: false -Style/FileName: - Enabled: false -Style/FirstArrayElementLineBreak: - Enabled: false -Style/FirstHashElementLineBreak: - Enabled: false -Style/FirstMethodArgumentLineBreak: - Enabled: false -Style/FirstMethodParameterLineBreak: - Enabled: false -Style/FirstParameterIndentation: - Enabled: false -Style/FlipFlop: - Enabled: false -Style/For: - Enabled: false -Style/FormatString: - Enabled: false -Style/FrozenStringLiteralComment: - Enabled: false -Style/GlobalVars: - Enabled: false -Style/GuardClause: - Enabled: false -Style/HashSyntax: - Enabled: false -Style/IdenticalConditionalBranches: - Enabled: false -Style/IfInsideElse: - Enabled: false -Style/IfUnlessModifier: - Enabled: false -Style/IfUnlessModifierOfIfUnless: - Enabled: false -Style/IfWithSemicolon: - Enabled: false -Style/ImplicitRuntimeError: - Enabled: false -Style/IndentArray: - Enabled: false -Style/IndentAssignment: - Enabled: false -Style/IndentHash: - Enabled: false -Style/IndentationConsistency: - Enabled: false -Style/IndentationWidth: - Enabled: false -Style/InfiniteLoop: - Enabled: false -Style/InitialIndentation: - Enabled: false -Style/InlineComment: - Enabled: false -Style/Lambda: - Enabled: false -Style/LambdaCall: - Enabled: false -Style/LeadingCommentSpace: - Enabled: false -Style/LineEndConcatenation: - Enabled: false -Style/MethodCallParentheses: - Enabled: false -Style/MethodCalledOnDoEndBlock: - Enabled: false -Style/MethodDefParentheses: - Enabled: false -Style/MethodMissing: - Enabled: false -Style/MethodName: - Enabled: false -Style/MissingElse: - Enabled: false -Style/ModuleFunction: - Enabled: false -Style/MultilineArrayBraceLayout: - Enabled: false -Style/MultilineAssignmentLayout: - Enabled: false -Style/MultilineBlockChain: - Enabled: false -Style/MultilineBlockLayout: - Enabled: false -Style/MultilineHashBraceLayout: - Enabled: false -Style/MultilineIfThen: - Enabled: false -Style/MultilineMethodCallBraceLayout: - Enabled: false -Style/MultilineMethodCallIndentation: - Enabled: false -Style/MultilineMethodDefinitionBraceLayout: - Enabled: false -Style/MultilineOperationIndentation: - Enabled: false -Style/MultilineTernaryOperator: - Enabled: false -Style/MutableConstant: - Enabled: false -Style/NegatedIf: - Enabled: false -Style/NegatedWhile: - Enabled: false -Style/NestedModifier: - Enabled: false -Style/NestedParenthesizedCalls: - Enabled: false -Style/NestedTernaryOperator: - Enabled: false -Style/Next: - Enabled: false -Style/NilComparison: - Enabled: false -Style/NonNilCheck: - Enabled: false -Style/Not: - Enabled: false -Style/NumericLiteralPrefix: - Enabled: false -Style/NumericLiterals: - Enabled: false -Style/NumericPredicate: - Enabled: false -Style/OneLineConditional: - Enabled: false -Style/OpMethod: - Enabled: false -Style/OptionHash: - Enabled: false -Style/OptionalArguments: - Enabled: false -Style/ParallelAssignment: - Enabled: false -Style/ParenthesesAroundCondition: - Enabled: false -Style/PercentLiteralDelimiters: - Enabled: false -Style/PercentQLiterals: - Enabled: false -Style/PerlBackrefs: - Enabled: false -Style/PredicateName: - Enabled: false -Style/PreferredHashMethods: - Enabled: false -Style/Proc: - Enabled: false -Style/RaiseArgs: - Enabled: false -Style/RedundantBegin: - Enabled: false -Style/RedundantException: - Enabled: false -Style/RedundantFreeze: - Enabled: false -Style/RedundantParentheses: - Enabled: false -Style/RedundantReturn: - Enabled: false -Style/RedundantSelf: - Enabled: false -Style/RegexpLiteral: - Enabled: false -Style/RescueEnsureAlignment: - Enabled: false -Style/RescueModifier: - Enabled: false -Style/SelfAssignment: - Enabled: false -Style/Semicolon: - Enabled: false -Style/Send: - Enabled: false -Style/SignalException: - Enabled: false -Style/SingleLineBlockParams: - Enabled: false -Style/SingleLineMethods: - Enabled: false -Style/SpaceAfterColon: - Enabled: false -Style/SpaceAfterComma: - Enabled: false -Style/SpaceAfterMethodName: - Enabled: false -Style/SpaceAfterNot: - Enabled: false -Style/SpaceAfterSemicolon: - Enabled: false -Style/SpaceAroundBlockParameters: - Enabled: false -Style/SpaceAroundEqualsInParameterDefault: - Enabled: false -Style/SpaceAroundKeyword: - Enabled: false -Style/SpaceAroundOperators: - Enabled: false -Style/SpaceBeforeBlockBraces: - Enabled: false -Style/SpaceBeforeComma: - Enabled: false -Style/SpaceBeforeComment: - Enabled: false -Style/SpaceBeforeFirstArg: - Enabled: false -Style/SpaceBeforeSemicolon: - Enabled: false -Style/SpaceInsideArrayPercentLiteral: - Enabled: false -Style/SpaceInsideBlockBraces: - Enabled: false -Style/SpaceInsideBrackets: - Enabled: false -Style/SpaceInsideHashLiteralBraces: - Enabled: false -Style/SpaceInsideParens: - Enabled: false -Style/SpaceInsidePercentLiteralDelimiters: - Enabled: false -Style/SpaceInsideRangeLiteral: - Enabled: false -Style/SpaceInsideStringInterpolation: - Enabled: false -Style/SpecialGlobalVars: - Enabled: false -Style/StabbyLambdaParentheses: - Enabled: false -Style/StringLiterals: - Enabled: false -Style/StringLiteralsInInterpolation: - Enabled: false -Style/StringMethods: - Enabled: false -Style/StructInheritance: - Enabled: false -Style/SymbolArray: - Enabled: false -Style/SymbolLiteral: - Enabled: false -Style/SymbolProc: - Enabled: false -Style/Tab: - Enabled: false -Style/TernaryParentheses: - Enabled: false -Style/TrailingBlankLines: - Enabled: false -Style/TrailingCommaInArguments: - Enabled: false -Style/TrailingCommaInLiteral: - Enabled: false -Style/TrailingUnderscoreVariable: - Enabled: false -Style/TrailingWhitespace: - Enabled: false -Style/TrivialAccessors: - Enabled: false -Style/UnlessElse: - Enabled: false -Style/UnneededCapitalW: - Enabled: false -Style/UnneededInterpolation: - Enabled: false -Style/UnneededPercentQ: - Enabled: false -Style/VariableInterpolation: - Enabled: false -Style/VariableName: - Enabled: false -Style/WhenThen: - Enabled: false -Style/WhileUntilDo: - Enabled: false -Style/WhileUntilModifier: - Enabled: false -Style/WordArray: - Enabled: false -Style/ZeroLengthPredicate: - Enabled: false +- .rubocop_cc_base.yml +- .rubocop_local.yml diff --git a/.rubocop_local.yml b/.rubocop_local.yml new file mode 100644 index 00000000000..c029e906f13 --- /dev/null +++ b/.rubocop_local.yml @@ -0,0 +1,27 @@ +GlobalVars: + AllowedVariables: + # Loggers + - $audit_log + - $api_log + - $aws_log + - $azure_log + - $datawarehouse_log + - $fog_log + - $lenovo_log + - $log + - $miq_ae_logger + - $policy_log + - $rails_log + - $rhevm_log + - $kube_log + - $mw_log + - $scvmm_log + - $vim_log + - $websocket_log + # In Automate methods + - $evm +# +# Special Exclusions +# +AllCops: + TargetRubyVersion: 2.2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 04667f0e014..eeb640a7357 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,72 @@ All notable changes to this project will be documented in this file. +## Unreleased - as of Sprint 56 end 2017-03-13 + +### [Added](https://github.com/ManageIQ/manageiq-ui-classic/issues?q=milestone%3A%22Sprint+56+Ending+Mar+13%2C+2017%22+label%3Aenhancement) + +- Automate + - UI changes needed for embedded ansible models [(#584)](https://github.com/ManageIQ/manageiq-ui-classic/pull/584) + - Display the credentials for the embedded tower in the playbook catalog UI dropdowns [(#627)](https://github.com/ManageIQ/manageiq-ui-classic/pull/627) +- Compute + - Cloud + - Display AWS instance labels in the Summary screen [(#631)](https://github.com/ManageIQ/manageiq-ui-classic/pull/631) + - Support operation `delete` on CloudObjectStoreContainer [(#420)](https://github.com/ManageIQ/manageiq-ui-classic/pull/420) + - Containers + - Dashboard: Show hourly and realtime trends [(#519)](https://github.com/ManageIQ/manageiq-ui-classic/pull/519) + - Adding External Logging Link for Containers Providers [(#489)](https://github.com/ManageIQ/manageiq-ui-classic/pull/489) + - Container SSA: warn if no smartproxy/state role [(#273)](https://github.com/ManageIQ/manageiq-ui-classic/pull/273) + - Topology for Container Projects [(#120)](https://github.com/ManageIQ/manageiq-ui-classic/pull/120) + - TLS verification & custom CA UI for oVirt and Container providers [(#450)](https://github.com/ManageIQ/manageiq-ui-classic/pull/450) + - Infrastructure + - Show vms in infra topology [(#564)](https://github.com/ManageIQ/manageiq-ui-classic/pull/564) + - Physical infra pages [(#196)](https://github.com/ManageIQ/manageiq-ui-classic/pull/196) +- Control: Add live search to the service template id dropdown for Run Ansible Playbook action [(#512)](https://github.com/ManageIQ/manageiq-ui-classic/pull/512) +- Graphics + - Add icon for ansible credentials [(#525)](https://github.com/ManageIQ/manageiq-ui-classic/pull/525) + - Textual Summaries - textual\_*\_ icon - support for fonticons decorators [(#603)](https://github.com/ManageIQ/manageiq-ui-classic/pull/603) +- Middleware: Enable Xa capability for Middleware Datatsource options [(#149)](https://github.com/ManageIQ/manageiq-ui-classic/pull/149) +- Services + - Added remove resources option in the form on Retirement tab [(#629)](https://github.com/ManageIQ/manageiq-ui-classic/pull/629) + - Get list of Repositories using Embedded Provider [(#565)](https://github.com/ManageIQ/manageiq-ui-classic/pull/565) +- Settings: Add custom logo capability to the ‘About’ modal [(#566)](https://github.com/ManageIQ/manageiq-ui-classic/pull/566) +- Storage + - Allow cloud volume to provide list of supported VMs for attachment [(#601)](https://github.com/ManageIQ/manageiq-ui-classic/pull/601) + - Support operation `delete` on CloudObjectStoreObject [(#497)](https://github.com/ManageIQ/manageiq-ui-classic/pull/497) + +### [Changed](https://github.com/ManageIQ/manageiq-ui-classic/issues?q=milestone%3A%22Sprint+56+Ending+Mar+13%2C+2017%22+label%3Aenhancement) + +- Services + - Fixed class names to get objects using EmbeddedAnsible tower. [(#659)](https://github.com/ManageIQ/manageiq-ui-classic/pull/659) + - Changed all drop downs in form to sort by name in ascending order. [(#597)](https://github.com/ManageIQ/manageiq-ui-classic/pull/597) +- Storage + - Extend form for creating new cloud volumes [(#517)](https://github.com/ManageIQ/manageiq-ui-classic/pull/517) + - Allow any EMS to create cloud volume [(#600)](https://github.com/ManageIQ/manageiq-ui-classic/pull/600) + + +### [Fixed](https://github.com/ManageIQ/manageiq-ui-classic/issues?q=milestone%3A%22Sprint+56+Ending+Mar+13%2C+2017%22+label%3Abug) + +- Automate + - Allow access to embedded ansible anytime a feature is allowed [(#640)](https://github.com/ManageIQ/manageiq-ui-classic/pull/640) + - Decorator update for inventory and credentials [(#538)](https://github.com/ManageIQ/manageiq-ui-classic/pull/538) + - Fix for unable to import service dialog from yaml [(#616)](https://github.com/ManageIQ/manageiq-ui-classic/pull/616) +- Compute + - Containers: Fix overlapping in Container Image summary screen [(#272)](https://github.com/ManageIQ/manageiq-ui-classic/pull/272) + - Infrastructure + - Datastore selection flash message fix [(#559)](https://github.com/ManageIQ/manageiq-ui-classic/pull/559) + - Create snapshot with no active snapshot [(#598)](https://github.com/ManageIQ/manageiq-ui-classic/pull/598) +- Middleware: Use the proper EAP icon for EAP 6.4 instead of using default icon [(#537)](https://github.com/ManageIQ/manageiq-ui-classic/pull/537) +- Networks: Show also non vpc vms in network topology [(#510)](https://github.com/ManageIQ/manageiq-ui-classic/pull/510) +- UI + - Fix the displaying of the flash message(s) in policy list [(#628)](https://github.com/ManageIQ/manageiq-ui-classic/pull/628) + - Fix error when creating filter in Networks page [(#494)](https://github.com/ManageIQ/manageiq-ui-classic/pull/494) +- Services + - Fixed 'Catalog' should not be a required field [(#514)](https://github.com/ManageIQ/manageiq-ui-classic/pull/514) + - Fixed Error handling of REST API calls. [(#490)](https://github.com/ManageIQ/manageiq-ui-classic/pull/490) +- Textual Summaries + - TextualMultilabel: fix additional_table_class. [(#609)](https://github.com/ManageIQ/manageiq-ui-classic/pull/609) + - Container node condition displayed with multilabel [(#541)](https://github.com/ManageIQ/manageiq-ui-classic/pull/541) + ## Unreleased - as of Sprint 55 end 2017-02-27 ### [Added](https://github.com/ManageIQ/manageiq-ui-classic/issues?q=milestone%3A%22Sprint+55+Ending+Feb+27%2C+2017%22+label%3Aenhancement) diff --git a/app/assets/fonts/icomoon.eot b/app/assets/fonts/icomoon.eot index 96cd99ffb3b..918fde46457 100755 Binary files a/app/assets/fonts/icomoon.eot and b/app/assets/fonts/icomoon.eot differ diff --git a/app/assets/fonts/icomoon.svg b/app/assets/fonts/icomoon.svg index 55c9b222ee6..7560bcb67cb 100755 --- a/app/assets/fonts/icomoon.svg +++ b/app/assets/fonts/icomoon.svg @@ -70,4 +70,5 @@ + \ No newline at end of file diff --git a/app/assets/fonts/icomoon.ttf b/app/assets/fonts/icomoon.ttf index a9c77d10048..c2b4d2b98d1 100755 Binary files a/app/assets/fonts/icomoon.ttf and b/app/assets/fonts/icomoon.ttf differ diff --git a/app/assets/fonts/icomoon.woff b/app/assets/fonts/icomoon.woff index 8d6877bd60c..ee23a72bc1f 100755 Binary files a/app/assets/fonts/icomoon.woff and b/app/assets/fonts/icomoon.woff differ diff --git a/app/assets/images/svg/os-centos.svg b/app/assets/images/svg/os-centos.svg index 5a4facdab59..b4581a0efb9 100644 --- a/app/assets/images/svg/os-centos.svg +++ b/app/assets/images/svg/os-centos.svg @@ -1,31 +1,30 @@ - + + viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve"> + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/app/assets/images/svg/vendor-ansible_tower_configuration.svg b/app/assets/images/svg/vendor-ansible_tower_configuration.svg deleted file mode 120000 index a9175ca90e8..00000000000 --- a/app/assets/images/svg/vendor-ansible_tower_configuration.svg +++ /dev/null @@ -1 +0,0 @@ -vendor-ansible.svg \ No newline at end of file diff --git a/app/assets/javascripts/components/miq-button.js b/app/assets/javascripts/components/miq-button.js index 0fd4debf642..af3150296ff 100644 --- a/app/assets/javascripts/components/miq-button.js +++ b/app/assets/javascripts/components/miq-button.js @@ -5,6 +5,7 @@ ManageIQ.angular.app.component('miqButton', { enabledTitle: '@?', disabledTitle: '@?', primary: '', diff --git a/app/assets/javascripts/controllers/catalog/catalog_item_form_controller.js b/app/assets/javascripts/controllers/catalog/catalog_item_form_controller.js index 7b9d06a83d6..14b99cb720d 100644 --- a/app/assets/javascripts/controllers/catalog/catalog_item_form_controller.js +++ b/app/assets/javascripts/controllers/catalog/catalog_item_form_controller.js @@ -37,9 +37,9 @@ ManageIQ.angular.app.controller('catalogItemFormController', ['$scope', 'catalog retirement_value: '', retirement_variables: {}, retirement_editMode: false, - retirement_cloud_type: '', - cloud_types: ["Amazon", "Azure", "Google", "Openstack", "Vmware"] + retirement_cloud_type: '' }; + getRemoveResourcesTypes(); vm.formId = catalogItemFormId; vm.afterGet = false; vm.model = "catalogItemModel"; @@ -69,6 +69,23 @@ ManageIQ.angular.app.controller('catalogItemFormController', ['$scope', 'catalog } }; + var getRemoveResourcesTypes = function() { + if (angular.isUndefined(vm.catalogItemModel.retirement_playbook_id) || vm.catalogItemModel.retirement_playbook_id === '') { + vm.catalogItemModel.retirement_remove_resources = 'yes_without_playbook'; + vm.catalogItemModel['remove_resources_types'] = { + "No": "no_without_playbook", + "Yes": "yes_without_playbook" + }; + } else { + vm.catalogItemModel.retirement_remove_resources = 'no_with_playbook'; + vm.catalogItemModel['remove_resources_types'] = { + "No": "no_with_playbook", + "Before Playbook runs": "pre_with_playbook", + "After Playbook runs": "post_with_playbook" + }; + } + } + var getConfigInfo = function(configData) { vm.catalogItemModel.provisioning_repository_id = configData.provision.repository_id; vm.catalogItemModel.provisioning_playbook_id = configData.provision.playbook_id; @@ -81,22 +98,28 @@ ManageIQ.angular.app.controller('catalogItemFormController', ['$scope', 'catalog vm.catalogItemModel.provisioning_dialog_name = configData.provision.new_dialog_name; vm.catalogItemModel.provisioning_key = ''; vm.catalogItemModel.provisioning_value = ''; - vm.catalogItemModel.provisioning_variables = configData.provision.extra_vars; + setExtraVars('provisioning_variables', configData.provision.extra_vars); - if (typeof configData.retirement !== 'undefined') { + vm.catalogItemModel.retirement_remove_resources = configData.retirement.remove_resources; + if (typeof configData.retirement.repository_id !== 'undefined') { vm.catalogItemModel.retirement_repository_id = configData.retirement.repository_id; vm.catalogItemModel.retirement_playbook_id = configData.retirement.playbook_id; vm.catalogItemModel.retirement_machine_credential_id = configData.retirement.credential_id; - vm.catalogItemModel.retirement_network_credential_id = configData.retirement.network_credential_id; - vm.catalogItemModel.retirement_cloud_credential_id = configData.retirement.cloud_credential_id; - vm.catalogItemModel.retirement_inventory = configData.retirement.hosts; vm.catalogItemModel.retirement_dialog_existing = configData.retirement.dialog_id ? "existing" : "create"; vm.catalogItemModel.retirement_dialog_id = configData.retirement.dialog_id; vm.catalogItemModel.retirement_dialog_name = configData.retirement.new_dialog_name; - vm.catalogItemModel.retirement_key = ''; - vm.catalogItemModel.retirement_value = ''; - vm.catalogItemModel.retirement_variables = configData.retirement.extra_vars; } + vm.catalogItemModel.retirement_network_credential_id = configData.retirement.network_credential_id; + vm.catalogItemModel.retirement_cloud_credential_id = configData.retirement.cloud_credential_id; + vm.catalogItemModel.retirement_inventory = configData.retirement.hosts; + vm.catalogItemModel.retirement_key = ''; + vm.catalogItemModel.retirement_value = ''; + setExtraVars('retirement_variables', configData.retirement.extra_vars); + }; + + var setExtraVars = function(variableName, extraVars) { + if (typeof extraVars !== 'undefined') + vm.catalogItemModel[variableName] = extraVars; } var redirectUrl = '/catalog/explorer/' + catalogItemFormId; @@ -166,28 +189,29 @@ ManageIQ.angular.app.controller('catalogItemFormController', ['$scope', 'catalog } else if (configData.provisioning_dialog_name !== '') catalog_item['config_info']['provision']['new_dialog_name'] = configData.provisioning_dialog_name; - // add 'retirement' key only if required fields were selected - if (configData.retirement_repository_id !== '') { - catalog_item['config_info']['retirement'] = { - repository_id: configData.retirement_repository_id, - playbook_id: configData.retirement_playbook_id, - credential_id: configData.retirement_machine_credential_id, - hosts: configData.retirement_inventory, - dialog_id: configData.retirement_dialog_id, - extra_vars: configData.retirement_variables - } + catalog_item['config_info']['retirement'] = { + remove_resources: configData.retirement_remove_resources + } - if (configData.retirement_network_credential_id !== '') - catalog_item['config_info']['retirement']['network_credential_id'] = configData.retirement_network_credential_id; + var retirement = catalog_item['config_info']['retirement']; + retirement['hosts'] = configData.retirement_inventory; + retirement['extra_vars'] = configData.retirement_variables; + if (angular.isDefined(vm.catalogItemModel.retirement_repository_id) && configData.retirement_repository_id !== '') { + retirement['repository_id'] = configData.retirement_repository_id; + retirement['playbook_id'] = configData.retirement_playbook_id; + retirement['credential_id'] = configData.retirement_machine_credential_id; + retirement['dialog_id'] = configData.retirement_dialog_id; + } + if (configData.retirement_network_credential_id !== '') + catalog_item['config_info']['retirement']['network_credential_id'] = configData.retirement_network_credential_id; - if (configData.retirement_cloud_credential_id !== '') - catalog_item['config_info']['retirement']['cloud_credential_id'] = configData.retirement_cloud_credential_id; + if (configData.retirement_cloud_credential_id !== '') + catalog_item['config_info']['retirement']['cloud_credential_id'] = configData.retirement_cloud_credential_id; - if (configData.retirement_dialog_id !== '') { - catalog_item['config_info']['retirement']['dialog_id'] = configData.retirement_dialog_id; - } else if (configData.retirement_dialog_name !== '') - catalog_item['config_info']['retirement']['new_dialog_name'] = configData.retirement_dialog_name; - } + if (angular.isDefined(vm.catalogItemModel.retirement_dialog_id) && configData.retirement_dialog_id !== '') { + catalog_item['config_info']['retirement']['dialog_id'] = configData.retirement_dialog_id; + } else if (angular.isDefined(vm.catalogItemModel.retirement_dialog_name) && configData.retirement_dialog_name !== '') + catalog_item['config_info']['retirement']['new_dialog_name'] = configData.retirement_dialog_name; return catalog_item; } @@ -227,6 +251,30 @@ ManageIQ.angular.app.controller('catalogItemFormController', ['$scope', 'catalog vm._retirement_network_credential = _.find(vm.network_credentials, {id: vm.catalogItemModel.retirement_network_credential_id}); vm._provisioning_network_credential = _.find(vm.network_credentials, {id: vm.catalogItemModel.provisioning_network_credential_id}); }) + + API.options('/api/authentications').then(function(data) { + var cloud_types = {}; + angular.forEach(data.data.credential_types.embedded_ansible_credential_types, function(cred_object, cred_type) { + if (cred_object.type == 'cloud') + cloud_types[cred_type] = cred_object.label; + }); + vm.cloud_types = getSortedHash(cloud_types); + }); + }; + + var getSortedHash = function(inputHash) { + var sortedHash = Object.keys(inputHash) + .map(function(key) { + return ({"k": key, "v": inputHash[key]}) + }) + .sort(function(a, b) { + return a.v.localeCompare(b.v) + }) + .reduce(function(o, e) { + o[e.k] = e.v; + return o; + }, {}); + return sortedHash; }; // get playbooks for selected repository @@ -238,7 +286,7 @@ ManageIQ.angular.app.controller('catalogItemFormController', ['$scope', 'catalog vm.catalogItemModel[prefix + '_playbook_id'] = ''; vm.catalogItemModel[prefix + '_repository_id'] = id; } else { - vm['_' + prefix + '_playbook'] = _.find(vm[prefix + '_playbooks'], {id: vm.catalogItemModel[prefix + '_playbook_id']}); + findObjectForDropDown(prefix, '_playbook', '_playbooks'); } }) }; @@ -253,20 +301,40 @@ ManageIQ.angular.app.controller('catalogItemFormController', ['$scope', 'catalog $scope.$watch('vm._retirement_repository', function(value) { if (value) { vm.repositoryChanged("retirement", value.id) - } else + } else { + vm.catalogItemModel['retirement_playbook_id'] = ''; vm.catalogItemModel['retirement_repository_id'] = ''; + getRemoveResourcesTypes(); + } }); $scope.cloudTypeChanged = function(prefix) { - typ = vm.catalogItemModel[prefix + "_cloud_type"]; + var typ = vm.catalogItemModel[prefix + "_cloud_type"]; // list of cloud credentials based upon selected cloud type - url = "/api/authentications?collection_class=ManageIQ::Providers::EmbeddedAnsible::AutomationManager::" + typ + "Credential&expand=resources&attributes=id,name" + sort_options + var url = '/api/authentications?collection_class=' + typ + '&expand=resources&attributes=id,name' + sort_options; API.get(url).then(function (data) { vm[prefix + '_cloud_credentials'] = data.resources; - vm[prefix + '_cloud_credential'] = _.find(vm[prefix + '_cloud_credentials'], {id: vm.catalogItemModel[prefix + '_cloud_credential_id']}); + findObjectForDropDown(prefix, '_cloud_credential', '_cloud_credentials'); }) }; + var findObjectForDropDown = function(prefix, fieldName, listName) { + vm['_' + prefix + fieldName] = _.find(vm[prefix + listName], {id: vm.catalogItemModel[prefix + fieldName + '_id']}); + } + + vm.playbookTypeChanged = function(prefix) { + if (prefix === "retirement") + getRemoveResourcesTypes(); + }; + + $scope.$watch('vm._retirement_playbook', function(value) { + if (value) { + vm.catalogItemModel['retirement_playbook_id'] = value.id; + } else + vm.catalogItemModel['retirement_playbook_id'] = ''; + vm.playbookTypeChanged("retirement"); + }); + $scope.$watch('vm.catalogItemModel.display', function(value) { vm.catalogItemModel.display = value; return vm.catalogItemModel.display; @@ -339,5 +407,44 @@ ManageIQ.angular.app.controller('catalogItemFormController', ['$scope', 'catalog }); } + $scope.cancelCopyProvisioning = function() { + closeConfirmationModal(); + } + + $scope.copyProvisioning = function() { + closeConfirmationModal(); + vm.formOptions(); + vm.catalogItemModel.retirement_repository_id = vm.catalogItemModel.provisioning_repository_id; + vm.catalogItemModel.retirement_playbook_id = vm.catalogItemModel.provisioning_playbook_id; + vm.catalogItemModel.retirement_machine_credential_id = vm.catalogItemModel.provisioning_machine_credential_id; + vm.catalogItemModel.retirement_network_credential_id = vm.catalogItemModel.provisioning_network_credential_id; + vm.catalogItemModel.retirement_cloud_type = vm.catalogItemModel.provisioning_cloud_type; + vm.catalogItemModel.retirement_cloud_credential_id = vm.catalogItemModel.provisioning_cloud_credential_id; + if (vm.catalogItemModel.retirement_cloud_type !== '') + $scope.cloudTypeChanged('retirement'); + vm.catalogItemModel.retirement_inventory = vm.catalogItemModel.provisioning_inventory; + vm.catalogItemModel.retirement_dialog_existing = vm.catalogItemModel.provisioning_dialog_existing; + vm.catalogItemModel.retirement_dialog_id = vm.catalogItemModel.provisioning_dialog_id; + vm.catalogItemModel.retirement_dialog_name = vm.catalogItemModel.provisioning_dialog_name; + vm.catalogItemModel.retirement_key = ''; + vm.catalogItemModel.retirement_value = ''; + vm.catalogItemModel.retirement_variables = angular.copy(vm.catalogItemModel.provisioning_variables); + } + + var closeConfirmationModal = function() { + angular.element('#confirmationModal').modal("hide"); + } + init(); }]); + +// Javascript function to be called from confirmation modal outside of Angular controller. +function cancelOrCopyProvisioning(buttonType) { + var scope = angular.element("#form_div").scope(); + scope.$apply(function () { + if (buttonType == "cancel") + scope.cancelCopyProvisioning(); + else + scope.copyProvisioning(); + }); +} diff --git a/app/assets/javascripts/controllers/cloud_volume/cloud_volume_form_controller.js b/app/assets/javascripts/controllers/cloud_volume/cloud_volume_form_controller.js index 8eef89dd50a..666f76fef96 100644 --- a/app/assets/javascripts/controllers/cloud_volume/cloud_volume_form_controller.js +++ b/app/assets/javascripts/controllers/cloud_volume/cloud_volume_form_controller.js @@ -1,20 +1,33 @@ -ManageIQ.angular.app.controller('cloudVolumeFormController', ['$http', '$scope', 'cloudVolumeFormId', 'miqService', function($http, $scope, cloudVolumeFormId, miqService) { - $scope.cloudVolumeModel = { name: '', cloud_tenant_id: '' }; - $scope.formId = cloudVolumeFormId; - $scope.afterGet = false; - $scope.modelCopy = angular.copy( $scope.cloudVolumeModel ); - $scope.model = "cloudVolumeModel"; - - ManageIQ.angular.scope = $scope; - - if (cloudVolumeFormId == 'new') { - $scope.cloudVolumeModel.name = ""; - } else { - miqService.sparkleOn(); - $http.get('/cloud_volume/cloud_volume_form_fields/' + cloudVolumeFormId) - .then(getCloudVolumeFormDataComplete) - .catch(miqService.handleFailure); - } +ManageIQ.angular.app.controller('cloudVolumeFormController', ['$http', '$scope', 'cloudVolumeFormId', 'miqService', 'API', function($http, $scope, cloudVolumeFormId, miqService, API) { + var init = function() { + $scope.cloudVolumeModel = { + aws_encryption: false, + }; + $scope.formId = cloudVolumeFormId; + $scope.afterGet = false; + $scope.modelCopy = angular.copy( $scope.cloudVolumeModel ); + $scope.model = "cloudVolumeModel"; + + // This ia a fixed list of available cloud volume types for AWS. + $scope.awsVolumeTypes = [ + { type: "gp2", name: "General Purpose SSD (GP2)" }, + { type: "io1", name: "Provisioned IOPS SSD (IO1)" }, + { type: "st1", name: "Throughput Optimized HDD (ST1)" }, + { type: "sc1", name: "Cold HDD (SC1)" }, + { type: "magnetic", name: "Magnetic" }, + ]; + + ManageIQ.angular.scope = $scope; + + if (cloudVolumeFormId == 'new') { + $scope.cloudVolumeModel.name = ""; + } else { + miqService.sparkleOn(); + $http.get('/cloud_volume/cloud_volume_form_fields/' + cloudVolumeFormId) + .then(getCloudVolumeFormDataComplete) + .catch(miqService.handleFailure); + } + }; function getCloudVolumeFormDataComplete(response) { var data = response.data; @@ -26,6 +39,22 @@ ManageIQ.angular.app.controller('cloudVolumeFormController', ['$http', '$scope', miqService.sparkleOff(); } + $scope.storageManagerChanged = function(id) { + miqService.sparkleOn(); + API.get('/api/providers/' + id + '?attributes=type,parent_manager.availability_zones,parent_manager.cloud_tenants') + .then(getStorageManagerFormDataComplete) + .catch(miqService.handleFailure); + }; + + function getStorageManagerFormDataComplete(data) { + $scope.afterGet = true; + $scope.cloudVolumeModel.emstype = data.type; + $scope.cloudTenantChoices = data.parent_manager.cloud_tenants; + $scope.availabilityZoneChoices = data.parent_manager.availability_zones; + + miqService.sparkleOff(); + } + $scope.addClicked = function() { var url = 'create/new' + '?button=add'; miqService.miqAjaxButton(url, $scope.cloudVolumeModel, { complete: false }); @@ -101,4 +130,46 @@ ManageIQ.angular.app.controller('cloudVolumeFormController', ['$http', '$scope', $scope.angularForm.$setPristine(true); miqService.miqFlash("warn", "All changes have been reset"); }; + + $scope.sizeChanged = function(size) { + // Dynamically update the AWS IOPS only if GP2 volume type is selected. + if ($scope.cloudVolumeModel.aws_volume_type === 'gp2') { + var volumeSize = parseInt(size, 10); + + if (isNaN(volumeSize)) { + $scope.cloudVolumeModel.aws_iops = null; + } else { + $scope.cloudVolumeModel.aws_iops = Math.max(100, Math.min(volumeSize * 3, 10000)); + } + } + }; + + $scope.awsVolumeTypeChanged = function(voltype) { + // The requested number of I/O operations per second that the volume can + // support. For Provisioned IOPS (SSD) volumes, you can provision up to 50 + // IOPS per GiB. For General Purpose (SSD) volumes, baseline performance is + // 3 IOPS per GiB, with a minimum of 100 IOPS and a maximum of 10000 IOPS. + // General Purpose (SSD) volumes under 1000 GiB can burst up to 3000 IOPS + + switch (voltype) { + case "gp2": + case "io1": + var volumeSize = parseInt($scope.cloudVolumeModel.size, 10); + if (isNaN(volumeSize)) { + $scope.cloudVolumeModel.aws_iops = ''; + } else if (voltype === 'gp2') { + $scope.cloudVolumeModel.aws_iops = Math.max(100, Math.min(volumeSize * 3, 10000)); + } else { + // Default ratio is 50 IOPS per 1 GiB. 20000 IOPS is the max. + $scope.cloudVolumeModel.aws_iops = Math.min(volumeSize * 50, 20000); + } + break; + + default: + $scope.cloudVolumeModel.aws_iops = 'Not Applicable'; + break; + } + }; + + init(); }]); diff --git a/app/assets/javascripts/controllers/credentials/credentials_controller.js b/app/assets/javascripts/controllers/credentials/credentials_controller.js index bad587ecd85..a117ddf99b4 100644 --- a/app/assets/javascripts/controllers/credentials/credentials_controller.js +++ b/app/assets/javascripts/controllers/credentials/credentials_controller.js @@ -1,55 +1,57 @@ -ManageIQ.angular.app.controller('CredentialsController', ['$scope', function($scope) { - var init = function() { - $scope.bChangeStoredPassword = undefined; - $scope.bCancelPasswordChange = undefined; - - $scope.$on('resetClicked', function(_e) { - $scope.resetClicked(); - }); - - $scope.$on('setNewRecord', function(_event, args) { - $scope.newRecord = args ? args.newRecord : true; - }); - - $scope.$on('setUserId', function(_event, args) { - if (args) { - $scope.modelCopy[args.userIdName] = args.userIdValue; - } - }); - - if ($scope.formId == 'new') { - $scope.newRecord = true; - } else { - $scope.newRecord = false; - $scope.bChangeStoredPassword = false; - $scope.bCancelPasswordChange = false; - } - }; +ManageIQ.angular.app.controller('CredentialsController', ['$scope', '$attrs', function($scope, $attrs) { + var vm = this; - $scope.changeStoredPassword = function() { - $scope.bChangeStoredPassword = true; - $scope.bCancelPasswordChange = false; + vm.vmScope = function() { + return $scope.$eval($attrs.vmScope); }; + + vm.bChangeStoredPassword = undefined; + vm.bCancelPasswordChange = undefined; + + $scope.$on('resetClicked', function(_e) { + vm.resetClicked(); + }); - $scope.cancelPasswordChange = function() { - if ($scope.bChangeStoredPassword) { - $scope.bCancelPasswordChange = true; - $scope.bChangeStoredPassword = false; + $scope.$on('setNewRecord', function(_event, args) { + vm.vmScope().newRecord = args ? args.newRecord : true; + }); + + $scope.$on('setUserId', function(_event, args) { + if (args) { + vm.vmScope().modelCopy[args.userIdName] = args.userIdValue; } + }); + + if (vm.vmScope().formId == 'new') { + vm.newRecord = true; + } else { + vm.newRecord = false; + vm.bChangeStoredPassword = false; + vm.bCancelPasswordChange = false; + } + + vm.changeStoredPassword = function() { + vm.bChangeStoredPassword = true; + vm.bCancelPasswordChange = false; }; - $scope.showVerify = function(userid) { - return $scope.newRecord || (!$scope.showChangePasswordLinks(userid)) || $scope.bChangeStoredPassword; + vm.cancelPasswordChange = function() { + if (vm.bChangeStoredPassword) { + vm.bCancelPasswordChange = true; + vm.bChangeStoredPassword = false; + } }; - $scope.showChangePasswordLinks = function(userid) { - return !$scope.newRecord && $scope.modelCopy[userid] != ''; + vm.showVerify = function(userid) { + return vm.vmScope().newRecord || (!vm.showChangePasswordLinks(userid)) || vm.bChangeStoredPassword; }; - $scope.resetClicked = function() { - $scope.newRecord = false; - $scope.cancelPasswordChange(); + vm.showChangePasswordLinks = function(userid) { + return !vm.vmScope().newRecord && vm.vmScope().modelCopy[userid] != ''; }; - init(); + vm.resetClicked = function() { + vm.newRecord = false; + vm.cancelPasswordChange(); + }; }]); diff --git a/app/assets/javascripts/controllers/ems_common/ems_common_form_controller.js b/app/assets/javascripts/controllers/ems_common/ems_common_form_controller.js index b0b3321fae9..5237648767f 100644 --- a/app/assets/javascripts/controllers/ems_common/ems_common_form_controller.js +++ b/app/assets/javascripts/controllers/ems_common/ems_common_form_controller.js @@ -24,6 +24,8 @@ ManageIQ.angular.app.controller('emsCommonFormController', ['$http', '$scope', ' realm: '', security_protocol: '', amqp_security_protocol: '', + hawkular_security_protocol: '', + hawkular_tls_ca_certs: '', provider_region: '', default_userid: '', default_password: '', @@ -56,7 +58,6 @@ ManageIQ.angular.app.controller('emsCommonFormController', ['$http', '$scope', ' hawkular_auth_status: '', vmware_cloud_api_version: '' }; - $scope.realmNote = __("Note: Username must be in the format: name@realm"); $scope.formId = emsCommonFormId; $scope.afterGet = false; $scope.modelCopy = angular.copy( $scope.emsCommonModel ); @@ -185,6 +186,10 @@ ManageIQ.angular.app.controller('emsCommonFormController', ['$http', '$scope', ' $scope.emsCommonModel.api_version = 'v2'; $scope.emsCommonModel.ems_controller = data.ems_controller; $scope.emsCommonModel.ems_controller === 'ems_container' ? $scope.emsCommonModel.default_api_port = '8443' : $scope.emsCommonModel.default_api_port = ''; + $scope.emsCommonModel.default_security_protocol = data.default_security_protocol; + $scope.emsCommonModel.hawkular_security_protocol = data.hawkular_security_protocol; + $scope.emsCommonModel.default_tls_ca_certs = data.default_tls_ca_certs; + $scope.emsCommonModel.hawkular_tls_ca_certs = data.hawkular_tls_ca_certs; $scope.emsCommonModel.default_auth_status = data.default_auth_status; $scope.emsCommonModel.amqp_auth_status = data.amqp_auth_status; $scope.emsCommonModel.service_account_auth_status = data.service_account_auth_status; @@ -215,7 +220,7 @@ ManageIQ.angular.app.controller('emsCommonFormController', ['$http', '$scope', ' $scope.emsCommonModel.emstype == "openstack_infra" && $scope.emsCommonModel.default_hostname || $scope.emsCommonModel.emstype == "nuage_network" && $scope.emsCommonModel.default_hostname || $scope.emsCommonModel.emstype == "rhevm" && $scope.emsCommonModel.default_hostname || - $scope.emsCommonModel.emstype == "vmwarews" && $scope.emsCommonModel.default_hostname || + $scope.emsCommonModel.emstype == "vmwarews" && $scope.emsCommonModel.default_hostname || $scope.emsCommonModel.emstype == "vmware_cloud" && $scope.emsCommonModel.default_hostname) && ($scope.emsCommonModel.default_userid != '' && $scope.angularForm.default_userid.$valid && $scope.emsCommonModel.default_password != '' && $scope.angularForm.default_password.$valid && @@ -325,6 +330,11 @@ ManageIQ.angular.app.controller('emsCommonFormController', ['$http', '$scope', ' }; $scope.providerTypeChanged = function() { + if ($scope.emsCommonModel.ems_controller === 'ems_container') { + $scope.emsCommonModel.default_api_port = "8443"; // TODO: correct per-type port + // Container types are nearly identical, no point resetting most fields on type change. + return; + } $scope.emsCommonModel.default_api_port = ""; $scope.emsCommonModel.provider_region = ""; $scope.emsCommonModel.default_security_protocol = ""; @@ -338,18 +348,12 @@ ManageIQ.angular.app.controller('emsCommonFormController', ['$http', '$scope', ' if ($scope.emsCommonModel.emstype === 'openstack') { $scope.emsCommonModel.tenant_mapping_enabled = false; } - } else if ($scope.emsCommonModel.emstype === 'scvmm' && $scope.emsCommonModel.default_security_protocol === 'kerberos') { - $scope.note = $scope.realmNote; } else if ($scope.emsCommonModel.emstype === 'scvmm') { $scope.emsCommonModel.default_security_protocol = 'ssl'; } else if ($scope.emsCommonModel.emstype === 'rhevm') { $scope.emsCommonModel.metrics_api_port = "5432"; $scope.emsCommonModel.default_api_port = $scope.getDefaultApiPort($scope.emsCommonModel.emstype); $scope.emsCommonModel.metrics_database_name = "ovirt_engine_history"; - } else if ($scope.emsCommonModel.ems_controller === 'ems_container') { - $scope.emsCommonModel.default_api_port = "8443"; - $scope.emsCommonModel.default_security_protocol = 'ssl-with-validation'; - $scope.emsCommonModel.hawkular_security_protocol = 'ssl-with-validation'; } else if ($scope.emsCommonModel.emstype === 'vmware_cloud') { $scope.emsCommonModel.default_api_port = "443"; $scope.emsCommonModel.event_stream_selection = "none"; @@ -367,10 +371,18 @@ ManageIQ.angular.app.controller('emsCommonFormController', ['$http', '$scope', ' } }; - $scope.scvmmSecurityProtocolChanged = function() { - $scope.note = ""; - if ($scope.emsCommonModel.emstype === 'scvmm' && $scope.emsCommonModel.default_security_protocol === 'kerberos') { - $scope.note = $scope.realmNote; + $scope.hawkularSecurityProtocolChanged = function() { + var defaultNonSSLPort = '8080'; + var defaultSSLPort = '8443'; + var defaultPorts = [defaultNonSSLPort, defaultSSLPort]; + if (typeof $scope.emsCommonModel.default_api_port === 'undefined' || + $scope.emsCommonModel.default_api_port === '' || + defaultPorts.indexOf($scope.emsCommonModel.default_api_port) != -1) { + if ($scope.emsCommonModel.default_security_protocol === 'non-ssl') { + $scope.emsCommonModel.default_api_port = defaultNonSSLPort; + } else { + $scope.emsCommonModel.default_api_port = defaultSSLPort; + } } }; @@ -424,6 +436,8 @@ ManageIQ.angular.app.controller('emsCommonFormController', ['$http', '$scope', ' default_hostname: $scope.emsCommonModel.default_hostname, default_api_port: $scope.emsCommonModel.default_api_port, default_security_protocol: $scope.emsCommonModel.default_security_protocol, + default_tls_verify: $scope.emsCommonModel.default_tls_verify, + default_tls_ca_certs: $scope.emsCommonModel.default_tls_ca_certs, default_userid: $scope.emsCommonModel.default_userid, default_password: default_password, default_verify: default_verify, @@ -480,8 +494,10 @@ ManageIQ.angular.app.controller('emsCommonFormController', ['$http', '$scope', ' } } else if (prefix === "hawkular") { $scope.postValidationModel['hawkular'] = { - hawkular_hostname: $scope.emsCommonModel.hawkular_hostname, - hawkular_api_port: $scope.emsCommonModel.hawkular_api_port, + hawkular_hostname: $scope.emsCommonModel.hawkular_hostname, + hawkular_api_port: $scope.emsCommonModel.hawkular_api_port, + hawkular_security_protocol: $scope.emsCommonModel.hawkular_security_protocol, + hawkular_tls_ca_certs: $scope.emsCommonModel.hawkular_tls_ca_certs, } } }; diff --git a/app/assets/javascripts/controllers/live_metrics/ad_hoc_metrics_controller.js b/app/assets/javascripts/controllers/live_metrics/ad_hoc_metrics_controller.js index c36344cee9a..43e76928119 100644 --- a/app/assets/javascripts/controllers/live_metrics/ad_hoc_metrics_controller.js +++ b/app/assets/javascripts/controllers/live_metrics/ad_hoc_metrics_controller.js @@ -1,20 +1,26 @@ /* global miqHttpInject */ - - ManageIQ.angular.app.controller('adHocMetricsController', ['$http', '$window', 'miqService', - 'metricsUtilsFactory', 'metricsHttpFactory', 'metricsConfigFactory', - function($http, $window, miqService, metricsUtilsFactory, metricsHttpFactory, metricsConfigFactory) { - +ManageIQ.angular.app.controller('adHocMetricsController', ['$http', '$window', 'miqService', + 'metricsUtilsFactory', 'metricsHttpFactory', 'metricsConfigFactory', 'metricsParseUrlFactory', + function($http, $window, miqService, metricsUtilsFactory, metricsHttpFactory, metricsConfigFactory, metricsParseUrlFactory) { var dash = this; var utils = metricsUtilsFactory(dash); var httpUtils = metricsHttpFactory(dash, $http, utils, miqService); - // get the pathname and remove trailing / if exist - var pathname = $window.location.pathname.replace(/\/$/, ''); + dash.getTenants = httpUtils.getTenants; + dash.refreshList = httpUtils.refreshList; + dash.refreshGraph = httpUtils.refreshGraph; + dash.setFilterOptions = utils.setFilterOptions; + dash.setPage = httpUtils.setPage; + + var pageSetup = function() { + // try to parse config variables from page url + // and set page config variables + metricsParseUrlFactory(dash, $window); + metricsConfigFactory(dash); - dash.providerId = '/' + (/^\/[^\/]+\/([r\d]+)$/.exec(pathname)[1]); - dash.tenant = '_ops'; - dash.minBucketDurationInSecondes = 20 * 60; - dash.max_metrics = 1000; + // load tenants + httpUtils.getTenants(); + } var initialization = function() { dash.tenantChanged = false; @@ -30,6 +36,9 @@ dash.tags = {}; dash.chartData = {}; + dash.page = 1; + dash.pages = 1; + dash.filterConfig = { fields: [], appliedFilters: [], @@ -46,9 +55,8 @@ actionsConfig: dash.actionsConfig }; - dash.url = '/container_dashboard/data' + dash.providerId + '/?live=true&tenant=' + dash.tenant; - - httpUtils.getMetricTags(); + var _tenant = dash.tenant.value || dash.DEFAULT_TENANT; + dash.url = '/container_dashboard/data' + dash.providerId + '/?live=true&tenant=' + _tenant; } var filterChange = function (filters, addOnly) { @@ -59,7 +67,10 @@ // prevent listing all metrics point if (dash.filterConfig.appliedFilters.length === 0) { dash.applied = false; + dash.itemSelected = false; dash.items = []; + dash.page = 1; + dash.pages = 1; dash.filterConfig.resultsCount = 0; return; } @@ -73,7 +84,10 @@ // when change filter we automatically apply changes if (!addOnly) { + dash.itemSelected = false; dash.items = []; + dash.page = 1; + dash.pages = 1; dash.filterChanged = false; dash.filterConfig.resultsCount = 0; dash.applyFilters(); @@ -116,10 +130,10 @@ initialization(); }; - dash.getTenants = httpUtils.getTenants; - dash.refreshList = httpUtils.refreshList; - dash.refreshGraph = httpUtils.refreshGraph; + // one time initialization of page elemants + pageSetup(); - metricsConfigFactory(dash); + // initialize page elemants initialization(); - }]); + } +]); diff --git a/app/assets/javascripts/controllers/live_metrics/util/metrics-config-factory.js b/app/assets/javascripts/controllers/live_metrics/util/metrics-config-factory.js index 0f712d47b98..87b6599b813 100644 --- a/app/assets/javascripts/controllers/live_metrics/util/metrics-config-factory.js +++ b/app/assets/javascripts/controllers/live_metrics/util/metrics-config-factory.js @@ -9,6 +9,9 @@ angular.module('miq.util').factory('metricsConfigFactory', function() { } }; + dash.DEFAULT_TENANT = "_system"; + dash.tenant = {value: null}; + dash.actionsConfig = { actionsInclude: true }; @@ -29,17 +32,6 @@ angular.module('miq.util').factory('metricsConfigFactory', function() { dash.timeFilter.range_count++; }; - dash.timeRanges = [ - {title: _("Hours"), value: 1}, - {title: _("Days"), value: 24}, - {title: _("Weeks"), value: 168}, - {title: _("Months"), value: 672} - ]; - - dash.dateOptions = { - format: __('MM/DD/YYYY HH:mm') - }; - // Graphs dash.chartConfig = { legend : { show: false }, @@ -69,5 +61,31 @@ angular.module('miq.util').factory('metricsConfigFactory', function() { useExpandingRows: true, onCheckBoxChange: selectionChange }; + + dash.timeRanges = [ + {title: __("Hours"), value: 1}, + {title: __("Days"), value: 24}, + {title: __("Weeks"), value: 168}, + {title: __("Months"), value: 672} + ]; + + dash.timeIntervals = [ + {title: __("1min Average"), value: 1 * 60}, + {title: __("5min Average"), value: 5 * 60}, + {title: __("20min Average"), value: 20 * 60}, + {title: __("1h average"), value: 60 * 60}, + {title: __("12h average"), value: 12 * 60 * 60} + ]; + + dash.filterType = "simple"; + + dash.filterTypes = [ + {title: __("Advanced filters"), value: "advanced"}, + {title: __("Simple filters"), value: "simple"} + ]; + + dash.dateOptions = { + format: __('MM/DD/YYYY HH:mm') + }; } }); diff --git a/app/assets/javascripts/controllers/live_metrics/util/metrics-http-factory.js b/app/assets/javascripts/controllers/live_metrics/util/metrics-http-factory.js index 2859b6bf55f..2c4d46b6dfa 100644 --- a/app/assets/javascripts/controllers/live_metrics/util/metrics-http-factory.js +++ b/app/assets/javascripts/controllers/live_metrics/util/metrics-http-factory.js @@ -14,12 +14,10 @@ angular.module('miq.util').factory('metricsHttpFactory', function() { function getMetricDefinitionsData(response) { 'use strict'; - var data = response.data; - dash.loadingMetrics = false; - if (response.error || response.data.error) { - add_flash(response.error || response.data.error, 'error'); + + if (utils.checkResponse(response) === false) { return; } @@ -29,11 +27,8 @@ angular.module('miq.util').factory('metricsHttpFactory', function() { angular.forEach(dash.items, getLatestData); - if (dash.items.length > dash.max_metrics) { - dash.filterConfig.resultsCount = __("Showing first") + " " + dash.max_metrics; - } else { - dash.filterConfig.resultsCount = dash.items.length; - } + dash.pages = (data.pages > 0) ? data.pages : 1; + dash.filterConfig.resultsCount = __("Page ") + data.page + __(" Of ") + dash.pages + __(", Found ") + data.items; } function refreshOneGraph(metricId, metricType, currentItem) { @@ -73,9 +68,29 @@ angular.module('miq.util').factory('metricsHttpFactory', function() { miqService.handleFailure(error); }); }; - var getTenants = function(include) { - return $http.get(dash.url + "&query=get_tenants&limit=7&include=" + include).then(function(response) { - return response.data.tenants; + var getTenants = function() { + var url = '/container_dashboard/data' + dash.providerId + '/?live=true&query=get_tenants'; + + return $http.get(url).then(function(response) { + if (utils.checkResponse(response) === false) { + dash.tenantList = []; + dash.tenant = {value: null}; + dash.tagsLoaded = true; + return; + } + + // get the tenant list, and set the current tenant + dash.tenantList = response.data.tenants; + dash.tenant = dash.tenantList[0]; + + // try to set the current tenant to be the default one + dash.tenantList.forEach(function callback(obj, i) { + if (obj.value === dash.DEFAULT_TENANT) { + dash.tenant = dash.tenantList[i]; + } + }); + + getMetricTags(); }); } @@ -83,7 +98,9 @@ angular.module('miq.util').factory('metricsHttpFactory', function() { dash.itemSelected = false; dash.loadingMetrics = true; var _tags = dash.tags !== {} ? '&tags=' + JSON.stringify(dash.tags) : ''; - $http.get(dash.url + '&limit=' + dash.max_metrics +'&query=metric_definitions' + _tags) + var pagination = '&page=' + dash.page + '&items_per_page=' + dash.items_per_page; + + $http.get(dash.url + '&limit=' + dash.max_metrics +'&query=metric_definitions' + _tags + pagination) .then(getMetricDefinitionsData) .catch(miqService.handleFailure); }; @@ -109,11 +126,23 @@ angular.module('miq.util').factory('metricsHttpFactory', function() { } }; + var setPage = function(page) { + var _page = page || 1; + if (_page < 1) _page = 1; + if (_page > dash.pages) _page = dash.pages; + + if (dash.page !== _page) { + dash.page = _page; + refreshList(); + } + }; + return { getMetricTags: getMetricTags, getTenants: getTenants, refreshList: refreshList, - refreshGraph: refreshGraph + refreshGraph: refreshGraph, + setPage: setPage } } }); diff --git a/app/assets/javascripts/controllers/live_metrics/util/metrics-parse-url-factroy.js b/app/assets/javascripts/controllers/live_metrics/util/metrics-parse-url-factroy.js new file mode 100644 index 00000000000..437234066a4 --- /dev/null +++ b/app/assets/javascripts/controllers/live_metrics/util/metrics-parse-url-factroy.js @@ -0,0 +1,13 @@ +angular.module('miq.util').factory('metricsParseUrlFactory', function() { + return function(dash, $window) { + // get the pathname and remove trailing / if exist + var pathname = $window.location.pathname.replace(/\/$/, ''); + dash.providerId = '/' + (/^\/[^\/]+\/([r\d]+)$/.exec(pathname)[1]); + + // TODO: get this values from GET/POST values ? + dash.tenantList = []; + dash.minBucketDurationInSecondes = 20 * 60; + dash.max_metrics = 10000; + dash.items_per_page = 10; + }; +}); diff --git a/app/assets/javascripts/controllers/live_metrics/util/metrics-utils-factory.js b/app/assets/javascripts/controllers/live_metrics/util/metrics-utils-factory.js index 3fda11659b0..c85a99f986f 100644 --- a/app/assets/javascripts/controllers/live_metrics/util/metrics-utils-factory.js +++ b/app/assets/javascripts/controllers/live_metrics/util/metrics-utils-factory.js @@ -1,29 +1,74 @@ angular.module('miq.util').factory('metricsUtilsFactory', function() { return function (dash) { + var UNKNOWN_ERROR_STR = __('Something is wrong, try reloading the page'); + + var checkResponse = function(response) { + if (response.error || response.data.error || typeof response.data === 'string') { + add_flash(response.error || response.data.error || UNKNOWN_ERROR_STR, 'error'); + return false; + } + + return true; + } + + var setFilterOptionsAlpha = function(tagsData) { + for (var i = 0; i < tagsData.length; i++) { + var tagItem = tagsData[i]; + + dash.filterConfig.fields.push( + { + id: tagItem.tag, + title: tagItem.tag, + placeholder: sprintf(__('Filter by %s...'), tagItem.tag), + filterType: 'alpha' + }); + } + } + + var setFilterOptionsSelect = function(tagsData) { + for (var i = 0; i < tagsData.length; i++) { + var tagItem = tagsData[i]; + + dash.filterConfig.fields.push( + { + id: tagItem.tag, + title: tagItem.tag, + placeholder: sprintf(__('Filter by %s...'), tagItem.tag), + filterType: 'select', + filterValues: tagItem.options + }); + } + } + + var setFilterOptions = function() { + dash.filterConfig.fields = []; + + if (dash.filterType === 'simple') { + setFilterOptionsSelect(dash.metricTags); + } else { + setFilterOptionsAlpha(dash.metricTags); + } + } + var getMetricTagsData = function(response) { 'use strict'; dash.tagsLoaded = true; - if (response.error || response.data.error) { - add_flash(response.error || response.data.error, 'error'); + + if (checkResponse(response) === false) { return; } var data = response.data; + dash.filterConfig.fields = []; if (data && angular.isArray(data.metric_tags)) { data.metric_tags.sort(); - for (var i = 0; i < data.metric_tags.length; i++) { - dash.filterConfig.fields.push( - { - id: data.metric_tags[i], - title: data.metric_tags[i], - placeholder: sprintf(__('Filter by %s...'), data.metric_tags[i]), - filterType: 'alpha', - }); - } - } else { - // No filters available, apply without filtering - dash.filterConfig.fields = []; + + // remember the metric tags + dash.metricTags = data.metric_tags; + + // apply dash.metricTags to the filter form + setFilterOptions(); } } @@ -34,8 +79,7 @@ angular.module('miq.util').factory('metricsUtilsFactory', function() { dash.loadingData = false; } - if (response.error || response.data.error) { - add_flash(response.error || response.data.error, 'error'); + if (checkResponse(response) === false) { return; } @@ -54,38 +98,38 @@ angular.module('miq.util').factory('metricsUtilsFactory', function() { var getContainerDashboardData = function(item, response) { 'use strict'; - if (response.error || response.data.error) { - add_flash(response.error || response.data.error, 'error'); + if (checkResponse(response) === false) { + return; + } + + var data = response.data.data.sort(function(a, b) { return a.timestamp < b.timestamp; }); + + item.lastValues = {}; + angular.forEach(data, function(d) { + item.lastValues[d.timestamp] = numeral(d.value).format('0,0.00a'); + }); + + if (data.length > 0) { + var lastValue = data[0].value; + item.last_value = numeral(lastValue).format('0,0.00a'); + item.last_timestamp = data[0].timestamp; } else { - var data = response.data.data; - - item.lastValues = {}; - angular.forEach(data, function(d) { - item.lastValues[d.timestamp] = numeral(d.value).format('0,0.00a'); - }); - - if (data.length > 0) { - var lastValue = data[0].value; - item.last_value = numeral(lastValue).format('0,0.00a'); - item.last_timestamp = data[0].timestamp; - } else { - item.last_value = '-'; - item.last_timestamp = '-'; - } + item.last_value = '-'; + item.last_timestamp = '-'; + } - if (data.length > 1) { - var prevValue = data[1].value; - if (angular.isNumber(lastValue) && angular.isNumber(prevValue)) { - var change; - if (prevValue !== 0 && lastValue !== 0) { - change = Math.round((lastValue - prevValue) / lastValue); - } else if (lastValue !== 0) { - change = 1; - } else { - change = 0; - } - item.percent_change = '(' + numeral(change).format('0,0.00%') + ')'; + if (data.length > 1) { + var prevValue = data[1].value; + if (angular.isNumber(lastValue) && angular.isNumber(prevValue)) { + var change; + if (prevValue !== 0 && lastValue !== 0) { + change = Math.round((lastValue - prevValue) / lastValue); + } else if (lastValue !== 0) { + change = 1; + } else { + change = 0; } + item.percent_change = '(' + numeral(change).format('0,0.00%') + ')'; } } } @@ -93,7 +137,9 @@ angular.module('miq.util').factory('metricsUtilsFactory', function() { return { getMetricTagsData: getMetricTagsData, getContainerParamsData: getContainerParamsData, - getContainerDashboardData: getContainerDashboardData + getContainerDashboardData: getContainerDashboardData, + checkResponse: checkResponse, + setFilterOptions: setFilterOptions } } }); diff --git a/app/assets/javascripts/controllers/network_router/network_router_form_controller.js b/app/assets/javascripts/controllers/network_router/network_router_form_controller.js index 85ddbf16b85..59001266090 100644 --- a/app/assets/javascripts/controllers/network_router/network_router_form_controller.js +++ b/app/assets/javascripts/controllers/network_router/network_router_form_controller.js @@ -12,7 +12,9 @@ ManageIQ.angular.app.controller('networkRouterFormController', ['$http', '$scope if (networkRouterFormId == 'new') { $scope.networkRouterModel.name = ""; - $scope.networkRouterModel.cloud_subnet_id = ""; + $scope.networkRouterModel.enable_snat = true; + $scope.networkRouterModel.external_gateway = false; + $scope.networkRouterModel.cloud_subnet_id = null; $scope.newRecord = true; } else { miqService.sparkleOn(); @@ -66,12 +68,25 @@ ManageIQ.angular.app.controller('networkRouterFormController', ['$http', '$scope .catch(miqService.handleFailure); }; + $scope.filterCloudNetworkChanged = function(id) { + miqService.sparkleOn(); + $http.get('/network_router/network_router_subnets_by_network/' + id) + .then(getNetworkRouterFormByNetworkData) + .catch(miqService.handleFailure); + }; + function getNetworkRouterFormData(response) { var data = response.data; $scope.afterGet = true; + $scope.available_networks = data.available_networks; + $scope.available_subnets = data.available_subnets; $scope.networkRouterModel.name = data.name; - $scope.networkRouterModel.cloud_subnet_id = ''; + $scope.networkRouterModel.cloud_network_id = data.cloud_network_id; + $scope.networkRouterModel.cloud_subnet_id = data.cloud_subnet_id; + $scope.networkRouterModel.ems_id = data.ems_id; + $scope.networkRouterModel.enable_snat = data.enable_snat; + $scope.networkRouterModel.external_gateway = data.external_gateway; $scope.modelCopy = angular.copy( $scope.networkRouterModel ); miqService.sparkleOff(); @@ -83,4 +98,11 @@ ManageIQ.angular.app.controller('networkRouterFormController', ['$http', '$scope $scope.available_networks = data.available_networks; miqService.sparkleOff(); } + + function getNetworkRouterFormByNetworkData(response) { + var data = response.data; + + $scope.available_subnets = data.available_subnets; + miqService.sparkleOff(); + } }]); diff --git a/app/assets/javascripts/controllers/provider_foreman/provider_foreman_form_controller.js b/app/assets/javascripts/controllers/provider_foreman/provider_foreman_form_controller.js index 4d2c78d0eb0..ce8b104b736 100644 --- a/app/assets/javascripts/controllers/provider_foreman/provider_foreman_form_controller.js +++ b/app/assets/javascripts/controllers/provider_foreman/provider_foreman_form_controller.js @@ -1,110 +1,112 @@ ManageIQ.angular.app.controller('providerForemanFormController', ['$http', '$scope', 'providerForemanFormId', 'miqService', function($http, $scope, providerForemanFormId, miqService) { - var init = function() { - $scope.providerForemanModel = { - provtype: '', - name: '', - url: '', - zone: '', - verify_ssl: '', - log_userid: '', - log_password: '', - log_verify: '' - }; - $scope.formId = providerForemanFormId; - $scope.afterGet = false; - $scope.validateClicked = miqService.validateWithAjax; - $scope.modelCopy = angular.copy( $scope.providerForemanModel ); - $scope.model = 'providerForemanModel'; - - ManageIQ.angular.scope = $scope; - - if (providerForemanFormId == 'new') { - $scope.newRecord = true; - - $http.get('/provider_foreman/provider_foreman_form_fields/' + providerForemanFormId) - .then(getProviderForemanFormData) - .catch(miqService.handleFailure); - } else { - $scope.newRecord = false; - - miqService.sparkleOn(); - - $http.get('/provider_foreman/provider_foreman_form_fields/' + providerForemanFormId) - .then(getProviderForemanFormData) - .catch(miqService.handleFailure); - } - }; - - $scope.canValidateBasicInfo = function () { - if ($scope.isBasicInfoValid()) - return true; - else - return false; + var vm = this; + + vm.providerForemanModel = { + provtype: '', + name: '', + url: '', + zone: '', + verify_ssl: '', + log_userid: '', + log_password: '', + log_verify: '' + }; + + vm.formId = providerForemanFormId; + vm.afterGet = false; + vm.validateClicked = miqService.validateWithAjax; + vm.modelCopy = angular.copy( vm.providerForemanModel ); + vm.model = 'providerForemanModel'; + + vm.saveable = miqService.saveable; + + ManageIQ.angular.scope = vm; + + + if (providerForemanFormId == 'new') { + vm.newRecord = true; + + $http.get('/provider_foreman/provider_foreman_form_fields/' + providerForemanFormId) + .then(getProviderForemanFormData) + .catch(miqService.handleFailure); + } else { + vm.newRecord = false; + + miqService.sparkleOn(); + + $http.get('/provider_foreman/provider_foreman_form_fields/' + providerForemanFormId) + .then(getProviderForemanFormData) + .catch(miqService.handleFailure); + } + + vm.canValidateBasicInfo = function (angularForm) { + if (vm.isBasicInfoValid(angularForm)) + return true; + else + return false; + } + + vm.isBasicInfoValid = function(angularForm) { + if(angularForm.url.$valid && + angularForm.log_userid.$valid && + angularForm.log_password.$valid && + angularForm.log_verify.$valid) + return true; + else + return false; + }; + + var providerForemanEditButtonClicked = function(buttonName, serializeFields) { + miqService.sparkleOn(); + var url = '/provider_foreman/edit/' + providerForemanFormId + '?button=' + buttonName; + if (serializeFields === undefined) { + miqService.miqAjaxButton(url); + } else { + miqService.miqAjaxButton(url, vm.providerForemanModel); } - - $scope.isBasicInfoValid = function() { - if($scope.angularForm.url.$valid && - $scope.angularForm.log_userid.$valid && - $scope.angularForm.log_password.$valid && - $scope.angularForm.log_verify.$valid) - return true; - else - return false; - }; - - var providerForemanEditButtonClicked = function(buttonName, serializeFields) { - miqService.sparkleOn(); - var url = '/provider_foreman/edit/' + providerForemanFormId + '?button=' + buttonName; - if (serializeFields === undefined) { - miqService.miqAjaxButton(url); - } else { - miqService.miqAjaxButton(url, serializeFields); - } - }; - - $scope.cancelClicked = function() { - providerForemanEditButtonClicked('cancel'); - $scope.angularForm.$setPristine(true); - }; - - $scope.resetClicked = function() { - $scope.$broadcast ('resetClicked'); - $scope.providerForemanModel = angular.copy( $scope.modelCopy ); - $scope.angularForm.$setPristine(true); - miqService.miqFlash("warn", __("All changes have been reset")); - }; - - $scope.saveClicked = function() { - providerForemanEditButtonClicked('save', true); - $scope.angularForm.$setPristine(true); - }; - - $scope.addClicked = function() { - $scope.saveClicked(); - }; - - function getProviderForemanFormData(response) { - var data = response.data; - - if (! $scope.newRecord) { - $scope.providerForemanModel.provtype = data.provtype; - $scope.providerForemanModel.name = data.name; - $scope.providerForemanModel.url = data.url; - $scope.providerForemanModel.verify_ssl = data.verify_ssl === 1; - - $scope.providerForemanModel.log_userid = data.log_userid; - - if ($scope.providerForemanModel.log_userid !== '') { - $scope.providerForemanModel.log_password = $scope.providerForemanModel.log_verify = miqService.storedPasswordPlaceholder; - } + }; + + vm.cancelClicked = function(angularForm) { + providerForemanEditButtonClicked('cancel'); + angularForm.$setPristine(true); + }; + + vm.resetClicked = function(angularForm) { + $scope.$broadcast ('resetClicked'); + vm.providerForemanModel = angular.copy( vm.modelCopy ); + angularForm.$setPristine(true); + miqService.miqFlash("warn", __("All changes have been reset")); + }; + + vm.saveClicked = function(angularForm) { + providerForemanEditButtonClicked('save', true); + angularForm.$setPristine(true); + }; + + vm.addClicked = function(angularForm) { + vm.saveClicked(angularForm); + }; + + function getProviderForemanFormData(response) { + var data = response.data; + + if (! vm.newRecord) { + vm.providerForemanModel.provtype = data.provtype; + vm.providerForemanModel.name = data.name; + vm.providerForemanModel.url = data.url; + vm.providerForemanModel.verify_ssl = data.verify_ssl === 1; + + vm.providerForemanModel.log_userid = data.log_userid; + + if (vm.providerForemanModel.log_userid !== '') { + vm.providerForemanModel.log_password = vm.providerForemanModel.log_verify = miqService.storedPasswordPlaceholder; } - - $scope.providerForemanModel.zone = data.zone; - $scope.afterGet = true; - $scope.modelCopy = angular.copy( $scope.providerForemanModel ); - - miqService.sparkleOff(); } - init(); + vm.providerForemanModel.zone = data.zone; + vm.afterGet = true; + vm.modelCopy = angular.copy( vm.providerForemanModel ); + + miqService.sparkleOff(); + } }]); diff --git a/app/assets/javascripts/directives/checkchange.js b/app/assets/javascripts/directives/checkchange.js index 22525fd60d7..08bef6a4d6a 100644 --- a/app/assets/javascripts/directives/checkchange.js +++ b/app/assets/javascripts/directives/checkchange.js @@ -6,10 +6,18 @@ ManageIQ.angular.app.directive('checkchange', ['miqService', function(miqService scope['elemType_' + ctrl.$name] = attr.type; var model = function() { - return scope.$eval(scope.angularForm.model || scope.model); + if (scope.$parent.angularForm) { + return scope.$parent.$eval(scope.$parent.angularForm.model || scope.$parent.model); + } else { + return scope.$eval(scope.angularForm.model || scope.model); + } }; var modelCopy = function() { - return scope.$eval(scope.angularForm.modelCopy || "modelCopy"); + if (scope.$parent.angularForm) { + return scope.$parent.$eval(scope.$parent.angularForm.modelCopy || "modelCopy"); + } else { + return scope.$eval(scope.angularForm.modelCopy || "modelCopy"); + } }; if (modelCopy()) { diff --git a/app/assets/javascripts/directives/clear_field_set_focus.js b/app/assets/javascripts/directives/clear_field_set_focus.js index f7f84d15fa2..b2505a95cfb 100644 --- a/app/assets/javascripts/directives/clear_field_set_focus.js +++ b/app/assets/javascripts/directives/clear_field_set_focus.js @@ -2,24 +2,31 @@ ManageIQ.angular.app.directive('clearFieldSetFocus', ['$timeout', 'miqService', return { require: 'ngModel', link: function (scope, elem, attr, ctrl) { + var model = function() { + if (scope.$parent.angularForm) { + return scope.$parent.$eval(scope.$parent.angularForm.model || scope.$parent.model); + } else { + return scope.$eval(scope.angularForm.model || scope.model); + } + }; scope['form_passwordfocus_' + ctrl.$name] = elem[0]; var option = attr.clearFieldSetFocus; - scope.$watch('bChangeStoredPassword', function(value) { + scope.$watch('vm.bChangeStoredPassword', function(value) { if (value) { $timeout(function () { - scope[scope.model][ctrl.$name] = ''; + model()[ctrl.$name] = ''; if(option != "no-focus") angular.element(scope['form_passwordfocus_' + ctrl.$name]).focus(); }, 0); } }); - scope.$watch('bCancelPasswordChange', function(value) { + scope.$watch('vm.bCancelPasswordChange', function(value) { if (value) { $timeout(function () { - scope[scope.model][ctrl.$name] = miqService.storedPasswordPlaceholder; + model()[ctrl.$name] = miqService.storedPasswordPlaceholder; }, 0); } }); diff --git a/app/assets/javascripts/directives/verifypasswd.js b/app/assets/javascripts/directives/verifypasswd.js index a7d58641388..5ae53f03314 100644 --- a/app/assets/javascripts/directives/verifypasswd.js +++ b/app/assets/javascripts/directives/verifypasswd.js @@ -2,27 +2,43 @@ ManageIQ.angular.app.directive('verifypasswd', function() { return { require: 'ngModel', link: function (scope, _elem, attr, ctrl) { + var model = function() { + if (scope.$parent.angularForm) { + return scope.$parent.$eval(scope.$parent.angularForm.model || scope.$parent.model); + } else { + return scope.$eval(scope.angularForm.model || scope.model); + } + }; + + var vmScope = function() { + if (scope.$parent.angularForm) { + return scope.$parent; + } else { + return scope; + } + }; + var log_password = attr.prefix + "_password"; var log_verify = attr.prefix + "_verify"; var logVerifyCtrl = attr.prefix + "_VerifyCtrl"; scope.$watch(attr.ngModel, function() { - if((ctrl.$modelValue != undefined && scope.afterGet) || scope.formId == "new") { + if((ctrl.$modelValue != undefined && vmScope().afterGet) || vmScope().formId == "new") { if(ctrl.$name == log_verify) { scope[logVerifyCtrl] = ctrl; - setValidity(scope, ctrl, ctrl.$viewValue, scope[scope.model][log_password]); + setValidity(vmScope(), ctrl, ctrl.$viewValue, model()[log_password]); }else if(ctrl.$name == log_password && scope[logVerifyCtrl] != undefined) { - setValidity(scope, scope[logVerifyCtrl], ctrl.$viewValue, scope[scope.model][log_verify]); + setValidity(vmScope(), scope[logVerifyCtrl], ctrl.$viewValue, model()[log_verify]); } } }); ctrl.$parsers.push(function(value) { if (ctrl.$name == log_verify) { - setValidity(scope, ctrl, ctrl.$viewValue, scope[scope.model][log_password]); + setValidity(vmScope(), ctrl, ctrl.$viewValue, model()[log_password]); }else if(ctrl.$name == log_password && scope[logVerifyCtrl] != undefined) { - setValidity(scope, scope[logVerifyCtrl], ctrl.$viewValue, scope[scope.model][log_verify]); + setValidity(vmScope(), scope[logVerifyCtrl], ctrl.$viewValue, model()[log_verify]); } return value; }); @@ -37,3 +53,4 @@ ManageIQ.angular.app.directive('verifypasswd', function() { } } }); + diff --git a/app/assets/javascripts/miq_application.js b/app/assets/javascripts/miq_application.js index e51c80c3af6..fc3b2b287e2 100644 --- a/app/assets/javascripts/miq_application.js +++ b/app/assets/javascripts/miq_application.js @@ -1070,7 +1070,7 @@ function miq_tabs_init(id, url) { $(id + ' > ul.nav-tabs a[data-toggle="tab"]').on('shown.bs.tab', function (e) { // Refresh CodeMirror when its tab is toggled if ($($(e.target).attr('href')).hasClass('cm-tab') && typeof(ManageIQ.editor) != 'undefined') { - ManageIQ.editor.refresh(); + miq_refresh_code_mirror(); } }); @@ -1092,6 +1092,13 @@ function miq_tabs_init(id, url) { } } +// refresh multiple/single code mirror textboxes on screen +function miq_refresh_code_mirror() { + $('.CodeMirror').each(function(_i, el){ + el.CodeMirror.refresh(); + }); +} + function miq_tabs_disable_inactive(id) { $(id + ' ul.nav-tabs > li:not(.active)').addClass('disabled'); } @@ -1748,7 +1755,6 @@ function chartData(type, data, data2) { // some PatternFly default configs define size of chart config.size = {}; var ret = _.defaultsDeep({}, data, config, data2); - console.log(ret); return ret; } diff --git a/app/assets/stylesheets/icon_customizations.scss b/app/assets/stylesheets/icon_customizations.scss index ecff9cfab68..da7db6887cb 100644 --- a/app/assets/stylesheets/icon_customizations.scss +++ b/app/assets/stylesheets/icon_customizations.scss @@ -298,6 +298,9 @@ span[class^="product-"], span[class*=" product-"], // i & span tags prevent conf .product-field:before { content: "\e655"; } +.product-element:before { + content: "\e656"; +} /* define colors */ diff --git a/app/assets/stylesheets/metrics.scss b/app/assets/stylesheets/metrics.scss index fe93e6d056d..036a47b2eaf 100644 --- a/app/assets/stylesheets/metrics.scss +++ b/app/assets/stylesheets/metrics.scss @@ -2,13 +2,12 @@ overflow-x:hidden; .ad-hoc-toolbar { - margin-left: 10px; + margin-left: 10px; } .ad-hoc-tenant { margin-left: 5px; - - input { + input { display: inline; width: 190px; } @@ -17,27 +16,114 @@ vertical-align: top; margin-bottom: 10px; } + + .btn { + margin-left: 0; + } + } + + .form-group { + &.toolbar-pf-filter { + margin-bottom: 0; + } + + &.toolbar-actions.ng-scope { + margin-bottom: 0; + } } - .list-view-container, .line-chart, .blank-slate-pf { + .pagination { + display: flex; + float: right; + margin: 0; margin-bottom: 0; - min-height: calc(100vh - 362px); - margin-left: 20px; - margin-right: 20px; + } + + .pagination-div { + display: flex; + float: right; + margin: 0; + margin-bottom: 0; + .page-input { + width: 40px; + margin-left: 10px; + margin-right: 10px; + text-align: right; + } + } + + .graph-view { + overflow-x: hidden; + overflow-y: hidden; + .form-group.toolbar-actions.ng-scope { + margin-bottom: 10px; + } + + .dropdown-kebab-pf .dropdown-menu { + left: 0; + } + + .toolbar-pf-actions .dropdown-kebab-pf { + float: none; + margin-left: 10px; + } } .list-view-container { + min-height: calc(100vh - 362px); padding-top: 10px; + margin-bottom: 0; } .line-chart { + min-height: calc(100vh - 347px); margin-top: 36px; margin-left: 30px; margin-right: 50px; + margin-bottom: 0; + } + + .blank-slate-pf { + min-height: calc(100vh - 362px); + margin-bottom: 0; + } + + .list-view { + overflow-x: hidden; + overflow-y: hidden; + + .form-group { + &.toolbar-actions.ng-scope { + width: calc(100% - 425px); + } + } + + .dropdown-kebab-pf .dropdown-menu { + left: -5px; + } + + .toolbar-pf-actions .dropdown-kebab-pf { + float: none; + margin-left: 10px; + } + + .filter-pf.filter-fields .form-group { + width: 410px; + } + + .toolbar-pf .form-group { + .btn-group { + margin-left: 0; + } + + .btn { + margin-left: 0; + } + } } .timeline-date-input { - width: 250px; + width: 300px; } .list-group { @@ -47,4 +133,35 @@ .bootstrap-touchspin { text-align: center; } + + .tenant-filter-bar { + margin-left: 5px; + .dropdown-menu.open { + margin-top: -11px; + } + } + + .timeline-stepper { + margin-left: 5px; + } + + .toolbar-pf-include-actions.ng-scope { + width: 100%; + } + + .toolbar-pf-actions.ng-pristine.ng-valid.no-filter-results { + margin-bottom: 0; + } + + .btn.btn-default.dropdown-toggle.filter-fields { + min-width: 100px; + } + + .filters-selector .btn { + margin-left: 0; + } + + .tenants-selector .btn { + margin-left: 0; + } } diff --git a/app/assets/stylesheets/patternfly_overrides.scss b/app/assets/stylesheets/patternfly_overrides.scss index 5adb1a661b6..de96da5c182 100644 --- a/app/assets/stylesheets/patternfly_overrides.scss +++ b/app/assets/stylesheets/patternfly_overrides.scss @@ -101,8 +101,12 @@ li.brand-white-label.whitelabeled { /* Dashboard overrides */ -body#dashboard .container-cards-pf { - margin-top: 0; +body#dashboard .blank-slate-pf { + padding: 0 !important; +} + +.blank-slate-pf .pficon-warning-triangle-o:before { + color: #9c9c9c; } body#dashboard table { @@ -122,16 +126,6 @@ body#dashboard table td { border: none; } -body#dashboard .dropdown-kebab-pf .dropdown-menu { - left: -136px; - margin-top: 11px; -} - -body#dashboard .dropdown-kebab-pf .dropdown-menu:after, -body#dashboard .dropdown-kebab-pf .dropdown-menu:before { - left: 127px; -} - /* Login overrides */ .login-pf body { diff --git a/app/assets/stylesheets/template.scss b/app/assets/stylesheets/template.scss index 1dd185e33d0..045028a07f6 100644 --- a/app/assets/stylesheets/template.scss +++ b/app/assets/stylesheets/template.scss @@ -55,9 +55,12 @@ img.tiny { margin: 0; padding: 0;width:20px;height:20px; border: 0; vertical-ali .quadicon:hover{ padding: 1px 0 0 1px;} // adjust power state images for use in quad icon // -.b72 img[src*="currentstate"] { - clip-path: inset(0 0 2px 0 round 0 12px 0 0); - -webkit-clip-path: inset(0 0 2px 0 round 0 12px 0 0); +.b72 .stretch { + background-repeat: no-repeat; + width: 35px; + height: 32px; + margin: -3px 0 -2px 1px; + border-top-right-radius: 15px; } .b72 img[src*="archived"], .b72 img[src*="template"], .b72 img[src*="disconnected"], .b72 img[src*="orphaned"], .b72 img[src*="never"], img[src*="retired"], .b72 img[src*="unknown"] { diff --git a/app/controllers/ansible_credential_controller.rb b/app/controllers/ansible_credential_controller.rb index 0310e5a4b11..f6fafde672f 100644 --- a/app/controllers/ansible_credential_controller.rb +++ b/app/controllers/ansible_credential_controller.rb @@ -26,7 +26,7 @@ def display_repositories private def textual_group_list - [%i(properties relationships)] + [%i(properties relationships options)] end helper_method :textual_group_list end diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index a46c0931e9c..35c84b8d510 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -30,7 +30,7 @@ class ApplicationController < ActionController::Base include Mixins::TimeHelper include Mixins::MenuSection include Mixins::GenericToolbarMixin - + include Mixins::CustomButtons helper ToolbarHelper helper JsHelper helper QuadiconHelper @@ -192,7 +192,7 @@ def render_chart response.headers["Cache-Control"] = "cache, must-revalidate" response.headers["Pragma"] = "public" end - rpt.to_chart(settings(:display, :reporttheme), true, MiqReport.graph_options(params[:width], params[:height])) + rpt.to_chart(settings(:display, :reporttheme), true, MiqReport.graph_options) render Charting.render_format => rpt.chart end @@ -900,6 +900,8 @@ def view_to_hash(view) celltext = row[col].titleize when 'hardware.bitness' celltext = row[col] ? "#{row[col]} bit" : '' + when 'image?' + celltext = row[col] ? _("Image") : _("Snapshot") else # Use scheduled tz for formatting, if configured if ['miqschedule'].include?(view.db.downcase) @@ -1372,6 +1374,12 @@ def find_checked_items(prefix = nil) end end + def find_checked_items_with_rbac(klass, prefix = nil) + items = find_checked_items(prefix) + assert_rbac(current_user, klass, items) + items + end + # Common Saved Reports button handler routines def process_saved_reports(saved_reports, task) success_count = 0 diff --git a/app/controllers/application_controller/automate.rb b/app/controllers/application_controller/automate.rb index 012485c35a5..f706ca32335 100644 --- a/app/controllers/application_controller/automate.rb +++ b/app/controllers/application_controller/automate.rb @@ -142,11 +142,11 @@ def resolve def build_results options = { :vmdb_object => @sb[:obj], - :fqclass => @resolve[:new][:starting_object], - :message => @resolve[:new][:object_message] + :fqclass => @resolve[:new][:starting_object] } @resolve[:state_attributes] = {} if params[:button] == 'throw' automation_attrs = @sb[:attrs].reverse_merge(@resolve[:state_attributes]) + automation_attrs["message"] = @resolve[:new][:object_message] ws = MiqAeEngine.resolve_automation_object(@sb[:name], User.current_user, automation_attrs, diff --git a/app/controllers/application_controller/ci_processing.rb b/app/controllers/application_controller/ci_processing.rb index 7782e9b490d..8342f965076 100644 --- a/app/controllers/application_controller/ci_processing.rb +++ b/app/controllers/application_controller/ci_processing.rb @@ -44,6 +44,13 @@ def set_ownership if @explorer @sb[:explorer] = true ownership(ownership_items) + if @ownershipitems.empty? + add_flash(_('None of the selected items allow ownership changes'), :error) + + @refresh_div = "flash_msg_div" + @refresh_partial = "layouts/flash_msg" + return + end else if role_allows?(:feature => "vm_ownership") drop_breadcrumb(:name => _("Set Ownership"), :url => "/vm_common/ownership") @@ -53,6 +60,7 @@ def set_ownership end end end + alias_method :image_ownership, :set_ownership alias_method :instance_ownership, :set_ownership alias_method :vm_ownership, :set_ownership @@ -76,6 +84,7 @@ def ownership(ownership_items = []) drop_breadcrumb(:name => _("Set Ownership"), :url => "/vm_common/ownership") ownership_items = params[:rec_ids] if params[:rec_ids] build_ownership_info(ownership_items) + return if @ownershipitems.empty? build_targets_hash(@ownershipitems) if @sb[:explorer] @refresh_partial = "shared/views/ownership" @@ -99,8 +108,10 @@ def build_ownership_info(ownership_items) Rbac.filtered(MiqGroup.non_tenant_groups).each { |g| @groups[g.description] = g.id.to_s } @user = @group = DONT_CHANGE_OWNER if ownership_items.length > 1 - - @ownershipitems = klass.find(ownership_items).sort_by(&:name) + ownership_scope = klass.where(:id => ownership_items) + ownership_scope = ownership_scope.with_ownership if klass.respond_to?(:with_ownership) + @origin_ownership_items = ownership_items + @ownershipitems = ownership_scope.order(:name) @view = get_db_view(klass == VmOrTemplate ? Vm : klass) # Instantiate the MIQ Report view object @view.table = MiqFilter.records2table(@ownershipitems, @view.cols + ['id']) end @@ -116,11 +127,18 @@ def build_ownership_hash(ownership_items) @group = group ? group.id.to_s : nil Rbac.filtered(MiqGroup).each { |g| @groups[g.description] = g.id.to_s } @user = @group = DONT_CHANGE_OWNER if ownership_items.length > 1 - @ownershipitems = klass.find(ownership_items).sort_by(&:name) + @ownershipitems = Rbac.filtered(klass.where(:id => ownership_items).order(:name), :class => klass) + raise _('Invalid items passed') unless @ownershipitems.pluck(:id).to_set == ownership_items.map(&:to_i).to_set {:user => @user, :group => @group} end + def valid_items_for(klass, param_ids) + scope = klass.respond_to?(:with_ownership) ? klass.with_ownership : klass + checked_ids = Rbac.filtered(scope.where(:id => param_ids)).pluck(:id) + checked_ids.to_set == param_ids.to_set + end + def ownership_update case params[:button] when "cancel" @@ -151,7 +169,10 @@ def ownership_update end klass = get_class_from_controller_param(request.parameters[:controller]) - result = klass.set_ownership(params[:objectIds].map(&:to_i), opts) + param_ids = params[:objectIds].map(&:to_i) + raise _('Invalid items selected.') unless valid_items_for(klass, param_ids) + + result = klass.set_ownership(param_ids, opts) unless result == true result["missing_ids"].each { |msg| add_flash(msg, :error) } if result["missing_ids"] result["error_updating"].each { |msg| add_flash(msg, :error) } if result["error_updating"] @@ -187,7 +208,7 @@ def ownership_update # Retire 1 or more VMs def retirevms assert_privileges(params[:pressed]) - vms = find_checked_items + vms = find_checked_items_with_rbac(VmOrTemplate) if !%w(orchestration_stack service).include?(request.parameters["controller"]) && !%w(orchestration_stacks).include?(params[:display]) && VmOrTemplate.find(vms).any? { |vm| !vm.supports_retire? } add_flash(_("Set Retirement Date does not apply to selected %{model}") % @@ -1852,13 +1873,20 @@ def process_cloud_object_storage_buttons(pressed) end def cloud_object_store_button_operation(klass, task) - method = "#{task}_#{klass.name.underscore.to_sym}" - display_name = _(task.capitalize) + # Map to instance method name + case task + when "delete" + method = "#{task}_#{klass.name.underscore.to_sym}" + display_name = _(task.capitalize) + else + display_name = _(task.capitalize) + method = task = "#{klass.name.underscore.to_sym}_#{task}" + end items = [] # Either a list or coming from a different controller - if @lastaction == "show_list" || !%w(cloud_object_store_container).include?(request.parameters["controller"]) + if @lastaction == "show_list" || %w(cloud_object_store_containers cloud_object_store_objects).include?(@display) items = find_checked_items if items.empty? add_flash(_("No %{model} were selected for %{task}") % @@ -1892,9 +1920,11 @@ def get_rec_cls when "service" return Service when "cloud_object_store_container" - CloudObjectStoreContainer + params[:pressed].starts_with?("cloud_object_store_object") ? CloudObjectStoreObject : CloudObjectStoreContainer + when "cloud_object_store_object" + CloudObjectStoreObject when "ems_storage" - CloudObjectStoreContainer + params[:pressed].starts_with?("cloud_object_store_object") ? CloudObjectStoreObject : CloudObjectStoreContainer else return VmOrTemplate end @@ -1914,6 +1944,9 @@ def process_objects(objs, task, display_name = nil) when "CloudObjectStoreContainer" objs, _objs_out_reg = filter_ids_in_region(objs, "CloudObjectStoreContainer") klass = CloudObjectStoreContainer + when "CloudObjectStoreObject" + objs, _objs_out_reg = filter_ids_in_region(objs, "CloudObjectStoreObject") + klass = CloudObjectStoreObject end assert_rbac(current_user, get_rec_cls, objs) diff --git a/app/controllers/application_controller/compare.rb b/app/controllers/application_controller/compare.rb index 83fc1e351b0..54b6b168d9d 100644 --- a/app/controllers/application_controller/compare.rb +++ b/app/controllers/application_controller/compare.rb @@ -737,7 +737,6 @@ def create_compare_or_drift_report(mode, csv = false) # Initialize the VM compare array def compare_init(mode) @compare = nil # Clear the compare array to have it rebuilt - @base = nil # Clear the base comparison VM if mode == "compare" session[:miq_compressed] = (settings(:views, :compare) == "compressed") session[:miq_exists_mode] = (settings(:views, :compare_mode) == "exists") @@ -749,74 +748,6 @@ def compare_init(mode) @exists_mode = session[:miq_exists_mode] end - # Set a given VM id as the base vm for compare - def compare_set_base(baseid) - @compare.results[1..-1].each do |c| - if c[:object].id == baseid - @base = c - break - end - end - - compare_matches # Go calc match %s against the new base - end - - # Calculate the value matches in each compare section - def compare_matches - @compare.results.each_with_index do |r, idx| # Go thru each VM result - if idx != 0 - all_total = 0; all_matches = 0 - session[:miq_sections].each do |s| # Go thru each section - section = s[:name] - if s[:added] == true # Only if section has data - count = 0 - r[:results][s[:name]].each_with_index do |val, val_idx| # Go thru each value - count += 1 if val == @base[:results][s[:name]][val_idx] # count matches between the value and the base value - end - if r[:results][s[:name]].length > 0 - r[:results][s[:name] + "_match"] = (count * 100) / r[:results][s[:name]].length # Set the percent of matches for the VM to the base - if s[:checked] == true # Only if section is currently checked - all_matches += count # Add count to the total matches - all_total += r[:results][s[:name]].length # Add total to the grand total - end - else - r[:results][s[:name] + "_match"] = 0 - end - end - end - r[:results]["all_match"] = all_total == 0 ? 0 : all_matches * 100 / all_total # Calculate the total matches percent - end - end - end - - # Calculate the value matches in each drift section - def drift_matches - @compare.results.each_with_index do |r, idx| # Go thru each VM result - if idx > 1 # Skip master list and first timestamp - all_match = true - prev = "" - session[:miq_sections].each do |s| # Go thru each section - section = s[:name] - match = true - if s[:added] == true # Only if section has data - r[:results][s[:name]].each_with_index do |val, val_idx| # Go thru each value - if val != @compare.results[idx - 1][:results][s[:name]][val_idx] # Compare to previous timestamp entry - match = false # Doesn't match, set it and - break # move on to the next section - end - end - r[:results][s[:name] + "_match"] = match # Set section match = true or false - if s[:checked] == true # Only if section is currently checked - all_match = match && all_match # Set all_match - end - end - end - r[:results]["all_match"] = all_match # Set all match value in the object - end - end - end - ####### End of compare & drift related methods - # Compare selected VMs def comparemiq assert_privileges(params[:pressed]) @@ -1468,7 +1399,7 @@ def comp_add_footer(view) title = _("Remove this %{title} from the comparison") % {:title => session[:db_title].singularize} onclick = "miqJqueryRequest('#{url}', {beforeSend: true, complete: true}); return false;" html_text = ViewHelper.content_tag(:button, :class => 'btn btn-default', :onclick => onclick) do - ViewHelper.tag(:i, :class => 'pficon pficon-delete', :title => title, :alt => title) + ViewHelper.content_tag(:i, '', :class => 'pficon pficon-delete', :title => title, :alt => title) end row.merge!("col#{idx + 1}".to_sym => html_text) end diff --git a/app/controllers/application_controller/filter.rb b/app/controllers/application_controller/filter.rb index e80c9c011f5..969f4d962a7 100644 --- a/app/controllers/application_controller/filter.rb +++ b/app/controllers/application_controller/filter.rb @@ -1,7 +1,7 @@ # Filter/search/expression methods included in application.rb module ApplicationController::Filter extend ActiveSupport::Concern - include MiqExpression::FilterSubstMixin + include SubstMixin include ApplicationController::ExpressionHtml # Handle buttons pressed in the expression editor diff --git a/app/controllers/application_controller/filter/expression.rb b/app/controllers/application_controller/filter/expression.rb index b14f3bd7b70..19b47e65bc7 100644 --- a/app/controllers/application_controller/filter/expression.rb +++ b/app/controllers/application_controller/filter/expression.rb @@ -41,7 +41,7 @@ def initialize(*args) end def drop_cache - @available_adv_searches = nil + @available_adv_searches = @available_tags = nil end def exp_available_cfields # fields on exp_model for check_all, check_any, and check_count operation @@ -56,10 +56,10 @@ def tags_for_display_filters if exp_model == '_display_filter_' exp_available_tags else - self.available_tags ||= MiqExpression.model_details(exp_model, :typ => "tag", - :include_model => true, - :include_my_tags => use_mytags, - :userid => User.current_user.userid) + @available_tags ||= MiqExpression.model_details(exp_model, :typ => 'tag', + :include_model => true, + :include_my_tags => use_mytags, + :userid => User.current_user.userid) end end diff --git a/app/controllers/application_controller/filter/subst_mixin.rb b/app/controllers/application_controller/filter/subst_mixin.rb new file mode 100644 index 00000000000..81e40b7da44 --- /dev/null +++ b/app/controllers/application_controller/filter/subst_mixin.rb @@ -0,0 +1,112 @@ +module ApplicationController::Filter::SubstMixin + include ActiveSupport::Concern + # Build an array of expression symbols by recursively traversing the MiqExpression object + # and inserting sequential tokens for each expression part + def exp_build_table(exp, quick_search = false) + exp_table = [] + if exp["and"] + exp_table.push("(") + exp["and"].each do |e| + exp_table += exp_build_table(e, quick_search) + exp_table.push("AND") unless e == exp["and"].last + end + exp_table.push(")") + elsif exp["or"] + exp_table.push("(") + exp["or"].each do |e| + exp_table += exp_build_table(e, quick_search) + exp_table.push("OR") unless e == exp["or"].last + end + exp_table.push(")") + elsif exp["not"] + @exp_token ||= 0 + @exp_token += 1 + exp[:token] = @exp_token + exp_table.push(quick_search ? "NOT" : ["NOT", @exp_token]) # No token if building quick search exp + exp_table.push("(") unless %w(and or).include?(exp["not"].keys.first) # No parens if and/or under me + exp_table += exp_build_table(exp["not"], quick_search) + exp_table.push(")") unless %w(and or).include?(exp["not"].keys.first) # No parens if and/or under me + else + @exp_token ||= 0 + @exp_token += 1 + exp[:token] = @exp_token + if exp["???"] # Found a new expression part + exp_table.push(["???", @exp_token]) + exp_context[@expkey][:exp_token] = @exp_token # Save the token value for the view + exp_context[:edit_exp] = copy_hash(exp) # Save the exp part for the view + exp_context[@expkey].update_from_exp_tree(exp_context[:edit_exp]) # Set the fields for a new exp part + elsif quick_search # Separate out the user input fields if doing a quick search + human_exp = MiqExpression.to_human(exp) + if human_exp.include?("") + exp_table.push(human_exp.split("").join("")) + exp_table.push([:user_input, @exp_token]) + else + exp_table.push(human_exp) + end + else # Not quick search, add token to the expression + exp_table.push([MiqExpression.to_human(exp), @exp_token]) + end + end + exp_table + end + + # Go thru an expression and replace the quick search tokens + def exp_replace_qs_tokens(exp, tokens) + key = exp.keys.first + if %w(and or).include?(key) + exp[key].each { |e| exp_replace_qs_tokens(e, tokens) } + elsif key == "not" + exp_replace_qs_tokens(exp[key], tokens) + elsif exp.key?(:token) && exp[key].key?("value") + token = exp[:token] + if tokens[token] # Only atoms included in tokens will have user input + value = tokens[token][:value] # Get the user typed value + if tokens[token][:value_type] == :bytes + value += ".#{tokens[token][:suffix] || "bytes"}" # For :bytes type, add in the suffix + end + exp[key]["value"] = value # Replace the exp value with the proper qs value + end + end + end + + # Find an expression atom based on the token + def exp_find_by_token(exp, token, parent_is_not = false) + if exp.kind_of?(Array) # Is this and AND or OR + exp.find { |e| exp_find_by_token(e, token) } # Look for token + elsif exp[:token] && exp[:token] == token # This is the token exp + @parent_is_not = true if parent_is_not # Remember that token exp's parent is a NOT + exp # return it + elsif exp["not"] + exp_find_by_token(exp["not"], token, true) # Look for token under NOT (indicate we are a NOT) + elsif exp["and"] + exp_find_by_token(exp["and"], token) # Look for token under AND + elsif exp["or"] + exp_find_by_token(exp["or"], token) # Look for token under OR + end + end + + # Create a hash to store quick search information by token + # and add in other quick search exp atom information. + def create_tokens(exp_table, orig_exp) + exp_table.select { |e| e.kind_of?(Array) }.each_with_object({}) do |e, acc| + token = e.last + acc[token] = {:value => nil} + exp = exp_find_by_token(orig_exp, token) + first_exp = exp[exp.keys.first] + + if first_exp.key?("field") # Base token settings on exp type + field = exp[exp.keys.first]["field"] + acc[token][:field] = field + acc[token][:value_type] = MiqExpression.get_col_info(field)[:format_sub_type] + elsif first_exp.key?("tag") + acc[token][:tag] = first_exp["tag"] + elsif first_exp.key?("count") + acc[token][:count] = first_exp["count"] + end + end + end + + def exp_context + @edit + end +end diff --git a/app/controllers/application_controller/miq_request_methods.rb b/app/controllers/application_controller/miq_request_methods.rb index edfa7ddd3ee..04e680b3a3d 100644 --- a/app/controllers/application_controller/miq_request_methods.rb +++ b/app/controllers/application_controller/miq_request_methods.rb @@ -415,7 +415,10 @@ def build_vm_grid(vms, sort_order = nil, sort_by = nil, filter_by = nil) } # add tenant column header to cloud workflows only - headers["cloud_tenant"] = "Tenant" if vms.any? { |vm| vm.respond_to?(:cloud_tenant) } + headers["cloud_tenant"] = _("Tenant") if vms.any? { |vm| vm.respond_to?(:cloud_tenant) } + # add snapshot/image column header to cloud workflows only, since they're + # currently the only ones that support the field. + headers["image?"] = _("Type") if vms.any? { |vm| vm.respond_to?(:image?) } integer_fields = %w(allocated_disk_storage mem_cpu logical_cpus v_total_snapshots) diff --git a/app/controllers/application_controller/performance.rb b/app/controllers/application_controller/performance.rb index 31f62a92a35..5769c61918c 100644 --- a/app/controllers/application_controller/performance.rb +++ b/app/controllers/application_controller/performance.rb @@ -7,17 +7,14 @@ def perf_chart_chooser @record = identify_tl_or_perf_record @perf_record = @record.kind_of?(MiqServer) ? @record.vm : @record # Use related server vm record - unless params[:task_id] # First time thru, gather options changed by the user + unless params[:task_id] # first time thru, gather options changed by the user @perf_options.update_from_params(params) + perf_set_or_fix_dates(!params[:perf_typ]) if @perf_options[:chart_type] == :performance end - case @perf_options[:chart_type] - when :performance - perf_set_or_fix_dates(@perf_options, !params[:perf_typ]) unless params[:task_id] # Set dates if first time thru - unless @no_util_data - perf_gen_data # Go generate the task - return unless @charts # Return if no charts got created (first time thru async rpt gen) - end + if !@no_util_data && @perf_options[:chart_type] == :performance + perf_gen_data # generate the task + return unless @charts # no charts got created (first time thru async rpt gen) end if @perf_options[:no_rollups] @@ -120,33 +117,24 @@ def perf_top_chart end end - # Send the current chart report data in text, CSV, or PDF - def perf_download - report = @sb[:chart_reports].class == Array ? @sb[:chart_reports].first : @sb[:chart_reports] # Get the first or only report - report = perf_remove_report_cols(report) # Remove cols that are not in the current chart - filename = @breadcrumbs.last[:name] + " - " + report.title - disable_client_cache - case params[:typ] - when "txt" - send_data(report.to_text, - :filename => "#{filename}.txt") - when "csv" - send_data(report.to_csv, - :filename => "#{filename}.csv") - end - end - private ############################ def perf_breadcrumb name = @perf_record.respond_to?(:evm_display_name) ? @perf_record.evm_display_name : @perf_record.name + url = url_for_only_path(:action => "show", + :id => @perf_record, + :display => "performance", + :refresh => "n") if @perf_options.cat drop_breadcrumb(:name => _("%{name} Capacity & Utilization (by %{option}:%{model})") % - {:name => name, :option => @perf_options.cats[@perf_options.cat_model], :model => @perf_options.cat}, - :url => url_for_only_path(:action => "show", :id => @perf_record, :display => "performance", :refresh => "n")) + {:name => name, + :option => @perf_options.cats[@perf_options.cat_model], + :model => @perf_options.cat}, + :url => url) else - drop_breadcrumb(:name => _("%{name} Capacity & Utilization") % {:name => name}, - :url => url_for_only_path(:action => "show", :id => @perf_record, :display => "performance", :refresh => "n")) + drop_breadcrumb(:name => _("%{name} Capacity & Utilization") % + {:name => name}, + :url => url) end end @@ -160,20 +148,18 @@ def perf_refresh_data end # Correct any date that is out of the date/range or not allowed in a profile - def perf_set_or_fix_dates(options, allow_interval_override = true) - # Get start/end dates in selected timezone - s, e = @perf_record.first_and_last_capture('hourly') - if s.nil? - s, e = @perf_record.first_and_last_capture('realtime') - if s.nil? - add_flash(_("No Utilization data available"), :warning) - @no_util_data = true - return - end - options[:typ] = "realtime" - options[:no_rollups] = true + def perf_set_or_fix_dates(allow_interval_override = true) + start_date, end_date = @perf_record.first_and_last_capture('hourly') + start_date, end_date = @perf_record.first_and_last_capture('realtime') if realtime = start_date.nil? + if start_date.nil? && realtime + add_flash(_("No Utilization data available"), :warning) + @no_util_data = true + return + elsif realtime + @perf_options[:typ] = "realtime" + @perf_options[:no_rollups] = true end - @perf_options.set_dates(s, e, allow_interval_override) + @perf_options.set_dates(start_date, end_date, allow_interval_override) end def skip_days_from_time_profile(time_profile_days) @@ -197,274 +183,326 @@ def perf_menu_click # Use timestamp or statistic_time (metrics vs ontap) ts = (data_row["timestamp"] || data_row["statistic_time"]).in_time_zone(@perf_options[:tz]) # Grab the timestamp from the row in selected tz - if cmd == "Display" && model == "Current" && typ == "Top" # Display the CI selected from a Top chart - return unless perf_menu_record_valid(data_row["resource_type"], data_row["resource_id"], data_row["resource_name"]) - javascript_redirect :controller => data_row["resource_type"].underscore, - :action => "show", - :id => data_row["resource_id"], - :escape => false + if cmd == "Display" && model == "Current" && typ == "Top" + display_current_top(data_row) return + elsif cmd == "Display" && typ == "bytag" + return if display_by_tag(data_row, report, ts, bc_model, model, legend_idx) + elsif cmd == "Display" + return if display_selected(ts, typ, data_row, model, bc_model) + elsif cmd == "Timeline" && model == "Current" + return if timeline_current(typ, ts) + elsif cmd == "Timeline" && model == "Selected" + return if timeline_selected(data_row, ts, typ, model) + elsif cmd == "Chart" && model == "Current" && typ == "Hourly" + return if chart_current_hourly(ts) + elsif cmd == "Chart" && model == "Current" && typ == "Daily" + return if chart_current_daily + elsif cmd == "Chart" && model == "Selected" + return if chart_selected(data_row, typ, ts) + elsif cmd == "Chart" && typ.starts_with?("top") && @perf_options[:cat] + return if chart_top_by_tag(data_row, report, legend_idx, model, ts, bc_model) + elsif cmd == "Chart" && typ.starts_with?("top") + return if chart_top(data_row, typ, ts, model, bc_model) + else + @menu_click_msg = _("Chart menu selection not yet implemented") + end - elsif cmd == "Display" && typ == "bytag" # Display selected resources from a tag chart - dt = @perf_options[:typ] == "Hourly" ? "on #{ts.to_date} at #{ts.strftime("%H:%M:%S %Z")}" : "on #{ts.to_date}" - top_ids = data_row["assoc_ids_#{report.extras[:group_by_tags][legend_idx]}"][model.downcase.to_sym][:on] - bc_tag = "#{Classification.find_by_name(@perf_options[:cat]).description}:#{report.extras[:group_by_tag_descriptions][legend_idx]}" - dt = typ == "tophour" ? "on #{ts.to_date} at #{ts.strftime("%H:%M:%S %Z")}" : "on #{ts.to_date}" - if top_ids.blank? - msg = _("No %{tag} %{model} were running %{time}") % {:tag => bc_tag, :model => bc_model, :time => dt} - else - bc = if request.parameters["controller"] == "storage" - "#{bc_model} (#{bc_tag} #{dt})" - else - _("%{model} (%{tag} running %{time})") % {:tag => bc_tag, :model => bc_model, :time => dt} - end - javascript_redirect :controller => model.downcase.singularize, - :action => "show_list", - :menu_click => params[:menu_click], - :sb_controller => request.parameters["controller"], - :bc => bc, - :escape => false - return - end + if @menu_click_msg.present? + add_flash(@menu_click_msg, :warning) + else + add_flash(_("Unknown error has occurred"), :error) + end + + javascript_flash(:spinner_off => true) + end + + # display the CI selected from a Top chart + def display_current_top(data_row) + return unless perf_menu_record_valid(data_row["resource_type"], data_row["resource_id"], data_row["resource_name"]) + javascript_redirect :controller => data_row["resource_type"].underscore, + :action => "show", + :id => data_row["resource_id"], + :escape => false + end + + # display selected resources from a tag chart + def display_by_tag(data_row, report, ts, bc_model, model, legend_idx) + dt = @perf_options[:typ] == "Hourly" ? "on #{ts.to_date} at #{ts.strftime("%H:%M:%S %Z")}" : "on #{ts.to_date}" + top_ids = data_row["assoc_ids_#{report.extras[:group_by_tags][legend_idx]}"][model.downcase.to_sym][:on] + bc_tag = "#{Classification.find_by_name(@perf_options[:cat]).description}:#{report.extras[:group_by_tag_descriptions][legend_idx]}" + dt = typ == "tophour" ? "on #{ts.to_date} at #{ts.strftime("%H:%M:%S %Z")}" : "on #{ts.to_date}" + if top_ids.blank? + @menu_click_msg = _("No %{tag} %{model} were running %{time}") % {:tag => bc_tag, :model => bc_model, :time => dt} + else + bc = if request.parameters["controller"] == "storage" + "#{bc_model} (#{bc_tag} #{dt})" + else + _("%{model} (%{tag} running %{time})") % {:tag => bc_tag, :model => bc_model, :time => dt} + end + javascript_redirect :controller => model.downcase.singularize, + :action => "show_list", + :menu_click => params[:menu_click], + :sb_controller => request.parameters["controller"], + :bc => bc, + :escape => false + return true + end + false + end + + # display selected resources + def display_selected(ts, typ, data_row, model, bc_model) + dt = @perf_options[:typ] == "Hourly" ? "on #{ts.to_date} at #{ts.strftime("%H:%M:%S %Z")}" : "on #{ts.to_date}" + state = typ == "on" ? _("running") : _("stopped") + if data_row["assoc_ids"][model.downcase.to_sym][typ.to_sym].blank? + @menu_click_msg = _("No %{model} were %{state} %{time}") % {:model => model, :state => state, :time => dt} + else + bc = request.parameters["controller"] == "storage" ? "#{bc_model} #{dt}" : "#{bc_model} #{state} #{dt}" + javascript_redirect :controller => model.downcase.singularize, + :action => "show_list", + :menu_click => params[:menu_click], + :sb_controller => request.parameters["controller"], + :bc => bc, + :escape => false + return true + end + false + end - elsif cmd == "Display" # Display selected resources - dt = @perf_options[:typ] == "Hourly" ? "on #{ts.to_date} at #{ts.strftime("%H:%M:%S %Z")}" : "on #{ts.to_date}" - state = typ == "on" ? _("running") : _("stopped") - if data_row["assoc_ids"][model.downcase.to_sym][typ.to_sym].blank? - msg = _("No %{model} were %{state} %{time}") % {:model => model, :state => state, :time => dt} + # display timeline for the current CI + def timeline_current(typ, ts) + @record = identify_tl_or_perf_record + @perf_record = @record.kind_of?(MiqServer) ? @record.vm : @record # Use related server vm record + @perf_record = VmOrTemplate.find_by_id(@perf_options[:compare_vm]) unless @perf_options[:compare_vm].nil? + new_opts = tl_session_data(request.parameters["controller"]) || ApplicationController::Timelines::Options.new + new_opts[:model] = @perf_record.class.base_class.to_s + dt = typ == "Hourly" ? "on #{ts.to_date} at #{ts.strftime("%H:%M:%S %Z")}" : "on #{ts.to_date}" + new_opts.date.typ = typ + new_opts.date.daily = @perf_options[:daily_date] if typ == "Daily" + new_opts.date.hourly = [ts.month, ts.day, ts.year].join("/") if typ == "Hourly" + new_opts[:tl_show] = "timeline" + set_tl_session_data(new_opts, request.parameters["controller"]) + f = @perf_record.first_event + if f.nil? + @menu_click_msg = if new_opts[:model] == "EmsCluster" + _("No events available for this Cluster") + else + _("No events available for this %{model}") % {:model => new_opts[:model]} + end + elsif @record.kind_of?(MiqServer) # For server charts in OPS + change_tab("diagnostics_timelines") # Switch to the Timelines tab + return true + else + if @explorer + @_params[:id] = @perf_record.id + @_params[:refresh] = "n" + show_timeline else - bc = request.parameters["controller"] == "storage" ? "#{bc_model} #{dt}" : "#{bc_model} #{state} #{dt}" - javascript_redirect :controller => model.downcase.singularize, - :action => "show_list", - :menu_click => params[:menu_click], - :sb_controller => request.parameters["controller"], - :bc => bc, - :escape => false - return + javascript_redirect :id => @perf_record.id, + :action => "show", + :display => "timeline", + :controller => model_to_controller(@perf_record), + :refresh => "n", + :escape => false end + return true + end + false + end - elsif cmd == "Timeline" && model == "Current" # Display timeline for the current CI - @record = identify_tl_or_perf_record - @perf_record = @record.kind_of?(MiqServer) ? @record.vm : @record # Use related server vm record - @perf_record = VmOrTemplate.find_by_id(@perf_options[:compare_vm]) unless @perf_options[:compare_vm].nil? - new_opts = tl_session_data(request.parameters["controller"]) || ApplicationController::Timelines::Options.new - new_opts[:model] = @perf_record.class.base_class.to_s - dt = typ == "Hourly" ? "on #{ts.to_date} at #{ts.strftime("%H:%M:%S %Z")}" : "on #{ts.to_date}" - new_opts.date.typ = typ - new_opts.date.daily = @perf_options[:daily_date] if typ == "Daily" - new_opts.date.hourly = [ts.month, ts.day, ts.year].join("/") if typ == "Hourly" - new_opts[:tl_show] = "timeline" - set_tl_session_data(new_opts, request.parameters["controller"]) - f = @perf_record.first_event - if f.nil? - msg = if new_opts[:model] == "EmsCluster" - _("No events available for this Cluster") - else - _("No events available for this %{model}") % {:model => new_opts[:model]} - end - elsif @record.kind_of?(MiqServer) # For server charts in OPS - change_tab("diagnostics_timelines") # Switch to the Timelines tab - return + # display timeline for the selected CI + def timeline_selected(data_row, ts, typ, model) + return true unless @record = perf_menu_record_valid(data_row["resource_type"], data_row["resource_id"], data_row["resource_name"]) + controller = data_row["resource_type"].underscore + new_opts = tl_session_data(controller) || ApplicationController::Timelines::Options.new + new_opts[:model] = data_row["resource_type"] + dt = typ == "Hourly" ? "on #{ts.to_date} at #{ts.strftime("%H:%M:%S %Z")}" : "on #{ts.to_date}" + new_opts.date.typ = typ + new_opts.date.daily = @perf_options[:daily_date] if typ == "Daily" + new_opts.date.hourly = [ts.month, ts.day, ts.year].join("/") if typ == "Hourly" + new_opts[:tl_show] = "timeline" + set_tl_session_data(new_opts, controller) + f = @record.first_event + if f.nil? + @menu_click_msg = if model == "EmsCluster" + _("No events available for this Cluster") + else + _("No events available for this %{model}") % {:model => model} + end + elsif @record.kind_of?(MiqServer) # For server charts in OPS + change_tab("diagnostics_timelines") # Switch to the Timelines tab + return true + else + if @explorer + @_params[:id] = data_row["resource_id"] + @_params[:refresh] = "n" + show_timeline else - if @explorer - @_params[:id] = @perf_record.id - @_params[:refresh] = "n" - show_timeline + if data_row["resource_type"] == "VmOrTemplate" + tree_node_id = TreeBuilder.build_node_id(@record.class.base_model, @record.id) + session[:exp_parms] = {:display => "timeline", :refresh => "n", :id => tree_node_id} + javascript_redirect :controller => data_row["resource_type"].underscore.downcase.singularize, + :action => "explorer" else - javascript_redirect :id => @perf_record.id, + javascript_redirect :controller => data_row["resource_type"].underscore.downcase.singularize, :action => "show", :display => "timeline", - :controller => model_to_controller(@perf_record), + :id => data_row["resource_id"], :refresh => "n", :escape => false end - return - end - - elsif cmd == "Timeline" && model == "Selected" # Display timeline for the selected CI - return unless @record = perf_menu_record_valid(data_row["resource_type"], data_row["resource_id"], data_row["resource_name"]) - controller = data_row["resource_type"].underscore - new_opts = tl_session_data(controller) || ApplicationController::Timelines::Options.new - new_opts[:model] = data_row["resource_type"] - dt = typ == "Hourly" ? "on #{ts.to_date} at #{ts.strftime("%H:%M:%S %Z")}" : "on #{ts.to_date}" - new_opts.date.typ = typ - new_opts.date.daily = @perf_options[:daily_date] if typ == "Daily" - new_opts.date.hourly = [ts.month, ts.day, ts.year].join("/") if typ == "Hourly" - new_opts[:tl_show] = "timeline" - set_tl_session_data(new_opts, controller) - f = @record.first_event - if f.nil? - msg = if model == "EmsCluster" - _("No events available for this Cluster") - else - _("No events available for this %{model}") % {:model => model} - end - elsif @record.kind_of?(MiqServer) # For server charts in OPS - change_tab("diagnostics_timelines") # Switch to the Timelines tab - return - else - if @explorer - @_params[:id] = data_row["resource_id"] - @_params[:refresh] = "n" - show_timeline - else - if data_row["resource_type"] == "VmOrTemplate" - tree_node_id = TreeBuilder.build_node_id(@record.class.base_model, @record.id) - session[:exp_parms] = {:display => "timeline", :refresh => "n", :id => tree_node_id} - javascript_redirect :controller => data_row["resource_type"].underscore.downcase.singularize, - :action => "explorer" - else - javascript_redirect :controller => data_row["resource_type"].underscore.downcase.singularize, - :action => "show", - :display => "timeline", - :id => data_row["resource_id"], - :refresh => "n", - :escape => false - end - end - return end + return true + end + false + end - elsif cmd == "Chart" && model == "Current" && typ == "Hourly" # Create hourly chart for selected day - @record = identify_tl_or_perf_record - @perf_record = @record.kind_of?(MiqServer) ? @record.vm : @record # Use related server vm record - @perf_options[:typ] = "Hourly" - @perf_options[:hourly_date] = [ts.month, ts.day, ts.year].join("/") - - perf_set_or_fix_dates(@perf_options) unless params[:task_id] # Set dates if first time thru - perf_gen_data + # create hourly chart for selected day + def chart_current_hourly(ts) + @record = identify_tl_or_perf_record + @perf_record = @record.kind_of?(MiqServer) ? @record.vm : @record # Use related server vm record + @perf_options[:typ] = "Hourly" + @perf_options[:hourly_date] = [ts.month, ts.day, ts.year].join("/") - return unless @charts # Return if no charts got created (first time thru async rpt gen) + perf_set_or_fix_dates unless params[:task_id] # Set dates if first time thru + perf_gen_data - render :update do |page| - page << javascript_prologue - if @parent_chart_data - page << 'ManageIQ.charts.chartData = ' + { - "candu" => @chart_data, - "parent" => @parent_chart_data - }.to_json + ';' - elsif @parent_chart_data - page << 'ManageIQ.charts.chartData = ' + { - "candu" => @chart_data, - "compare_vm" => @compare_vm_chart_data - }.to_json + ';' - else - page << 'ManageIQ.charts.chartData = ' + { - "candu" => @chart_data - }.to_json + ';' - end - page.replace("perf_options_div", :partial => "layouts/perf_options") - page.replace("candu_charts_div", :partial => "layouts/perf_charts", :locals => {:chart_data => @chart_data, :chart_set => "candu"}) - page << js_build_calendar(@perf_options.to_calendar) - page << Charting.js_load_statement - page << 'miqSparkle(false);' - end - return + return true unless @charts # Return if no charts got created (first time thru async rpt gen) - elsif cmd == "Chart" && model == "Current" && typ == "Daily" # Go back to the daily chart - @record = identify_tl_or_perf_record - @perf_record = @record.kind_of?(MiqServer) ? @record.vm : @record # Use related server vm record - @perf_options[:typ] = "Daily" - perf_set_or_fix_dates(@perf_options, false) unless params[:task_id] # Set dates if first time thru - perf_gen_data - return unless @charts # Return if no charts got created (first time thru async rpt gen) - - render :update do |page| - page << javascript_prologue - if @parent_chart_data - page << 'ManageIQ.charts.chartData = ' + { - "candu" => @chart_data, - "parent" => @parent_chart_data - }.to_json + ';' - else - page << 'ManageIQ.charts.chartData = ' + { - "candu" => @chart_data - }.to_json + ';' - end - page.replace("perf_options_div", :partial => "layouts/perf_options") - page.replace("candu_charts_div", :partial => "layouts/perf_charts", :locals => {:chart_data => @chart_data, :chart_set => "candu"}) - page << js_build_calendar(@perf_options.to_calendar) - page << Charting.js_load_statement - page << 'miqSparkle(false);' - end - return - - elsif cmd == "Chart" && model == "Selected" # Create daily/hourly chart for selected CI - return unless @record = perf_menu_record_valid(data_row["resource_type"], data_row["resource_id"], data_row["resource_name"]) - # Set the perf options in the selected controller's sandbox - cont = data_row["resource_type"].underscore.downcase.to_sym - session[:sandboxes][cont] ||= {} - session[:sandboxes][cont][:perf_options] ||= Options.new - - # Copy general items from the current perf_options - session[:sandboxes][cont][:perf_options][:index] = @perf_options[:index] - session[:sandboxes][cont][:perf_options][:tz] = @perf_options[:tz] - session[:sandboxes][cont][:perf_options][:time_profile] = @perf_options[:time_profile] - session[:sandboxes][cont][:perf_options][:time_profile_days] = @perf_options[:time_profile_days] - session[:sandboxes][cont][:perf_options][:time_profile_tz] = @perf_options[:time_profile_tz] - - # Set new perf options based on what was selected - session[:sandboxes][cont][:perf_options][:model] = data_row["resource_type"] - session[:sandboxes][cont][:perf_options][:typ] = typ - session[:sandboxes][cont][:perf_options][:daily_date] = @perf_options[:daily_date] if typ == "Daily" - session[:sandboxes][cont][:perf_options][:days] = @perf_options[:days] if typ == "Daily" - session[:sandboxes][cont][:perf_options][:hourly_date] = [ts.month, ts.day, ts.year].join("/") if typ == "Hourly" - - if data_row["resource_type"] == "VmOrTemplate" - prefix = TreeBuilder.get_prefix_for_model(@record.class.base_model) - tree_node_id = "#{prefix}-#{@record.id}" # Build the tree node id - session[:exp_parms] = {:display => "performance", :refresh => "n", :id => tree_node_id} - javascript_redirect :controller => data_row["resource_type"].underscore.downcase.singularize, - :action => "explorer" + render :update do |page| + page << javascript_prologue + if @parent_chart_data + page << 'ManageIQ.charts.chartData = ' + { + "candu" => @chart_data, + "parent" => @parent_chart_data + }.to_json + ';' + elsif @parent_chart_data + page << 'ManageIQ.charts.chartData = ' + { + "candu" => @chart_data, + "compare_vm" => @compare_vm_chart_data + }.to_json + ';' else - javascript_redirect :controller => data_row["resource_type"].underscore.downcase.singularize, - :action => "show", - :id => data_row["resource_id"], - :display => "performance", - :refresh => "n", - :escape => false + page << 'ManageIQ.charts.chartData = ' + { + "candu" => @chart_data + }.to_json + ';' end - return + page.replace("perf_options_div", :partial => "layouts/perf_options") + page.replace("candu_charts_div", :partial => "layouts/perf_charts", :locals => {:chart_data => @chart_data, :chart_set => "candu"}) + page << js_build_calendar(@perf_options.to_calendar) + page << Charting.js_load_statement + page << 'miqSparkle(false);' + end + true + end - elsif cmd == "Chart" && typ.starts_with?("top") && @perf_options[:cat] # Create top chart for selected timestamp/model by tag - @record = identify_tl_or_perf_record - @perf_record = @record.kind_of?(MiqServer) ? @record.vm : @record # Use related server vm record - top_ids = data_row["assoc_ids_#{report.extras[:group_by_tags][legend_idx]}"][model.downcase.to_sym][:on] - bc_tag = "#{Classification.find_by_name(@perf_options[:cat]).description}:#{report.extras[:group_by_tag_descriptions][legend_idx]}" - dt = typ == "tophour" ? "on #{ts.to_date} at #{ts.strftime("%H:%M:%S %Z")}" : "on #{ts.to_date}" - if top_ids.blank? - msg = "No #{bc_tag} #{bc_model} were running #{dt}" - else - javascript_redirect :id => @perf_record.id, - :action => "perf_top_chart", - :menu_choice => params[:menu_click], - :bc => "#{@perf_record.name} top #{bc_model} (#{bc_tag} #{dt})", - :escape => false - return - end + # go back to the daily chart + def chart_current_daily + @record = identify_tl_or_perf_record + @perf_record = @record.kind_of?(MiqServer) ? @record.vm : @record # Use related server vm record + @perf_options[:typ] = "Daily" + perf_set_or_fix_dates(false) unless params[:task_id] # Set dates if first time thru + perf_gen_data + return true unless @charts # Return if no charts got created (first time thru async rpt gen) - elsif cmd == "Chart" && typ.starts_with?("top") # Create top chart for selected timestamp/model - @record = identify_tl_or_perf_record - @perf_record = @record.kind_of?(MiqServer) ? @record.vm : @record # Use related server vm record - top_ids = data_row["assoc_ids"][model.downcase.to_sym][:on] - dt = typ == "tophour" ? "on #{ts.to_date} at #{ts.strftime("%H:%M:%S %Z")}" : "on #{ts.to_date}" - if top_ids.blank? - msg = _("No %{model} were running %{time}") % {:model => model, :time => dt} + render :update do |page| + page << javascript_prologue + if @parent_chart_data + page << 'ManageIQ.charts.chartData = ' + { + "candu" => @chart_data, + "parent" => @parent_chart_data + }.to_json + ';' else - javascript_redirect :id => @perf_record.id, - :action => "perf_top_chart", - :menu_choice => params[:menu_click], - :bc => "#{@perf_record.name} top #{bc_model} (#{dt})", - :escape => false - return + page << 'ManageIQ.charts.chartData = ' + { + "candu" => @chart_data + }.to_json + ';' end + page.replace("perf_options_div", :partial => "layouts/perf_options") + page.replace("candu_charts_div", :partial => "layouts/perf_charts", :locals => {:chart_data => @chart_data, :chart_set => "candu"}) + page << js_build_calendar(@perf_options.to_calendar) + page << Charting.js_load_statement + page << 'miqSparkle(false);' + end + return true + end + # Create daily/hourly chart for selected CI + def chart_selected(data_row, typ, ts) + return true unless @record = perf_menu_record_valid(data_row["resource_type"], data_row["resource_id"], data_row["resource_name"]) + # Set the perf options in the selected controller's sandbox + cont = data_row["resource_type"].underscore.downcase.to_sym + session[:sandboxes][cont] ||= {} + session[:sandboxes][cont][:perf_options] ||= Options.new + + # Copy general items from the current perf_options + session[:sandboxes][cont][:perf_options][:index] = @perf_options[:index] + session[:sandboxes][cont][:perf_options][:tz] = @perf_options[:tz] + session[:sandboxes][cont][:perf_options][:time_profile] = @perf_options[:time_profile] + session[:sandboxes][cont][:perf_options][:time_profile_days] = @perf_options[:time_profile_days] + session[:sandboxes][cont][:perf_options][:time_profile_tz] = @perf_options[:time_profile_tz] + + # Set new perf options based on what was selected + session[:sandboxes][cont][:perf_options][:model] = data_row["resource_type"] + session[:sandboxes][cont][:perf_options][:typ] = typ + session[:sandboxes][cont][:perf_options][:daily_date] = @perf_options[:daily_date] if typ == "Daily" + session[:sandboxes][cont][:perf_options][:days] = @perf_options[:days] if typ == "Daily" + session[:sandboxes][cont][:perf_options][:hourly_date] = [ts.month, ts.day, ts.year].join("/") if typ == "Hourly" + + if data_row["resource_type"] == "VmOrTemplate" + prefix = TreeBuilder.get_prefix_for_model(@record.class.base_model) + tree_node_id = "#{prefix}-#{@record.id}" # Build the tree node id + session[:exp_parms] = {:display => "performance", :refresh => "n", :id => tree_node_id} + javascript_redirect :controller => data_row["resource_type"].underscore.downcase.singularize, + :action => "explorer" else - msg = _("Chart menu selection not yet implemented") + javascript_redirect :controller => data_row["resource_type"].underscore.downcase.singularize, + :action => "show", + :id => data_row["resource_id"], + :display => "performance", + :refresh => "n", + :escape => false end + return true + end - msg ? add_flash(msg, :warning) : add_flash(_("Unknown error has occurred"), :error) - javascript_flash(:spinner_off => true) + # create top chart for selected timestamp/model by tag + def chart_top_by_tag(data_row, report, legend_idx, model, ts, bc_model) + @record = identify_tl_or_perf_record + @perf_record = @record.kind_of?(MiqServer) ? @record.vm : @record # Use related server vm record + top_ids = data_row["assoc_ids_#{report.extras[:group_by_tags][legend_idx]}"][model.downcase.to_sym][:on] + bc_tag = "#{Classification.find_by_name(@perf_options[:cat]).description}:#{report.extras[:group_by_tag_descriptions][legend_idx]}" + dt = typ == "tophour" ? "on #{ts.to_date} at #{ts.strftime("%H:%M:%S %Z")}" : "on #{ts.to_date}" + if top_ids.blank? + @menu_click_msg = _("No %{tag} %{model} were running %{time}") % + {:tag => bc_tag, :model => bc_model, :time => dt} + else + javascript_redirect :id => @perf_record.id, + :action => "perf_top_chart", + :menu_choice => params[:menu_click], + :bc => "#{@perf_record.name} top #{bc_model} (#{bc_tag} #{dt})", + :escape => false + return true + end + false + end + + # create top chart for selected timestamp/model + def chart_top(data_row, typ, ts, model, bc_model) + @record = identify_tl_or_perf_record + @perf_record = @record.kind_of?(MiqServer) ? @record.vm : @record # Use related server vm record + top_ids = data_row["assoc_ids"][model.downcase.to_sym][:on] + dt = typ == "tophour" ? "on #{ts.to_date} at #{ts.strftime("%H:%M:%S %Z")}" : "on #{ts.to_date}" + if top_ids.blank? + @menu_click_msg = _("No %{model} were running %{time}") % {:model => model, :time => dt} + else + javascript_redirect :id => @perf_record.id, + :action => "perf_top_chart", + :menu_choice => params[:menu_click], + :bc => "#{@perf_record.name} top #{bc_model} (#{dt})", + :escape => false + return true + end + false end # Send error message if record is found and authorized, else return the record @@ -514,7 +552,7 @@ def perf_gen_init_options(refresh = nil) end # Get start/end dates in selected timezone, but only right before displaying the chart options screen - perf_set_or_fix_dates(@perf_options) if params[:action] == "perf_chart_chooser" + perf_set_or_fix_dates if params[:action] == "perf_chart_chooser" @perf_options[:days] ||= "7" @perf_options[:ght_type] ||= "hybrid" @@ -528,17 +566,13 @@ def perf_gen_init_options(refresh = nil) def perf_gen_data perf_breadcrumb unless @perf_options[:typ] == "realtime" - if @perf_options[:cat] # If a category was chosen, generate charts by tag + if @perf_options[:cat] # If a category was chosen, generate charts by tag perf_gen_tag_data return end end - - unless params[:task_id] # First time thru, kick off the report generate task - perf_gen_data_before_wait - else - perf_gen_data_after_wait - end + # First time thru, kick off the report generate task + params[:task_id] ? perf_gen_data_after_wait : perf_gen_data_before_wait end # Generate performance data for a model's charts - kick off report task @@ -668,19 +702,18 @@ def perf_remove_chart_cols(chart) chart[:columns].delete_if { |col| col.include?("reserved") } chart[:trends].delete_if { |trend| trend.include?("reserved") } if chart[:trends] end - if chart[:title].include?("by Type") - chart[:columns].delete_if { |col| !col.include?("_" + @perf_options[:vmtype]) } if @perf_options[:vmtype] && @perf_options[:vmtype] != "" + if chart[:title].include?("by Type") && @perf_options[:vmtype] && @perf_options[:vmtype] != "" + chart[:columns].delete_if do |col| + !col.include?("_" + @perf_options[:vmtype]) + end end end # Generate performance data by tag for a model's charts def perf_gen_tag_data @perf_options[:chart_type] = :performance - unless params[:task_id] # First time thru, kick off the report generate task - perf_gen_tag_data_before_wait - else - perf_gen_tag_data_after_wait - end + # First time thru, kick off the report generate task + params[:task_id] ? perf_gen_tag_data_after_wait : perf_gen_tag_data_before_wait end # Generate performance data by tag - kick off report task @@ -1100,7 +1133,6 @@ def perf_planning_gen_data(refresh = nil) if @sb[:planning][:options][:trend_vcpus] rpt.db_options[:options][:target_options][:vcpus] = { :mode => :current, - # :metric => :num_cpu, # Not applicable to vcpus :limit_col => :total_vcpus, # not sure of name, but should be # vcpus/core times # of cores :limit_ratio => @sb[:planning][:options][:limit_vcpus] } @@ -1302,7 +1334,7 @@ def perf_gen_chart(report, options) report.graph[:max_col_size] = options[:max_value] # FIXME: rename xml, xml2 to something like 'chart_data' report.to_chart(settings(:display, :reporttheme), false, - MiqReport.graph_options(options[:width], options[:height], options)) + MiqReport.graph_options(options)) chart_xml = { :xml => report.chart, # Save the graph xml :main_col => options[:columns].first # And the main (first) column of the chart @@ -1311,7 +1343,7 @@ def perf_gen_chart(report, options) report.graph[:type] = options[:chart2][:type] report.graph[:columns] = options[:chart2][:columns] report.to_chart(settings(:display, :reporttheme), false, - MiqReport.graph_options(options[:width], options[:height], options.merge(:composite => true))) + MiqReport.graph_options(options.merge(:composite => true))) chart_xml[:xml2] = report.chart end chart_xml @@ -1447,9 +1479,6 @@ def perf_remove_report_cols(report, charts = nil) new_rpt.table = Marshal.load(Marshal.dump(report.table)) keepcols = [] keepcols += ["timestamp", "statistic_time"] unless @top_chart - # keepcols += ["resource_name"] if @charts.first[:type].include?("Pie") - # keepcols += @charts.first[:columns] - # keepcols += @charts.first[:chart2][:columns] if @charts.first[:chart2] keepcols += ["resource_name"] if charts[:type].include?("Pie") keepcols += charts[:columns] keepcols += charts[:chart2][:columns] if charts[:chart2] diff --git a/app/controllers/application_controller/performance/options.rb b/app/controllers/application_controller/performance/options.rb index 86ca02b6b6b..739da75d1f8 100644 --- a/app/controllers/application_controller/performance/options.rb +++ b/app/controllers/application_controller/performance/options.rb @@ -83,7 +83,7 @@ def set_dates(start_date, end_date, allow_interval_override) end if daily_date.present? && (daily_date.to_date < sdate_daily.to_date || daily_date.to_date > edate_daily.to_date) - options[:daily_date] = nil + self.daily_date = nil end self.hourly_date ||= [edate.month, edate.day, edate.year].join('/') self.daily_date ||= [edate_daily.month, edate_daily.day, edate_daily.year].join('/') diff --git a/app/controllers/catalog_controller.rb b/app/controllers/catalog_controller.rb index 17cf5ead42b..e42994f781c 100644 --- a/app/controllers/catalog_controller.rb +++ b/app/controllers/catalog_controller.rb @@ -228,7 +228,7 @@ def explorer set_form_locals_for_sysprep end template_locals = {:locals => {:controller => "catalog"}} - template_locals[:locals].merge!(fetch_playbook_details) if TreeBuilder.get_model_for_prefix(@nodetype) == "ServiceTemplate" && !@view && @record.prov_type == "generic_ansible_playbook" + template_locals[:locals].merge!(fetch_playbook_details) if need_ansible_locals? render :layout => "application", :action => "explorer", :locals => template_locals end @@ -828,6 +828,20 @@ def ansible_playbook? end helper_method :ansible_playbook? + def remove_resources_display(remove_resources) + case remove_resources + when 'no_without_playbook', 'no_with_playbook' + _('No') + when 'pre_with_playbook' + _('Before Playbook runs') + when 'post_with_playbook' + _('After Playbook runs') + else + _('Yes') + end + end + helper_method :remove_resources_display + def features [{:role => "svc_catalog_accord", :role_any => true, @@ -1422,7 +1436,7 @@ def rearrange_groups_array def get_available_resources(kls) @edit[:new][:available_resources] = {} - kls.constantize.all.each do |r| + kls.constantize.where("type is null or type != 'ServiceTemplateAnsiblePlaybook'").select(:id, :name).each do |r| @edit[:new][:available_resources][r.id] = r.name if r.id.to_s != @edit[:rec_id].to_s && !@edit[:new][:selected_resources].include?(r.id) # don't add the servicetemplate record that's being edited, or add all vm templates end @@ -1778,30 +1792,36 @@ def fetch_playbook_details playbook_details = {} provision = @record.config_info[:provision] playbook_details[:provisioning] = {} - playbook_details[:provisioning][:repository] = ManageIQ::Providers::AnsibleTower::AutomationManager::ConfigurationScriptSource.find(provision[:repository_id]).name - playbook_details[:provisioning][:playbook] = ManageIQ::Providers::AnsibleTower::AutomationManager::Playbook.find(provision[:playbook_id]).name - playbook_details[:provisioning][:machine_credential] = ManageIQ::Providers::AnsibleTower::AutomationManager::MachineCredential.find(provision[:credential_id]).name - playbook_details[:provisioning][:network_credential] = ManageIQ::Providers::AnsibleTower::AutomationManager::NetworkCredential.find(provision[:network_credential_id]).name if provision[:network_credential_id] - playbook_details[:provisioning][:cloud_credential] = ManageIQ::Providers::AnsibleTower::AutomationManager::CloudCredential.find(provision[:cloud_credential_id]).name if provision[:cloud_credential_id] - dialog = provision[:dialog_id] ? Dialog.find(provision[:dialog_id]) : Dialog.find_by(:name => provision[:dialog_name]) - playbook_details[:provisioning][:dialog] = dialog.name - playbook_details[:provisioning][:dialog_id] = dialog.id + playbook_details[:provisioning][:repository] = ManageIQ::Providers::EmbeddedAnsible::AutomationManager::ConfigurationScriptSource.find_by(:id => provision[:repository_id]).name + playbook_details[:provisioning][:playbook] = ManageIQ::Providers::EmbeddedAnsible::AutomationManager::Playbook.find_by(:id => provision[:playbook_id]).name + playbook_details[:provisioning][:machine_credential] = ManageIQ::Providers::EmbeddedAnsible::AutomationManager::MachineCredential.find_by(:id => provision[:credential_id]).name + playbook_details[:provisioning][:network_credential] = ManageIQ::Providers::EmbeddedAnsible::AutomationManager::NetworkCredential.find_by(:id => provision[:network_credential_id]).name if provision[:network_credential_id] + playbook_details[:provisioning][:cloud_credential] = ManageIQ::Providers::EmbeddedAnsible::AutomationManager::CloudCredential.find_by(:id => provision[:cloud_credential_id]).name if provision[:cloud_credential_id] + fetch_dialog(playbook_details, provision[:dialog_id], :provisioning) if @record.config_info[:retirement] retirement = @record.config_info[:retirement] playbook_details[:retirement] = {} - playbook_details[:retirement][:repository] = ManageIQ::Providers::AnsibleTower::AutomationManager::ConfigurationScriptSource.find(retirement[:repository_id]).name - playbook_details[:retirement][:playbook] = ManageIQ::Providers::AnsibleTower::AutomationManager::Playbook.find(retirement[:playbook_id]).name - playbook_details[:retirement][:machine_credential] = ManageIQ::Providers::AnsibleTower::AutomationManager::MachineCredential.find(retirement[:credential_id]).name - playbook_details[:retirement][:network_credential] = ManageIQ::Providers::AnsibleTower::AutomationManager::NetworkCredential.find(retirement[:network_credential_id]).name if retirement[:network_credential_id] - playbook_details[:retirement][:cloud_credential] = ManageIQ::Providers::AnsibleTower::AutomationManager::CloudCredential.find(retirement[:cloud_credential_id]).name if retirement[:cloud_credential_id] - dialog = provision[:dialog_id] ? Dialog.find(retirement[:dialog_id]) : Dialog.find_by(:name => retirement[:dialog_name]) - playbook_details[:retirement][:dialog] = dialog.name - playbook_details[:retirement][:dialog_id] = dialog.id + playbook_details[:retirement][:remove_resources] = retirement[:remove_resources] + if retirement[:repository_id] + playbook_details[:retirement][:repository] = ManageIQ::Providers::EmbeddedAnsible::AutomationManager::ConfigurationScriptSource.find_by(:id => retirement[:repository_id]).name + playbook_details[:retirement][:playbook] = ManageIQ::Providers::EmbeddedAnsible::AutomationManager::Playbook.find_by(:id => retirement[:playbook_id]).name + playbook_details[:retirement][:machine_credential] = ManageIQ::Providers::EmbeddedAnsible::AutomationManager::MachineCredential.find_by(:id => retirement[:credential_id]).name + playbook_details[:retirement][:network_credential] = ManageIQ::Providers::EmbeddedAnsible::AutomationManager::NetworkCredential.find_by(:id => retirement[:network_credential_id]).name if retirement[:network_credential_id] + playbook_details[:retirement][:cloud_credential] = ManageIQ::Providers::EmbeddedAnsible::AutomationManager::CloudCredential.find_by(:id => retirement[:cloud_credential_id]).name if retirement[:cloud_credential_id] + fetch_dialog(playbook_details, retirement[:dialog_id], :retirement) + end end playbook_details end + def fetch_dialog(playbook_details, dialog_id, key) + return nil if dialog_id.nil? + dialog = Dialog.find_by(:id => dialog_id) + playbook_details[key][:dialog] = dialog.name + playbook_details[key][:dialog_id] = dialog.id + end + def open_parent_nodes(record) existing_node = nil # Init var @@ -1933,7 +1953,7 @@ def replace_right_cell(options = {}) r[:partial => "shared/buttons/ab_list"] else template_locals = {:controller => "catalog"} - template_locals.merge!(fetch_playbook_details) if TreeBuilder.get_model_for_prefix(@nodetype) == "ServiceTemplate" && @record.prov_type == "generic_ansible_playbook" + template_locals.merge!(fetch_playbook_details) if need_ansible_locals? r[:partial => "catalog/#{x_active_tree}_show", :locals => template_locals] end elsif @sb[:buttons_node] @@ -2027,6 +2047,12 @@ def replace_right_cell(options = {}) render :json => presenter.for_render end + def need_ansible_locals? + x_active_tree == :sandt_tree && + TreeBuilder.get_model_for_prefix(@nodetype) == "ServiceTemplate" && + @record.prov_type == "generic_ansible_playbook" + end + # Build a Catalog Items explorer tree def build_st_tree TreeBuilderCatalogItems.new('sandt_tree', 'sandt', @sb) diff --git a/app/controllers/cloud_object_store_object_controller.rb b/app/controllers/cloud_object_store_object_controller.rb index 7d0cded554a..31525e2827f 100644 --- a/app/controllers/cloud_object_store_object_controller.rb +++ b/app/controllers/cloud_object_store_object_controller.rb @@ -14,7 +14,16 @@ def breadcrumb_name(_model) def button @edit = session[:edit] params[:page] = @current_page unless @current_page.nil? - return tag("CloudObjectStoreObject") if params[:pressed] == 'cloud_object_store_object_tag' + + process_cloud_object_storage_buttons(params[:pressed]) + + if !@flash_array.nil? && params[:pressed].ends_with?("delete") + javascript_redirect :action => 'show_list', + :flash_msg => @flash_array[0][:message], + :flash_error => @flash_array[0][:level] == :error + elsif !@flash_array.nil? + render_flash unless performed? + end end def show diff --git a/app/controllers/cloud_tenant_controller.rb b/app/controllers/cloud_tenant_controller.rb index f81c569cf59..4415ad4561f 100644 --- a/app/controllers/cloud_tenant_controller.rb +++ b/app/controllers/cloud_tenant_controller.rb @@ -273,4 +273,5 @@ def process_cloud_tenants(tenants, task) end menu_section :clo + has_custom_buttons end diff --git a/app/controllers/cloud_volume_controller.rb b/app/controllers/cloud_volume_controller.rb index da81d8f9613..837ce527c2b 100644 --- a/app/controllers/cloud_volume_controller.rb +++ b/app/controllers/cloud_volume_controller.rb @@ -134,7 +134,7 @@ def attach assert_privileges("cloud_volume_attach") @vm_choices = {} @volume = find_by_id_filtered(CloudVolume, params[:id]) - @volume.cloud_tenant.vms.each { |vm| @vm_choices[vm.name] = vm.id } + @volume.available_vms.each { |vm| @vm_choices[vm.name] = vm.id } @in_a_form = true drop_breadcrumb( @@ -198,8 +198,8 @@ def attach_finished task = MiqTask.find(task_id) if MiqTask.status_ok?(task.status) add_flash(_("Attaching Cloud Volume \"%{volume_name}\" to %{vm_name} finished") % { - :name => volume_name, - :vm_name => vm.name + :volume_name => volume_name, + :vm_name => vm.name }) else add_flash(_("Unable to attach Cloud Volume \"%{volume_name}\" to %{vm_name}: %{details}") % { @@ -255,14 +255,14 @@ def detach_finished task = MiqTask.find(task_id) if MiqTask.status_ok?(task.status) add_flash(_("Detaching Cloud Volume \"%{volume_name}\" from %{vm_name} finished") % { - :name => volume_name, - :vm_name => vm.name + :volume_name => volume_name, + :vm_name => vm.name }) else add_flash(_("Unable to detach Cloud Volume \"%{volume_name}\" from %{vm_name}: %{details}") % { - :name => volume_name, - :vm_name => vm.name, - :details => task.message + :volume_name => volume_name, + :vm_name => vm.name, + :details => task.message }, :error) end @@ -277,8 +277,8 @@ def new assert_privileges("cloud_volume_new") @volume = CloudVolume.new @in_a_form = true - @cloud_tenant_choices = {} - CloudTenant.all.each { |tenant| @cloud_tenant_choices[tenant.name] = tenant.id } + @storage_manager_choices = {} + ExtManagementSystem.all.each { |ems| @storage_manager_choices[ems.name] = ems.id if ems.supports_block_storage? } drop_breadcrumb( :name => _("Add New %{model}") % {:model => ui_lookup(:table => 'cloud_volume')}, :url => "/cloud_volume/new" @@ -294,12 +294,11 @@ def create when "add" @volume = CloudVolume.new - options = form_params - cloud_tenant = find_by_id_filtered(CloudTenant, options[:cloud_tenant_id]) - options[:cloud_tenant] = cloud_tenant - valid_action, action_details = CloudVolume.validate_create_volume(cloud_tenant.ext_management_system) + options = form_params_create + ext_management_system = options.delete(:ems) + valid_action, action_details = CloudVolume.validate_create_volume(ext_management_system) if valid_action - task_id = CloudVolume.create_volume_queue(session[:userid], cloud_tenant.ext_management_system, options) + task_id = CloudVolume.create_volume_queue(session[:userid], ext_management_system, options) if task_id.kind_of?(Integer) initiate_wait_for_task(:task_id => task_id, :action => "create_finished") @@ -700,6 +699,32 @@ def form_params options end + def form_params_create + options = {} + options[:name] = params[:name] if params[:name] + options[:size] = params[:size].to_i if params[:size] + + # Depending on the storage manager type, collect required form params. + case params[:emstype] + when "ManageIQ::Providers::StorageManager::CinderManager" + cloud_tenant_id = params[:cloud_tenant_id] if params[:cloud_tenant_id] + cloud_tenant = find_by_id_filtered(CloudTenant, cloud_tenant_id) + options[:cloud_tenant] = cloud_tenant + options[:ems] = cloud_tenant.ext_management_system + when "ManageIQ::Providers::Amazon::StorageManager::Ebs" + options[:volume_type] = params[:aws_volume_type] if params[:aws_volume_type] + # Only set IOPS if io1 (provisioned IOPS) and IOPS available + options[:iops] = params[:aws_iops] if options[:volume_type] == 'io1' && params[:aws_iops] + options[:availability_zone] = params[:aws_availability_zone_id] if params[:aws_availability_zone_id] + options[:encrypted] = params[:aws_encryption] + + # Get the storage manager. + storage_manager_id = params[:storage_manager_id] if params[:storage_manager_id] + options[:ems] = find_by_id_filtered(ExtManagementSystem, storage_manager_id) + end + options + end + # dispatches tasks to multiple volumes def process_cloud_volumes(volumes, task) return if volumes.empty? diff --git a/app/controllers/configuration_controller.rb b/app/controllers/configuration_controller.rb index 6c277c82cfd..a2fcb751752 100644 --- a/app/controllers/configuration_controller.rb +++ b/app/controllers/configuration_controller.rb @@ -620,7 +620,6 @@ def set_session_data session[:config_schema_ver] = @schema_ver session[:vm_filters] = @filters session[:vm_catinfo] = @catinfo - session[:vm_cats] = @cats session[:zone_options] = @zone_options end diff --git a/app/controllers/ems_cloud_controller.rb b/app/controllers/ems_cloud_controller.rb index 9b10f140bde..1d8dad9a769 100644 --- a/app/controllers/ems_cloud_controller.rb +++ b/app/controllers/ems_cloud_controller.rb @@ -41,4 +41,5 @@ def restful? public :restful? menu_section :clo + has_custom_buttons end diff --git a/app/controllers/ems_cluster_controller.rb b/app/controllers/ems_cluster_controller.rb index 18c1212a431..9f4c940e891 100644 --- a/app/controllers/ems_cluster_controller.rb +++ b/app/controllers/ems_cluster_controller.rb @@ -244,4 +244,5 @@ def set_session_data end menu_section :inf + has_custom_buttons end diff --git a/app/controllers/ems_common.rb b/app/controllers/ems_common.rb index c50b4083b50..29cdc72f62d 100644 --- a/app/controllers/ems_common.rb +++ b/app/controllers/ems_common.rb @@ -169,48 +169,6 @@ def edit :url => "/#{controller_name}/#{@ems.id}/edit") end - # AJAX driven routine to check for changes in ANY field on the form - def form_field_changed - return unless load_edit("ems_edit__#{params[:id]}") - get_form_vars - - changed = edit_changed? - render :update do |page| - page << javascript_prologue - if params[:server_emstype] || params[:default_security_protocol] # Server/protocol type changed - page.replace_html("form_div", :partial => "shared/views/ems_common/form") - end - if params[:server_emstype] # Server type changed - unless @ems.kind_of?(ManageIQ::Providers::CloudManager) - # Hide/show C&U credentials tab - page << "$('#metrics_li').#{params[:server_emstype] == "rhevm" ? "show" : "hide"}();" - end - if ["openstack", "openstack_infra"].include?(params[:server_emstype]) - page << "$('#port').val(#{j_str(@edit[:new][:port].to_s)});" - end - # Hide/show port field - page << "$('#port_tr').#{%w(openstack openstack_infra rhevm).include?(params[:server_emstype]) ? "show" : "hide"}();" - end - page << javascript_for_miq_button_visibility(changed) - if @edit[:default_verify_status] != @edit[:saved_default_verify_status] - @edit[:saved_default_verify_status] = @edit[:default_verify_status] - page << "miqValidateButtons('#{@edit[:default_verify_status] ? 'show' : 'hide'}', 'default_');" - end - if @edit[:metrics_verify_status] != @edit[:saved_metrics_verify_status] - @edit[:saved_metrics_verify_status] = @edit[:metrics_verify_status] - page << "miqValidateButtons('#{@edit[:metrics_verify_status] ? 'show' : 'hide'}', 'metrics_');" - end - if @edit[:amqp_verify_status] != @edit[:saved_amqp_verify_status] - @edit[:saved_amqp_verify_status] = @edit[:amqp_verify_status] - page << "miqValidateButtons('#{@edit[:amqp_verify_status] ? 'show' : 'hide'}', 'amqp_');" - end - if @edit[:bearer_verify_status] != @edit[:saved_bearer_verify_status] - @edit[:saved_bearer_verify_status] = @edit[:bearer_verify_status] - page << "miqValidateButtons('#{@edit[:bearer_verify_status] ? 'show' : 'hide'}', 'bearer_');" - end - end - end - def update assert_privileges("#{permission_prefix}_edit") return unless load_edit("ems_edit__#{params[:id]}") @@ -716,6 +674,7 @@ def form_instance_vars @vmware_cloud_api_versions = retrieve_vmware_cloud_api_versions @emstype_display = model.supported_types_and_descriptions_hash[@ems.emstype] @nuage_api_versions = retrieve_nuage_api_versions + @hawkular_security_protocols = retrieve_hawkular_security_protocols end def retrieve_provider_regions @@ -768,6 +727,13 @@ def retrieve_container_security_protocols [_('SSL without validation'), 'ssl-without-validation']] end + def retrieve_hawkular_security_protocols + [[_('SSL'), 'ssl-with-validation'], + [_('SSL trusting custom CA'), 'ssl-with-validation-custom-ca'], + [_('SSL without validation'), 'ssl-without-validation'], + [_('Non-SSL'), 'non-ssl']] + end + # Get variables from edit form def get_form_vars @ems = @edit[:ems_id] ? model.find_by_id(@edit[:ems_id]) : model.new diff --git a/app/controllers/ems_infra_controller.rb b/app/controllers/ems_infra_controller.rb index 9db400d3b70..a5bc3d9da29 100644 --- a/app/controllers/ems_infra_controller.rb +++ b/app/controllers/ems_infra_controller.rb @@ -270,4 +270,5 @@ def parse_json(uploaded_file) end menu_section :inf + has_custom_buttons end diff --git a/app/controllers/ems_network_controller.rb b/app/controllers/ems_network_controller.rb index c1a1c445a79..39c16e3cdca 100644 --- a/app/controllers/ems_network_controller.rb +++ b/app/controllers/ems_network_controller.rb @@ -37,4 +37,5 @@ def restful? public :restful? menu_section :net + has_custom_buttons end diff --git a/app/controllers/ems_physical_infra_controller.rb b/app/controllers/ems_physical_infra_controller.rb index 246e157a8e8..eda750ed1b3 100644 --- a/app/controllers/ems_physical_infra_controller.rb +++ b/app/controllers/ems_physical_infra_controller.rb @@ -64,4 +64,5 @@ def restful? public :restful? menu_section :phy + has_custom_buttons end diff --git a/app/controllers/ems_storage_controller.rb b/app/controllers/ems_storage_controller.rb index 7bc0bab1835..2e3ed693607 100644 --- a/app/controllers/ems_storage_controller.rb +++ b/app/controllers/ems_storage_controller.rb @@ -32,4 +32,5 @@ def ems_storage_form_fields end menu_section :sto + has_custom_buttons end diff --git a/app/controllers/host_controller.rb b/app/controllers/host_controller.rb index b1cba9da809..214ff7cc5ba 100644 --- a/app/controllers/host_controller.rb +++ b/app/controllers/host_controller.rb @@ -653,7 +653,6 @@ def get_session_data @display = session[:host_display] @filters = session[:host_filters] @catinfo = session[:host_catinfo] - @base = session[:vm_compare_base] end def set_session_data @@ -663,8 +662,8 @@ def set_session_data session[:host_catinfo] = @catinfo session[:miq_compressed] = @compressed unless @compressed.nil? session[:miq_exists_mode] = @exists_mode unless @exists_mode.nil? - session[:vm_compare_base] = @base end menu_section :inf + has_custom_buttons end diff --git a/app/controllers/middleware_domain_controller.rb b/app/controllers/middleware_domain_controller.rb index 989f46ffbe1..612cd0269a9 100644 --- a/app/controllers/middleware_domain_controller.rb +++ b/app/controllers/middleware_domain_controller.rb @@ -10,7 +10,11 @@ class MiddlewareDomainController < ApplicationController after_action :set_session_data def self.display_methods - %i(middleware_server_groups) + %w(middleware_server_groups) + end + + def self.default_show_template + "#{model.name.underscore}/show" end menu_section :cnt diff --git a/app/controllers/middleware_server_controller.rb b/app/controllers/middleware_server_controller.rb index f9fd1592750..da9a3420de0 100644 --- a/app/controllers/middleware_server_controller.rb +++ b/app/controllers/middleware_server_controller.rb @@ -159,7 +159,11 @@ def add_datasource end def self.display_methods - %i(middleware_datasources middleware_deployments middleware_messagings) + %w(middleware_datasources middleware_deployments middleware_messagings) + end + + def self.default_show_template + "#{model.name.underscore}/show" end def button diff --git a/app/controllers/middleware_server_group_controller.rb b/app/controllers/middleware_server_group_controller.rb index 36feb6f460a..354c1c9329e 100644 --- a/app/controllers/middleware_server_group_controller.rb +++ b/app/controllers/middleware_server_group_controller.rb @@ -35,7 +35,11 @@ def self.operations end def self.display_methods - %i(middleware_servers) + %w(middleware_servers) + end + + def self.default_show_template + "#{model.name.underscore}/show" end def textual_group_list diff --git a/app/controllers/miq_ae_customization_controller.rb b/app/controllers/miq_ae_customization_controller.rb index 132a32950b7..98474d51efc 100644 --- a/app/controllers/miq_ae_customization_controller.rb +++ b/app/controllers/miq_ae_customization_controller.rb @@ -4,6 +4,7 @@ class MiqAeCustomizationController < ApplicationController include_concern 'Dialogs' include AutomateTreeHelper + helper ApplicationHelper::ImportExportHelper before_action :check_privileges before_action :get_session_data diff --git a/app/controllers/miq_ae_tools_controller.rb b/app/controllers/miq_ae_tools_controller.rb index 93de7383475..2410846fdc7 100644 --- a/app/controllers/miq_ae_tools_controller.rb +++ b/app/controllers/miq_ae_tools_controller.rb @@ -438,7 +438,7 @@ def get_form_vars # @resolve[:new][:target_attr_name] = params[:target_attr_name] if params.has_key?(:target_attr_name) if params.key?(:target_class) @resolve[:new][:target_class] = params[:target_class] - targets = Rbac.filtered(params[:target_class]).select(:id, :name) + targets = Rbac.filtered(params[:target_class]).select(:id, :name) unless params[:target_class].blank? unless targets.nil? @resolve[:targets] = targets.sort_by { |t| t.name.downcase }.collect { |t| [t.name, t.id.to_s] } @resolve[:new][:target_id] = nil diff --git a/app/controllers/miq_template_controller.rb b/app/controllers/miq_template_controller.rb index 8124012af60..1243b29eec9 100644 --- a/app/controllers/miq_template_controller.rb +++ b/app/controllers/miq_template_controller.rb @@ -1,4 +1,5 @@ require "rexml/document" + class MiqTemplateController < ApplicationController include VmCommon include Mixins::GenericListMixin @@ -21,10 +22,8 @@ def get_session_data @layout = session[:miq_template_type] ? session[:miq_template_type] : "miq_template" @lastaction = session[:miq_template_lastaction] @showtype = session[:miq_template_showtype] - @base = session[:miq_template_compare_base] @filters = session[:miq_template_filters] @catinfo = session[:miq_template_catinfo] - @cats = session[:miq_template_cats] @display = session[:miq_template_display] @polArr = session[:polArr] || "" # current tags in effect @policy_options = session[:policy_options] || "" @@ -35,12 +34,12 @@ def set_session_data session[:miq_template_showtype] = @showtype session[:miq_compressed] = @compressed unless @compressed.nil? session[:miq_exists_mode] = @exists_mode unless @exists_mode.nil? - session[:miq_template_compare_base] = @base session[:miq_template_filters] = @filters session[:miq_template_catinfo] = @catinfo - session[:miq_template_cats] = @cats session[:miq_template_display] = @display unless @display.nil? session[:polArr] = @polArr unless @polArr.nil? session[:policy_options] = @policy_options unless @policy_options.nil? end + + has_custom_buttons end diff --git a/app/controllers/mixins/containers_external_logging_support_mixin.rb b/app/controllers/mixins/containers_external_logging_support_mixin.rb index 47b827eacbe..6f2eba83046 100644 --- a/app/controllers/mixins/containers_external_logging_support_mixin.rb +++ b/app/controllers/mixins/containers_external_logging_support_mixin.rb @@ -1,5 +1,5 @@ module ContainersExternalLoggingSupportMixin - def launch_external_logging_support + def launch_external_logging record = self.class.model.find(params[:id]) ems = record.ext_management_system route_name = ems.external_logging_route_name diff --git a/app/controllers/mixins/custom_buttons.rb b/app/controllers/mixins/custom_buttons.rb new file mode 100644 index 00000000000..14f56816beb --- /dev/null +++ b/app/controllers/mixins/custom_buttons.rb @@ -0,0 +1,32 @@ +module Mixins::CustomButtons + extend ActiveSupport::Concern + + def custom_toolbar? + return nil unless self.class.instance_eval { @custom_buttons } + + @explorer ? custom_toolbar_explorer? : custom_toolbar_simple? + end + + def custom_toolbar_explorer? + if x_tree # Make sure we have the trees defined + if x_node == "root" || # If on a root, create placeholder toolbar + !@record # or no record showing + :blank + elsif @display == "main" + true + else + :blank + end + end + end + + def custom_toolbar_simple? + @record && @lastaction == "show" && @display == "main" + end + + class_methods do + def has_custom_buttons + @custom_buttons = true + end + end +end diff --git a/app/controllers/mixins/ems_common_angular.rb b/app/controllers/mixins/ems_common_angular.rb index 53308871ab4..48f1338b62f 100644 --- a/app/controllers/mixins/ems_common_angular.rb +++ b/app/controllers/mixins/ems_common_angular.rb @@ -118,9 +118,9 @@ def ems_form_fields @ems = model.new if params[:id] == 'new' @ems = find_by_id_filtered(model, params[:id]) if params[:id] != 'new' default_endpoint = @ems.default_endpoint - default_security_protocol = default_endpoint.security_protocol ? default_endpoint.security_protocol : 'ssl' + default_security_protocol = default_endpoint.security_protocol || security_protocol_default default_tls_verify = default_endpoint.verify_ssl != 0 ? true : false - default_tls_ca_certs = default_endpoint.certificate_authority + default_tls_ca_certs = default_endpoint.certificate_authority || "" amqp_userid = "" amqp_hostname = "" @@ -134,7 +134,7 @@ def ems_form_fields keystone_v3_domain_id = "" hawkular_hostname = "" hawkular_api_port = "" - hawkular_security_protocol = "" + hawkular_security_protocol = security_protocol_default hawkular_tls_ca_certs = "" if @ems.connection_configurations.amqp.try(:endpoint) @@ -172,6 +172,7 @@ def ems_form_fields hawkular_api_port = @ems.connection_configurations.hawkular.endpoint.port hawkular_auth_status = @ems.authentication_status_ok?(:hawkular) hawkular_security_protocol = @ems.connection_configurations.hawkular.endpoint.security_protocol + hawkular_security_protocol ||= security_protocol_default hawkular_tls_ca_certs = @ems.connection_configurations.hawkular.endpoint.certificate_authority end @@ -291,15 +292,18 @@ def ems_form_fields :hawkular_auth_status => hawkular_auth_status.nil? ? true : hawkular_auth_status, } if controller_name == "ems_container" - render :json => {:name => @ems.name, - :emstype => @ems.emstype, - :zone => zone, - :default_hostname => @ems.connection_configurations.default.endpoint.hostname, - :default_api_port => @ems.connection_configurations.default.endpoint.port, - :default_userid => @ems.authentication_userid ? @ems.authentication_userid : "", - :ems_controller => controller_name, - :default_auth_status => default_auth_status, - } if controller_name == "ems_middleware" + if controller_name == "ems_middleware" + render :json => {:name => @ems.name, + :emstype => @ems.emstype, + :zone => zone, + :default_hostname => @ems.connection_configurations.default.endpoint.hostname, + :default_api_port => @ems.connection_configurations.default.endpoint.port, + :default_userid => @ems.authentication_userid ? @ems.authentication_userid : "", + :default_security_protocol => default_security_protocol, + :default_tls_ca_certs => default_tls_ca_certs, + :ems_controller => controller_name, + :default_auth_status => default_auth_status} + end render :json => {:name => @ems.name, :emstype => @ems.emstype, @@ -321,6 +325,14 @@ def metrics_default_database_name end end + def security_protocol_default + case controller_name + when "ems_container" then "ssl-with-validation" + when "ems_middleware" then "non-ssl" + else "ssl" + end + end + def table_name self.class.table_name end @@ -415,18 +427,19 @@ def set_ems_record_vars(ems, mode = nil) if ems.kind_of?(ManageIQ::Providers::ContainerManager) params[:cred_type] = ems.default_authentication_type if params[:cred_type] == "default" default_endpoint = {:role => :default, :hostname => hostname, :port => port} - default_endpoint.merge!(container_security_options(ems.security_protocol, default_tls_ca_certs)) + default_endpoint.merge!(endpoint_security_options(ems.security_protocol, default_tls_ca_certs)) if hawkular_hostname.blank? default_key = params[:default_password] || ems.authentication_key hawkular_hostname = get_hostname_from_routes(ems, default_endpoint, default_key) end hawkular_endpoint = {:role => :hawkular, :hostname => hawkular_hostname, :port => hawkular_api_port} - hawkular_endpoint.merge!(container_security_options(hawkular_security_protocol, hawkular_tls_ca_certs)) + hawkular_endpoint.merge!(endpoint_security_options(hawkular_security_protocol, hawkular_tls_ca_certs)) end if ems.kind_of?(ManageIQ::Providers::MiddlewareManager) default_endpoint = {:role => :default, :hostname => hostname, :port => port} + default_endpoint.merge!(endpoint_security_options(ems.security_protocol, default_tls_ca_certs)) end if ems.kind_of?(ManageIQ::Providers::Hawkular::DatawarehouseManager) @@ -467,11 +480,11 @@ def get_hostname_from_routes(ems, endpoint_hash, token) nil end - def container_security_options(security_protocol, certificate_authority) + def endpoint_security_options(security_protocol, certificate_authority) { :security_protocol => security_protocol, - :verify_ssl => security_protocol != 'ssl-without-validation', - :certificate_authority => security_protocol == 'ssl-with-validation-custom-ca' ? certificate_authority : nil, + :verify_ssl => %w(ssl-without-validation non-ssl).exclude?(security_protocol), + :certificate_authority => security_protocol == 'ssl-with-validation-custom-ca' ? certificate_authority : nil } end diff --git a/app/controllers/mixins/generic_session_mixin.rb b/app/controllers/mixins/generic_session_mixin.rb index 29c47b8dacc..fb33d95936a 100644 --- a/app/controllers/mixins/generic_session_mixin.rb +++ b/app/controllers/mixins/generic_session_mixin.rb @@ -4,24 +4,26 @@ module GenericSessionMixin private def get_session_data - prefix = self.class.session_key_prefix - @title = respond_to?(:title) ? title : ui_lookup(:tables => self.class.table_name) - @layout = prefix - @table_name = request.parameters[:controller] - @lastaction = session["#{prefix}_lastaction".to_sym] - @display = session["#{prefix}_display".to_sym] - @filters = session["#{prefix}_filters".to_sym] - @catinfo = session["#{prefix}_catinfo".to_sym] - @showtype = session["#{prefix}_showtype".to_sym] + prefix = self.class.session_key_prefix + @title = respond_to?(:title) ? title : ui_lookup(:tables => self.class.table_name) + @layout = prefix + @table_name = request.parameters[:controller] + @lastaction = session["#{prefix}_lastaction".to_sym] + @display = session["#{prefix}_display".to_sym] + @filters = session["#{prefix}_filters".to_sym] + @catinfo = session["#{prefix}_catinfo".to_sym] + @showtype = session["#{prefix}_showtype".to_sym] end def set_session_data prefix = self.class.session_key_prefix - session["#{prefix}_lastaction".to_sym] = @lastaction - session["#{prefix}_display".to_sym] = @display unless @display.nil? - session["#{prefix}_filters".to_sym] = @filters - session["#{prefix}_catinfo".to_sym] = @catinfo - session["#{prefix}_showtype".to_sym] = @showtype + session["#{prefix}_lastaction".to_sym] = @lastaction + session["#{prefix}_display".to_sym] = @display unless @display.nil? + session["#{prefix}_filters".to_sym] = @filters + session["#{prefix}_catinfo".to_sym] = @catinfo + session["#{prefix}_showtype".to_sym] = @showtype + session[:miq_compressed] = @compressed unless @compressed.nil? + session[:miq_exists_mode] = @exists_mode unless @exists_mode.nil? end end end diff --git a/app/controllers/mixins/vm_show_mixin.rb b/app/controllers/mixins/vm_show_mixin.rb index 2b36f594943..35bdd910258 100644 --- a/app/controllers/mixins/vm_show_mixin.rb +++ b/app/controllers/mixins/vm_show_mixin.rb @@ -6,7 +6,7 @@ def explorer @lastaction = "explorer" @timeline = @timeline_filter = true # need to set these to load timelines on vm show screen if params[:menu_click] # Came in from a chart context menu click - @_params[:id] = parse_nodetype_and_id(x_node).last + @_params[:id] = parse_nodetype_and_id(x_node_right_cell).last @explorer = true perf_menu_click # Handle the menu action return @@ -135,10 +135,8 @@ def get_session_data @layout = controller_name @lastaction = session[:vm_lastaction] @showtype = session[:vm_showtype] - @base = session[:vm_compare_base] @filters = get_filters @catinfo = session[:vm_catinfo] - @cats = session[:vm_cats] @display = session[:vm_display] @polArr = session[:polArr] || "" # current tags in effect @policy_options = session[:policy_options] || "" @@ -149,10 +147,8 @@ def set_session_data session[:vm_showtype] = @showtype session[:miq_compressed] = @compressed unless @compressed.nil? session[:miq_exists_mode] = @exists_mode unless @exists_mode.nil? - session[:vm_compare_base] = @base session[:vm_filters] = @filters session[:vm_catinfo] = @catinfo - session[:vm_cats] = @cats session[:vm_display] = @display unless @display.nil? session[:polArr] = @polArr unless @polArr.nil? session[:policy_options] = @policy_options unless @policy_options.nil? diff --git a/app/controllers/network_router_controller.rb b/app/controllers/network_router_controller.rb index 20a67ed32f2..45532499688 100644 --- a/app/controllers/network_router_controller.rb +++ b/app/controllers/network_router_controller.rb @@ -42,20 +42,51 @@ def button def network_router_form_fields assert_privileges("network_router_edit") router = find_by_id_filtered(NetworkRouter, params[:id]) + available_networks = get_networks_by_ems(router.ems_id) + network_id = nil + subnet_id = nil + external_gateway = false + enable_snat = true + available_subnets = {} + + unless router.external_gateway_info.nil? || router.external_gateway_info.empty? + external_gateway = true + cloud_network_ref = router.external_gateway_info["network_id"] + enable_snat = router.external_gateway_info["enable_snat"] + network = CloudNetwork.where(:ems_ref => cloud_network_ref).first + network_id = network.id + available_subnets = get_subnets_by_network(network_id) + external_fixed_ips = router.external_gateway_info["external_fixed_ips"] + unless external_fixed_ips.nil? || external_fixed_ips.empty? + # TODO: Replace with array/table + subnet = CloudSubnet.where(:ems_ref => external_fixed_ips[0]["subnet_id"]).first + subnet_id = subnet.id + end + end + render :json => { - :name => router.name + :name => router.name, + :ems_id => router.ems_id, + :cloud_network_id => network_id, + :cloud_subnet_id => subnet_id, + :external_gateway => external_gateway, + :enable_snat => enable_snat, + :available_networks => available_networks, + :available_subnets => available_subnets } end def network_router_networks_by_ems assert_privileges("network_router_new") - networks = [] - available_networks = CloudNetwork.where(:ems_id => params[:id]).find_each - available_networks.each do |network| - networks << { 'name' => network.name, 'id' => network.id } - end render :json => { - :available_networks => networks + :available_networks => get_networks_by_ems(params[:id]) + } + end + + def network_router_subnets_by_network + assert_privileges("network_router_new") + render :json => { + :available_subnets => get_subnets_by_network(params[:id]) } end @@ -86,6 +117,7 @@ def create when "add" @router = NetworkRouter.new options = form_params(params) + options.merge!(form_external_gateway(params)) if switch_to_bool(params[:external_gateway]) ems = ExtManagementSystem.find(options[:ems_id]) options.delete(:ems_id) task_id = ems.create_network_router_queue(session[:userid], options) @@ -181,6 +213,12 @@ def update assert_privileges("network_router_edit") @router = find_by_id_filtered(NetworkRouter, params[:id]) options = form_params(params) + if switch_to_bool(params[:external_gateway]) + options.merge!(form_external_gateway(params)) + else + options.merge!(form_external_gateway({})) + end + case params[:button] when "cancel" cancel_action(_("Edit of Router \"%{name}\" was cancelled by the user") % { @@ -412,20 +450,54 @@ def remove_interface_finished end private + + def get_networks_by_ems(id) + networks = [] + available_networks = CloudNetwork.where(:ems_id => id).find_each + available_networks.each do |network| + networks << { 'name' => network.name, 'id' => network.id } + end + networks + end + + def get_subnets_by_network(id) + subnets = [] + available_subnets = CloudSubnet.where(:cloud_network_id => id).find_each + available_subnets.each do |subnet| + subnets << { 'name' => subnet.name, 'id' => subnet.id } + end + subnets + end + def textual_group_list [%i(properties relationships), %i(tags)] end helper_method :textual_group_list - def form_params(in_params) + def form_external_gateway(params) + options = { :external_gateway_info => {} } + if params[:cloud_network_id] && !params[:cloud_network_id].empty? + network = find_by_id_filtered(CloudNetwork, params[:cloud_network_id]) + options[:external_gateway_info][:network_id] = network.ems_ref + if params[:cloud_subnet_id] && !params[:cloud_subnet_id].empty? + subnet = find_by_id_filtered(CloudSubnet, params[:cloud_subnet_id]) + options[:external_gateway_info][:external_fixed_ips] = [{ :subnet_id => subnet.ems_ref }] + end + options[:external_gateway_info][:enable_snat] = switch_to_bool(params[:enable_snat]) + end + options + end + + def form_params(params) options = {} [:name, :ems_id, :admin_state_up, :cloud_group_id, :cloud_subnet_id, :cloud_network_id].each do |param| - options[param] = in_params[param] if in_params[param] + options[param] = params[param] if params[param] end + options[:cloud_network_id].gsub!(/number:/, '') if options[:cloud_network_id] - if in_params[:cloud_tenant_id] - options[:cloud_tenant] = find_by_id_filtered(CloudTenant, in_params[:cloud_tenant_id]) + if params[:cloud_tenant_id] + options[:cloud_tenant] = find_by_id_filtered(CloudTenant, params[:cloud_tenant_id]) end options end @@ -453,4 +525,12 @@ def process_network_routers(routers, operation) end menu_section :net + + def switch_to_bool(option) + if option && option =~ /on|true/i + true + else + false + end + end end diff --git a/app/controllers/ops_controller.rb b/app/controllers/ops_controller.rb index bbd86d9dbc5..f5104e53c50 100644 --- a/app/controllers/ops_controller.rb +++ b/app/controllers/ops_controller.rb @@ -350,7 +350,7 @@ def set_active_tab(nodetype) when :rbac_tree @sb[:active_tab] = "rbac_details" # default to the first tab in group detail - @sb[:active_rbac_group_tab] ||= "rbac_customer_tags" if node.last == 'g' + @sb[:active_rbac_group_tab] ||= "rbac_customer_tags" if node.last == 'g' || node.first == 'g' when :diagnostics_tree case node[0] when "root" diff --git a/app/controllers/ops_controller/settings/label_tag_mapping.rb b/app/controllers/ops_controller/settings/label_tag_mapping.rb index 5db059226b8..608d3f356d0 100644 --- a/app/controllers/ops_controller/settings/label_tag_mapping.rb +++ b/app/controllers/ops_controller/settings/label_tag_mapping.rb @@ -128,8 +128,18 @@ def lt_map_get_form_vars end def label_tag_mapping_add(entity, label_name, cat_description) + entity_str = '' prefix = ContainerLabelTagMapping::AUTOTAG_PREFIX - entity_str = entity.nil? ? "" : entity.underscore + + # The entity is a string in the form "Provider::ResourceType". + if entity && entity.include?('::') + prefix, entity = entity.split('::') + prefix.downcase! + entity_str = entity.underscore + else + entity_str = entity.underscore if entity + end + cat_name = "#{prefix}:#{entity_str}:" + Classification.sanitize_name(label_name.tr("/", ":")) # UI currently can't allow 2 mappings for same (entity, label). diff --git a/app/controllers/ops_controller/settings/schedules.rb b/app/controllers/ops_controller/settings/schedules.rb index 7282425b44e..0d5547ac6bb 100644 --- a/app/controllers/ops_controller/settings/schedules.rb +++ b/app/controllers/ops_controller/settings/schedules.rb @@ -114,7 +114,7 @@ def schedule_form_fields schedule = MiqSchedule.find_by_id(params[:id]) if schedule_check_compliance?(schedule) - action_type = schedule.towhat.downcase + "_" + schedule.sched_action[:method] + action_type = schedule.towhat.underscore + "_" + schedule.sched_action[:method] elsif schedule_db_backup?(schedule) action_type = schedule.sched_action[:method] depot = schedule.file_depot @@ -303,7 +303,8 @@ def schedule_automation_request?(schedule) def schedule_towhat_from_params_action case params[:action_typ] when "db_backup" then "DatabaseBackup" - when /check_compliance\z/ then params[:action_typ].split("_").first.capitalize + when /check_compliance\z/ then (params[:action_typ].split("_") - params[:action_typ].split("_").last(2)).join("_") + .classify when "emscluster" then "EmsCluster" when "automation_request" then "AutomationRequest" else params[:action_typ].camelcase @@ -553,7 +554,7 @@ def build_search_filter_from_params when "host" then {"=" => {"field" => "Host-name", "value" => params[:filter_value]}} else {"IS NOT NULL" => {"field" => "Host-name"}} end - when "container_image" + when "container_image", "container_image_check_compliance" case params[:filter_typ] when "ems" then {"=" => {"field" => "ContainerImage.ext_management_system-name", "value" => params[:filter_value]}} when "container_image" then {"=" => {"field" => "ContainerImage-name", "value" => params[:filter_value]}} diff --git a/app/controllers/report_controller.rb b/app/controllers/report_controller.rb index 24723a4a655..98fd8b357a9 100644 --- a/app/controllers/report_controller.rb +++ b/app/controllers/report_controller.rb @@ -909,7 +909,6 @@ def set_session_data session[:ght_type] = @ght_type session[:report_groups] = @report_groups session[:vm_catinfo] = @catinfo - session[:vm_cats] = @cats session[:edit] = @edit unless @edit.nil? session[:report_result_id] = @report_result_id session[:report_menu] = @menu diff --git a/app/controllers/report_controller/reports.rb b/app/controllers/report_controller/reports.rb index e86f0383c61..e22a5a79b4f 100644 --- a/app/controllers/report_controller/reports.rb +++ b/app/controllers/report_controller/reports.rb @@ -65,7 +65,7 @@ def show_preview end unless rpt.graph.nil? || rpt.graph[:type].blank? # If graph present # FIXME: UNTESTED!!! - rpt.to_chart(settings(:display, :reporttheme), false, MiqReport.graph_options(350, 250)) # Generate the chart + rpt.to_chart(settings(:display, :reporttheme), false, MiqReport.graph_options) # Generate the chart @edit[:zgraph_xml] = rpt.chart # Save chart data else @edit[:zgraph_xml] = nil diff --git a/app/controllers/report_controller/reports/editor.rb b/app/controllers/report_controller/reports/editor.rb index db68f8fe049..33100a8397b 100644 --- a/app/controllers/report_controller/reports/editor.rb +++ b/app/controllers/report_controller/reports/editor.rb @@ -810,7 +810,7 @@ def move_cols_right if params[:available_fields].include?(af[1]) # See if this column was selected to move unless @edit[:new][:fields].include?(af) # Only move if it's not there already @edit[:new][:fields].push(af) # Add it to the new fields list - if af[0].include?(":") # Not a base column + if af[0].include?(":") && !af[1].include?(CustomAttributeMixin::CUSTOM_ATTRIBUTES_PREFIX) # Not a base column table = af[0].split(" : ")[0].split(".")[-1] # Get the table name table = table.singularize unless table == "OS" # Singularize, except "OS" temp = af[0].split(" : ")[1] @@ -1441,7 +1441,7 @@ def build_selected_fields(rpt) rpt.col_order.each_with_index do |col, idx| if col.starts_with?(CustomAttributeMixin::CUSTOM_ATTRIBUTES_PREFIX) field_key = rpt.db + "-" + col - field_value = col.gsub(CustomAttributeMixin::CUSTOM_ATTRIBUTES_PREFIX, "") + field_value =_("Labels: %{name}") % { :name => col.gsub(CustomAttributeMixin::CUSTOM_ATTRIBUTES_PREFIX, "") } elsif !col.include?(".") # Main table field field_key = rpt.db + "-" + col field_value = friendly_model_name(rpt.db) + diff --git a/app/controllers/service_controller.rb b/app/controllers/service_controller.rb index 2f95c62ddf2..61a587bd54c 100644 --- a/app/controllers/service_controller.rb +++ b/app/controllers/service_controller.rb @@ -36,6 +36,10 @@ def show redirect_to :action => 'show', :controller => record.class.base_model.to_s.underscore, :id => record.id end + def show_list + redirect_to :action => 'explorer', :flash_msg => @flash_array.try(:fetch_path, 0, :message) + end + def explorer @explorer = true @lastaction = "explorer" @@ -132,10 +136,24 @@ def service_form_fields private def textual_group_list - [%i(properties lifecycle relationships miq_custom_attributes), %i(vm_totals tags)] + if @record.type == "ServiceAnsiblePlaybook" + [%i(properties), %i(lifecycle)] + else + [%i(properties lifecycle relationships miq_custom_attributes), %i(vm_totals tags)] + end end helper_method :textual_group_list + def textual_provisioning_group_list + [%i(provisioning_results provisioning_plays), %i(provisioning_details provisioning_credentials)] + end + helper_method :textual_provisioning_group_list + + def textual_retirement_group_list + [%i(retirement_results retirement_plays), %i(retirement_details retirement_credentials)] + end + helper_method :textual_retirement_group_list + def features [ApplicationController::Feature.new_with_hash(:role => "service", :role_any => true, @@ -202,6 +220,14 @@ def get_node_info(treenodeid) @gtl_type = "grid" @items_per_page = ONE_MILLION @view, @pages = get_view(Vm, :parent => @record, :parent_method => :all_vms, :all_pages => true) # Get the records (into a view) and the paginator + when "Hash" + if id == "asrv" + process_show_list(:where_clause => "retired is false and ancestry is null") + @right_cell_text = _("Active Services") + else + process_show_list(:where_clause => "retired is true and ancestry is null") + @right_cell_text = _("Retired Services") + end else # Get list of child Catalog Items/Services of this node if x_node == "root" process_show_list(:where_clause => "ancestry is null") @@ -386,4 +412,5 @@ def set_session_data end menu_section :svc + has_custom_buttons end diff --git a/app/controllers/static_controller.rb b/app/controllers/static_controller.rb index b22e5a60e5e..735bda362ab 100644 --- a/app/controllers/static_controller.rb +++ b/app/controllers/static_controller.rb @@ -4,10 +4,5 @@ class StaticController < ActionController::Base # Added to satisfy Brakeman, https://github.com/presidentbeef/brakeman/pull/953 protect_from_forgery :with => :exception - # hide_action is gone in Rails, but high_voltage is still using it. - # https://github.com/thoughtbot/high_voltage/pull/214 - def self.hide_action(*) - end - include HighVoltage::StaticPage end diff --git a/app/controllers/storage_controller.rb b/app/controllers/storage_controller.rb index 11872d6658c..d63e0995a72 100644 --- a/app/controllers/storage_controller.rb +++ b/app/controllers/storage_controller.rb @@ -620,4 +620,5 @@ def textual_group_list helper_method :textual_group_list menu_section :inf + has_custom_buttons end diff --git a/app/controllers/vm_cloud_controller.rb b/app/controllers/vm_cloud_controller.rb index 7068a147b15..cecf249be32 100644 --- a/app/controllers/vm_cloud_controller.rb +++ b/app/controllers/vm_cloud_controller.rb @@ -259,4 +259,5 @@ def skip_breadcrumb? end menu_section :clo + has_custom_buttons end diff --git a/app/controllers/vm_controller.rb b/app/controllers/vm_controller.rb index 78f5a94b220..8674e0f55ec 100644 --- a/app/controllers/vm_controller.rb +++ b/app/controllers/vm_controller.rb @@ -6,6 +6,8 @@ class VmController < ApplicationController include VmCommon # common methods for vm controllers include VmRemote # methods for VM remote access + include Mixins::GenericSessionMixin + def index session[:vm_type] = nil # Reset VM type if coming in from All tab redirect_to :action => 'show_list' @@ -20,30 +22,16 @@ def show_list private #### def get_session_data - @title = _("Virtual Machines") - @layout = "vm" - @lastaction = session[:vm_lastaction] - @showtype = session[:vm_showtype] - @base = session[:vm_compare_base] - @filters = session[:vm_filters] - @catinfo = session[:vm_catinfo] - @cats = session[:vm_cats] - @display = session[:vm_display] @polArr = session[:polArr] || "" # current tags in effect @policy_options = session[:policy_options] || "" end def set_session_data - session[:vm_lastaction] = @lastaction - session[:vm_showtype] = @showtype - session[:miq_compressed] = @compressed unless @compressed.nil? - session[:miq_exists_mode] = @exists_mode unless @exists_mode.nil? - session[:vm_compare_base] = @base - session[:vm_filters] = @filters - session[:vm_catinfo] = @catinfo - session[:vm_cats] = @cats - session[:vm_display] = @display unless @display.nil? session[:polArr] = @polArr unless @polArr.nil? session[:policy_options] = @policy_options unless @policy_options.nil? end + + def title + _("Virtual Machines") + end end diff --git a/app/controllers/vm_infra_controller.rb b/app/controllers/vm_infra_controller.rb index 7f251890488..d620d69f68b 100644 --- a/app/controllers/vm_infra_controller.rb +++ b/app/controllers/vm_infra_controller.rb @@ -72,4 +72,5 @@ def skip_breadcrumb? end menu_section :inf + has_custom_buttons end diff --git a/app/controllers/vm_or_template_controller.rb b/app/controllers/vm_or_template_controller.rb index 0e9cf291560..b1515315541 100644 --- a/app/controllers/vm_or_template_controller.rb +++ b/app/controllers/vm_or_template_controller.rb @@ -56,4 +56,5 @@ def skip_breadcrumb? end menu_section :svc + has_custom_buttons end diff --git a/app/decorators/auth_private_key_decorator.rb b/app/decorators/auth_private_key_decorator.rb index 3608a670ef6..6aff377e23b 100644 --- a/app/decorators/auth_private_key_decorator.rb +++ b/app/decorators/auth_private_key_decorator.rb @@ -1,9 +1,9 @@ class AuthPrivateKeyDecorator < MiqDecorator - def fonticon + def self.fonticon nil end - def listicon_image + def self.listicon_image "100/auth_key_pair.png" end end diff --git a/app/decorators/availability_zone_decorator.rb b/app/decorators/availability_zone_decorator.rb index 0f357198543..6220ed9b75b 100644 --- a/app/decorators/availability_zone_decorator.rb +++ b/app/decorators/availability_zone_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'pficon pficon-zone' end - def fonticon - 'pficon pficon-zone' - end - - def listicon_image + def self.listicon_image '100/availability_zone.png' end end diff --git a/app/decorators/chargeback_rate_decorator.rb b/app/decorators/chargeback_rate_decorator.rb index 36a93355dea..6c70490bf1e 100644 --- a/app/decorators/chargeback_rate_decorator.rb +++ b/app/decorators/chargeback_rate_decorator.rb @@ -1,5 +1,5 @@ class ChargebackRateDecorator < MiqDecorator - def fonticon + def self.fonticon 'fa fa-file-text-o' end end diff --git a/app/decorators/classification_decorator.rb b/app/decorators/classification_decorator.rb index f4aec447998..3ddc942b0c8 100644 --- a/app/decorators/classification_decorator.rb +++ b/app/decorators/classification_decorator.rb @@ -1,5 +1,5 @@ class ClassificationDecorator < MiqDecorator - def fonticon + def self.fonticon 'pficon pficon-folder-close' end end diff --git a/app/decorators/cloud_network_decorator.rb b/app/decorators/cloud_network_decorator.rb index 19a21cc49b5..901da873096 100644 --- a/app/decorators/cloud_network_decorator.rb +++ b/app/decorators/cloud_network_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'product product-cloud_network' end - def fonticon - 'product product-cloud_network' - end - - def listicon_image + def self.listicon_image '100/cloud_network.png' end end diff --git a/app/decorators/cloud_object_store_container_decorator.rb b/app/decorators/cloud_object_store_container_decorator.rb index c257d085d27..2edc1f169e3 100644 --- a/app/decorators/cloud_object_store_container_decorator.rb +++ b/app/decorators/cloud_object_store_container_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'product product-cloud_object_store' end - def fonticon - 'product product-cloud_object_store' - end - - def listicon_image + def self.listicon_image '100/cloud_object_store_container.png' end end diff --git a/app/decorators/cloud_object_store_object_decorator.rb b/app/decorators/cloud_object_store_object_decorator.rb index 4c435cf2f16..cf3be25ddcd 100644 --- a/app/decorators/cloud_object_store_object_decorator.rb +++ b/app/decorators/cloud_object_store_object_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'product product-cloud_object_store' end - def fonticon - 'product product-cloud_object_store' - end - - def listicon_image + def self.listicon_image '100/cloud_object_store_container.png' end end diff --git a/app/decorators/cloud_subnet_decorator.rb b/app/decorators/cloud_subnet_decorator.rb index 5e3a9ea8c83..0bfec9429c9 100644 --- a/app/decorators/cloud_subnet_decorator.rb +++ b/app/decorators/cloud_subnet_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'pficon pficon-network' end - def fonticon - 'pficon pficon-network' - end - - def listicon_image + def self.listicon_image '100/cloud_subnet.png' end end diff --git a/app/decorators/cloud_tenant_decorator.rb b/app/decorators/cloud_tenant_decorator.rb index 9ca0aa7ecea..866262b0512 100644 --- a/app/decorators/cloud_tenant_decorator.rb +++ b/app/decorators/cloud_tenant_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'pficon pficon-cloud-tenant' end - def fonticon - 'pficon pficon-cloud-tenant' - end - - def listicon_image + def self.listicon_image '100/cloud_tenant.png' end end diff --git a/app/decorators/cloud_volume_backup_decorator.rb b/app/decorators/cloud_volume_backup_decorator.rb index 1fd0292e291..31ba0ecc74a 100644 --- a/app/decorators/cloud_volume_backup_decorator.rb +++ b/app/decorators/cloud_volume_backup_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'pficon pficon-volume' end - def fonticon - 'pficon pficon-volume' - end - - def listicon_image + def self.listicon_image '100/cloud_volume.png' end end diff --git a/app/decorators/cloud_volume_decorator.rb b/app/decorators/cloud_volume_decorator.rb index f62be25f2e1..e473f61ae84 100644 --- a/app/decorators/cloud_volume_decorator.rb +++ b/app/decorators/cloud_volume_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'pficon pficon-volume' end - def fonticon - 'pficon pficon-volume' - end - - def listicon_image + def self.listicon_image '100/cloud_volume.png' end end diff --git a/app/decorators/cloud_volume_snapshot_decorator.rb b/app/decorators/cloud_volume_snapshot_decorator.rb index cb092100d10..62b81e2939b 100644 --- a/app/decorators/cloud_volume_snapshot_decorator.rb +++ b/app/decorators/cloud_volume_snapshot_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'fa fa-camera' end - def fonticon - 'fa fa-camera' - end - - def listicon_image + def self.listicon_image '100/cloud_volume_snapshot.png' end end diff --git a/app/decorators/condition_decorator.rb b/app/decorators/condition_decorator.rb index ea141bcb8a8..1e53bc5f3fe 100644 --- a/app/decorators/condition_decorator.rb +++ b/app/decorators/condition_decorator.rb @@ -1,5 +1,5 @@ class ConditionDecorator < MiqDecorator - def fonticon + def self.fonticon 'product product-miq_condition' end end diff --git a/app/decorators/configuration_script_source_decorator.rb b/app/decorators/configuration_script_source_decorator.rb index 1212521b569..ecb6ec61a31 100644 --- a/app/decorators/configuration_script_source_decorator.rb +++ b/app/decorators/configuration_script_source_decorator.rb @@ -1,9 +1,9 @@ class ConfigurationScriptSourceDecorator < MiqDecorator - def fonticon + def self.fonticon "pficon pficon-repository" end - def listicon_image + def self.listicon_image nil end end diff --git a/app/decorators/configured_system_decorator.rb b/app/decorators/configured_system_decorator.rb index bedb8d24e3b..34d440cc805 100644 --- a/app/decorators/configured_system_decorator.rb +++ b/app/decorators/configured_system_decorator.rb @@ -1,5 +1,5 @@ class ConfiguredSystemDecorator < MiqDecorator - def fonticon + def self.fonticon 'product product-configured_system' end diff --git a/app/decorators/container_build_decorator.rb b/app/decorators/container_build_decorator.rb index 91b40c5fb67..5b86a9d5f16 100644 --- a/app/decorators/container_build_decorator.rb +++ b/app/decorators/container_build_decorator.rb @@ -1,9 +1,9 @@ class ContainerBuildDecorator < MiqDecorator - def fonticon + def self.fonticon 'pficon pficon-build' end - def listicon_image + def self.listicon_image '100/container_build.png' end end diff --git a/app/decorators/container_decorator.rb b/app/decorators/container_decorator.rb index 74a1d015164..9931c7b837f 100644 --- a/app/decorators/container_decorator.rb +++ b/app/decorators/container_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'fa fa-cube' end - def fonticon - 'fa fa-cube' - end - - def listicon_image + def self.listicon_image '100/container.png' end end diff --git a/app/decorators/container_group_decorator.rb b/app/decorators/container_group_decorator.rb index 177738a988c..a51ec1cf90a 100644 --- a/app/decorators/container_group_decorator.rb +++ b/app/decorators/container_group_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'fa fa-cubes' end - def fonticon - 'fa fa-cubes' - end - - def listicon_image + def self.listicon_image '100/container_group.png' end end diff --git a/app/decorators/container_image_decorator.rb b/app/decorators/container_image_decorator.rb index bd4d2e146d4..604f9e4e1d7 100644 --- a/app/decorators/container_image_decorator.rb +++ b/app/decorators/container_image_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'pficon pficon-image' end - def fonticon - 'pficon pficon-image' - end - - def listicon_image + def self.listicon_image '100/container_image.png' end end diff --git a/app/decorators/container_image_registry_decorator.rb b/app/decorators/container_image_registry_decorator.rb index 4bee890996f..29c8f8d00e6 100644 --- a/app/decorators/container_image_registry_decorator.rb +++ b/app/decorators/container_image_registry_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'pficon pficon-registry' end - def fonticon - 'pficon pficon-registry' - end - - def listicon_image + def self.listicon_image '100/container_image_registry.png' end end diff --git a/app/decorators/container_node_decorator.rb b/app/decorators/container_node_decorator.rb index 5af2f1d0360..3a23b577211 100644 --- a/app/decorators/container_node_decorator.rb +++ b/app/decorators/container_node_decorator.rb @@ -3,15 +3,7 @@ def self.fonticon 'pficon pficon-container-node' end - def fonticon - 'pficon pficon-container-node' - end - def self.listicon_image '100/container_node.png' end - - def listicon_image - '100/container_node.png' - end end diff --git a/app/decorators/container_project_decorator.rb b/app/decorators/container_project_decorator.rb index e80c63ef763..34e8f81e7a8 100644 --- a/app/decorators/container_project_decorator.rb +++ b/app/decorators/container_project_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'pficon pficon-project' end - def fonticon - 'pficon pficon-project' - end - - def listicon_image + def self.listicon_image '100/container_project.png' end end diff --git a/app/decorators/container_replicator_decorator.rb b/app/decorators/container_replicator_decorator.rb index e1ecde75f42..e1b82724a7e 100644 --- a/app/decorators/container_replicator_decorator.rb +++ b/app/decorators/container_replicator_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'pficon pficon-replicator' end - def fonticon - 'pficon pficon-replicator' - end - - def listicon_image + def self.listicon_image '100/container_replicator.png' end end diff --git a/app/decorators/container_route_decorator.rb b/app/decorators/container_route_decorator.rb index 63da8f92789..ab4e5c9e2b8 100644 --- a/app/decorators/container_route_decorator.rb +++ b/app/decorators/container_route_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'pficon pficon-route' end - def fonticon - 'pficon pficon-route' - end - - def listicon_image + def self.listicon_image '100/container_route.png' end end diff --git a/app/decorators/container_service_decorator.rb b/app/decorators/container_service_decorator.rb index b0d3e109e5b..4b43692177f 100644 --- a/app/decorators/container_service_decorator.rb +++ b/app/decorators/container_service_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'pficon pficon-service' end - def fonticon - 'pficon pficon-service' - end - - def listicon_image + def self.listicon_image '100/container_service.png' end end diff --git a/app/decorators/container_template_decorator.rb b/app/decorators/container_template_decorator.rb index 20ead011a16..6db3010c051 100644 --- a/app/decorators/container_template_decorator.rb +++ b/app/decorators/container_template_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'product product-template' end - def fonticon - 'product product-template' - end - - def listicon_image + def self.listicon_image '100/container_template.png' end end diff --git a/app/decorators/customization_template_decorator.rb b/app/decorators/customization_template_decorator.rb index 1a48ff3ecb2..cd3b3383988 100644 --- a/app/decorators/customization_template_decorator.rb +++ b/app/decorators/customization_template_decorator.rb @@ -1,5 +1,5 @@ class CustomizationTemplateDecorator < MiqDecorator - def fonticon + def self.fonticon 'product product-template' end end diff --git a/app/decorators/datacenter_decorator.rb b/app/decorators/datacenter_decorator.rb index bf644e76d15..9ba8e0b7172 100644 --- a/app/decorators/datacenter_decorator.rb +++ b/app/decorators/datacenter_decorator.rb @@ -1,5 +1,5 @@ class DatacenterDecorator < MiqDecorator - def fonticon + def self.fonticon 'fa fa-building-o' end end diff --git a/app/decorators/dialog_decorator.rb b/app/decorators/dialog_decorator.rb index 9c11f7ab8c1..c88135c0b90 100644 --- a/app/decorators/dialog_decorator.rb +++ b/app/decorators/dialog_decorator.rb @@ -1,5 +1,5 @@ class DialogDecorator < MiqDecorator - def fonticon + def self.fonticon 'fa fa-comment-o' end end diff --git a/app/decorators/dialog_field_decorator.rb b/app/decorators/dialog_field_decorator.rb index 66b222bc25a..c15eee004ad 100644 --- a/app/decorators/dialog_field_decorator.rb +++ b/app/decorators/dialog_field_decorator.rb @@ -1,5 +1,5 @@ class DialogFieldDecorator < MiqDecorator - def fonticon + def self.fonticon 'product product-field' end end diff --git a/app/decorators/dialog_group_decorator.rb b/app/decorators/dialog_group_decorator.rb index d362a2c5c34..60267c4cfff 100644 --- a/app/decorators/dialog_group_decorator.rb +++ b/app/decorators/dialog_group_decorator.rb @@ -1,5 +1,5 @@ class DialogGroupDecorator < MiqDecorator - def fonticon + def self.fonticon 'fa fa-comments-o' end end diff --git a/app/decorators/dialog_tab_decorator.rb b/app/decorators/dialog_tab_decorator.rb index f71de2b8b24..c0bec9aedf5 100644 --- a/app/decorators/dialog_tab_decorator.rb +++ b/app/decorators/dialog_tab_decorator.rb @@ -1,5 +1,5 @@ class DialogTabDecorator < MiqDecorator - def fonticon + def self.fonticon 'product product-tab' end end diff --git a/app/decorators/ems_cluster_decorator.rb b/app/decorators/ems_cluster_decorator.rb index 90f6f87e321..89e44cd439a 100644 --- a/app/decorators/ems_cluster_decorator.rb +++ b/app/decorators/ems_cluster_decorator.rb @@ -1,9 +1,9 @@ class EmsClusterDecorator < MiqDecorator - def fonticon + def self.fonticon 'pficon pficon-cluster' end - def listicon_image + def self.listicon_image '100/ems_cluster.png' end end diff --git a/app/decorators/ems_folder_decorator.rb b/app/decorators/ems_folder_decorator.rb index 4b39a18a18f..a85fa7f791d 100644 --- a/app/decorators/ems_folder_decorator.rb +++ b/app/decorators/ems_folder_decorator.rb @@ -1,5 +1,5 @@ class EmsFolderDecorator < MiqDecorator - def fonticon + def self.fonticon 'pficon pficon-folder-close' end end diff --git a/app/decorators/ext_management_system_decorator.rb b/app/decorators/ext_management_system_decorator.rb index 27807e1d708..5c57355c61a 100644 --- a/app/decorators/ext_management_system_decorator.rb +++ b/app/decorators/ext_management_system_decorator.rb @@ -1,5 +1,5 @@ class ExtManagementSystemDecorator < MiqDecorator - def fonticon + def self.fonticon nil end diff --git a/app/decorators/flavor_decorator.rb b/app/decorators/flavor_decorator.rb index c151a8dce8f..c1834a1e62f 100644 --- a/app/decorators/flavor_decorator.rb +++ b/app/decorators/flavor_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'pficon pficon-flavor' end - def fonticon - 'pficon pficon-flavor' - end - - def listicon_image + def self.listicon_image '100/flavor.png' end end diff --git a/app/decorators/floating_ip_decorator.rb b/app/decorators/floating_ip_decorator.rb index f576c9ab2b4..3874afd5e0b 100644 --- a/app/decorators/floating_ip_decorator.rb +++ b/app/decorators/floating_ip_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'fa fa-map-marker' end - def fonticon - 'fa fa-map-marker' - end - - def listicon_image + def self.listicon_image '100/floating_ip.png' end end diff --git a/app/decorators/guest_device_decorator.rb b/app/decorators/guest_device_decorator.rb index 81030e49741..e36d81496db 100644 --- a/app/decorators/guest_device_decorator.rb +++ b/app/decorators/guest_device_decorator.rb @@ -1,5 +1,5 @@ class GuestDeviceDecorator < MiqDecorator - def fonticon + def self.fonticon 'product product-network_card' end end diff --git a/app/decorators/host_decorator.rb b/app/decorators/host_decorator.rb index 136052d73dc..36ea0407538 100644 --- a/app/decorators/host_decorator.rb +++ b/app/decorators/host_decorator.rb @@ -1,5 +1,5 @@ class HostDecorator < MiqDecorator - def fonticon + def self.fonticon 'pficon pficon-screen' end diff --git a/app/decorators/iso_datastore_decorator.rb b/app/decorators/iso_datastore_decorator.rb index 1f5c0d46b91..928037c40ee 100644 --- a/app/decorators/iso_datastore_decorator.rb +++ b/app/decorators/iso_datastore_decorator.rb @@ -1,5 +1,5 @@ class IsoDatastoreDecorator < MiqDecorator - def fonticon + def self.fonticon 'pficon pficon-server' end end diff --git a/app/decorators/iso_image_decorator.rb b/app/decorators/iso_image_decorator.rb index 60809d01fac..a80971439bb 100644 --- a/app/decorators/iso_image_decorator.rb +++ b/app/decorators/iso_image_decorator.rb @@ -1,5 +1,5 @@ class IsoImageDecorator < MiqDecorator - def fonticon + def self.fonticon 'product product-network_card' end end diff --git a/app/decorators/lan_decorator.rb b/app/decorators/lan_decorator.rb index 7e843d7daad..6efc0650125 100644 --- a/app/decorators/lan_decorator.rb +++ b/app/decorators/lan_decorator.rb @@ -1,9 +1,9 @@ class LanDecorator < MiqDecorator - def fonticon + def self.fonticon 'product product-network_switch' end - def listicon_image + def self.listicon_image '100/network_switch.png' end end diff --git a/app/decorators/ldap_domain_decorator.rb b/app/decorators/ldap_domain_decorator.rb index 378d244fca9..1a8e1a17324 100644 --- a/app/decorators/ldap_domain_decorator.rb +++ b/app/decorators/ldap_domain_decorator.rb @@ -1,5 +1,5 @@ class LdapDomainDecorator < MiqDecorator - def fonticon + def self.fonticon 'pficon pficon-domain' end end diff --git a/app/decorators/ldap_region_decorator.rb b/app/decorators/ldap_region_decorator.rb index 1188dbf5016..acc4edc6d7f 100644 --- a/app/decorators/ldap_region_decorator.rb +++ b/app/decorators/ldap_region_decorator.rb @@ -1,5 +1,5 @@ class LdapRegionDecorator < MiqDecorator - def fonticon + def self.fonticon 'pficon pficon-regions' end end diff --git a/app/decorators/load_balancer_decorator.rb b/app/decorators/load_balancer_decorator.rb index 1580e1560d5..1e5222431e5 100644 --- a/app/decorators/load_balancer_decorator.rb +++ b/app/decorators/load_balancer_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'product product-load_balancer' end - def fonticon - 'product product-load_balancer' - end - - def listicon_image + def self.listicon_image '100/load_balancer.png' end end diff --git a/app/decorators/manageiq/providers/ansible_tower/automation_manager/configuration_script_decorator.rb b/app/decorators/manageiq/providers/ansible_tower/automation_manager/configuration_script_decorator.rb index ce590eb15dd..96b74f22b2d 100644 --- a/app/decorators/manageiq/providers/ansible_tower/automation_manager/configuration_script_decorator.rb +++ b/app/decorators/manageiq/providers/ansible_tower/automation_manager/configuration_script_decorator.rb @@ -1,10 +1,10 @@ module ManageIQ::Providers::AnsibleTower class AutomationManager::ConfigurationScriptDecorator < MiqDecorator - def fonticon + def self.fonticon 'product product-template' end - def listicon_image + def self.listicon_image '100/configuration_script.png' end end diff --git a/app/decorators/manageiq/providers/ansible_tower/automation_manager/job_decorator.rb b/app/decorators/manageiq/providers/ansible_tower/automation_manager/job_decorator.rb index 0821436b9b7..f02e6ad2254 100644 --- a/app/decorators/manageiq/providers/ansible_tower/automation_manager/job_decorator.rb +++ b/app/decorators/manageiq/providers/ansible_tower/automation_manager/job_decorator.rb @@ -4,11 +4,7 @@ def self.fonticon 'product product-orchestration_stack' end - def fonticon - 'product product-orchestration_stack' - end - - def listicon_image + def self.listicon_image '100/orchestration_stack.png' end end diff --git a/app/decorators/manageiq/providers/ansible_tower/automation_manager/playbook_decorator.rb b/app/decorators/manageiq/providers/ansible_tower/automation_manager/playbook_decorator.rb index e2cb1fe406b..063275848fe 100644 --- a/app/decorators/manageiq/providers/ansible_tower/automation_manager/playbook_decorator.rb +++ b/app/decorators/manageiq/providers/ansible_tower/automation_manager/playbook_decorator.rb @@ -1,10 +1,10 @@ module ManageIQ::Providers::AnsibleTower class AutomationManager::PlaybookDecorator < MiqDecorator - def fonticon + def self.fonticon nil end - def listicon_image + def self.listicon_image 'svg/vendor-ansible.svg' end end diff --git a/app/decorators/manageiq/providers/automation_manager/authentication_decorator.rb b/app/decorators/manageiq/providers/automation_manager/authentication_decorator.rb index 7c1e1dd4dba..aeb206bc7b1 100644 --- a/app/decorators/manageiq/providers/automation_manager/authentication_decorator.rb +++ b/app/decorators/manageiq/providers/automation_manager/authentication_decorator.rb @@ -1,10 +1,10 @@ module ManageIQ::Providers class AutomationManager::AuthenticationDecorator < MiqDecorator - def fonticon + def self.fonticon 'fa fa-lock' end - def listicon_image + def self.listicon_image '100/authentication.png' end end diff --git a/app/decorators/manageiq/providers/automation_manager/inventory_group_decorator.rb b/app/decorators/manageiq/providers/automation_manager/inventory_group_decorator.rb index 0df8a1c8574..7c8cb5d8ffa 100644 --- a/app/decorators/manageiq/providers/automation_manager/inventory_group_decorator.rb +++ b/app/decorators/manageiq/providers/automation_manager/inventory_group_decorator.rb @@ -1,10 +1,10 @@ module ManageIQ::Providers class AutomationManager::InventoryGroupDecorator < MiqDecorator - def fonticon + def self.fonticon 'pficon pficon-folder-close' end - def listicon_image + def self.listicon_image '100/inventory_group.png' end end diff --git a/app/decorators/manageiq/providers/automation_manager/inventory_root_group_decorator.rb b/app/decorators/manageiq/providers/automation_manager/inventory_root_group_decorator.rb index d4724405972..94e69a51c24 100644 --- a/app/decorators/manageiq/providers/automation_manager/inventory_root_group_decorator.rb +++ b/app/decorators/manageiq/providers/automation_manager/inventory_root_group_decorator.rb @@ -1,10 +1,10 @@ module ManageIQ::Providers class AutomationManager::InventoryRootGroupDecorator < MiqDecorator - def fonticon + def self.fonticon 'pficon pficon-folder-close' end - def listicon_image + def self.listicon_image '100/inventory_group.png' end end diff --git a/app/decorators/manageiq/providers/automation_manager_decorator.rb b/app/decorators/manageiq/providers/automation_manager_decorator.rb index 69b51debca1..345dfd3d941 100644 --- a/app/decorators/manageiq/providers/automation_manager_decorator.rb +++ b/app/decorators/manageiq/providers/automation_manager_decorator.rb @@ -1,6 +1,6 @@ module ManageIQ::Providers class AutomationManagerDecorator < MiqDecorator - def fonticon + def self.fonticon nil end diff --git a/app/decorators/manageiq/providers/cloud_manager/orchestration_stack_decorator.rb b/app/decorators/manageiq/providers/cloud_manager/orchestration_stack_decorator.rb index e9d4a9b189d..6b37bbf2026 100644 --- a/app/decorators/manageiq/providers/cloud_manager/orchestration_stack_decorator.rb +++ b/app/decorators/manageiq/providers/cloud_manager/orchestration_stack_decorator.rb @@ -4,11 +4,7 @@ def self.fonticon 'product product-orchestration_stack' end - def fonticon - 'product product-orchestration_stack' - end - - def listicon_image + def self.listicon_image "100/orchestration_stack.png" end end diff --git a/app/decorators/manageiq/providers/configuration_manager_decorator.rb b/app/decorators/manageiq/providers/configuration_manager_decorator.rb index 1d0d9d73c7f..4a5345c1718 100644 --- a/app/decorators/manageiq/providers/configuration_manager_decorator.rb +++ b/app/decorators/manageiq/providers/configuration_manager_decorator.rb @@ -1,6 +1,6 @@ module ManageIQ::Providers class ConfigurationManagerDecorator < MiqDecorator - def fonticon + def self.fonticon nil end diff --git a/app/decorators/manageiq/providers/embedded_ansible/automation_manager/playbook_decorator.rb b/app/decorators/manageiq/providers/embedded_ansible/automation_manager/playbook_decorator.rb index 0fdbf9e5844..50f142cb484 100644 --- a/app/decorators/manageiq/providers/embedded_ansible/automation_manager/playbook_decorator.rb +++ b/app/decorators/manageiq/providers/embedded_ansible/automation_manager/playbook_decorator.rb @@ -1,10 +1,10 @@ module ManageIQ::Providers::EmbeddedAnsible class AutomationManager::PlaybookDecorator < MiqDecorator - def fonticon + def self.fonticon nil end - def listicon_image + def self.listicon_image 'svg/vendor-ansible.svg' end end diff --git a/app/decorators/manageiq/providers/embedded_automation_manager/authentication_decorator.rb b/app/decorators/manageiq/providers/embedded_automation_manager/authentication_decorator.rb index 3f38c45e98a..a7e7eb5dd24 100644 --- a/app/decorators/manageiq/providers/embedded_automation_manager/authentication_decorator.rb +++ b/app/decorators/manageiq/providers/embedded_automation_manager/authentication_decorator.rb @@ -1,10 +1,10 @@ module ManageIQ::Providers class EmbeddedAutomationManager::AuthenticationDecorator < MiqDecorator - def fonticon + def self.fonticon 'fa fa-lock' end - def listicon_image + def self.listicon_image '100/authentication.png' end end diff --git a/app/decorators/manageiq/providers/embedded_automation_manager/configuration_script_source_decorator.rb b/app/decorators/manageiq/providers/embedded_automation_manager/configuration_script_source_decorator.rb index 8e2adc834fc..27bff4c34a1 100644 --- a/app/decorators/manageiq/providers/embedded_automation_manager/configuration_script_source_decorator.rb +++ b/app/decorators/manageiq/providers/embedded_automation_manager/configuration_script_source_decorator.rb @@ -1,10 +1,10 @@ module ManageIQ::Providers class EmbeddedAutomationManager::ConfigurationScriptSourceDecorator < MiqDecorator - def fonticon + def self.fonticon "pficon pficon-repository" end - - def listicon_image + + def self.listicon_image nil end end diff --git a/app/decorators/manageiq/providers/hawkular/middleware_manager_decorator.rb b/app/decorators/manageiq/providers/hawkular/middleware_manager_decorator.rb index 9b7eedc571a..b29815b59d7 100644 --- a/app/decorators/manageiq/providers/hawkular/middleware_manager_decorator.rb +++ b/app/decorators/manageiq/providers/hawkular/middleware_manager_decorator.rb @@ -1,10 +1,10 @@ module ManageIQ::Providers::Hawkular class MiddlewareManagerDecorator < MiqDecorator - def fonticon + def self.fonticon nil end - def listicon_image + def self.listicon_image "svg/vendor-hawkular.svg" end end diff --git a/app/decorators/manageiq/providers/kubernetes/container_manager_decorator.rb b/app/decorators/manageiq/providers/kubernetes/container_manager_decorator.rb index 80ed760f0e0..fb85717268b 100644 --- a/app/decorators/manageiq/providers/kubernetes/container_manager_decorator.rb +++ b/app/decorators/manageiq/providers/kubernetes/container_manager_decorator.rb @@ -1,6 +1,6 @@ module ManageIQ::Providers::Kubernetes class ContainerManagerDecorator < MiqDecorator - def listicon_image + def self.listicon_image "svg/vendor-kubernetes.svg" end end diff --git a/app/decorators/manageiq/providers/openshift/container_manager_decorator.rb b/app/decorators/manageiq/providers/openshift/container_manager_decorator.rb index 872ecc22b4f..0d8f40c0195 100644 --- a/app/decorators/manageiq/providers/openshift/container_manager_decorator.rb +++ b/app/decorators/manageiq/providers/openshift/container_manager_decorator.rb @@ -3,9 +3,5 @@ class ContainerManagerDecorator < MiqDecorator def self.listicon_image "svg/vendor-openshift.svg" end - - def listicon_image - self.class.listicon_image - end end end diff --git a/app/decorators/manageiq/providers/storage_manager/cinder_manager_decorator.rb b/app/decorators/manageiq/providers/storage_manager/cinder_manager_decorator.rb index d93080d8a0e..b5c0a88c236 100644 --- a/app/decorators/manageiq/providers/storage_manager/cinder_manager_decorator.rb +++ b/app/decorators/manageiq/providers/storage_manager/cinder_manager_decorator.rb @@ -1,6 +1,6 @@ module ManageIQ::Providers class StorageManager::CinderManagerDecorator < MiqDecorator - def listicon_image + def self.listicon_image "svg/vendor-cinder.svg" end end diff --git a/app/decorators/manageiq/providers/storage_manager/swift_manager_decorator.rb b/app/decorators/manageiq/providers/storage_manager/swift_manager_decorator.rb index 889c3104351..e3136b38739 100644 --- a/app/decorators/manageiq/providers/storage_manager/swift_manager_decorator.rb +++ b/app/decorators/manageiq/providers/storage_manager/swift_manager_decorator.rb @@ -1,6 +1,6 @@ module ManageIQ::Providers class StorageManager::SwiftManagerDecorator < MiqDecorator - def listicon_image + def self.listicon_image "svg/vendor-swift.svg" end end diff --git a/app/decorators/middleware_datasource_decorator.rb b/app/decorators/middleware_datasource_decorator.rb index af6f3ca1b37..34261e9eb18 100644 --- a/app/decorators/middleware_datasource_decorator.rb +++ b/app/decorators/middleware_datasource_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'fa fa-database' end - def fonticon - 'fa fa-database' - end - - def listicon_image + def self.listicon_image '100/middleware_datasource.png' end end diff --git a/app/decorators/middleware_domain_decorator.rb b/app/decorators/middleware_domain_decorator.rb index 9bcdbddc85e..94195380721 100644 --- a/app/decorators/middleware_domain_decorator.rb +++ b/app/decorators/middleware_domain_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'pficon-domain' end - def fonticon - 'pficon-domain' - end - - def listicon_image + def self.listicon_image '100/middleware_domain.png' end end diff --git a/app/decorators/middleware_messaging_decorator.rb b/app/decorators/middleware_messaging_decorator.rb index c9a365d0b6b..c74cb8cbdf1 100644 --- a/app/decorators/middleware_messaging_decorator.rb +++ b/app/decorators/middleware_messaging_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'fa fa-exchange' end - def fonticon - 'fa fa-exchange' - end - - def listicon_image + def self.listicon_image '100/middleware_messaging.png' end end diff --git a/app/decorators/middleware_server_decorator.rb b/app/decorators/middleware_server_decorator.rb index 6cdccbecd82..194fa2e9d6c 100644 --- a/app/decorators/middleware_server_decorator.rb +++ b/app/decorators/middleware_server_decorator.rb @@ -1,5 +1,5 @@ class MiddlewareServerDecorator < MiqDecorator - def fonticon + def self.fonticon nil end diff --git a/app/decorators/middleware_server_group_decorator.rb b/app/decorators/middleware_server_group_decorator.rb index 373a87bd5c5..8743dae18d2 100644 --- a/app/decorators/middleware_server_group_decorator.rb +++ b/app/decorators/middleware_server_group_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'pficon-server-group' end - def fonticon - 'pficon-server-group' - end - - def listicon_image + def self.listicon_image '100/middleware_server_group.png' end end diff --git a/app/decorators/miq_ae_class_decorator.rb b/app/decorators/miq_ae_class_decorator.rb index 35e3e1c5376..f6eb2fbf417 100644 --- a/app/decorators/miq_ae_class_decorator.rb +++ b/app/decorators/miq_ae_class_decorator.rb @@ -1,5 +1,5 @@ class MiqAeClassDecorator < MiqDecorator - def fonticon + def self.fonticon 'product product-ae_class' end end diff --git a/app/decorators/miq_ae_instance_decorator.rb b/app/decorators/miq_ae_instance_decorator.rb index 96502110116..a5c0abd3285 100644 --- a/app/decorators/miq_ae_instance_decorator.rb +++ b/app/decorators/miq_ae_instance_decorator.rb @@ -1,5 +1,5 @@ class MiqAeInstanceDecorator < MiqDecorator - def fonticon + def self.fonticon 'fa fa-file-text-o' end end diff --git a/app/decorators/miq_ae_method_decorator.rb b/app/decorators/miq_ae_method_decorator.rb index 4675e1584f0..99a1d122412 100644 --- a/app/decorators/miq_ae_method_decorator.rb +++ b/app/decorators/miq_ae_method_decorator.rb @@ -1,5 +1,5 @@ class MiqAeMethodDecorator < MiqDecorator - def fonticon + def self.fonticon 'product product-method' end end diff --git a/app/decorators/miq_ae_namespace_decorator.rb b/app/decorators/miq_ae_namespace_decorator.rb index bf3422d61ea..c1b9fe524d8 100644 --- a/app/decorators/miq_ae_namespace_decorator.rb +++ b/app/decorators/miq_ae_namespace_decorator.rb @@ -1,5 +1,5 @@ class MiqAeNamespaceDecorator < MiqDecorator - def fonticon + def self.fonticon 'pficon pficon-folder-close' end end diff --git a/app/decorators/miq_alert_decorator.rb b/app/decorators/miq_alert_decorator.rb index 7fc5430dce7..28a28178e2f 100644 --- a/app/decorators/miq_alert_decorator.rb +++ b/app/decorators/miq_alert_decorator.rb @@ -1,5 +1,5 @@ class MiqAlertDecorator < MiqDecorator - def fonticon + def self.fonticon 'pficon pficon-warning-triangle-o' end end diff --git a/app/decorators/miq_alert_set_decorator.rb b/app/decorators/miq_alert_set_decorator.rb index 87ee4581e7f..04bcb720881 100644 --- a/app/decorators/miq_alert_set_decorator.rb +++ b/app/decorators/miq_alert_set_decorator.rb @@ -1,5 +1,5 @@ class MiqAlertSetDecorator < MiqDecorator - def fonticon + def self.fonticon 'pficon pficon-warning-triangle-o' end end diff --git a/app/decorators/miq_dialog_decorator.rb b/app/decorators/miq_dialog_decorator.rb index ebcbabc9587..3f9b65f25db 100644 --- a/app/decorators/miq_dialog_decorator.rb +++ b/app/decorators/miq_dialog_decorator.rb @@ -1,5 +1,5 @@ class MiqDialogDecorator < MiqDecorator - def fonticon + def self.fonticon 'fa fa-comment-o' end end diff --git a/app/decorators/miq_group_decorator.rb b/app/decorators/miq_group_decorator.rb index b19086a2376..818fea0052c 100644 --- a/app/decorators/miq_group_decorator.rb +++ b/app/decorators/miq_group_decorator.rb @@ -1,5 +1,5 @@ class MiqGroupDecorator < MiqDecorator - def fonticon + def self.fonticon 'product product-group' end end diff --git a/app/decorators/miq_region_decorator.rb b/app/decorators/miq_region_decorator.rb index 045547ac723..0a5edae1b8e 100644 --- a/app/decorators/miq_region_decorator.rb +++ b/app/decorators/miq_region_decorator.rb @@ -1,5 +1,5 @@ class MiqRegionDecorator < MiqDecorator - def fonticon + def self.fonticon 'pficon pficon-regions' end end diff --git a/app/decorators/miq_report_decorator.rb b/app/decorators/miq_report_decorator.rb index 7705c99b822..174f8504e61 100644 --- a/app/decorators/miq_report_decorator.rb +++ b/app/decorators/miq_report_decorator.rb @@ -1,5 +1,5 @@ class MiqReportDecorator < MiqDecorator - def fonticon + def self.fonticon 'fa fa-file-text-o' end end diff --git a/app/decorators/miq_schedule_decorator.rb b/app/decorators/miq_schedule_decorator.rb index 9828ffb4c6e..64dca49ceb3 100644 --- a/app/decorators/miq_schedule_decorator.rb +++ b/app/decorators/miq_schedule_decorator.rb @@ -1,5 +1,5 @@ class MiqScheduleDecorator < MiqDecorator - def fonticon + def self.fonticon 'fa fa-clock-o' end end diff --git a/app/decorators/miq_scsi_lun_decorator.rb b/app/decorators/miq_scsi_lun_decorator.rb index 6d58dd1ca76..2fec8e40381 100644 --- a/app/decorators/miq_scsi_lun_decorator.rb +++ b/app/decorators/miq_scsi_lun_decorator.rb @@ -1,5 +1,5 @@ class MiqScsiLunDecorator < MiqDecorator - def fonticon + def self.fonticon 'fa fa-database' end end diff --git a/app/decorators/miq_scsi_target_decorator.rb b/app/decorators/miq_scsi_target_decorator.rb index 924a495b483..4b473a8f73e 100644 --- a/app/decorators/miq_scsi_target_decorator.rb +++ b/app/decorators/miq_scsi_target_decorator.rb @@ -1,5 +1,5 @@ class MiqScsiTargetDecorator < MiqDecorator - def fonticon + def self.fonticon 'product product-network_card' end end diff --git a/app/decorators/miq_search_decorator.rb b/app/decorators/miq_search_decorator.rb index be0a40e6199..7263268cb31 100644 --- a/app/decorators/miq_search_decorator.rb +++ b/app/decorators/miq_search_decorator.rb @@ -1,5 +1,5 @@ class MiqSearchDecorator < MiqDecorator - def fonticon + def self.fonticon 'fa fa-filter' end end diff --git a/app/decorators/miq_server_decorator.rb b/app/decorators/miq_server_decorator.rb index eac16abec23..e9a21758fb6 100644 --- a/app/decorators/miq_server_decorator.rb +++ b/app/decorators/miq_server_decorator.rb @@ -1,5 +1,5 @@ class MiqServerDecorator < MiqDecorator - def fonticon + def self.fonticon 'pficon pficon-server' end end diff --git a/app/decorators/miq_user_role_decorator.rb b/app/decorators/miq_user_role_decorator.rb index c3769c12f0d..a7a4a98c762 100644 --- a/app/decorators/miq_user_role_decorator.rb +++ b/app/decorators/miq_user_role_decorator.rb @@ -1,5 +1,5 @@ class MiqUserRoleDecorator < MiqDecorator - def fonticon + def self.fonticon 'product product-role' end end diff --git a/app/decorators/miq_widget_set_decorator.rb b/app/decorators/miq_widget_set_decorator.rb index 4a551eca8fe..8cb2e930f17 100644 --- a/app/decorators/miq_widget_set_decorator.rb +++ b/app/decorators/miq_widget_set_decorator.rb @@ -1,5 +1,5 @@ class MiqWidgetSetDecorator < MiqDecorator - def fonticon + def self.fonticon 'fa fa-tachometer' end end diff --git a/app/decorators/network_port_decorator.rb b/app/decorators/network_port_decorator.rb index e1028fc8392..8a4f55b9739 100644 --- a/app/decorators/network_port_decorator.rb +++ b/app/decorators/network_port_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'fa product-network_port' end - def fonticon - 'fa product-network_port' - end - - def listicon_image + def self.listicon_image '100/network_port.png' end end diff --git a/app/decorators/network_router_decorator.rb b/app/decorators/network_router_decorator.rb index f7ac3ad362e..464a3bc64f4 100644 --- a/app/decorators/network_router_decorator.rb +++ b/app/decorators/network_router_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'pficon pficon-route' end - def fonticon - 'pficon pficon-route' - end - - def listicon_image + def self.listicon_image '100/network_router.png' end end diff --git a/app/decorators/orchestration_template_decorator.rb b/app/decorators/orchestration_template_decorator.rb index 93a5ec5a178..1a5e84d0867 100644 --- a/app/decorators/orchestration_template_decorator.rb +++ b/app/decorators/orchestration_template_decorator.rb @@ -1,5 +1,5 @@ class OrchestrationTemplateDecorator < MiqDecorator - def fonticon + def self.fonticon 'product product-template' end end diff --git a/app/decorators/persistent_volume_decorator.rb b/app/decorators/persistent_volume_decorator.rb index e4a2a09be9a..6b82f930a7d 100644 --- a/app/decorators/persistent_volume_decorator.rb +++ b/app/decorators/persistent_volume_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'pficon pficon-volume' end - def fonticon - 'pficon pficon-volume' - end - - def listicon_image + def self.listicon_image '100/persistent_volume.png' end end diff --git a/app/decorators/pxe_image_type_decorator.rb b/app/decorators/pxe_image_type_decorator.rb index b911d0eeb74..54b54293050 100644 --- a/app/decorators/pxe_image_type_decorator.rb +++ b/app/decorators/pxe_image_type_decorator.rb @@ -1,5 +1,5 @@ class PxeImageTypeDecorator < MiqDecorator - def fonticon + def self.fonticon 'product product-network_card' end end diff --git a/app/decorators/pxe_server_decorator.rb b/app/decorators/pxe_server_decorator.rb index 85a7681f760..cd2bc6c5d6b 100644 --- a/app/decorators/pxe_server_decorator.rb +++ b/app/decorators/pxe_server_decorator.rb @@ -1,5 +1,5 @@ class PxeServerDecorator < MiqDecorator - def fonticon + def self.fonticon 'pficon pficon-server' end end diff --git a/app/decorators/registry_item_decorator.rb b/app/decorators/registry_item_decorator.rb index cd954c9e505..6c8f47126d2 100644 --- a/app/decorators/registry_item_decorator.rb +++ b/app/decorators/registry_item_decorator.rb @@ -1,5 +1,5 @@ class RegistryItemDecorator < MiqDecorator - def fonticon + def self.fonticon nil end diff --git a/app/decorators/resource_pool_decorator.rb b/app/decorators/resource_pool_decorator.rb index 405f8792010..da0b75fe216 100644 --- a/app/decorators/resource_pool_decorator.rb +++ b/app/decorators/resource_pool_decorator.rb @@ -3,10 +3,6 @@ def self.fonticon 'pficon pficon-resource-pool' end - def fonticon - 'pficon pficon-resource-pool' - end - def listicon_image vapp ? '100/vapp.png' : '100/resource_pool.png' end diff --git a/app/decorators/scan_item_set_decorator.rb b/app/decorators/scan_item_set_decorator.rb index f6ec77a2170..29034ab444a 100644 --- a/app/decorators/scan_item_set_decorator.rb +++ b/app/decorators/scan_item_set_decorator.rb @@ -1,5 +1,5 @@ class ScanItemSetDecorator < MiqDecorator - def fonticon + def self.fonticon 'fa fa-search' end end diff --git a/app/decorators/security_group_decorator.rb b/app/decorators/security_group_decorator.rb index 249d206326f..b9b3d96b02c 100644 --- a/app/decorators/security_group_decorator.rb +++ b/app/decorators/security_group_decorator.rb @@ -3,11 +3,7 @@ def self.fonticon 'pficon pficon-cloud-security' end - def fonticon - 'pficon pficon-cloud-security' - end - - def listicon_image + def self.listicon_image '100/security_group.png' end end diff --git a/app/decorators/server_role_decorator.rb b/app/decorators/server_role_decorator.rb index 26166f4fc4e..1ea867c232f 100644 --- a/app/decorators/server_role_decorator.rb +++ b/app/decorators/server_role_decorator.rb @@ -1,5 +1,5 @@ class ServerRoleDecorator < MiqDecorator - def fonticon + def self.fonticon 'product product-role' end end diff --git a/app/decorators/service_decorator.rb b/app/decorators/service_decorator.rb index 3acee0676aa..64be0b898fe 100644 --- a/app/decorators/service_decorator.rb +++ b/app/decorators/service_decorator.rb @@ -1,5 +1,5 @@ class ServiceDecorator < MiqDecorator - def fonticon + def self.fonticon 'pficon pficon-service' end diff --git a/app/decorators/service_template_ansible_tower_decorator.rb b/app/decorators/service_template_ansible_tower_decorator.rb index 78e160c3e04..6791c9beb22 100644 --- a/app/decorators/service_template_ansible_tower_decorator.rb +++ b/app/decorators/service_template_ansible_tower_decorator.rb @@ -1,5 +1,5 @@ class ServiceTemplateAnsibleTowerDecorator < MiqDecorator - def fonticon + def self.fonticon 'product product-template' end diff --git a/app/decorators/service_template_catalog_decorator.rb b/app/decorators/service_template_catalog_decorator.rb index 672c0506556..20d1b7f147d 100644 --- a/app/decorators/service_template_catalog_decorator.rb +++ b/app/decorators/service_template_catalog_decorator.rb @@ -1,5 +1,5 @@ class ServiceTemplateCatalogDecorator < MiqDecorator - def fonticon + def self.fonticon 'product product-template' end end diff --git a/app/decorators/service_template_decorator.rb b/app/decorators/service_template_decorator.rb index dae93899522..31b456c5e73 100644 --- a/app/decorators/service_template_decorator.rb +++ b/app/decorators/service_template_decorator.rb @@ -1,5 +1,5 @@ class ServiceTemplateDecorator < MiqDecorator - def fonticon + def self.fonticon 'product product-template' end diff --git a/app/decorators/snapshot_decorator.rb b/app/decorators/snapshot_decorator.rb index 5b22787894d..79ca563f354 100644 --- a/app/decorators/snapshot_decorator.rb +++ b/app/decorators/snapshot_decorator.rb @@ -1,5 +1,5 @@ class SnapshotDecorator < MiqDecorator - def fonticon + def self.fonticon 'fa fa-camera' end end diff --git a/app/decorators/storage_decorator.rb b/app/decorators/storage_decorator.rb index 4522f285147..1f1780b40c3 100644 --- a/app/decorators/storage_decorator.rb +++ b/app/decorators/storage_decorator.rb @@ -1,5 +1,5 @@ class StorageDecorator < MiqDecorator - def fonticon + def self.fonticon 'fa fa-database' end end diff --git a/app/decorators/switch_decorator.rb b/app/decorators/switch_decorator.rb index 9b9da264155..9242501c047 100644 --- a/app/decorators/switch_decorator.rb +++ b/app/decorators/switch_decorator.rb @@ -1,9 +1,9 @@ class SwitchDecorator < MiqDecorator - def fonticon + def self.fonticon 'product product-network_switch' end - def listicon_image + def self.listicon_image '100/network_switch.png' end end diff --git a/app/decorators/user_decorator.rb b/app/decorators/user_decorator.rb index ce13d999a6d..5960917427c 100644 --- a/app/decorators/user_decorator.rb +++ b/app/decorators/user_decorator.rb @@ -1,5 +1,5 @@ class UserDecorator < MiqDecorator - def fonticon + def self.fonticon 'pficon pficon-user' end end diff --git a/app/decorators/vm_or_template_decorator.rb b/app/decorators/vm_or_template_decorator.rb index ae2a654657e..8d53859c978 100644 --- a/app/decorators/vm_or_template_decorator.rb +++ b/app/decorators/vm_or_template_decorator.rb @@ -1,5 +1,5 @@ class VmOrTemplateDecorator < MiqDecorator - def fonticon + def self.fonticon nil end diff --git a/app/decorators/vmdb_index_decorator.rb b/app/decorators/vmdb_index_decorator.rb index 0d7add4d0a2..45ae731f0c8 100644 --- a/app/decorators/vmdb_index_decorator.rb +++ b/app/decorators/vmdb_index_decorator.rb @@ -1,5 +1,5 @@ class VmdbIndexDecorator < MiqDecorator - def fonticon + def self.fonticon 'fa fa-table' end end diff --git a/app/decorators/vmdb_table_decorator.rb b/app/decorators/vmdb_table_decorator.rb index af6416dd65b..5e5839c67cb 100644 --- a/app/decorators/vmdb_table_decorator.rb +++ b/app/decorators/vmdb_table_decorator.rb @@ -1,5 +1,5 @@ class VmdbTableDecorator < MiqDecorator - def fonticon + def self.fonticon 'fa fa-table' end end diff --git a/app/decorators/windows_image_decorator.rb b/app/decorators/windows_image_decorator.rb index 222c26e0b91..d6142926b1d 100644 --- a/app/decorators/windows_image_decorator.rb +++ b/app/decorators/windows_image_decorator.rb @@ -1,5 +1,5 @@ class WindowsImageDecorator < MiqDecorator - def listicon_image + def self.listicon_image 'svg/os-windows_generic.svg' end end diff --git a/app/decorators/zone_decorator.rb b/app/decorators/zone_decorator.rb index 97097acc82a..3413f7203f8 100644 --- a/app/decorators/zone_decorator.rb +++ b/app/decorators/zone_decorator.rb @@ -1,5 +1,5 @@ class ZoneDecorator < MiqDecorator - def fonticon + def self.fonticon 'pficon pficon-zone' end end diff --git a/app/helpers/ansible_credential_helper/textual_summary.rb b/app/helpers/ansible_credential_helper/textual_summary.rb index bf3b79f641b..9f55e3cb321 100644 --- a/app/helpers/ansible_credential_helper/textual_summary.rb +++ b/app/helpers/ansible_credential_helper/textual_summary.rb @@ -9,6 +9,20 @@ def textual_group_relationships TextualGroup.new(_("Relationships"), %i(repositories)) end + def textual_group_options + options = [] + + @record.type.constantize::API_ATTRIBUTES.each do |key, value| + options << key + + define_singleton_method "textual_#{key}" do + {:label => _(value[:label]), :value => value[:type] == :password ? '*****' : @record.options[key], :title => _(value[:help_text])} + end + end + + TextualGroup.new(_("Credential Options"), options) + end + def textual_type {:label => _("Authentication Type"), :value => ui_lookup(:model => @record.type)} end diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 9ecca2e0975..b8150a04a92 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -147,9 +147,9 @@ def hover_class(item) if item.fetch_path(:link) || item.fetch_path(:value).kind_of?(Array) && item[:value].any? { |val| val[:link] } - 'no-hover' - else '' + else + 'no-hover' end end @@ -657,44 +657,6 @@ def check_if_button_is_implemented end end - CUSTOM_TOOLBAR_CONTROLLERS = [ - "cloud_tenant", - "service", - "vm_cloud", - "vm_infra", - "vm_or_template" - ] - # Return a blank tb if a placeholder is needed for AJAX explorer screens, return nil if no custom toolbar to be shown - def custom_toolbar_filename - if %w(cloud_tenant - ems_cloud - ems_cluster - ems_infra - ems_network - ems_storage - ems_physical_infra - host - miq_template - storage).include?(@layout) # Classic CIs - return "custom_buttons_tb" if @record && @lastaction == "show" && @display == "main" - end - - if @explorer && CUSTOM_TOOLBAR_CONTROLLERS.include?(params[:controller]) - if x_tree # Make sure we have the trees defined - if x_node == "root" || # If on a root, create placeholder toolbar - !@record # or no record showing - return "blank_view_tb" - elsif @display == "main" - return "custom_buttons_tb" - else - return "blank_view_tb" - end - end - end - - nil - end - # Return a blank tb if a placeholder is needed for AJAX explorer screens, return nil if no center toolbar to be shown def center_toolbar_filename _toolbar_chooser.center_toolbar_filename @@ -750,8 +712,10 @@ def calculate_toolbars end toolbars['center_tb'] = center_toolbar_filename - if fname = custom_toolbar_filename - toolbars['custom_tb'] = fname + + custom_toolbar = controller.custom_toolbar? + if custom_toolbar + toolbars['custom_tb'] = custom_toolbar == :blank ? 'blank_view_tb' : 'custom_buttons_tb' end toolbars['view_tb'] = inner_layout_present? ? x_view_toolbar_filename : view_toolbar_filename diff --git a/app/helpers/application_helper/button/ems_container_launch_external_logging_support.rb b/app/helpers/application_helper/button/ems_container_launch_external_logging_support.rb index 0f8daaac5be..4011deba1b3 100644 --- a/app/helpers/application_helper/button/ems_container_launch_external_logging_support.rb +++ b/app/helpers/application_helper/button/ems_container_launch_external_logging_support.rb @@ -1,7 +1,7 @@ class ApplicationHelper::Button::EmsContainerLaunchExternalLoggingSupport < ApplicationHelper::Button::GenericFeatureButton def initialize(view_context, view_binding, instance_data, props) props ||= {} - props.store_path(:options, :feature, :external_logging_support) + props.store_path(:options, :feature, :external_logging) super(view_context, view_binding, instance_data, props) end diff --git a/app/helpers/application_helper/button/middleware_server_action.rb b/app/helpers/application_helper/button/middleware_server_action.rb index 41a1df0c921..b54e8e82784 100644 --- a/app/helpers/application_helper/button/middleware_server_action.rb +++ b/app/helpers/application_helper/button/middleware_server_action.rb @@ -1,7 +1,18 @@ class ApplicationHelper::Button::MiddlewareServerAction < ApplicationHelper::Button::Basic def visible? - !@record.present? || - (@record.try(:product) != 'Hawkular' && @record.try(:middleware_server).try(:product) != 'Hawkular') + @record.present? && !hawkular? && !immutable? + end + + private + + def immutable? + properties = @record.try(:properties) + properties.nil? ? false : properties['Immutable'] == 'true' + end + + def hawkular? + @record.try(:product) == 'Hawkular' || + @record.try(:middleware_server).try(:product) == 'Hawkular' end end diff --git a/app/helpers/application_helper/button/service_retire.rb b/app/helpers/application_helper/button/service_retire.rb new file mode 100644 index 00000000000..bd64030933b --- /dev/null +++ b/app/helpers/application_helper/button/service_retire.rb @@ -0,0 +1,8 @@ +class ApplicationHelper::Button::ServiceRetire < ApplicationHelper::Button::Basic + needs :@record + + def disabled? + @error_message = _('Service is already retired') if @record.retired + @error_message.present? + end +end diff --git a/app/helpers/application_helper/button/set_ownership.rb b/app/helpers/application_helper/button/set_ownership.rb new file mode 100644 index 00000000000..70fa6e3e8a2 --- /dev/null +++ b/app/helpers/application_helper/button/set_ownership.rb @@ -0,0 +1,9 @@ +class ApplicationHelper::Button::SetOwnership < ApplicationHelper::Button::Basic + needs :@record + + def disabled? + @error_message = _('Ownership is controlled by tenant mapping') if + @record.try(:ext_management_system).try(:tenant_mapping_enabled?) + @error_message.present? + end +end diff --git a/app/helpers/application_helper/dialogs.rb b/app/helpers/application_helper/dialogs.rb index c11570c6c2b..82b11d2d952 100644 --- a/app/helpers/application_helper/dialogs.rb +++ b/app/helpers/application_helper/dialogs.rb @@ -1,19 +1,24 @@ module ApplicationHelper::Dialogs - def dialog_dropdown_select_values(field, selected_value, category_tags = nil) - values = [] - if !field.required - values.push(["", nil]) - elsif selected_value.blank? - values.push(["", nil]) - end + def dialog_dropdown_select_values(field) + values = field.values if field.type.include?("DropDown") - values += field.values.collect(&:reverse) + values.collect!(&:reverse) elsif field.type.include?("TagControl") - values += category_tags + values.map! { |category| [category[:description], category[:id]] } end values end + def category_tags(category_id) + classification = Classification.find_by(:id => category_id) + return [] if classification.nil? + + available_tags = classification.entries.collect do |category| + {:name => category.name, :description => category.description} + end + available_tags + end + def disable_check_box? category = DialogFieldTagControl.allowed_tag_categories.detect { |cat| cat[:id].to_s == @edit[:field_category] } category && category[:single_value] diff --git a/app/helpers/application_helper/toolbar/cloud_object_store_container_center.rb b/app/helpers/application_helper/toolbar/cloud_object_store_container_center.rb index 810ba005c54..0233de8d2c2 100644 --- a/app/helpers/application_helper/toolbar/cloud_object_store_container_center.rb +++ b/app/helpers/application_helper/toolbar/cloud_object_store_container_center.rb @@ -8,6 +8,17 @@ class ApplicationHelper::Toolbar::CloudObjectStoreContainerCenter < ApplicationH t = N_('Configuration'), t, :items => [ + button( + :cloud_object_store_container_clear, + 'pficon pficon-delete fa-lg', + N_('Clear Object Storage Container'), + N_('Clear Object Storage Container'), + :url_parms => "main_div", + :confirm => N_("Warning: ALL Objects will be permanently removed from the Object Storage Container!"), + :klass => ApplicationHelper::Button::GenericFeatureButtonWithDisable, + :options => {:feature => :cloud_object_store_container_clear} + ), + separator, button( :cloud_object_store_container_delete, 'pficon pficon-delete fa-lg', diff --git a/app/helpers/application_helper/toolbar/cloud_object_store_containers_center.rb b/app/helpers/application_helper/toolbar/cloud_object_store_containers_center.rb index 1d475c7b5aa..2b5d3389b75 100644 --- a/app/helpers/application_helper/toolbar/cloud_object_store_containers_center.rb +++ b/app/helpers/application_helper/toolbar/cloud_object_store_containers_center.rb @@ -10,6 +10,18 @@ class ApplicationHelper::Toolbar::CloudObjectStoreContainersCenter < Application :enabled => false, :onwhen => "1+", :items => [ + button( + :cloud_object_store_container_clear, + 'pficon pficon-delete fa-lg', + N_('Clear selected Object Storage Containers'), + N_('Clear Object Storage Containers'), + :url_parms => "main_div", + :confirm => N_("Warning: ALL Objects will be permanently removed from the selected "\ + "Object Storage Containers!"), + :enabled => false, + :onwhen => "1+" + ), + separator, button( :cloud_object_store_container_delete, 'pficon pficon-delete fa-lg', diff --git a/app/helpers/application_helper/toolbar/cloud_object_store_object_center.rb b/app/helpers/application_helper/toolbar/cloud_object_store_object_center.rb index 27002524043..9f39abd3066 100644 --- a/app/helpers/application_helper/toolbar/cloud_object_store_object_center.rb +++ b/app/helpers/application_helper/toolbar/cloud_object_store_object_center.rb @@ -1,4 +1,27 @@ class ApplicationHelper::Toolbar::CloudObjectStoreObjectCenter < ApplicationHelper::Toolbar::Basic + button_group( + 'cloud_object_store_object_vmdb', + [ + select( + :cloud_object_store_object_vmdb_choice, + 'fa fa-cog fa-lg', + t = N_('Configuration'), + t, + :items => [ + button( + :cloud_object_store_object_delete, + 'pficon pficon-delete fa-lg', + N_('Remove Object Storage Object'), + N_('Remove Object Storage Object'), + :url_parms => "main_div", + :confirm => N_("Warning: The selected Object Storage Object will be permanently removed!"), + :klass => ApplicationHelper::Button::GenericFeatureButtonWithDisable, + :options => {:feature => :delete} + ), + ] + ), + ] + ) button_group('cloud_object_store_object_policy', [ select( :cloud_object_store_object_policy_choice, diff --git a/app/helpers/application_helper/toolbar/cloud_object_store_objects_center.rb b/app/helpers/application_helper/toolbar/cloud_object_store_objects_center.rb index e016f019a6e..ab48560f2bd 100644 --- a/app/helpers/application_helper/toolbar/cloud_object_store_objects_center.rb +++ b/app/helpers/application_helper/toolbar/cloud_object_store_objects_center.rb @@ -1,4 +1,29 @@ class ApplicationHelper::Toolbar::CloudObjectStoreObjectsCenter < ApplicationHelper::Toolbar::Basic + button_group( + 'cloud_object_store_object_vmdb', + [ + select( + :cloud_object_store_object_vmdb_choice, + 'fa fa-cog fa-lg', + t = N_('Configuration'), + t, + :enabled => false, + :onwhen => "1+", + :items => [ + button( + :cloud_object_store_object_delete, + 'pficon pficon-delete fa-lg', + N_('Remove selected Object Storage Objects'), + N_('Remove Object Storage Objects'), + :url_parms => "main_div", + :confirm => N_("Warning: The selected Object Storage Object will be permanently removed!"), + :enabled => false, + :onwhen => "1+" + ), + ] + ), + ] + ) button_group('cloud_object_store_object_policy', [ select( :cloud_object_store_object_policy_choice, diff --git a/app/helpers/application_helper/toolbar/container_node_center.rb b/app/helpers/application_helper/toolbar/container_node_center.rb index 62918bc1bb7..d15a55aaaff 100644 --- a/app/helpers/application_helper/toolbar/container_node_center.rb +++ b/app/helpers/application_helper/toolbar/container_node_center.rb @@ -23,13 +23,13 @@ class ApplicationHelper::Toolbar::ContainerNodeCenter < ApplicationHelper::Toolb :url => "/show", :url_parms => "?display=performance"), button( - :ems_container_launch_external_logging_support, + :ems_container_launch_external_logging, 'product product-monitoring fa-lg', N_('Open a new browser window with the External Logging Presentation UI. ' \ 'This requires the External Logging to be deployed on this Proider.'), N_('External Logging'), :klass => ApplicationHelper::Button::EmsContainerLaunchExternalLoggingSupport, - :url => "launch_external_logging_support" + :url => "launch_external_logging" ), ] ), diff --git a/app/helpers/application_helper/toolbar/ems_container_center.rb b/app/helpers/application_helper/toolbar/ems_container_center.rb index 7b785ba8271..cfa2404bbd6 100644 --- a/app/helpers/application_helper/toolbar/ems_container_center.rb +++ b/app/helpers/application_helper/toolbar/ems_container_center.rb @@ -65,13 +65,13 @@ class ApplicationHelper::Toolbar::EmsContainerCenter < ApplicationHelper::Toolba :options => {:feature => :ad_hoc_metrics}, :url_parms => "?display=ad_hoc_metrics"), button( - :ems_container_launch_external_logging_support, + :ems_container_launch_external_logging, 'product product-monitoring fa-lg', N_('Open a new browser window with the External Logging Presentation UI. ' \ 'This requires the External Logging to be deployed on this Proider.'), N_('External Logging'), :klass => ApplicationHelper::Button::EmsContainerLaunchExternalLoggingSupport, - :url => "launch_external_logging_support" + :url => "launch_external_logging" ), ] ), diff --git a/app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb b/app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb index d69e9630288..6ca808d729c 100644 --- a/app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb +++ b/app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb @@ -29,7 +29,8 @@ class ApplicationHelper::Toolbar::OpenstackVmCloudCenter < ApplicationHelper::To :instance_ownership, 'pficon pficon-user fa-lg', N_('Set Ownership for this Instance'), - N_('Set Ownership')), + N_('Set Ownership'), + :klass => ApplicationHelper::Button::SetOwnership), button( :instance_delete, 'pficon pficon-delete fa-lg', diff --git a/app/helpers/application_helper/toolbar/retired_services_center.rb b/app/helpers/application_helper/toolbar/retired_services_center.rb new file mode 100644 index 00000000000..0d8975c6235 --- /dev/null +++ b/app/helpers/application_helper/toolbar/retired_services_center.rb @@ -0,0 +1,4 @@ +class ApplicationHelper::Toolbar::RetiredServicesCenter < ApplicationHelper::Toolbar::Basic + include ApplicationHelper::Toolbar::Service::VmdbMixin + include ApplicationHelper::Toolbar::Service::PolicyMixin +end diff --git a/app/helpers/application_helper/toolbar/service/lifecycle_mixin.rb b/app/helpers/application_helper/toolbar/service/lifecycle_mixin.rb new file mode 100644 index 00000000000..6da9a854b55 --- /dev/null +++ b/app/helpers/application_helper/toolbar/service/lifecycle_mixin.rb @@ -0,0 +1,31 @@ +module ApplicationHelper::Toolbar::Service::LifecycleMixin + def self.included(included_class) + included_class.button_group('service_lifecycle', [ + included_class.select( + :service_lifecycle_choice, + 'fa fa-recycle fa-lg', + t = N_('Lifecycle'), + t, + :enabled => false, + :items => [ + included_class.button( + :service_retire, + 'fa fa-clock-o fa-lg', + N_('Set Retirement Dates for the selected items'), + N_('Set Retirement Dates'), + :enabled => false, + :url_parms => "main_div", + :onwhen => "1+"), + included_class.button( + :service_retire_now, + 'fa fa-clock-o fa-lg', + N_('Retire the selected items'), + N_('Retire selected items'), + :url_parms => "main_div", + :confirm => N_("Retire the selected items?"), + :enabled => false, + :onwhen => "1+"), + ]), + ]) + end +end diff --git a/app/helpers/application_helper/toolbar/service/policy_mixin.rb b/app/helpers/application_helper/toolbar/service/policy_mixin.rb new file mode 100644 index 00000000000..a5d72facd0d --- /dev/null +++ b/app/helpers/application_helper/toolbar/service/policy_mixin.rb @@ -0,0 +1,24 @@ +module ApplicationHelper::Toolbar::Service::PolicyMixin + def self.included(included_class) + included_class.button_group('service_policy', [ + included_class.select( + :service_policy_choice, + 'fa fa-shield fa-lg', + t = N_('Policy'), + t, + :enabled => false, + :onwhen => "1+", + :items => [ + included_class.button( + :service_tag, + 'pficon pficon-edit fa-lg', + N_('Edit tags for the selected Items'), + N_('Edit Tags'), + :url_parms => "main_div", + :enabled => false, + :onwhen => "1+"), + ] + ), + ]) + end +end diff --git a/app/helpers/application_helper/toolbar/service/vmdb_mixin.rb b/app/helpers/application_helper/toolbar/service/vmdb_mixin.rb new file mode 100644 index 00000000000..b3370305e49 --- /dev/null +++ b/app/helpers/application_helper/toolbar/service/vmdb_mixin.rb @@ -0,0 +1,42 @@ +module ApplicationHelper::Toolbar::Service::VmdbMixin + def self.included(included_class) + included_class.button_group('service_vmdb', [ + included_class.select( + :service_vmdb_choice, + 'fa fa-cog fa-lg', + t = N_('Configuration'), + t, + :enabled => false, + :onwhen => "1+", + :items => [ + included_class.button( + :service_edit, + 'pficon pficon-edit fa-lg', + N_('Select a single service to edit'), + N_('Edit Selected Service'), + :url_parms => "main_div", + :enabled => false, + :onwhen => "1"), + included_class.button( + :service_delete, + 'pficon pficon-delete fa-lg', + N_('Remove selected Services'), + N_('Remove Services'), + :url_parms => "main_div", + :enabled => false, + :confirm => N_("Warning: The selected Services and ALL of their components will be permanently removed!"), + :onwhen => "1+"), + included_class.separator, + included_class.button( + :service_ownership, + 'pficon pficon-user fa-lg', + N_('Set Ownership for the selected Services'), + N_('Set Ownership'), + :url_parms => "main_div", + :enabled => false, + :onwhen => "1+"), + ] + ), + ]) + end +end diff --git a/app/helpers/application_helper/toolbar/service_center.rb b/app/helpers/application_helper/toolbar/service_center.rb index 8b6d252a78b..a406ff37471 100644 --- a/app/helpers/application_helper/toolbar/service_center.rb +++ b/app/helpers/application_helper/toolbar/service_center.rb @@ -62,15 +62,19 @@ class ApplicationHelper::Toolbar::ServiceCenter < ApplicationHelper::Toolbar::Ba button( :service_retire, 'fa fa-clock-o fa-lg', - N_('Set Retirement Dates for this Service'), - N_('Set Retirement Date')), + t = N_('Set Retirement Date for this Service'), + t, + :confirm => N_("Set Retirement this Service?"), + :klass => ApplicationHelper::Button::ServiceRetire + ), button( :service_retire_now, 'fa fa-clock-o fa-lg', t = N_('Retire this Service'), t, :confirm => N_("Retire this Service?"), - :klass => ApplicationHelper::Button::ServiceRetireNow), + :klass => ApplicationHelper::Button::ServiceRetireNow + ), ] ), ]) diff --git a/app/helpers/application_helper/toolbar/services_center.rb b/app/helpers/application_helper/toolbar/services_center.rb index 335c3580600..2d9e6fbcbbd 100644 --- a/app/helpers/application_helper/toolbar/services_center.rb +++ b/app/helpers/application_helper/toolbar/services_center.rb @@ -1,89 +1,5 @@ class ApplicationHelper::Toolbar::ServicesCenter < ApplicationHelper::Toolbar::Basic - button_group('service_vmdb', [ - select( - :service_vmdb_choice, - 'fa fa-cog fa-lg', - t = N_('Configuration'), - t, - :enabled => false, - :onwhen => "1+", - :items => [ - button( - :service_edit, - 'pficon pficon-edit fa-lg', - N_('Select a single service to edit'), - N_('Edit Selected Service'), - :url_parms => "main_div", - :enabled => false, - :onwhen => "1"), - button( - :service_delete, - 'pficon pficon-delete fa-lg', - N_('Remove selected Services'), - N_('Remove Services'), - :url_parms => "main_div", - :confirm => N_("Warning: The selected Services and ALL of their components will be permanently removed!"), - :enabled => false, - :onwhen => "1+"), - separator, - button( - :service_ownership, - 'pficon pficon-user fa-lg', - N_('Set Ownership for the selected Services'), - N_('Set Ownership'), - :url_parms => "main_div", - :enabled => false, - :onwhen => "1+"), - ] - ), - ]) - button_group('service_policy', [ - select( - :service_policy_choice, - 'fa fa-shield fa-lg', - t = N_('Policy'), - t, - :enabled => false, - :onwhen => "1+", - :items => [ - button( - :service_tag, - 'pficon pficon-edit fa-lg', - N_('Edit tags for the selected Items'), - N_('Edit Tags'), - :url_parms => "main_div", - :enabled => false, - :onwhen => "1+"), - ] - ), - ]) - button_group('service_lifecycle', [ - select( - :service_lifecycle_choice, - 'fa fa-recycle fa-lg', - t = N_('Lifecycle'), - t, - :enabled => false, - :onwhen => "1+", - :items => [ - button( - :service_retire, - 'fa fa-clock-o fa-lg', - N_('Set Retirement Dates for the selected items'), - N_('Set Retirement Dates'), - :url_parms => "main_div", - :enabled => false, - :onwhen => "1+"), - button( - :service_retire_now, - 'fa fa-clock-o fa-lg', - N_('Retire the selected items'), - N_('Retire selected items'), - :url_parms => "main_div", - :confirm => N_("Retire the selected items?"), - :enabled => false, - :onwhen => "1+"), - ] - ), - ]) + include ApplicationHelper::Toolbar::Service::VmdbMixin + include ApplicationHelper::Toolbar::Service::PolicyMixin + include ApplicationHelper::Toolbar::Service::LifecycleMixin end diff --git a/app/helpers/application_helper/toolbar/x_template_cloud_center.rb b/app/helpers/application_helper/toolbar/x_template_cloud_center.rb index 45e64aeca0a..acee49463fa 100644 --- a/app/helpers/application_helper/toolbar/x_template_cloud_center.rb +++ b/app/helpers/application_helper/toolbar/x_template_cloud_center.rb @@ -29,7 +29,9 @@ class ApplicationHelper::Toolbar::XTemplateCloudCenter < ApplicationHelper::Tool :image_ownership, 'pficon pficon-user fa-lg', N_('Set Ownership for this Image'), - N_('Set Ownership')), + N_('Set Ownership'), + :klass => ApplicationHelper::Button::SetOwnership + ), button( :image_delete, 'pficon pficon-delete fa-lg', diff --git a/app/helpers/application_helper/toolbar/x_vm_cloud_center.rb b/app/helpers/application_helper/toolbar/x_vm_cloud_center.rb index 933f8906a1a..994e32ace31 100644 --- a/app/helpers/application_helper/toolbar/x_vm_cloud_center.rb +++ b/app/helpers/application_helper/toolbar/x_vm_cloud_center.rb @@ -29,7 +29,9 @@ class ApplicationHelper::Toolbar::XVmCloudCenter < ApplicationHelper::Toolbar::B :instance_ownership, 'pficon pficon-user fa-lg', N_('Set Ownership for this Instance'), - N_('Set Ownership')), + N_('Set Ownership'), + :klass => ApplicationHelper::Button::SetOwnership + ), separator, button( :instance_delete, diff --git a/app/helpers/application_helper/toolbar_chooser.rb b/app/helpers/application_helper/toolbar_chooser.rb index 79113e7009b..8df570c7782 100644 --- a/app/helpers/application_helper/toolbar_chooser.rb +++ b/app/helpers/application_helper/toolbar_chooser.rb @@ -215,6 +215,8 @@ def center_toolbar_filename_services elsif x_active_tree == :svcs_tree if TreeBuilder.get_model_for_prefix(@nodetype) == "Service" return "service_center_tb" + elsif x_node == 'xx-rsrv' + return "retired_services_center_tb" else return "services_center_tb" end @@ -445,7 +447,7 @@ def center_toolbar_filename_classic load_balancers network_ports network_routers orchestration_stacks resource_pools security_groups storages middleware_deployments middleware_datasources middleware_messagings middleware_servers) - to_display_center = %w(stack_orchestration_template topology) + to_display_center = %w(stack_orchestration_template topology cloud_object_store_objects) if @lastaction == 'show' && (@view || @display != 'main') && !@layout.starts_with?("miq_request") if @display == "vms" || @display == "all_vms" return "vm_infras_center_tb" diff --git a/app/helpers/container_group_helper/textual_summary.rb b/app/helpers/container_group_helper/textual_summary.rb index 04fc5cf32c7..11b2a760d50 100644 --- a/app/helpers/container_group_helper/textual_summary.rb +++ b/app/helpers/container_group_helper/textual_summary.rb @@ -30,7 +30,7 @@ def textual_group_conditions condition.status, ] end - TextualGroup.new(_("Conditions"), h) + TextualMultilabel.new(_("Conditions"), h) end def textual_group_smart_management @@ -73,7 +73,7 @@ def textual_group_volumes volume_values[0][0] = volume.name if volume_values.length > 0 h[:values] += volume_values end - TextualGroup.new(_("Volumes"), h) + TextualMultilabel.new(_("Volumes"), h) end # diff --git a/app/helpers/container_service_helper/textual_summary.rb b/app/helpers/container_service_helper/textual_summary.rb index b1b0cce2723..8287d3bc7cd 100644 --- a/app/helpers/container_service_helper/textual_summary.rb +++ b/app/helpers/container_service_helper/textual_summary.rb @@ -22,7 +22,7 @@ def textual_group_port_configs config.node_port ] end - TextualGroup.new(_("Port Configurations"), h) + TextualMultilabel.new(_("Port Configurations"), h) end def textual_group_relationships diff --git a/app/helpers/ems_cluster_helper/textual_summary.rb b/app/helpers/ems_cluster_helper/textual_summary.rb index f60b1a291f1..bec3a108ff9 100644 --- a/app/helpers/ems_cluster_helper/textual_summary.rb +++ b/app/helpers/ems_cluster_helper/textual_summary.rb @@ -191,7 +191,7 @@ def textual_rps_size return nil if @record.kind_of?(ManageIQ::Providers::Openstack::InfraManager::EmsCluster) textual_link(@record.resource_pools, - :as => EmsCluster, + :as => ResourcePool, :link => url_for_only_path(:controller => 'ems_cluster', :action => 'show', :id => @record, :display => 'resource_pools')) end diff --git a/app/helpers/ems_container_helper/textual_summary.rb b/app/helpers/ems_container_helper/textual_summary.rb index 524b7d8ff9e..d2a04689317 100644 --- a/app/helpers/ems_container_helper/textual_summary.rb +++ b/app/helpers/ems_container_helper/textual_summary.rb @@ -37,7 +37,7 @@ def textual_group_component_statuses (cs.error || "") ] end - TextualGroup.new(_("Component Statuses"), h) + TextualMultilabel.new(_("Component Statuses"), h) end def textual_group_smart_management diff --git a/app/helpers/miq_ae_class_helper.rb b/app/helpers/miq_ae_class_helper.rb index 38cf7fd6aa8..63f2db052fe 100644 --- a/app/helpers/miq_ae_class_helper.rb +++ b/app/helpers/miq_ae_class_helper.rb @@ -114,6 +114,8 @@ def ae_field_fonticon(field) 'product product-relationship' when 'state' 'product product-state' + when 'element' + 'product product-element' else raise NotImplementedError, "Missing fonticon for MiqAeField type #{field}" end diff --git a/app/helpers/persistent_volume_helper/textual_summary.rb b/app/helpers/persistent_volume_helper/textual_summary.rb index 3118976a0f3..1e042b2c019 100644 --- a/app/helpers/persistent_volume_helper/textual_summary.rb +++ b/app/helpers/persistent_volume_helper/textual_summary.rb @@ -34,7 +34,7 @@ def textual_group_smart_management def textual_group_capacity labels = [_("Resource"), _("Quantity")] - TextualGroup.new(_("Capacity"), :labels => labels, :values => @record.capacity) + TextualMultilabel.new(_("Capacity"), :labels => labels, :values => @record.capacity) end # diff --git a/app/helpers/quadicon_helper.rb b/app/helpers/quadicon_helper.rb index 86824b5a0f3..93c83f6281c 100644 --- a/app/helpers/quadicon_helper.rb +++ b/app/helpers/quadicon_helper.rb @@ -456,6 +456,30 @@ def render_resource_pool_quadicon(item, options) output.collect(&:html_safe).join('').html_safe end + def currentstate_icon(state) + path = "svg/currentstate-#{h(state)}.svg" + if %w( + retired + standby + unknown + archived + orphaned + template + disconnected + install_failed + not_responding + non_operational + template-no-host + preparing_for_maintenance + ).include?(state) + flobj_img_simple(path, "b72") + else + content_tag(:div, :class => "flobj b72") do + content_tag(:div, '', :class => "stretch", :style => "background-image: url('#{image_path(path)}')") + end + end + end + # Renders a quadicon for hosts # def render_host_quadicon(item, options) @@ -465,7 +489,7 @@ def render_host_quadicon(item, options) output << flobj_img_simple("layout/base.png") output << flobj_p_simple("a72", item.vms.size) - output << flobj_img_simple("svg/currentstate-#{h(item.normalized_state.downcase)}.svg", "b72") + output << currentstate_icon(item.normalized_state.downcase) output << flobj_img_simple(img_for_host_vendor(item), "c72") output << flobj_img_simple(img_for_auth_status(item), "d72") output << flobj_img_simple('100/shield.png', "g72") unless item.get_policies.empty? @@ -714,7 +738,7 @@ def render_vm_or_template_quadicon(item, options) if settings(:quadicons, item.class.base_model.name.underscore.to_sym) output << flobj_img_simple("layout/base.png") output << flobj_img_simple("svg/os-#{h(item.os_image_name.downcase)}.svg", "a72") - output << flobj_img_simple("svg/currentstate-#{h(item.normalized_state.downcase)}.svg", "b72") + output << currentstate_icon(item.normalized_state.downcase) output << flobj_img_simple("svg/vendor-#{h(item.vendor.downcase)}.svg", "c72") unless item.get_policies.empty? diff --git a/app/helpers/service_helper/textual_summary.rb b/app/helpers/service_helper/textual_summary.rb index 5da843888e9..b72656d71a2 100644 --- a/app/helpers/service_helper/textual_summary.rb +++ b/app/helpers/service_helper/textual_summary.rb @@ -10,6 +10,46 @@ def textual_group_properties TextualGroup.new(_("Properties"), %i(name description guid)) end + def textual_group_provisioning_results + return nil unless provisioning_get_job + TextualGroup.new(_("Results"), %i(status start_time finish_time elapsed_time owner)) + end + + def textual_group_provisioning_details + return nil unless provisioning_get_job + TextualGroup.new(_("Details"), %i(playbook repository verbosity hosts)) + end + + def textual_group_provisioning_credentials + return nil unless provisioning_get_job + TextualGroup.new(_("Credentials"), %i(machine_credential network_credential cloud_credential)) + end + + def textual_group_provisioning_plays + return nil unless provisioning_get_job + fetch_job_plays + end + + def textual_group_retirement_results + return nil unless retirement_get_job + TextualGroup.new(_("Results"), %i(status start_time finish_time elapsed_time owner)) + end + + def textual_group_retirement_details + return nil unless retirement_get_job + TextualGroup.new(_("Details"), %i(playbook repository verbosity hosts)) + end + + def textual_group_retirement_credentials + return nil unless retirement_get_job + TextualGroup.new(_("Credentials"), %i(machine_credential network_credential cloud_credential)) + end + + def textual_group_retirement_plays + return nil unless retirement_get_job + fetch_job_plays + end + def textual_group_vm_totals TextualGroup.new( _("Totals for Service VMs"), @@ -141,4 +181,98 @@ def textual_miq_custom_attributes return nil if attrs.blank? attrs.sort_by(&:name).collect { |a| {:label => a.name, :value => a.value} } end + + def textual_status + {:label => _("Status"), :value => @job.status} + end + + def textual_start_time + {:label => _("Started"), :value => format_timezone(@job.start_time)} + end + + def textual_finish_time + {:label => _("Finished"), :value => format_timezone(@job.finish_time)} + end + + def textual_elapsed_time + {:label => _("Elapsed"), :value => @job.finish_time && @job.start_time ? calculate_elapsed_time(@job.start_time, @job.finish_time) : "N/A"} + end + + def textual_playbook + return nil unless @job.playbook + {:label => _("Playbook"), :value => @job.playbook.name} + end + + def textual_repository + return nil unless @job.playbook + {:label => _("Repository"), :value => @job.playbook.configuration_script_source.name} + end + + def textual_verbosity + {:label => _("Verbosity"), :value => @job.verbosity} + end + + def textual_hosts + {:label => _("Hosts"), :value => @job.hosts.join(", ")} + end + + def textual_machine_credential + credential = @job.authentications.find_by(:type => 'ManageIQ::Providers::EmbeddedAnsible::AutomationManager::MachineCredential') + return nil unless credential + credential(credential, _("Machine")) + end + + def textual_network_credential + credential = @job.authentications.find_by(:type => 'ManageIQ::Providers::EmbeddedAnsible::AutomationManager::NetworkCredential') + return nil unless credential + credential(credential, _("Network")) + end + + def textual_cloud_credential + credential = @job.authentications.find_by(:type => 'ManageIQ::Providers::EmbeddedAnsible::AutomationManager::CloudCredential') + return nil unless credential + credential(credential, _("Cloud")) + end + + def credential(credential, label) + {:label => label, :value => credential.name} + end + + def provisioning_get_job + fetch_job("Provision") + end + + def retirement_get_job + fetch_job("Retirement") + end + + def fetch_job(type) + @job = @record.try(:job, type) + @job + end + + def fetch_job_plays + items = @job.job_plays.sort_by(&:start_time).collect do |play| + [ + play.name, + format_timezone(play.start_time), + format_timezone(play.finish_time), + play.finish_time && play.start_time ? calculate_elapsed_time(play.start_time, play.finish_time) : '/A' + ] + end.sort + + TextualTable.new( + _("Plays"), + items, + [_("Name"), _("Started"), _("Finished"), _("Elapsed")] + ) + end + + def calculate_elapsed_time(stime, ftime) + val = (ftime - stime) + hours = val / 3600 + mins = val / 60 + secs = val % 60 + ("%02d:%02d:%02d" % [hours, mins, secs]) + end end diff --git a/app/presenters/custom_buttons_mixin.rb b/app/presenters/custom_buttons_mixin.rb new file mode 100644 index 00000000000..3ded4ba0761 --- /dev/null +++ b/app/presenters/custom_buttons_mixin.rb @@ -0,0 +1,31 @@ +module CustomButtonsMixin + extend ActiveSupport::Concern + def get_tree_aset_kids_for_nil_id(object, count_only) + count_only ? get_custom_buttons(object).count : get_custom_buttons(object).sort_by { |a| a.name.downcase } + end + + def buttons_ordered?(object) + !!(object[:set_data] && object[:set_data][:button_order]) + end + + def get_custom_buttons(object) + # FIXME: don't we have a method for the splits? + # FIXME: cannot we ask for the null parent using Arel? + CustomButton.buttons_for(object.name.split('|').last.split('-').last).select do |uri| + uri.parent.nil? + end + end + + def x_get_tree_aset_kids(object, count_only) + if object.id.nil? + get_tree_aset_kids_for_nil_id(object, count_only) + elsif count_only + object.members.count + else + button_order = buttons_ordered?(object) ? object[:set_data][:button_order] : nil + Array(button_order).each_with_object([]) do |bidx, arr| + object.members.each { |b| arr.push(b) if bidx == b.id && !arr.include?(b) } + end + end + end +end diff --git a/app/presenters/menu/default_menu.rb b/app/presenters/menu/default_menu.rb index ff99d4803fd..9bfc3dc3380 100644 --- a/app/presenters/menu/default_menu.rb +++ b/app/presenters/menu/default_menu.rb @@ -234,9 +234,9 @@ def automation_manager_menu_section def ansible_menu_section Menu::Section.new(:ansible, N_("Ansible"), 'fa fa-recycle', [ - Menu::Item.new('ansible_credentials', N_('Credentials'), 'embedded_automation_manager_credentials', {:feature => 'embedded_automation_manager_credentials'}, '/ansible_credential'), - Menu::Item.new('ansible_playbooks', N_('Playbooks'), 'embedded_configuration_script_payload', {:feature => 'embedded_configuration_script_payload'}, '/ansible_playbook'), - Menu::Item.new('ansible_repositories', N_('Repositories'), 'embedded_configuration_script_source', {:feature => 'embedded_configuration_script_source'}, '/ansible_repository'), + Menu::Item.new('ansible_credentials', N_('Credentials'), 'embedded_automation_manager_credentials', {:feature => 'embedded_automation_manager_credentials', :any => true}, '/ansible_credential'), + Menu::Item.new('ansible_playbooks', N_('Playbooks'), 'embedded_configuration_script_payload', {:feature => 'embedded_configuration_script_payload'}, '/ansible_playbook', :any => true), + Menu::Item.new('ansible_repositories', N_('Repositories'), 'embedded_configuration_script_source', {:feature => 'embedded_configuration_script_source'}, '/ansible_repository', :any => true), ]) end diff --git a/app/presenters/tree_builder_automate_simulation_results.rb b/app/presenters/tree_builder_automate_simulation_results.rb index 354ce32e30b..1fc367b46ef 100644 --- a/app/presenters/tree_builder_automate_simulation_results.rb +++ b/app/presenters/tree_builder_automate_simulation_results.rb @@ -49,13 +49,7 @@ def lookup_attrs(el) :tooltip => el.attributes["name"], :icon => 'product product-attribute' } - elsif !el.text.blank? - { - :text => el.text, - :tip => el.text, - :icon => ae_field_fonticon(el.name.underscore) - } - else + elsif el.name.starts_with?('MiqAeService') key = el.name.sub(/^MiqAeService/, '').gsub('_', '::') base_obj = key.safe_constantize.try(:new) obj = TreeNode.new(base_obj) if TreeNode.exists?(base_obj) @@ -66,6 +60,13 @@ def lookup_attrs(el) :icon => obj ? obj.icon : nontreenode_icon(base_obj), :image => obj ? obj.image : nil } + else + text = !el.text.blank? ? el.text : el.name + { + :text => text, + :tip => text, + :icon => ae_field_fonticon(el.name.underscore) + } end end @@ -104,68 +105,20 @@ def nontreenode_icon(obj) 'fa fa-list-ul' when Authentication 'fa fa-lock' - when CloudNetwork - 'product product-cloud_network' - when CloudObjectStoreContainer - 'product product-cloud_object_store' - when CloudObjectStoreObject - 'product product-cloud_object_store' when CloudResourceQuota 'fa fa-pie-chart' - when CloudSubnet - 'pficon pficon-network' - when CloudTenant - 'pficon pficon-cloud-tenant' - when CloudVolume - 'pficon pficon-volume' - when CloudVolumeBackup - 'pficon pficon-volume' - when CloudVolumeSnapshot - 'fa fa-camera' - when ContainerBuild - 'pficon pficon-build' - when ContainerGroup - 'fa fa-cubes' - when ContainerImage - 'pficon pficon-image' - when ContainerImageRegistry - 'pficon pficon-registry' - when ContainerNode - 'pficon pficon-container-node' - when ContainerProject - 'pficon pficon-project' - when ContainerReplicator - 'pficon pficon-replicator' - when ContainerRoute - 'pficon pficon-route' - when ContainerService - 'pficon pficon-service' when ContainerVolume 'pficon pficon-volume' - when Flavor - 'pficon pficon-flavor' - when FloatingIp - 'fa fa-map-marker' when GuestApplication 'product product-application' when HostAggregate 'pficon pficon-screen' - when LoadBalancer - 'product product-load_balancer' when MiqRequest 'fa fa-question' when Network 'pficon pficon-network' - when NetworkPort - 'product product-network_port' - when NetworkRouter - 'pficon pficon-route' - when OrchestrationStack - 'product product-orchestration_stack' - when PersistentVolume - 'pficon pficon-volume' - when SecurityGroup - 'pficon pficon-cloud-security' + else + obj.decorate.fonticon end end end diff --git a/app/presenters/tree_builder_buttons.rb b/app/presenters/tree_builder_buttons.rb index 39d2b09c556..f27b73b307e 100644 --- a/app/presenters/tree_builder_buttons.rb +++ b/app/presenters/tree_builder_buttons.rb @@ -1,4 +1,5 @@ class TreeBuilderButtons < TreeBuilderAeCustomization + include CustomButtonsMixin has_kids_for CustomButtonSet, [:x_get_tree_aset_kids] private @@ -35,38 +36,6 @@ def x_get_tree_custom_kids(object, count_only, _options) count_only_or_objects(count_only, objects) end - def get_custom_buttons(object) - # FIXME: don't we have a method for the splits? - # FIXME: cannot we ask for the null parent using Arel? - CustomButton.buttons_for(object.name.split('|').last.split('-').last).select do |uri| - uri.parent.nil? - end - end - - def get_tree_aset_kids_for_nil_id(object, count_only) - count_only ? get_custom_buttons(object).count : get_custom_buttons(object).sort_by { |a| a.name.downcase } - end - - def button_order?(object) - object[:set_data] && object[:set_data][:button_order] - end - - def x_get_tree_aset_kids(object, count_only) - if object.id.nil? - get_tree_aset_kids_for_nil_id(object, count_only) - elsif count_only - object.members.count - else - # need to show button nodes in button order that they were saved in - button_order = button_order?(object) ? object[:set_data][:button_order] : nil - objects = [] - Array(button_order).each do |bidx| - object.members.each { |b| objects.push(b) if bidx == b.id && !objects.include?(b) } - end - objects - end - end - def buttons_node_image(node) case node when 'ExtManagementSystem' then {:icon => 'pficon pficon-server'} diff --git a/app/presenters/tree_builder_catalogs_class.rb b/app/presenters/tree_builder_catalogs_class.rb index a1daf390fa5..40161699fa0 100644 --- a/app/presenters/tree_builder_catalogs_class.rb +++ b/app/presenters/tree_builder_catalogs_class.rb @@ -1,4 +1,5 @@ class TreeBuilderCatalogsClass < TreeBuilder + include CustomButtonsMixin has_kids_for CustomButtonSet, [:x_get_tree_aset_kids] private @@ -9,40 +10,13 @@ def x_get_tree_roots(count_only, options) when :stcat return count_only_or_objects(count_only, objects) when :sandt - return count_only_or_objects(count_only, - objects.unshift(ServiceTemplateCatalog.new(:name => 'Unassigned', - :description => 'Unassigned Catalogs')), - nil) - end - end - - # TODO: De-duplicate the following methods from tree_builder_buttons.rb - def get_custom_buttons(object) - # FIXME: don't we have a method for the splits? - # FIXME: cannot we ask for the null parent using Arel? - CustomButton.buttons_for(object.name.split('|').last.split('-').last).select do |uri| - uri.parent.nil? - end - end - - def get_tree_aset_kids_for_nil_id(object, count_only) - count_only ? get_custom_buttons(object).count : get_custom_buttons(object).sort_by { |a| a.name.downcase } - end - - def button_order?(object) - object[:set_data] && object[:set_data][:button_order] - end - - def x_get_tree_aset_kids(object, count_only) - if object.id.nil? - get_tree_aset_kids_for_nil_id(object, count_only) - elsif count_only - object.members.count - else - button_order = button_order?(object) ? object[:set_data][:button_order] : nil - Array(button_order).each_with_object([]) do |bidx, arr| - object.members.each { |b| arr.push(b) if bidx == b.id && !objects.include?(b) } - end + return count_only_or_objects( + count_only, + objects.unshift(ServiceTemplateCatalog.new( + :name => 'Unassigned', + :description => 'Unassigned Catalogs')), + nil + ) end end end diff --git a/app/presenters/tree_builder_policy.rb b/app/presenters/tree_builder_policy.rb index 4b8deabc649..0085176afcc 100644 --- a/app/presenters/tree_builder_policy.rb +++ b/app/presenters/tree_builder_policy.rb @@ -116,6 +116,16 @@ def x_get_tree_ev_kids(parent, count_only, parents) success = count_only_or_objects(count_only, pol_rec ? pol_rec.actions_for_event(parent, :success) : []) failure = count_only_or_objects(count_only, pol_rec ? pol_rec.actions_for_event(parent, :failure) : []) + unless count_only + add_flag_to(success, :success) unless success.empty? + add_flag_to(failure, :failure) unless failure.empty? + end success + failure end + + def add_flag_to(array, flag) + array.each do |i| + i.instance_variable_set(:@flag, flag) + end + end end diff --git a/app/presenters/tree_builder_services.rb b/app/presenters/tree_builder_services.rb index be7622de5f0..fc1413173a2 100644 --- a/app/presenters/tree_builder_services.rb +++ b/app/presenters/tree_builder_services.rb @@ -6,7 +6,7 @@ class TreeBuilderServices < TreeBuilder def tree_init_options(_tree_name) { :leaf => "Service", - :full_ids => true + :add_root => false } end @@ -16,20 +16,32 @@ def set_locals_for_render end def root_options - { - :title => t = _("All Services"), - :tooltip => t - } + { } end # Get root nodes count/array for explorer tree def x_get_tree_roots(count_only, _options) - all_services = Rbac.filtered(Service.where(:display => true)) + objects = [] + objects.push(:id => "asrv", + :text => _("Active Services"), + :icon => "pficon pficon-folder-close", + :load_children => true, + :tip => _("Active Services")) + objects.push(:id => "rsrv", + :text => _("Retired Services"), + :icon => "pficon pficon-folder-close", + :load_children => true, + :tip => _("Retired Services")) + count_only_or_objects(count_only, objects) + end + + def x_get_tree_custom_kids(object, count_only, _options) + services = Rbac.filtered(Service.where(:retired => object[:id] != 'asrv', :ancestry => [nil, ""])) if count_only - all_services.size + services.size else - MiqPreloader.preload(all_services.to_a, :picture) - Service.arrange_nodes(all_services.sort_by { |n| [n.ancestry.to_s, n.name.downcase] }) + MiqPreloader.preload(services.to_a, :picture) + Service.arrange_nodes(services.sort_by { |n| [n.ancestry.to_s, n.name.downcase] }) end end end diff --git a/app/presenters/tree_node.rb b/app/presenters/tree_node.rb index fb086214578..669dd44671d 100644 --- a/app/presenters/tree_node.rb +++ b/app/presenters/tree_node.rb @@ -16,9 +16,9 @@ def exists?(object) private def subclass(object) - klass = "#{self}::#{object.class}" - node = object.kind_of?(Hash) || Object.const_defined?(klass) ? klass : "#{self}::#{object.class.base_class}" - node.safe_constantize + klass = "#{self}::#{object.class}".safe_constantize + klass ||= "#{self}::#{object.class.base_class}".safe_constantize if object.kind_of?(ApplicationRecord) + klass end end end diff --git a/app/presenters/tree_node/miq_action.rb b/app/presenters/tree_node/miq_action.rb index e3f44c81b11..9299f2fb6cf 100644 --- a/app/presenters/tree_node/miq_action.rb +++ b/app/presenters/tree_node/miq_action.rb @@ -3,20 +3,16 @@ class MiqAction < Node set_attribute(:title, &:description) set_attribute(:icon) do if @options[:tree] != :action_tree - if @options[:tree] == :policy_profile_tree - policy_id = @parent_id.split('-')[2].split('_').first - event_id = @parent_id.split('-').last - else - policy_id = @parent_id.split('_')[2].split('-').last - event_id = @parent_id.split('_').last.split('-').last - end - p = ::MiqPolicy.find_by_id(ApplicationRecord.uncompress_id(policy_id)) - ev = ::MiqEventDefinition.find_by_id(ApplicationRecord.uncompress_id(event_id)) - - p.action_result_for_event(@object, ev) ? "pficon pficon-ok" : "pficon pficon-error-circle-o" + flag_of(@object) == :success ? "pficon pficon-ok" : "pficon pficon-error-circle-o" else @object.decorate.fonticon end end + + private + + def flag_of(object) + object.instance_variable_get(:@flag) + end end end diff --git a/app/services/dialog_field_visibility_service.rb b/app/services/dialog_field_visibility_service.rb index 0e96fd90e65..49aeee95d55 100644 --- a/app/services/dialog_field_visibility_service.rb +++ b/app/services/dialog_field_visibility_service.rb @@ -39,11 +39,11 @@ def determine_visibility(options) @field_names_to_edit = [] @field_names_to_show = [] - add_to_visiblity_arrays(@service_template_fields_visibility_service, options[:service_template_request]) - add_to_visiblity_arrays(@auto_placement_visibility_service, options[:auto_placement_enabled]) - add_to_visiblity_arrays(@number_of_vms_visibility_service, options[:number_of_vms], options[:platform]) + add_to_visibility_arrays(@service_template_fields_visibility_service, options[:service_template_request]) + add_to_visibility_arrays(@auto_placement_visibility_service, options[:auto_placement_enabled]) + add_to_visibility_arrays(@number_of_vms_visibility_service, options[:number_of_vms], options[:platform]) - add_to_visiblity_arrays( + add_to_visibility_arrays( @network_visibility_service, options[:sysprep_enabled], options[:supports_pxe], @@ -51,20 +51,20 @@ def determine_visibility(options) options[:addr_mode] ) - add_to_visiblity_arrays(@sysprep_auto_logon_visibility_service, options[:sysprep_auto_logon]) - add_to_visiblity_arrays(@retirement_visibility_service, options[:retirement]) + add_to_visibility_arrays(@sysprep_auto_logon_visibility_service, options[:sysprep_auto_logon]) + add_to_visibility_arrays(@retirement_visibility_service, options[:retirement]) - add_to_visiblity_arrays( + add_to_visibility_arrays( @customize_fields_visibility_service, options[:platform], options[:supports_customization_template], options[:customize_fields_list] ) - add_to_visiblity_arrays(@sysprep_custom_spec_visibility_service, options[:sysprep_custom_spec]) - add_to_visiblity_arrays(@request_type_visibility_service, options[:request_type]) - add_to_visiblity_arrays(@pxe_iso_visibility_service, options[:supports_iso], options[:supports_pxe]) - add_to_visiblity_arrays( + add_to_visibility_arrays(@sysprep_custom_spec_visibility_service, options[:sysprep_custom_spec]) + add_to_visibility_arrays(@request_type_visibility_service, options[:request_type]) + add_to_visibility_arrays(@pxe_iso_visibility_service, options[:supports_iso], options[:supports_pxe]) + add_to_visibility_arrays( @linked_clone_visibility_service, options[:provision_type], options[:linked_clone], @@ -84,7 +84,7 @@ def determine_visibility(options) private - def add_to_visiblity_arrays(visibility_service, *options) + def add_to_visibility_arrays(visibility_service, *options) visibility_hash = visibility_service.determine_visibility(*options) @field_names_to_hide += visibility_hash[:hide] @field_names_to_edit += visibility_hash[:edit] if visibility_hash[:edit] diff --git a/app/services/hawkular_proxy_service.rb b/app/services/hawkular_proxy_service.rb index c643353b986..1dc097b874d 100644 --- a/app/services/hawkular_proxy_service.rb +++ b/app/services/hawkular_proxy_service.rb @@ -1,6 +1,15 @@ class HawkularProxyService include UiServiceMixin + TENANT_LABEL_MAX_LEN = 25 + TENANT_LABEL_SPECIAL_CASES = { + "_system" => "System", + "_ops" => "Operations", + "default" => "Default", + "admin" => "Admin", + "openshift-infra" => "OpenShift Infra" + }.freeze + def initialize(provider_id, controller) @provider_id = provider_id @controller = controller @@ -21,69 +30,131 @@ def client end def data(query) + params = { + :type => @params['type'], + :metric_id => @params['metric_id'], + :tags => _tags, + :page => @params['page'] || 1, + :items_per_page => @params['items_per_page'] || 15, + :limit => @params['limit'] || 10_000, + :ends => @params['ends'] || (DateTime.now.to_i * 1000), + :starts => @params['starts'], + :bucketDuration => @params['bucket_duration'], + :order => @params['order'] + } + + params[:starts] = (params[:ends] - 8 * 60 * 60 * 1000) if params[:starts].blank? + case query when 'metric_definitions' - { :metric_definitions => metric_definitions } + data = metric_definitions(params[:tags], params[:limit].to_i, params[:type]) + + items = data.count + page = params[:page].to_i + items_per_page = params[:items_per_page].to_i + pages = (items.to_f / items_per_page.to_f).ceil + start_index = items_per_page * (page - 1) + end_index = start_index + items_per_page + + { + :page => page, + :items => items, + :items_per_page => items_per_page, + :pages => pages, + :limit => params[:limit].to_i, + :metric_definitions => data[start_index...end_index] + } when 'metric_tags' - { :metric_tags => metric_tags } + { + :metric_tags => metric_tags(params[:tags], params[:limit].to_i, params[:type]) + } when 'get_data' - { :id => @params['metric_id'], - :data => get_data(@params['metric_id']).compact } + data = get_data(params[:metric_id], params).compact + limit = params[:limit].to_i + + { + :data => data[0..limit] + } when 'get_tenants' - { :tenants => tenants } + { + :tenants => tenants(params[:limit].to_i) + } else - {} + { + :error => "Bad query" + } end rescue StandardError => e - { :error => e } + { + :parameters => params, + :error => ActionView::Base.full_sanitizer.sanitize(e.message) + } end - def metric_definitions - tags = @params['tags'].blank? ? nil : JSON.parse(@params['tags']) - tags = nil if tags == {} - limit = @params['limit'] || 2000 + def metric_definitions(tags, limit, type) + list = _metric_definitions(tags, type).map { |m| m.json if m.json } + + list.sort { |a, b| a["id"].downcase <=> b["id"].downcase }[0...limit] + end - list = if @params['type'].blank? - @cli.hawkular_client.counters.query(tags).compact + - @cli.hawkular_client.gauges.query(tags).compact - else - client.query(tags).compact - end + def metric_tags(tags, limit, type) + definitions = metric_definitions(tags, limit, type) + tags = definitions.map do |x| + x["tags"].keys if x["tags"] + end - list.map { |m| m.json if m.json }.sort { |a, b| a["id"].downcase <=> b["id"].downcase }[0..limit.to_i] + tags.compact.flatten.uniq.sort.map do |tag| + {:tag => tag, :options => metric_tags_options(tag, definitions)} + end end - def metric_tags - metric_definitions.map { |x| x["tags"].keys if x["tags"] }.compact.flatten.uniq.sort + def metric_tags_options(tag, definitions) + options = definitions.map do |x| + x["tags"][tag] if x["tags"] && x["tags"].keys.include?(tag) + end + + options.compact.flatten.uniq.sort end - def get_data(id) - ends = @params['ends'] || (DateTime.now.to_i * 1000) - starts = @params['starts'] || (ends - 8 * 60 * 60 * 1000) - bucket_duration = @params['bucket_duration'] || nil - order = @params['order'] || 'ASC' - limit = @params['limit'] || 360 - - data = client.get_data(id, - :limit => limit.to_i, - :starts => starts.to_i, - :ends => ends.to_i, - :bucketDuration => bucket_duration, - :order => order) - - data[0..limit.to_i] + def get_data(id, params) + client.get_data(id, + :limit => params[:limit].to_i, + :starts => params[:starts].to_i, + :ends => params[:ends].to_i, + :bucketDuration => params[:bucketDuration] || nil, + :order => params[:order] || 'ASC') end - def tenants + def tenants(limit) tenants = @cli.hawkular_client.http_get('/tenants') - limit = @params['limit'] || 7 if @params['include'].blank? - tenants.map! { |x| x["id"] } + tenants.map! { |x| {:label => labelize(x["id"]), :value => x["id"]} } + else + tenants.map! { |x| {:label => labelize(x["id"]), :value => x["id"]} if x["id"].include?(@params['include']) } + end + + tenants.compact[0...limit] + end + + private + + def labelize(id) + TENANT_LABEL_SPECIAL_CASES.fetch(id, id.truncate(TENANT_LABEL_MAX_LEN)) + end + + def _metric_definitions(tags, type) + if type.blank? + @cli.hawkular_client.counters.query(tags).compact + + @cli.hawkular_client.gauges.query(tags).compact else - tenants.map! { |x| x["id"] if x["id"].include?(@params['include']) } + client.query(tags).compact end + end + + def _tags + tags = @params['tags'].blank? ? nil : JSON.parse(@params['tags']) - tenants.compact[0..limit.to_i] + tags == {} ? nil : tags end end diff --git a/app/views/catalog/_confirmation_modal.html.haml b/app/views/catalog/_confirmation_modal.html.haml new file mode 100644 index 00000000000..6e2c8268aa0 --- /dev/null +++ b/app/views/catalog/_confirmation_modal.html.haml @@ -0,0 +1,48 @@ +.modal.fade#confirmationModal{"tabindex" => "-1", + "role" => "dialog", + "aria-labelledby" => "confirmation_modal_label", + "aria-describedby" => "modal", + "aria-hidden" => "true", + "data-keyboard" => "false", + "data-backdrop" => "static", + :style => "display: none"} + .modal-dialog + .modal-content + #search_notification{:style => "display: none;"} + .modal-header + %button.close{"data-dismiss" => "modal"} + %span{"aria-hidden" => "true"} + × + %span.sr-only + Close + %h4.modal-title#confirmation_modal_label + = _("Copy from Provisioning") + .modal-body + .form-group + %label.control-label.col-md-2 + %img{:src => image_path("100/warning.png")} + .col-md-8 + = _("Are you sure you want the retirement options to be copied from provisioning?") + %p + = _("Warning: You will loose all of your current retirement options if you continue with this action") + .modal-footer + #confirmation_modal_footer + = button_tag(_('Cancel'), + :class => "btn btn-default", + :alt => t = _("Cancel Copy from provisioning"), + :title => t, + :onclick => "cancelOrCopyProvisioning('cancel')") + = button_tag(_('Copy'), + :class => "btn btn-primary", + :alt => t = _("Copy from provisioning"), + :title => t, + :onclick => "cancelOrCopyProvisioning('copy')") + +:javascript + $(function(){ + $('#confirmationModal').off("click"); + $('#confirmationModal').on('click', '[data-dismiss="modal"]', function() { + $('#confirmationModal').modal("hide") + }); + }); + diff --git a/app/views/catalog/_sandt_tree_show.html.haml b/app/views/catalog/_sandt_tree_show.html.haml index efc8aa5de5f..7f766a52060 100644 --- a/app/views/catalog/_sandt_tree_show.html.haml +++ b/app/views/catalog/_sandt_tree_show.html.haml @@ -213,11 +213,11 @@ = _('Machine Credential') .col-md-9 = h(provisioning[:machine_credential]) - .form-group - %label.col-md-3.control-label - = _('Network Credential') - .col-md-9 - = h(provisioning[:network_credential]) + -#.form-group + -# %label.col-md-3.control-label + -# = _('Network Credential') + -# .col-md-9 + -# = h(provisioning[:network_credential]) .form-group %label.col-md-3.control-label = _('Cloud Credential') @@ -281,11 +281,11 @@ = _('Machine Credential') .col-md-9 = h(retirement[:machine_credential]) - .form-group - %label.col-md-3.control-label - = _('Network Credential') - .col-md-9 - = h(retirement[:network_credential]) + -#.form-group + -# %label.col-md-3.control-label + -# = _('Network Credential') + -# .col-md-9 + -# = h(retirement[:network_credential]) .form-group %label.col-md-3.control-label = _('Cloud Credential') @@ -296,6 +296,11 @@ = _('Hosts') .col-md-9 = h(@record.config_info[:retirement][:hosts]) + .form-group + %label.col-md-3.control-label + = _('Remove Resources') + .col-md-9 + = h(remove_resources_display(retirement[:remove_resources])) .col-md-12.col-lg-6 .form-horizontal.static .form-group @@ -309,25 +314,27 @@ %th = _("Default value") %tbody - - @record.config_info[:retirement][:extra_vars].each do |key, value| - %tr - %td - = h(key) - %td - = h(value) + - if retirement[:extra_vars] + - retirement[:extra_vars].each do |key, value| + %tr + %td + = h(key) + %td + = h(value) .form-group %label.col-md-3.control-label = _('Dialog') .col-md-9 - - if role_allows?(:feature => "dialog_accord", :any => true) - - params = {:controller => 'miq_ae_customization', :action => 'show', :id => "dg-#{to_cid(retirement[:dialog_id])}"} - = link_to(retirement[:dialog], - params, - "data-miq_sparkle_on" => true, - "data-miq_sparkle_off" => true, - :title => retirement[:dialog]) - - else - = h(retirement[:dialog]) + - if retirement[:dialog] + - if role_allows?(:feature => "dialog_accord", :any => true) + - params = {:controller => 'miq_ae_customization', :action => 'show', :id => "dg-#{to_cid(retirement[:dialog_id])}"} + = link_to(retirement[:dialog], + params, + "data-miq_sparkle_on" => true, + "data-miq_sparkle_off" => true, + :title => retirement[:dialog]) + - else + = h(retirement[:dialog]) :javascript miq_tabs_init("#st_tabs"); diff --git a/app/views/cloud_volume/new.html.haml b/app/views/cloud_volume/new.html.haml index 410e5ab623c..3f1ad74de7c 100644 --- a/app/views/cloud_volume/new.html.haml +++ b/app/views/cloud_volume/new.html.haml @@ -1,9 +1,53 @@ -%form#form_div{:name => "angularForm", 'ng-controller' => "cloudVolumeFormController"} +%form#form_div{:name => "angularForm", 'ng-controller' => "cloudVolumeFormController", "ng-cloak" => ""} = render :partial => "layouts/flash_msg" - %h3 - = _('Basic Information') .form-horizontal - .form-group + .form-group{"ng-class" => "{'has-error': angularForm.storage_manager_id.$invalid}"} + %label.col-md-2.control-label + = _('Storage Manager') + .col-md-8 + = select_tag("storage_manager_id", + options_for_select([["<#{_('Choose')}>", nil]] + @storage_manager_choices.sort, disabled: ["<#{_('Choose')}>", nil]), + "ng-model" => "cloudVolumeModel.storage_manager_id", + "ng-change" => "storageManagerChanged(cloudVolumeModel.storage_manager_id)", + "required" => "", + :checkchange => true, + "selectpicker-for-select-tag" => "") + %span.help-block{"ng-show" => "angularForm.storage_manager_id.$error.required"} + = _("Required") + + .form-group{"ng-class" => "{'has-error': angularForm.cloud_tenant_id.$invalid}", + "ng-if" => "cloudVolumeModel.emstype == 'ManageIQ::Providers::StorageManager::CinderManager'"} + %label.col-md-2.control-label + = _('Cloud Tenant') + .col-md-8 + %select{"name" => "cloud_tenant_id", + "ng-model" => "cloudVolumeModel.cloud_tenant_id", + "ng-options" => "tenant.id as tenant.name for tenant in cloudTenantChoices", + "required" => "", + :checkchange => true, + "selectpicker-for-select-tag" => ""} + %option{"value" => "", "disabled" => ""} + = "<#{_('Choose')}>" + %span.help-block{"ng-show" => "angularForm.cloud_tenant_id.$error.required"} + = _("Required") + + .form-group{"ng-class" => "{'has-error': angularForm.aws_availability_zone_id.$invalid}", + "ng-if" => "cloudVolumeModel.emstype == 'ManageIQ::Providers::Amazon::StorageManager::Ebs'"} + %label.col-md-2.control-label + = _('Availability Zone') + .col-md-8 + %select{"name" => "aws_availability_zone_id", + "ng-model" => "cloudVolumeModel.aws_availability_zone_id", + "ng-options" => "az.ems_ref as az.name for az in availabilityZoneChoices", + "required" => "", + :checkchange => true, + "selectpicker-for-select-tag" => ""} + %option{"value" => "", "disabled" => ""} + = "<#{_('Choose')}>" + %span.help-block{"ng-show" => "angularForm.aws_availability_zone_id.$error.required"} + = _("Required") + + .form-group{"ng-class" => "{'has-error': angularForm.name.$invalid}"} %label.col-md-2.control-label = _('Volume Name') .col-md-8 @@ -11,9 +55,29 @@ :name => "name", 'ng-model' => "cloudVolumeModel.name", 'ng-maxlength' => 128, - :miqrequired => true, + :required => "", :checkchange => true} - .form-group + %span.help-block{"ng-show" => "angularForm.name.$error.required"} + = _("Required") + + .form-group{"ng-class" => "{'has-error': angularForm.aws_volume_type.$invalid}", + "ng-if" => "cloudVolumeModel.emstype == 'ManageIQ::Providers::Amazon::StorageManager::Ebs'"} + %label.col-md-2.control-label + = _('Cloud Volume Type') + .col-md-8 + %select{"name" => "aws_volume_type", + "ng-model" => "cloudVolumeModel.aws_volume_type", + "ng-options" => "voltype.type as voltype.name for voltype in awsVolumeTypes", + "ng-change" => "awsVolumeTypeChanged(cloudVolumeModel.aws_volume_type)", + "required" => "", + :checkchange => true, + "selectpicker-for-select-tag" => ""} + %option{"value" => "", "disabled" => ""} + = "<#{_('Choose')}>" + %span.help-block{"ng-show" => "angularForm.aws_volume_type.$error.required"} + = _("Required") + + .form-group{"ng-class" => "{'has-error': angularForm.size.$invalid}"} %label.col-md-2.control-label = _('Size (in gigabytes)') .col-md-8 @@ -21,22 +85,37 @@ :name => "size", 'ng-model' => "cloudVolumeModel.size", 'ng-maxlength' => 10, - :miqrequired => true, + 'ng-change' => "sizeChanged(cloudVolumeModel.size)", + :required => "", :checkchange => true} - %h3 - = _('Placement') - .form-horizontal - .form-group{"ng-class" => "{'has-error': angularForm.cloud_tenant_id.$invalid}"} + %span.help-block{"ng-show" => "angularForm.size.$error.required"} + = _("Required") + + .form-group{"ng-class" => "{'has-error': angularForm.aws_iops.$invalid}", + "ng-if" => "cloudVolumeModel.emstype == 'ManageIQ::Providers::Amazon::StorageManager::Ebs'"} %label.col-md-2.control-label - = _('Cloud Tenant') + = _('IOPS') + .col-md-8 + %input.form-control{:type => "text", + :name => "aws_iops", + 'ng-model' => "cloudVolumeModel.aws_iops", + 'ng-maxlength' => 50, + 'ng-disabled' => "cloudVolumeModel.aws_volume_type != 'io1'", + "required" => "", + :checkchange => true} + %span.help-block{"ng-show" => "cloudVolumeModel.aws_volume_type == 'io1' && angularForm.aws_iops.$error.required"} + = _("Required") + + .form-group{"ng-if" => "cloudVolumeModel.emstype == 'ManageIQ::Providers::Amazon::StorageManager::Ebs'"} + %label.col-md-2.control-label + = _('Encryption') .col-md-8 - = select_tag("cloud_tenant_id", - options_for_select([["<#{_('Choose')}>", nil]] + @cloud_tenant_choices.sort), - "ng-model" => "cloudVolumeModel.cloud_tenant_id", - "required" => "", - :miqrequired => true, - :checkchange => true, - "selectpicker-for-select-tag" => "") + %input.form-control{"bs-switch" => "", + :data => {:on_text => _('Yes'), :off_text => _('No'), :size => 'mini'}, + :type => "checkbox", + :name => "encryption", + 'ng-model' => "cloudVolumeModel.aws_encryption", + :checkchange => true} %table{:width => '100%'} %tr diff --git a/app/views/container_build/edit.html.haml b/app/views/container_build/edit.html.haml deleted file mode 100644 index 5d57b85164a..00000000000 --- a/app/views/container_build/edit.html.haml +++ /dev/null @@ -1 +0,0 @@ -= render :partial => 'shared/views/ems_common/form' diff --git a/app/views/container_group/edit.html.haml b/app/views/container_group/edit.html.haml deleted file mode 100644 index 562e6176e7b..00000000000 --- a/app/views/container_group/edit.html.haml +++ /dev/null @@ -1 +0,0 @@ -= render :partial => 'shared/views/ems_common/form' diff --git a/app/views/container_image/edit.html.haml b/app/views/container_image/edit.html.haml deleted file mode 100644 index 562e6176e7b..00000000000 --- a/app/views/container_image/edit.html.haml +++ /dev/null @@ -1 +0,0 @@ -= render :partial => 'shared/views/ems_common/form' diff --git a/app/views/container_image_registry/edit.html.haml b/app/views/container_image_registry/edit.html.haml deleted file mode 100644 index 562e6176e7b..00000000000 --- a/app/views/container_image_registry/edit.html.haml +++ /dev/null @@ -1 +0,0 @@ -= render :partial => 'shared/views/ems_common/form' diff --git a/app/views/container_node/edit.html.haml b/app/views/container_node/edit.html.haml deleted file mode 100644 index 562e6176e7b..00000000000 --- a/app/views/container_node/edit.html.haml +++ /dev/null @@ -1 +0,0 @@ -= render :partial => 'shared/views/ems_common/form' diff --git a/app/views/container_node/new.html.haml b/app/views/container_node/new.html.haml deleted file mode 100644 index 562e6176e7b..00000000000 --- a/app/views/container_node/new.html.haml +++ /dev/null @@ -1 +0,0 @@ -= render :partial => 'shared/views/ems_common/form' diff --git a/app/views/container_project/edit.html.haml b/app/views/container_project/edit.html.haml deleted file mode 100644 index 562e6176e7b..00000000000 --- a/app/views/container_project/edit.html.haml +++ /dev/null @@ -1 +0,0 @@ -= render :partial => 'shared/views/ems_common/form' diff --git a/app/views/container_project/new.html.haml b/app/views/container_project/new.html.haml deleted file mode 100644 index 562e6176e7b..00000000000 --- a/app/views/container_project/new.html.haml +++ /dev/null @@ -1 +0,0 @@ -= render :partial => 'shared/views/ems_common/form' diff --git a/app/views/container_replicator/edit.html.haml b/app/views/container_replicator/edit.html.haml deleted file mode 100644 index 562e6176e7b..00000000000 --- a/app/views/container_replicator/edit.html.haml +++ /dev/null @@ -1 +0,0 @@ -= render :partial => 'shared/views/ems_common/form' diff --git a/app/views/container_route/edit.html.haml b/app/views/container_route/edit.html.haml deleted file mode 100644 index 562e6176e7b..00000000000 --- a/app/views/container_route/edit.html.haml +++ /dev/null @@ -1 +0,0 @@ -= render :partial => 'shared/views/ems_common/form' diff --git a/app/views/container_route/new.html.haml b/app/views/container_route/new.html.haml deleted file mode 100644 index 562e6176e7b..00000000000 --- a/app/views/container_route/new.html.haml +++ /dev/null @@ -1 +0,0 @@ -= render :partial => 'shared/views/ems_common/form' diff --git a/app/views/container_service/edit.html.haml b/app/views/container_service/edit.html.haml deleted file mode 100644 index 562e6176e7b..00000000000 --- a/app/views/container_service/edit.html.haml +++ /dev/null @@ -1 +0,0 @@ -= render :partial => 'shared/views/ems_common/form' diff --git a/app/views/container_service/new.html.haml b/app/views/container_service/new.html.haml deleted file mode 100644 index 562e6176e7b..00000000000 --- a/app/views/container_service/new.html.haml +++ /dev/null @@ -1 +0,0 @@ -= render :partial => 'shared/views/ems_common/form' diff --git a/app/views/container_template/edit.html.haml b/app/views/container_template/edit.html.haml deleted file mode 100644 index 562e6176e7b..00000000000 --- a/app/views/container_template/edit.html.haml +++ /dev/null @@ -1 +0,0 @@ -= render :partial => 'shared/views/ems_common/form' diff --git a/app/views/dashboard/_widget.html.haml b/app/views/dashboard/_widget.html.haml index 2205f7eb0fb..a1a8a6db9f6 100644 --- a/app/views/dashboard/_widget.html.haml +++ b/app/views/dashboard/_widget.html.haml @@ -2,14 +2,13 @@ -# widget MiqWidget object - button_id = "btn_#{presenter.widget.id}" %div{:id => "w_#{presenter.widget.id}"} - .card-pf - .card-pf-heading - %h2.card-pf-title.sortable-handle{:style => "cursor:move"} - = h(presenter.widget.title) - .dropdown.dropdown-kebab-pf.pull-right - %button.btn.btn-link.dropdown-toggle{:type => "button", :id => button_id, "data-toggle" => "dropdown"} + .card-pf.card-pf-view + .card-pf-body + .card-pf-heading-kebab + .dropdown.pull-right.dropdown-kebab-pf + %button.btn.btn-link.dropdown-toggle{:type => "button", :id => button_id, "data-toggle" => "dropdown", "aria-haspopup" => "true"} %span.fa.fa-ellipsis-v - %ul.dropdown-menu{"aria-labelledby" => button_id} + %ul.dropdown-menu.dropdown-menu-right{"aria-labelledby" => button_id} - if role_allows?(:feature => "dashboard_add") %li = presenter.button_close @@ -24,6 +23,8 @@ - if %w(chart).include?(presenter.widget.content_type) %li = presenter.button_zoom + %h2.card-pf-title.sortable-handle{:style => "cursor:move"} + = h(presenter.widget.title) - if presenter.widget.content_type == "menu" = render :partial => 'widget_menu', :locals => {:widget => presenter.widget} diff --git a/app/views/dashboard/_widget_blank.html.haml b/app/views/dashboard/_widget_blank.html.haml index 89d0df55f65..d94b2cabb0a 100644 --- a/app/views/dashboard/_widget_blank.html.haml +++ b/app/views/dashboard/_widget_blank.html.haml @@ -1,8 +1,10 @@ -# Parameters: widget -- MiqWidget object -.card-pf-body{:style => "text-align: center;"} - .mc{:id => "dd_w#{widget.id}_box", - :style => "#{@sb[:dashboards][@sb[:active_db]][:minimized].include?(widget.id) ? 'display: none;' : ''}"} - %h3= _('No data found.') - = _('If this widget is new or has just been added to your dashboard, the data is being generated and should be available soon.') +.mc{:id => "dd_w#{widget.id}_box", +:style => "#{@sb[:dashboards][@sb[:active_db]][:minimized].include?(widget.id) ? 'display: none;' : ''}"} +.blank-slate-pf{:style => "padding: 10px"} + .blank-slate-pf-icon + %i.fa.fa-cog + %h1= _('No data found.') + %p= _('If this widget is new or has just been added to your dashboard, the data is being generated and should be available soon.') diff --git a/app/views/dashboard/_widget_chart.html.haml b/app/views/dashboard/_widget_chart.html.haml index fa729d64e84..e394f91fac7 100644 --- a/app/views/dashboard/_widget_chart.html.haml +++ b/app/views/dashboard/_widget_chart.html.haml @@ -1,22 +1,28 @@ -# Parameters: widget -- MiqWidget instance -.card-pf-body.chart_widget - .mc{:id => "dd_w#{widget.id}_box", - :style => @sb[:dashboards][@sb[:active_db]][:minimized].include?(widget.id) ? 'display:none' : ''} +.mc{:id => "dd_w#{widget.id}_box", + :style => @sb[:dashboards][@sb[:active_db]][:minimized].include?(widget.id) ? 'display:none' : ''} - - if widget.contents_for_user(current_user).contents.blank? - = _('No chart data found') - \. . . - - datum = widget.contents_for_user(current_user).contents - - if Charting.data_ok?(datum) - -# we need to count all charts to be able to display multiple - -# charts on a dashboard screen - - WidgetPresenter.chart_data.push(:xml => datum) - - chart_index = WidgetPresenter.chart_data.length - 1 - - chart_data = Charting.deserialized(datum) + - if widget.contents_for_user(current_user).contents.blank? + .blank-slate-pf{:style => "padding: 10px"} + .blank-slate-pf-icon + %i.fa.fa-cog + %h1= _('No chart data found.') - = chart_local(chart_data, - :id => "miq_widgetchart_#{chart_index}".html_safe) - - else - = _('Invalid chart data. Try regenerating the widgets.') + - datum = widget.contents_for_user(current_user).contents + - if Charting.data_ok?(datum) + -# we need to count all charts to be able to display multiple + -# charts on a dashboard screen + - WidgetPresenter.chart_data.push(:xml => datum) + - chart_index = WidgetPresenter.chart_data.length - 1 + - chart_data = Charting.deserialized(datum) + + = chart_local(chart_data, + :id => "miq_widgetchart_#{chart_index}".html_safe) + - else + .blank-slate-pf{:style => "padding: 10px"} + .blank-slate-pf-icon + %i.pficon.pficon-warning-triangle-o + %h1= _('Invalid chart data.') + %p= _('Invalid chart data. Try regenerating the widgets.') diff --git a/app/views/dashboard/_widget_menu.html.haml b/app/views/dashboard/_widget_menu.html.haml index f35060052f8..1ffa9d6f578 100644 --- a/app/views/dashboard/_widget_menu.html.haml +++ b/app/views/dashboard/_widget_menu.html.haml @@ -1,18 +1,17 @@ -# Parameters: widget MiqWidget object -.card-pf-body.menu_widget{:style => "padding: 0"} - .mc{:id => "dd_w#{widget.id}_box", - :style => @sb[:dashboards][@sb[:active_db]][:minimized].include?(widget.id) ? 'display: none;' : ''} - %table.table.table-hover - %tbody - - has_items = false - - widget.miq_widget_shortcuts.order("sequence").each do |ws| - - if ws.miq_shortcut && role_allows?(:feature => ws.miq_shortcut.rbac_feature_name, :any => true) - - has_items = true - %tr - %td - = link_to(ws.description, ws.miq_shortcut.url, :title => _("Click to go to this location")) - - unless has_items - = _('No shortcuts are authorized for this user, contact your Administrator') - \. . . +.mc{:id => "dd_w#{widget.id}_box", + :style => @sb[:dashboards][@sb[:active_db]][:minimized].include?(widget.id) ? 'display: none;' : ''} + %table.table.table-hover + %tbody + - has_items = false + - widget.miq_widget_shortcuts.order("sequence").each do |ws| + - if ws.miq_shortcut && role_allows?(:feature => ws.miq_shortcut.rbac_feature_name, :any => true) + - has_items = true + %tr + %td + = link_to(ws.description, ws.miq_shortcut.url, :title => _("Click to go to this location")) + - unless has_items + = _('No shortcuts are authorized for this user, contact your Administrator') + \. . . diff --git a/app/views/dashboard/_widget_report.html.haml b/app/views/dashboard/_widget_report.html.haml index 47fffa5e8b3..f87efa66df7 100644 --- a/app/views/dashboard/_widget_report.html.haml +++ b/app/views/dashboard/_widget_report.html.haml @@ -1,11 +1,12 @@ -# Parameters: widget -- MiqWidget object -.card-pf-body.report_widget - .mc{:id => "dd_w#{widget.id}_box", - :style => @sb[:dashboards][@sb[:active_db]][:minimized].include?(widget.id) ? 'display: none;' : ''} - - if widget.contents_for_user(current_user).contents.blank? - = _('No Report data found') - \. . . - - else - = widget.contents_for_user(current_user).contents.html_safe +.mc{:id => "dd_w#{widget.id}_box", +:style => @sb[:dashboards][@sb[:active_db]][:minimized].include?(widget.id) ? 'display: none;' : ''} +- if widget.contents_for_user(current_user).contents.blank? + .blank-slate-pf{:style => "padding: 10px"} + .blank-slate-pf-icon + %i.fa.fa-cog + %h1= _('No report data found.') +- else + = widget.contents_for_user(current_user).contents.html_safe diff --git a/app/views/dashboard/_widget_rss.html.haml b/app/views/dashboard/_widget_rss.html.haml index 0741c679324..30aa89bf1b5 100644 --- a/app/views/dashboard/_widget_rss.html.haml +++ b/app/views/dashboard/_widget_rss.html.haml @@ -1,11 +1,13 @@ -# Parameters: widget: MiqWidget object -.card-pf-body.rss_widget{:style => "padding: 0"} - = hidden_div_if(@sb[:dashboards][@sb[:active_db]][:minimized].include?(widget.id), :id => "dd_w#{widget.id}_box") do - - if widget.contents_for_user(current_user).contents.blank? - = _('No RSS Feed data found') - \. . . - - else - = widget.contents_for_user(current_user).contents.gsub("https://localhost:3000", - "#{request.protocol}#{request.host}:#{request.port}").html_safe +.rss_widget{:style => "padding: 0"} += hidden_div_if(@sb[:dashboards][@sb[:active_db]][:minimized].include?(widget.id), :id => "dd_w#{widget.id}_box") do + - if widget.contents_for_user(current_user).contents.blank? + .blank-slate-pf{:style => "padding: 10px"} + .blank-slate-pf-icon + %i.pficon.pficon-info + %h1= _('No RSS Feed data found') + - else + = widget.contents_for_user(current_user).contents.gsub("https://localhost:3000", + "#{request.protocol}#{request.host}:#{request.port}").html_safe diff --git a/app/views/ems_container/_show_ad_hoc_metrics.html.haml b/app/views/ems_container/_show_ad_hoc_metrics.html.haml index a9b525447d5..a2a77537ceb 100644 --- a/app/views/ems_container/_show_ad_hoc_metrics.html.haml +++ b/app/views/ems_container/_show_ad_hoc_metrics.html.haml @@ -1,10 +1,10 @@ = render :partial => "layouts/flash_msg" .ad-hoc-metrics.row.miq-dashboard-view.miq-metrics{"ng-controller" => "adHocMetricsController as dash"} - .row.toolbar-pf{"ng-show" => "!dash.showGraph"} + .row.toolbar-pf.list-view{"ng-show" => "!dash.showGraph"} = render :partial => "ems_container/ad_hoc/list_view_form" = render :partial => "ems_container/ad_hoc/list_view" = render :partial => "ems_container/ad_hoc/list_view_blank" - .row.toolbar-pf{"ng-show" => "dash.showGraph"} + .row.toolbar-pf.graph-view{"ng-show" => "dash.showGraph"} = render :partial => "ems_container/ad_hoc/chart_view_form" = render :partial => "ems_container/ad_hoc/chart_view" diff --git a/app/views/ems_container/ad_hoc/_chart_view_form.html.haml b/app/views/ems_container/ad_hoc/_chart_view_form.html.haml index 60d7c603624..df84b7732dd 100644 --- a/app/views/ems_container/ad_hoc/_chart_view_form.html.haml +++ b/app/views/ems_container/ad_hoc/_chart_view_form.html.haml @@ -28,3 +28,19 @@ %button.btn.btn-primary.pull-left{"type" => "button", "ng-click" => "dash.refreshGraph()"} = _("Refresh") + + %dropdown.dropdown-kebab-pf + %button.btn.btn-link.dropdown-toggle{"type" => "button", + "data-toggle" => "dropdown", + "aria-haspopup" => "true", + "aria-expanded" => "true"} + %span.fa.fa-fw.fa-ellipsis-v + %ul.dropdown-menu{"aria-labelledby" => "dropdownKebab"} + %li{"ng-repeat" => "range in dash.timeIntervals"} + %a{"href" => "#", + "ng-click" => "dash.minBucketDurationInSecondes = range.value; dash.refreshGraph()"} + .row + .col-md-9 + {{range.title}} + .col + %span.pficon{"ng-class" => "{true: 'pficon-ok'}[dash.minBucketDurationInSecondes===range.value]"} diff --git a/app/views/ems_container/ad_hoc/_list_view_form.html.haml b/app/views/ems_container/ad_hoc/_list_view_form.html.haml index a9b62b846e5..221e0d217a0 100644 --- a/app/views/ems_container/ad_hoc/_list_view_form.html.haml +++ b/app/views/ems_container/ad_hoc/_list_view_form.html.haml @@ -1,21 +1,19 @@ -.col-md-12.ad-hoc-tenant +.col-md-12.tenant-filter-bar .form-group.pull-left.ad-hoc-tenant %button.btn.btn-primary{"type" => "button", "ng-disabled" => "!dash.tenantChanged", "ng-click" => "dash.refreshTenant()"} = _("Set Tenant") - %input.form-control{"id" => "ad-hoc-tenant", - "type" => "text", - "ng-model" => "dash.tenant", - "placeholder" => _("Choose Tenants"), - "typeahead" => "tenenat for tenenat in dash.getTenants($viewValue)", - "typeahead-loading" => "dash.loadingTenants", - "ng-change" => "dash.tenantChanged = true", - "typeahead-on-select" => "dash.refreshTenant()", - "typeahead-wait-ms" => 500} + %select.selectpicker.tenants-selector{"pf-select" => "", + "id" => "tenant-slector", + "ng-options" => "o.label for o in dash.tenantList", + "ng-model" => "dash.tenant", + "ng-change" => "dash.tenantChanged = true", + "data-live-search" => "true", + "data-actions-box" => "true"} -.ad-hoc-toolbar{"pf-toolbar" => "", "config" => "dash.toolbarConfig"} +.ad-hoc-toolbar.filters-selector{"pf-toolbar" => "", "config" => "dash.toolbarConfig"} %actions %button.btn.btn-default{"type" => "button", "ng-click" => "dash.doAddFilter()", @@ -29,3 +27,48 @@ "ng-click" => "dash.viewGraph()", "ng-disabled" => "!dash.itemSelected"} = _("View Graph") + + %dropdown.dropdown-kebab-pf + %button.btn.btn-link.dropdown-toggle{"type" => "button", + "data-toggle" => "dropdown", + "aria-haspopup" => "true", + "aria-expanded" => "true"} + %span.fa.fa-fw.fa-ellipsis-v + %ul.dropdown-menu{"aria-labelledby" => "dropdownKebab"} + %li{"ng-repeat" => "range in dash.filterTypes"} + %a{"href" => "#", + "ng-click" => "dash.filterType = range.value; dash.setFilterOptions()"} + .row + .col-md-9 + {{range.title}} + .col + %span.pficon{"ng-class" => "{true: 'pficon-ok'}[dash.filterType===range.value]"} + + .form-group.pagination-div + %ul.pagination.pagination-pf-back + %li + %a{"href" => "#", + "ng-click" => "dash.setPage(1)", + "title" => _("First Page")} + %span.i.fa.fa-angle-double-left + %li + %a{"href" => "#", + "ng-click" => "dash.setPage(dash.page - 1)", + "title" => _("Previous Page")} + %span.i.fa.fa-angle-left + + %input.page-input.form-control{"ng-model" => "dash.page", + "readonly" => "readonly", + "type" => "text"} + + %ul.pagination.pagination-pf-forward + %li + %a{"href" => "#", + "ng-click" => "dash.setPage(dash.page + 1)", + "title" => _("Next Page")} + %span.i.fa.fa-angle-right + %li + %a{"href" => "#", + "ng-click" => "dash.setPage(dash.pages)", + "title" => _("Last Page")} + %span.i.fa.fa-angle-double-right diff --git a/app/views/layouts/_center_div_dashboard_no_listnav.html.haml b/app/views/layouts/_center_div_dashboard_no_listnav.html.haml index 959289611c3..d3f4d8b17d1 100644 --- a/app/views/layouts/_center_div_dashboard_no_listnav.html.haml +++ b/app/views/layouts/_center_div_dashboard_no_listnav.html.haml @@ -1,10 +1,10 @@ = render :partial => "layouts/vertical_navbar" -.container-fluid.container-cards-pf.container-pf-nav-pf-vertical.container-pf-nav-pf-vertical-with-sub-menus{:style => "overflow: hidden; height: 100%;"} +.container-fluid.container-pf-nav-pf-vertical.container-pf-nav-pf-vertical-with-sub-menus{:style => "overflow: hidden; height: 100%;"} .row.toolbar-pf#toolbar .col-md-12 - if @widgets_menu = render :partial => "layouts/angular/toolbar" - .row#main-content + .row#main-content.miq-body .col-md-12 .spacer = render :partial => 'layouts/tabs' diff --git a/app/views/layouts/_multi_auth_credentials.html.haml b/app/views/layouts/_multi_auth_credentials.html.haml deleted file mode 100644 index c5e0212d1e2..00000000000 --- a/app/views/layouts/_multi_auth_credentials.html.haml +++ /dev/null @@ -1,127 +0,0 @@ -- validate_url ||= (record.id || @edit[:hostitems]) ? "update" : "create" -- change_url ||= "form_field_changed" -- legendtext ||= _("Endpoints") -.form-horizontal - %h3 - = legendtext - #auth_tabs - %ul.nav.nav-tabs - = miq_tab_header('default', nil, {'ng-click' => "changeAuthTab('default')"}) do - = _("Default") - - if %w(ems_cloud ems_infra).include?(params[:controller]) - - if @edit[:new][:emstype] == "rhevm" - = miq_tab_header('metrics', nil, {'ng-click' => "changeAuthTab('metrics')"}) do - = _("C & U Database") - - if %w(openstack openstack_infra).include?(@edit[:new][:emstype]) - = miq_tab_header('amqp', nil, {'ng-click' => "changeAuthTab('amqp')"}) do - = _("AMQP") - - if %w(openstack_infra).include?(@edit[:new][:emstype]) - = miq_tab_header('ssh_keypair', nil, {'ng-click' => "changeAuthTab('ssh_keypair')"}) do - = _("RSA key pair") - - elsif !%w(ems_middleware).include?(params[:controller]) - = miq_tab_header('remote', nil, {'ng-click' => "changeAuthTab('remote')"}) do - = _("Remote Login") - = miq_tab_header('web', nil, {'ng-click' => "changeAuthTab('web')"}) do - = _("Web Services") - = miq_tab_header('ipmi', nil, {'ng-click' => "changeAuthTab('ipmi')"}) do - = _("IPMI") - - .tab-content - = miq_tab_content('default') do - = render(:partial => "/layouts/auth_credentials", - :locals => {:pfx => "default", - :change_url => change_url, - :validate_url => validate_url, - :ujs_button => true, - :uid_label => @edit[:new][:emstype] == "ec2" ? _("Access Key ID") : nil, - :pwd_label => @edit[:new][:emstype] == "ec2" ? _("Secret Access Key") : nil, - :record => record}) - .form-group - .col-md-12 - %span{:style => "color:black"} - = _("Required. Should have privileged access, such as root or administrator.") - - if %w(ems_cloud ems_infra).include?(params[:controller]) - = miq_tab_content('metrics') do - = render(:partial => "/layouts/auth_credentials", - :locals => {:pfx => "metrics", - :change_url => change_url, - :validate_url => validate_url, - :ujs_button => true, - :uid_label => @edit[:new][:emstype] == "ec2" ? _("Access Key ID") : nil, - :pwd_label => @edit[:new][:emstype] == "ec2" ? _("Secret Access Key") : nil, - :record => record}) - .form-group - .col-md-12 - %span{:style => "color:black"} - = _("Used to gather Capacity & Utilization metrics.") - = miq_tab_content('amqp') do - = render(:partial => "/layouts/auth_credentials", - :locals => {:pfx => "amqp", - :change_url => change_url, - :validate_url => validate_url, - :ujs_button => true, - :record => record}) - .form-group - .col-md-12 - %span{:style => "color:black"} - = _("Used to authenticate with OpenStack AMQP Messaging Bus for event handling. Configure AMQP if eventing is not enabled on Ceilometer.") - = miq_tab_content('ssh_keypair') do - = render(:partial => "/layouts/auth_credentials_keypair", - :locals => {:pfx => "ssh_keypair", - :change_url => change_url, - :ujs_button => true, - :record => record}) - .form-group - .col-md-12 - %span{:style => "color:black"} - = _("Used for SSH connection to all %{hosts} in this provider.") % {:hosts => title_for_hosts} - - else - = miq_tab_content('remote') do - = render(:partial => "/layouts/auth_credentials", - :locals => {:pfx => "remote", - :change_url => change_url, - :validate_url => validate_url, - :ujs_button => true, - :record => record}) - .form-group - .col-md-12 - %span{:style => "color:black"} - = _("Required if SSH login is disabled for the Default account.") - = miq_tab_content('web') do - = render(:partial => "/layouts/auth_credentials", - :locals => {:pfx => "ws", - :change_url => change_url, - :validate_url => validate_url, - :ujs_button => true, - :record => record}) - .form-group - .col-md-12 - %span{:style => "color:black"} - = _("Used for access to Web Services.") - = miq_tab_content('ipmi') do - = render(:partial => "/layouts/auth_credentials", - :locals => {:pfx => "ipmi", - :change_url => change_url, - :validate_url => validate_url, - :ujs_button => true, - :record => record}) - .form-group - .col-md-12 - %span{:style => "color:black"} - = _("Used for access to IPMI.") - - - unless session[:host_items].nil? - %table.table.table-bordered - %tbody - %tr - %td= _("Select %{host} to validate against") % {:host => title_for_host} - %td - = select_tag('validate_id', - options_for_select(@edit[:selected_hosts].invert.sort, - @edit[:validate_against].to_i), - "data-miq_observe" => {:url => url_for_only_path(:action => 'form_field_changed', - :id => "#{record.id || "new"}")}.to_json) - %hr - -:javascript - miq_tabs_init('#auth_tabs'); diff --git a/app/views/layouts/_textual_code_mirror.haml b/app/views/layouts/_textual_code_mirror.haml new file mode 100644 index 00000000000..ea19d66ca77 --- /dev/null +++ b/app/views/layouts/_textual_code_mirror.haml @@ -0,0 +1,16 @@ +.row + .col-md-12.col-lg-12 + %hr + %h3= _("#{label}") + = text_area(text_area_id, "data", + :value => "#{value}", + :size => "90x20", + :disabled => true, + :style => "display:none;") + -# Create a MyCodeMirror editor for the text area + = render(:partial => "/layouts/my_code_mirror", + :locals => {:text_area_id => "#{text_area_id}_data", + :mode => "#{mode}", + :line_numbers => true, + :read_only => true}) + diff --git a/app/views/layouts/_textual_groups_tabs.html.haml b/app/views/layouts/_textual_groups_tabs.html.haml new file mode 100644 index 00000000000..e3213220e7a --- /dev/null +++ b/app/views/layouts/_textual_groups_tabs.html.haml @@ -0,0 +1,2 @@ +-# each tab can have different set of boxes += render :partial => "layouts/textual_groups_raw", :locals => {:textual_group_list => textual_group_list} diff --git a/app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml b/app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml index df052af7456..f26263a7ebb 100644 --- a/app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml +++ b/app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml @@ -15,9 +15,13 @@ - cancel_password_change ||= _("Cancel password change") - verify_title_off ||= _("Server information, Username and matching password fields are needed to perform verification of credentials") - ng_show_userid ||= true +- ng_show_password ||= true +- ng_show_verify ||= true - guid_regex ||= false +- vm_scope ||= false +- main_scope = vm_scope ? "$parent.vm" : "$parent" -%div{"ng-controller" => "CredentialsController"} +%div{"ng-controller" => "CredentialsController as vm", "vm-scope" => "$parent.vm.model ? $parent.vm : $parent"} %div{"ng-show" => "#{ng_show} && #{ng_show_userid}"} .form-group{"ng-class" => "{'has-error': angularForm.#{prefix}_userid.$invalid}"} %label.col-md-2.control-label{"for" => "#{prefix}_userid"} @@ -28,7 +32,7 @@ "ng-required" => "#{ng_reqd_userid}", "ng-disabled" => userid_disabled, "name" => "#{prefix}_userid", - "ng-model" => "#{ng_model}.#{prefix}_userid", + "ng-model" => "#{main_scope}.#{ng_model}.#{prefix}_userid", "checkchange" => "", "ng-trim" => false, "detect_spaces" => "", @@ -42,23 +46,23 @@ = _("Spaces are prohibited") %span.help-block{"ng-show" => "angularForm.#{prefix}_userid.$error.isUuid"} = _("Invalid input format, please enter a GUID") - .note - {{note}} + .note{"ng-if" => "emsCommonModel.emstype == 'scvmm' && emsCommonModel.default_security_protocol == 'kerberos'"} + = _("Note: Username must be in the format: name@realm") - %div{"ng-show" => "#{ng_show}"} + %div{"ng-show" => "#{ng_show} && #{ng_show_password}"} .form-group{"ng-class" => "{'has-error': angularForm.#{prefix}_password.$error.required}"} %label.col-md-2.control-label{"for" => "#{prefix}_password"} - %div{"ng-show" => "bChangeStoredPassword != true"} + %div{"ng-show" => "vm.bChangeStoredPassword != true"} = password_label - %div{"ng-show" => "bChangeStoredPassword"} + %div{"ng-show" => "vm.bChangeStoredPassword"} = new_password_label .col-md-4 %input.form-control{"type" => "password", "id" => "#{prefix}_password", "ng-required" => "#{ng_reqd_password}", - "ng-disabled" => "!showVerify('#{prefix}_userid')" || password_disabled, + "ng-disabled" => "!vm.showVerify('#{prefix}_userid')" || password_disabled, "name" => "#{prefix}_password", - "ng-model" => "#{ng_model}.#{prefix}_password", + "ng-model" => "#{main_scope}.#{ng_model}.#{prefix}_password", "prefix" => "#{prefix}", "clear-field-set-focus" => "", "verifypasswd" => "", @@ -66,42 +70,43 @@ "reset-validation-status" => "#{prefix}_auth_status"} %span.help-block{"ng-show" => "angularForm.#{prefix}_password.$error.required"} = _("Required") - %div{"ng-if" => "showChangePasswordLinks('#{prefix}_userid')"} - %a{:href => "", "ng-hide" => "bChangeStoredPassword", "ng-click" => "changeStoredPassword()"} + %div{"ng-if" => "vm.showChangePasswordLinks('#{prefix}_userid')"} + %a{:href => "", "ng-hide" => "vm.bChangeStoredPassword", "ng-click" => "vm.changeStoredPassword()"} = change_stored_password - %a{:href => "", "ng-show" => "bChangeStoredPassword", "ng-click" => "cancelPasswordChange()"} + %a{:href => "", "ng-show" => "vm.bChangeStoredPassword", "ng-click" => "vm.cancelPasswordChange()"} = cancel_password_change - %div{"ng-show" => "#{ng_show}"} - .form-group{"ng-class" => "{'has-error': angularForm.#{prefix}_verify.$error.required || (#{prefix}_VerifyCtrl != undefined && #{prefix}_VerifyCtrl.$error.verifypasswd)}"} - %label.col-md-2.control-label{"ng-show" => "showVerify('#{prefix}_userid')", "for" => "#{prefix}_verify"} + %div{"ng-show" => "#{ng_show} && #{ng_show_verify}"} + .form-group{"ng-class" => "{'has-error': angularForm.#{prefix}_verify.$error.required || angularForm.#{prefix}_verify.$error.verifypasswd}"} + %label.col-md-2.control-label{"ng-show" => "vm.showVerify('#{prefix}_userid')", "for" => "#{prefix}_verify"} = verify_label .col-md-4 %input.form-control{"type" => "password", "id" => "#{prefix}_verify", "ng-required" => "#{ng_reqd_verify}", - "ng-disabled" => "!showVerify('#{prefix}_userid')" || password_disabled, + "ng-disabled" => "!vm.showVerify('#{prefix}_userid')" || password_disabled, "name" => "#{prefix}_verify", - "ng-model" => "#{ng_model}.#{prefix}_verify", - "ng-show" => "showVerify('#{prefix}_userid')", + "ng-model" => "#{main_scope}.#{ng_model}.#{prefix}_verify", + "ng-show" => "vm.showVerify('#{prefix}_userid')", "prefix" => "#{prefix}", "clear-field-set-focus" => "no-focus", "verifypasswd" => "", "checkchange" => "", "reset-validation-status" => "#{prefix}_auth_status"} - %div{"ng-show" => "showVerify('#{prefix}_userid')"} + %div{"ng-show" => "vm.showVerify('#{prefix}_userid')"} %span.help-block{"ng-show" => "angularForm.#{prefix}_verify.$error.required"} = _("Required") - %span.help-block{"ng-show" => "!angularForm.#{prefix}_verify.$error.required && #{prefix}_VerifyCtrl != undefined && #{prefix}_VerifyCtrl.$error.verifypasswd"} + %span.help-block{"ng-show" => "!angularForm.#{prefix}_verify.$error.required && angularForm.#{prefix}_verify.$error.verifypasswd"} = passwd_mismatch - %div{"ng-show" => "#{ng_show}"} - .form-group - %label.col-md-2 - .col-md-4 - = render :partial => "layouts/angular/form_buttons_verify_angular", - :locals => {:ng_show => "#{ng_show}", - :validate_url => validate_url, - :id => id, - :ng_model => "#{ng_model}", - :valtype => "#{prefix}", - :verify_title_off => verify_title_off, - :basic_info_needed => defined?(basic_info_needed) ? basic_info_needed : nil} + %div{"ng-show" => "#{ng_show}"} + .form-group + %label.col-md-2 + .col-md-4 + = render :partial => "layouts/angular/form_buttons_verify_angular", + :locals => {:ng_show => "#{ng_show}", + :validate_url => validate_url, + :id => id, + :ng_model => "#{ng_model}", + :main_scope => main_scope, + :valtype => "#{prefix}", + :verify_title_off => verify_title_off, + :basic_info_needed => defined?(basic_info_needed) ? basic_info_needed : nil} diff --git a/app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml b/app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml index a1f2da9aabe..1d340c480eb 100644 --- a/app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml +++ b/app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml @@ -11,6 +11,9 @@ - change_stored_private_key ||= _("Change stored private key") - cancel_private_key_change ||= _("Cancel private key change") - verify_title_off ||= _("Server information, username and private key fields are needed to perform verification of credentials") +- vm_scope ||= false +- main_scope = vm_scope ? "$parent.vm" : "$parent" + %div{"ng-controller" => "emsKeypairController as vm", "ng-init" => "vm.initialize(#{ng_model}, formId)"} %div{"ng-show" => "#{ng_show}"} @@ -82,5 +85,6 @@ :id => id, :valtype => prefix, :ng_model => "#{ng_model}", + :main_scope => main_scope, :verify_title_off => verify_title_off, :basic_info_needed => defined?(basic_info_needed) ? basic_info_needed : nil} diff --git a/app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml b/app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml index 47fd9c627ea..fba05fe0d2b 100644 --- a/app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml +++ b/app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml @@ -85,7 +85,8 @@ "emsCommonModel.emstype == 'nuage_network' || " + | "(emsCommonModel.emstype == 'vmware_cloud' && '#{prefix}' === 'amqp') || " | "emsCommonModel.emstype == 'scvmm' || " + | - "emsCommonModel.ems_controller == 'ems_container'"} | + "emsCommonModel.ems_controller == 'ems_container' || " + | + "emsCommonModel.emstype == 'hawkular'"} | %label.col-md-2.control-label{"for" => "#{prefix}_security_protocol"} = _('Security Protocol') .col-md-8{"ng-if" => "emsCommonModel.emstype == 'openstack' || emsCommonModel.emstype == 'openstack_infra' || emsCommonModel.emstype == 'vmware_cloud'"} @@ -112,7 +113,6 @@ "ng-model" => "#{ng_model}.#{prefix}_security_protocol", "checkchange" => "", "required" => "", - "ng-change" => "scvmmSecurityProtocolChanged()", "selectpicker-for-select-tag" => "", "prefix" => "#{prefix}", "reset-validation-status" => "#{prefix}_auth_status") @@ -125,6 +125,16 @@ "selectpicker-for-select-tag" => "", "prefix" => "#{prefix}", "reset-validation-status" => "#{prefix}_auth_status") + .col-md-8{"ng-if" => "emsCommonModel.emstype == 'hawkular'"} + = select_tag("#{prefix}_security_protocol", + options_for_select([["<#{_('Choose')}>", nil]] + @hawkular_security_protocols, "disabled" => ["<#{_('Choose')}>", nil]), + "ng-model" => "#{ng_model}.#{prefix}_security_protocol", + "checkchange" => "", + "required" => "", + "ng-change" => "hawkularSecurityProtocolChanged()", + "selectpicker-for-select-tag" => "", + "prefix" => prefix.to_s, + "reset-validation-status" => "#{prefix}_auth_status") %div{"ng-if" => defined?(tls_verify_hide) ? false : true} .form-group{"ng-if"=> "emsCommonModel.emstype == 'rhevm'"} @@ -143,9 +153,11 @@ "prefix" => "#{prefix}"} %div{"ng-if" => defined?(tls_ca_certs_hide) ? false : true} - .form-group{"ng-if"=> "emsCommonModel.emstype == 'rhevm' || " + | - "(emsCommonModel.ems_controller == 'ems_container' && " + | - " emsCommonModel.#{prefix}_security_protocol == 'ssl-with-validation-custom-ca')"} | + .form-group{"ng-if"=> "emsCommonModel.emstype == 'rhevm' || " + | + "(emsCommonModel.ems_controller == 'ems_container' && " + | + " emsCommonModel.#{prefix}_security_protocol == 'ssl-with-validation-custom-ca') || " | + "(emsCommonModel.emstype == 'hawkular' && " + | + " emsCommonModel.#{prefix}_security_protocol == 'ssl-with-validation-custom-ca')"} | %label.col-md-2.control-label{"for" => "#{prefix}_tls_ca_certs"} = _('Trusted CA Certificates') .col-md-4 @@ -155,7 +167,8 @@ "ng-disabled" => "emsCommonModel.emstype == 'rhevm' && !#{ng_model}.#{prefix}_tls_verify", "ng-required" => false, "ng-trim" => false, - "prefix" => "#{prefix}"} + "prefix" => "#{prefix}", + "reset-validation-status" => "#{prefix}_auth_status"} %span.help-block = _("Paste here the trusted CA certificates, in PEM format.") diff --git a/app/views/layouts/angular/_ansible_form_options_angular.html.haml b/app/views/layouts/angular/_ansible_form_options_angular.html.haml index 700e5175916..5e79905542c 100644 --- a/app/views/layouts/angular/_ansible_form_options_angular.html.haml +++ b/app/views/layouts/angular/_ansible_form_options_angular.html.haml @@ -1,6 +1,22 @@ - prefix ||= 'provisioning' .row .col-md-12.col-lg-6 + - if prefix == "retirement" + = render :partial => 'catalog/confirmation_modal' + .form-group + %label.col-md-3.control-label + %table{:width => "100%", :align => "bottom"} + %tr + %td#buttons_on + %button{"type" => "button", + :class => "btn btn-default", + "data-toggle" => "modal", + "data-target" => "#confirmationModal", + "data-whatever" => "@mdo", + :id => "confirmation_modal", + :title => _("Copy from Provisioning")} + = _('Copy from Provisioning') + .form-group{"ng-class" => "{'has-error': angularForm.#{prefix}_repository_id.$invalid}"} %label.col-md-3.control-label{"for" => "vm.#{prefix}_repository_id"} = _('Repository') @@ -23,6 +39,7 @@ 'ng-options' => "playbook as playbook.name for playbook in vm.#{prefix}_playbooks", "required" => "", :miqrequired => true, + "ng-change" => "playbookTypeChanged('#{prefix}')", :checkchange => true, "data-live-search" => "true", 'pf-select' => true} @@ -32,7 +49,7 @@ #credentials_div{"ng-show" => "vm.#{prefix}_repository_selected()"} .form-group{"ng-class" => "{'has-error': angularForm.#{prefix}_machine_credential_id.$invalid}"} %label.col-md-3.control-label{"for" => "#{prefix}_machine_credential_id"} - = _('Machine Credentials') + = _('Machine Credential') .col-md-9 %select{"ng-model" => "vm._#{prefix}_machine_credential", "name" => "#{prefix}_machine_credential_id", @@ -44,18 +61,18 @@ 'pf-select' => true} %option{"value" => ""} = "<#{_('Choose')}>" - .form-group - %label.col-md-3.control-label{"for" => "vm.#{prefix}_network_credential_id"} - = _('Network Credentials') - .col-md-9 - %select{"ng-model" => "vm._#{prefix}_network_credential", - "name" => "#{prefix}_network_credential_id", - 'ng-options' => 'network_credential as network_credential.name for network_credential in vm.network_credentials', - :checkchange => true, - "data-live-search" => "true", - 'pf-select' => true} - %option{"value" => ""} - = "<#{_('Choose')}>" + -#.form-group + -# %label.col-md-3.control-label{"for" => "vm.#{prefix}_network_credential_id"} + -# = _('Network Credential') + -# .col-md-9 + -# %select{"ng-model" => "vm._#{prefix}_network_credential", + -# "name" => "#{prefix}_network_credential_id", + -# 'ng-options' => 'network_credential as network_credential.name for network_credential in vm.network_credentials', + -# :checkchange => true, + -# "data-live-search" => "true", + -# 'pf-select' => true} + -# %option{"value" => ""} + -# = "<#{_('Choose')}>" .form-group %label.col-md-3.control-label{"for" => "vm.#{prefix}_cloud_type"} @@ -63,7 +80,7 @@ .col-md-9 %select{"ng-model" => "#{ng_model}.#{prefix}_cloud_type", "name" => "#{prefix}_cloud_type", - 'ng-options' => "cloud_type for cloud_type in #{ng_model}.cloud_types", + 'ng-options' => "k as v for (k, v) in vm.cloud_types", "ng-change" => "cloudTypeChanged('#{prefix}')", :checkchange => true, "pf-select" => true} @@ -72,7 +89,7 @@ #cloud_credentials_div{"ng-show" => "#{ng_model}.#{prefix}_cloud_type !== ''"} .form-group %label.col-md-3.control-label{"for" => "vm.#{prefix}_cloud_credential_id"} - = _('Cloud Credentials') + = _('Cloud Credential') .col-md-9 %select{"ng-model" => "vm._#{prefix}_cloud_credential", "name" => "#{prefix}_cloud_credential_id", @@ -95,6 +112,17 @@ "checkchange" => ""} %span.help-block{"ng-show" => "angularForm.#{prefix}_inventory.$error.miqrequired"} = _("Required") + + - if prefix == "retirement" + .form-group + %label.col-md-3.control-label{"for" => "catalog_id"} + = _('Remove resources?') + .col-md-9 + %select{"ng-model" => "vm.catalogItemModel.retirement_remove_resources", + "name" => "vm.catalogItemModel.retirement_remove_resources", + 'ng-options' => "v as k for (k, v) in vm.catalogItemModel.remove_resources_types", + :checkchange => true, + "pf-select" => true} .col-md-12.col-lg-6 .form-group %label.col-md-3.control-label diff --git a/app/views/layouts/angular/_auth_service_account_angular.html.haml b/app/views/layouts/angular/_auth_service_account_angular.html.haml index 54c325b799f..41e3dde7ff8 100644 --- a/app/views/layouts/angular/_auth_service_account_angular.html.haml +++ b/app/views/layouts/angular/_auth_service_account_angular.html.haml @@ -1,8 +1,10 @@ - ng_show ||= true - validate_url ||= 'log_depot_edit' - prefix ||= 'log' +- vm_scope ||= false +- main_scope = vm_scope ? "$parent.vm" : "$parent" -%div{"ng-controller" => "CredentialsController"} +%div{"ng-controller" => "CredentialsController", "vm-scope" => main_scope} %div{"ng-show" => ng_show} .form-group{"ng-class" => "{'has-error': angularForm.service_account.$invalid}"} %label.col-md-2.control-label{"for" => "service_account"} @@ -28,4 +30,5 @@ :id => id, :valtype => prefix, :ng_model => "#{ng_model}", + :main_scope => main_scope, :basic_info_needed => defined?(basic_info_needed) ? basic_info_needed : nil} diff --git a/app/views/layouts/angular/_form_buttons_verify_angular.html.haml b/app/views/layouts/angular/_form_buttons_verify_angular.html.haml index 65339804047..eddedd3dbd3 100644 --- a/app/views/layouts/angular/_form_buttons_verify_angular.html.haml +++ b/app/views/layouts/angular/_form_buttons_verify_angular.html.haml @@ -6,16 +6,17 @@ - verify_title_off ||= _("Server information, Username and matching password fields are needed to perform verification of credentials") - if controller.send(:restful?) -# TODO: replace first argument with a sane way of submitting the form - - validate = "validateClicked({target: '.validate_button:visible'}, '#{valtype}', true)" + - validate = "#{main_scope}.validateClicked({target: '.validate_button:visible'}, '#{valtype}', true)" - else - - validate = "validateClicked('#{url_for_only_path(:action => validate_url, :id => id, :type => valtype, :button => "validate")}')" + - validate = "#{main_scope}.validateClicked('#{url_for_only_path(:action => validate_url, :id => id, :type => valtype, :button => "validate")}')" %div{"ng-show" => ng_show} %miq-button{:class => 'validate_button', :name => _("Validate"), "disabled-title" => verify_title_off, "enabled-title" => verify_title_on, - :enabled => basic_info_needed ? "canValidateBasicInfo()" : "canValidate()", + :enabled => basic_info_needed ? "#{main_scope}.canValidateBasicInfo(angularForm)" : "#{main_scope}.canValidate(angularForm)", 'on-click' => validate, + :xs => 'true', :primary => 'true'} %div{"ng-if" => "checkAuthentication"} .form-group{"ng-class" => "{'has-error': angularForm.#{valtype}_auth_status.$error.validationRequired}"} diff --git a/app/views/layouts/angular/_generic_form_buttons.html.haml b/app/views/layouts/angular/_generic_form_buttons.html.haml new file mode 100644 index 00000000000..34cff177439 --- /dev/null +++ b/app/views/layouts/angular/_generic_form_buttons.html.haml @@ -0,0 +1,27 @@ +.clearfix +.pull-right.button-group.edit_buttons + %miq-button{:name => t = _("Add"), + :title => t, + :alt => t, + 'ng-show' => 'vm.newRecord', + :enabled => "vm.saveable(angularForm)", + 'on-click' => "vm.addClicked(angularForm)", + :primary => 'true'} + %miq-button{:name => t = _("Save"), + :title => t, + :alt => t, + 'ng-show' => '!vm.newRecord', + :enabled => "vm.saveable(angularForm)", + 'on-click' => "vm.saveClicked(angularForm)", + :primary => 'true'} + %miq-button{:name => t = _("Reset"), + :title => t, + :alt => t, + 'ng-show' => '!vm.newRecord', + :enabled => "!angularForm.$pristine", + 'on-click' => "vm.resetClicked(angularForm)"} + %miq-button{:name => t = _("Cancel"), + :title => t, + :alt => t, + :enabled => "true", + 'on-click' => "vm.cancelClicked(angularForm)"} diff --git a/app/views/layouts/angular/_multi_auth_credentials.html.haml b/app/views/layouts/angular/_multi_auth_credentials.html.haml index 3b6510a8af3..da2f547fc1a 100644 --- a/app/views/layouts/angular/_multi_auth_credentials.html.haml +++ b/app/views/layouts/angular/_multi_auth_credentials.html.haml @@ -1,33 +1,35 @@ - validate_url ||= (record.id || @selected_hosts) ? "update" : "create" - legendtext ||= _("Endpoints") +- vm_scope ||= false +- main_scope = vm_scope ? "$parent.vm" : "$parent" #auth_tabs %h3 = legendtext %ul.nav.nav-tabs - = miq_tab_header('default') do + = miq_tab_header('default', nil, {'ng-click' => "changeAuthTab('default')"}) do %i{"error-on-tab" => "default", :style => "color:#cc0000"} = _("Default") - if %w(ems_cloud ems_infra).include?(controller_name) - = miq_tab_header('metrics') do + = miq_tab_header('metrics', nil, {'ng-click' => "changeAuthTab('metrics')"}) do %i{"error-on-tab" => "metrics", :style => "color:#cc0000"} = _("C & U Database") - = miq_tab_header('amqp') do + = miq_tab_header('amqp', nil, {'ng-click' => "changeAuthTab('amqp')"}) do %i{"error-on-tab" => "amqp", :style => "color:#cc0000"} = _("Events") - = miq_tab_header('ssh_keypair') do + = miq_tab_header('ssh_keypair', nil, {'ng-click' => "changeAuthTab('ssh_keypair')"}) do %i{"error-on-tab" => "ssh_keypair", :style => "color:#cc0000"} = _("RSA key pair") - elsif controller_name == "ems_container" - = miq_tab_header('hawkular') do + = miq_tab_header('hawkular', nil, {'ng-click' => "changeAuthTab('hawkular')"}) do %i{"error-on-tab" => "hawkular", :style => "color:#cc0000"} = _("Hawkular") - elsif controller_name == "host" - = miq_tab_header('remote') do + = miq_tab_header('remote', nil, {'ng-click' => "changeAuthTab('remote')"}) do = _("Remote Login") - = miq_tab_header('ws') do + = miq_tab_header('ws', nil, {'ng-click' => "changeAuthTab('ws')"}) do = _("Web Services") - = miq_tab_header('ipmi') do + = miq_tab_header('ipmi', nil, {'ng-click' => "changeAuthTab('ipmi')"}) do = _("IPMI") .tab-content @@ -266,16 +268,18 @@ :ng_reqd_hostname => "false", :ng_reqd_api_port => "false", :prefix => "hawkular"} - %label.col-md-2 - .col-md-4 - = render :partial => "layouts/angular/form_buttons_verify_angular", - :locals => {:ng_show => true, - :validate_url => validate_url, - :id => record.id, - :ng_model => "#{ng_model}", - :valtype => "hawkular", - :verify_title_off => _("hawkular URL and API port fields are needed to perform validation."), - :basic_info_needed => true} + = render :partial => "layouts/angular-bootstrap/auth_credentials_angular_bootstrap", + :locals => {:ng_show => true, + :ng_model => "#{ng_model}", + :main_scope => main_scope, + :ng_show_userid => "false", + :ng_show_password => "false", + :ng_show_verify => "false", + :validate_url => validate_url, + :id => record.id, + :prefix => "hawkular", + :verify_title_off => _("hawkular URL and API port fields are needed to perform validation."), + :basic_info_needed => true} .form-group .col-md-12 %span{:style => "color:black"} diff --git a/app/views/layouts/application.html.haml b/app/views/layouts/application.html.haml index 208d69b1925..89b7aaf4aff 100644 --- a/app/views/layouts/application.html.haml +++ b/app/views/layouts/application.html.haml @@ -37,7 +37,10 @@ ManageIQ.browser = "#{j browser_info(:name_ui)}"; ManageIQ.controller = "#{j controller_name}"; API.autorenew(); - miqInitNotifications(); // ActionCable causes live reload crashes + + - if ::Settings.server.asynchronous_notifications + :javascript + miqInitNotifications(); %body{:onload => is_browser_ie? ? '' : 'miqOnLoad();', 'data-controller' => controller_name} = render :partial => "layouts/header" diff --git a/app/views/layouts/listnav/_persistent_volume.html.haml b/app/views/layouts/listnav/_persistent_volume.html.haml index f542521da28..74a8b603344 100644 --- a/app/views/layouts/listnav/_persistent_volume.html.haml +++ b/app/views/layouts/listnav/_persistent_volume.html.haml @@ -13,5 +13,5 @@ - if role_allows?(:feature => "ems_container_show") && !@record.parent.nil? %li = link_to("#{ui_lookup(:table => "ems_container")}: #{@record.parent.name}", - {:controller => "ems_container", :action => 'show', :id => @record.parent.id.to_s}, - :title => _("Show this container volume's parent Containers Provider")) + polymorphic_path(@record.parent), + :title => _("Show this persistent volume's parent Containers Provider")) diff --git a/app/views/middleware_datasource/edit.html.haml b/app/views/middleware_datasource/edit.html.haml deleted file mode 100644 index 562e6176e7b..00000000000 --- a/app/views/middleware_datasource/edit.html.haml +++ /dev/null @@ -1 +0,0 @@ -= render :partial => 'shared/views/ems_common/form' diff --git a/app/views/middleware_datasource/new.html.haml b/app/views/middleware_datasource/new.html.haml deleted file mode 100644 index 562e6176e7b..00000000000 --- a/app/views/middleware_datasource/new.html.haml +++ /dev/null @@ -1 +0,0 @@ -= render :partial => 'shared/views/ems_common/form' diff --git a/app/views/middleware_deployment/edit.html.haml b/app/views/middleware_deployment/edit.html.haml deleted file mode 100644 index 562e6176e7b..00000000000 --- a/app/views/middleware_deployment/edit.html.haml +++ /dev/null @@ -1 +0,0 @@ -= render :partial => 'shared/views/ems_common/form' diff --git a/app/views/middleware_deployment/new.html.haml b/app/views/middleware_deployment/new.html.haml deleted file mode 100644 index 562e6176e7b..00000000000 --- a/app/views/middleware_deployment/new.html.haml +++ /dev/null @@ -1 +0,0 @@ -= render :partial => 'shared/views/ems_common/form' diff --git a/app/views/middleware_server/edit.html.haml b/app/views/middleware_server/edit.html.haml deleted file mode 100644 index 562e6176e7b..00000000000 --- a/app/views/middleware_server/edit.html.haml +++ /dev/null @@ -1 +0,0 @@ -= render :partial => 'shared/views/ems_common/form' diff --git a/app/views/middleware_server/new.html.haml b/app/views/middleware_server/new.html.haml deleted file mode 100644 index 562e6176e7b..00000000000 --- a/app/views/middleware_server/new.html.haml +++ /dev/null @@ -1 +0,0 @@ -= render :partial => 'shared/views/ems_common/form' diff --git a/app/views/miq_ae_customization/_dialog_sample.html.haml b/app/views/miq_ae_customization/_dialog_sample.html.haml index 44b9be0eafa..11a70dfda43 100644 --- a/app/views/miq_ae_customization/_dialog_sample.html.haml +++ b/app/views/miq_ae_customization/_dialog_sample.html.haml @@ -112,12 +112,8 @@ - when "DialogFieldButton" = button_tag(_('Save'), :disabled => true) - when "DialogFieldTagControl" - - category_tags = DialogFieldTagControl.category_tags(field.category).map do |cat| - - [cat[:description], cat[:id]] - - if field.single_value? - = select_tag('field.id', options_for_select(category_tags), - :prompt => field.required? ? "<#{_('Choose')}>" : "<#{_('None')}>") - - else - = select_tag('field.id', options_for_select(category_tags), :multiple => true) + - multiple = field.single_value? ? {} : {:multiple => true} + = select_tag('field.id', options_for_select(dialog_dropdown_select_values(field)), multiple) + :javascript miq_tabs_init("#dialog_tabs"); diff --git a/app/views/miq_ae_customization/_tag_field_values.html.haml b/app/views/miq_ae_customization/_tag_field_values.html.haml index 1a47940d95b..1ff0fdc17fa 100644 --- a/app/views/miq_ae_customization/_tag_field_values.html.haml +++ b/app/views/miq_ae_customization/_tag_field_values.html.haml @@ -6,7 +6,7 @@ %th= _('Value') %th= _('Description') %tbody - - DialogFieldTagControl.category_tags(@edit[:field_category]).each do |cat| + - category_tags(@edit[:field_category]).each do |cat| %tr %td= cat[:name] %td= cat[:description] diff --git a/app/views/miq_policy/_profile_list.html.haml b/app/views/miq_policy/_profile_list.html.haml index b1f2f492c3c..4098002b9b3 100644 --- a/app/views/miq_policy/_profile_list.html.haml +++ b/app/views/miq_policy/_profile_list.html.haml @@ -12,7 +12,7 @@ %tbody - @profiles.each do |profile| %tr{:title => _("View this Profile"), - :onclick => "miqTreeActivateNode('policy_profile_tree', 'profile-#{to_cid(profile.id)}');"} + :onclick => "miqTreeActivateNode('policy_profile_tree', 'pp-#{to_cid(profile.id)}');"} %td.table-view-pf-select %img{:src => image_path("100/policy_profile#{profile.active? ? '' : '_inactive'}.png")} %td diff --git a/app/views/miq_request/_pre_prov.html.haml b/app/views/miq_request/_pre_prov.html.haml index 1f14d88e094..f0f04f50737 100644 --- a/app/views/miq_request/_pre_prov.html.haml +++ b/app/views/miq_request/_pre_prov.html.haml @@ -13,17 +13,20 @@ %thead %tr - id = @edit[:req_id] || "new" - - @edit[:vm_columns].each_with_index do |h, i| + - ["name", "image?", "operating_system.product_name", "platform", + "logical_cpus", "mem_cpu", "allocated_disk_storage", "deprecated", + "ext_management_system.name", "v_total_snapshots", "cloud_tenant"].each do |column_name| %th - -# Replaced to exclude non-view table fields from sorting - = link_to(h(@edit[:vm_headers][h]), - {:action => "vm_pre_prov", :sort_choice => h, :id => id.to_s}, - "data-miq_sparkle_on" => true, - "data-miq_sparkle_off" => true, - "data-method" => :post, - :remote => true) - - if @edit[:vm_columns][i] == @edit[:vm_sortcol] - %img{:src => image_path("16/sort_#{@edit[:vm_sortdir] == 'ASC' ? 'up' : 'down'}.png")} + - if @edit[:vm_headers].include?(column_name) + -# Replaced to exclude non-view table fields from sorting + = link_to(h(@edit[:vm_headers][column_name]), + {:action => "vm_pre_prov", :sort_choice => column_name, :id => id.to_s}, + "data-miq_sparkle_on" => true, + "data-miq_sparkle_off" => true, + "data-method" => :post, + :remote => true) + - if column_name == @edit[:vm_sortcol] + %img{:src => image_path("16/sort_#{@edit[:vm_sortdir] == 'ASC' ? 'up' : 'down'}.png")} %tbody - @vms.each do |row| - @id = row.id @@ -31,6 +34,10 @@ %tr{:class => cls, :onclick => "miqAjax('/miq_request/pre_prov/?sel_id=#{@id}');", :id => "row_#{@id}"} %td = h(row.name) + - if @edit[:vm_headers].include?("image?") + %td + - if row.respond_to?(:image?) + = h(row.image? ? _("Image") : _("Snapshot")) %td = h(row.operating_system.try(:product_name)) %td diff --git a/app/views/miq_request/_st_prov_show.html.haml b/app/views/miq_request/_st_prov_show.html.haml index fbaa02abad1..78348596530 100644 --- a/app/views/miq_request/_st_prov_show.html.haml +++ b/app/views/miq_request/_st_prov_show.html.haml @@ -3,7 +3,7 @@ - ra = st.resource_actions.find_by_action('Provision') if st - if ra && ra.dialog - values = @miq_request.options[:dialog] - - opts = {} + - opts = {:display_view_only => true} %fieldset %h3 = _("Dialog Options") diff --git a/app/views/network_router/_common_new_edit.haml b/app/views/network_router/_common_new_edit.haml new file mode 100644 index 00000000000..cd6b1ca96a9 --- /dev/null +++ b/app/views/network_router/_common_new_edit.haml @@ -0,0 +1,76 @@ +%h3 + = _('Basic Information') +.form-horizontal + .form-group{"ng-class" => "{'has-error': angularForm.name.$invalid}"} + %label.col-md-2.control-label + = _('Router Name') + .col-md-8 + %input.form-control{:type => "text", + :name => "name", + "ng-model" => "networkRouterModel.name", + "ng-maxlength" => 128, + "required" => "", + :checkchange => true} + %span.help-block{"ng-show" => "angularForm.name.$error.required"} + = _("Required") +%h3 + = _('External Gateway') +.form-horizontal + .form-group + %label.col-md-2.control-label{"for" => "network_router_enable_snat"} + .col-md-8 + %input{"bs-switch" => "", + :data => {:on_text => _('Yes'), :off_text => _('No'), :size => 'mini'}, + "type" => "checkbox", + "id" => "network_router_external_gateway", + "name" => "external_gateway", + "checkchange" => "true", + "ng-model" => "networkRouterModel.external_gateway"} + +.form-horizontal{"ng-if" => "networkRouterModel.external_gateway"} + .form-group{"ng-if" => "networkRouterModel.ems_id"} + %label.col-md-2.control-label{"for" => "network_router_enable_snat"} + = _('Enable Source NAT') + .col-md-8 + %input{"bs-switch" => "", + :data => {:on_text => _('Yes'), :off_text => _('No'), :size => 'mini'}, + "type" => "checkbox", + "id" => "network_router_enable_snat", + "name" => "enable_snat", + "checkchange" => "true", + "ng-model" => "networkRouterModel.enable_snat"} + + .form-group{"ng-class" => "{'has-error': angularForm.cloud_network_id.$invalid}"} + %label.col-md-2.control-label + = _('Network') + .col-md-8 + %select{"name" => "cloud_network_id", + "ng-model" => "networkRouterModel.cloud_network_id", + :checkchange => true, + "ng-options" => "network.id as network.name for network in available_networks", + "ng-change" => "filterCloudNetworkChanged(networkRouterModel.cloud_network_id)", + "pf-select" => true, + "ng-selected" => "networkRouterModel.cloud_network_id", + "ng-required" => "networkRouterModel.enable_snat == true", + "selectpicker-for-select-tag" => ""} + %option{"value" => ""} + = "<#{_('Choose')}>" + %span.help-block{"ng-show" => "angularForm.cloud_network_id.$error.required"} + = _("Required") + + %h2 + .form-horizontal{"ng-if" => "networkRouterModel.cloud_network_id"} + = _('Fixed IPs') + .form-group + %label.col-md-2.control-label + = _('Subnet') + .col-md-8 + %select{"name" => "cloud_subnet_id", + "ng-model" => "networkRouterModel.cloud_subnet_id", + :checkchange => true, + "ng-options" => "subnet.id as subnet.name for subnet in available_subnets", + "pf-select" => true, + "ng-selected" => "networkRouterModel.cloud_subnet_id", + "selectpicker-for-select-tag" => ""} + %option{"value" => ""} + = "<#{_('Choose')}>" diff --git a/app/views/network_router/add_interface_select.html.haml b/app/views/network_router/add_interface_select.html.haml index ecafea46c93..fc8e489e9dc 100644 --- a/app/views/network_router/add_interface_select.html.haml +++ b/app/views/network_router/add_interface_select.html.haml @@ -11,7 +11,6 @@ options_for_select([["<#{_('Choose')}>", nil]] + @subnet_choices.sort), "ng-model" => "networkRouterModel.cloud_subnet_id", "required" => "", - :miqrequired => true, :checkchange => true, "selectpicker-for-select-tag" => "") = render :partial => "layouts/angular/x_custom_form_buttons_angular", diff --git a/app/views/network_router/edit.html.haml b/app/views/network_router/edit.html.haml index a1a1fa20086..b70bc90be3c 100644 --- a/app/views/network_router/edit.html.haml +++ b/app/views/network_router/edit.html.haml @@ -1,18 +1,7 @@ %form#form_div{:name => "angularForm", 'ng-controller' => "networkRouterFormController"} = render :partial => "layouts/flash_msg" - %h3 - = _('Edit Router') - .form-horizontal - .form-group - %label.col-md-2.control-label - = _('Router Name') - .col-md-8 - %input.form-control{:type => "text", - :name => "name", - 'ng-model' => "networkRouterModel.name", - 'ng-maxlength' => 128, - :miqrequired => true, - :checkchange => true} + + = render :partial => "common_new_edit" = render :partial => "layouts/angular/x_edit_buttons_angular" diff --git a/app/views/network_router/new.html.haml b/app/views/network_router/new.html.haml index f144a68cd15..5dee997dc6a 100644 --- a/app/views/network_router/new.html.haml +++ b/app/views/network_router/new.html.haml @@ -3,7 +3,7 @@ %h3 = _('Network Provider') .form-horizontal - .form-group + .form-group{"ng-class" => "{'has-error': angularForm.ems_id.$invalid}"} %label.col-md-2.control-label = _('Network Manager') .col-md-8 @@ -11,42 +11,18 @@ options_for_select([["<#{_('Choose')}>", nil]] + @network_provider_choices.sort), "ng-model" => "networkRouterModel.ems_id", "required" => "", - :miqrequired => true, :checkchange => true, "ng-change" => "filterNetworkManagerChanged(networkRouterModel.ems_id)", "selectpicker-for-select-tag" => "") + %span.help-block{"ng-show" => "angularForm.ems_id.$error.required"} + = _('Required') - %h3 - = _('Basic Information') - .form-horizontal - .form-group - %label.col-md-2.control-label - = _('Router Name') - .col-md-8 - %input.form-control{:type => "text", - :name => "name", - 'ng-model' => "networkRouterModel.name", - 'ng-maxlength' => 128, - :miqrequired => true, - :checkchange => true} - .form-group{"ng-if" => "networkRouterModel.ems_id"} - %label.col-md-2.control-label - = _('Network') - .col-md-8 - %select{"name" => "cloud_network_id", - "ng-model" => "networkRouterModel.cloud_network_id", - "required" => "", - :miqrequired => true, - :checkchange => true, - 'ng-options' => 'network.id as network.name for network in available_networks', - 'pf-select' => true, - "selectpicker-for-select-tag" => ""} - %option{"value" => ""} - = "<#{_('Choose')}>" + = render :partial => "common_new_edit" + %h3 = _('Placement') .form-horizontal - .form-group + .form-group{"ng-class" => "{'has-error': angularForm.cloud_tenant_id.$invalid}"} %label.col-md-2.control-label = _('Cloud Tenant') .col-md-8 @@ -54,9 +30,10 @@ options_for_select([["<#{_('Choose')}>", nil]] + @cloud_tenant_choices.sort), "ng-model" => "networkRouterModel.cloud_tenant_id", "required" => "", - :miqrequired => true, :checkchange => true, "selectpicker-for-select-tag" => "") + %span.help-block{"ng-show" => "angularForm.cloud_tenant_id.$error.required"} + = _("Required") = render :partial => "layouts/angular/x_edit_buttons_angular" diff --git a/app/views/network_router/remove_interface_select.html.haml b/app/views/network_router/remove_interface_select.html.haml index 85df941686b..03eb4cfe0d9 100644 --- a/app/views/network_router/remove_interface_select.html.haml +++ b/app/views/network_router/remove_interface_select.html.haml @@ -11,7 +11,6 @@ options_for_select([["<#{_('Choose')}>", nil]] + @subnet_choices.sort), "ng-model" => "networkRouterModel.cloud_subnet_id", "required" => "", - :miqrequired => true, :checkchange => true, "selectpicker-for-select-tag" => "") = render :partial => "layouts/angular/x_custom_form_buttons_angular", diff --git a/app/views/ops/_label_tag_mapping_form.html.haml b/app/views/ops/_label_tag_mapping_form.html.haml index aaf9c97cf19..98c139232cb 100644 --- a/app/views/ops/_label_tag_mapping_form.html.haml +++ b/app/views/ops/_label_tag_mapping_form.html.haml @@ -7,9 +7,9 @@ :method => :post}) do - disabled = !@lt_map.nil? - if disabled - %h3= _("Container entity and label") + %h3= _("Resource entity and label") - else - %h3= _("Choose a container entity and label") + %h3= _("Choose a resource entity and label") .form-group %label.col-md-2.control-label = _("Entity") diff --git a/app/views/ops/_settings_label_tag_mapping_tab.html.haml b/app/views/ops/_settings_label_tag_mapping_tab.html.haml index cc57c014bd4..52b5d072836 100644 --- a/app/views/ops/_settings_label_tag_mapping_tab.html.haml +++ b/app/views/ops/_settings_label_tag_mapping_tab.html.haml @@ -3,8 +3,8 @@ %table.table.table-striped.table-bordered.table-hover %thead %tr - %th= _("Container Entity") - %th= _("Container Label") + %th= _("Resource Entity") + %th= _("Resource Label") %th= _("Tag Category") %th= _("Actions") %tbody diff --git a/app/views/persistent_volume/edit.html.haml b/app/views/persistent_volume/edit.html.haml deleted file mode 100644 index 562e6176e7b..00000000000 --- a/app/views/persistent_volume/edit.html.haml +++ /dev/null @@ -1 +0,0 @@ -= render :partial => 'shared/views/ems_common/form' diff --git a/app/views/provider_foreman/_form.html.haml b/app/views/provider_foreman/_form.html.haml index 5585a3bbd47..ba4c4fbdd85 100644 --- a/app/views/provider_foreman/_form.html.haml +++ b/app/views/provider_foreman/_form.html.haml @@ -2,8 +2,11 @@ .form-horizontal{:id => "start_form_div", :style => "display:none"} %form#form_div{:name => "angularForm", - 'ng-controller' => "providerForemanFormController", - 'ng-show' => "afterGet", + 'ng-controller' => "providerForemanFormController as vm", + 'ng-show' => "vm.afterGet", + "miq-form" => true, + "model" => "vm.providerForemanModel", + "model-copy" => 'vm.modelCopy', :novalidate => true} = render :partial => "layouts/flash_msg" %br @@ -13,7 +16,7 @@ .col-md-8 %input.form-control{:type => "text", :name => "name", - 'ng-model' => "providerForemanModel.name", + 'ng-model' => "vm.providerForemanModel.name", :maxlength => MAX_NAME_LEN, :required => "", :checkchange => true, @@ -28,18 +31,18 @@ .col-md-8 = select_tag('provtype', options_for_select([["<#{_('Choose')}>", nil]] + @provider_types, disabled: ["<#{_('Choose')}>", nil]), - "ng-if" => "newRecord", - "ng-model" => "providerForemanModel.provtype", + "ng-if" => "vm.newRecord", + "ng-model" => "vm.providerForemanModel.provtype", "ng-change" => "providerTypeChanged()", "id" => "provider_type", "required" => "", "checkchange" => "", "selectpicker-for-select-tag" => "") - %div{"ng-if" => "!newRecord"} + %div{"ng-if" => "!vm.newRecord"} %input.form-control{:type => "text", :name => "provtype", - "ng-model" => "providerForemanModel.provtype", - "ng-if" => "!newRecord", + "ng-model" => "vm.providerForemanModel.provtype", + "ng-if" => "!vm.newRecord", "id" => "provider_type", "readonly" => true, "style" => "color: black; font-weight: normal;"} @@ -52,7 +55,7 @@ %input.form-control{"type" => "text", "id" => "prov_zone", "name" => "zone", - "ng-model" => "providerForemanModel.zone", + "ng-model" => "vm.providerForemanModel.zone", "maxlength" => 15, "required" => "", "checkchange" => "", @@ -61,7 +64,7 @@ - else = select_tag('zone', options_for_select(@server_zones.sort_by { |name, _name| name }), - "ng-model" => "providerForemanModel.zone", + "ng-model" => "vm.providerForemanModel.zone", "checkchange" => "", "required" => "", "selectpicker-for-select-tag" => "") @@ -72,7 +75,7 @@ .col-md-8 %input.form-control{:type => "text", :name => "url", - 'ng-model' => "providerForemanModel.url", + 'ng-model' => "vm.providerForemanModel.url", :maxlength => MAX_DESC_LEN, "id" => "url", :required => "", @@ -89,7 +92,7 @@ .col-md-8 %input{:type => "checkbox", :name => "verify_ssl", - 'ng-model' => "providerForemanModel.verify_ssl", + 'ng-model' => "vm.providerForemanModel.verify_ssl", :checkchange => true} @@ -105,9 +108,10 @@ :validate_url => "authentication_validate", :id => @provider_manager.id || "new", :valtype => nil, + :vm_scope => true, :basic_info_needed => true} - = render :partial => "layouts/angular/x_edit_buttons_angular" + = render :partial => "layouts/angular/generic_form_buttons" %span{:style => "color:black"}= _("Required. Should have privileged access, such as root or administrator.") :javascript diff --git a/app/views/report/_widget_form_chart.html.haml b/app/views/report/_widget_form_chart.html.haml index 834b0d2ae60..6532ca5ed6c 100644 --- a/app/views/report/_widget_form_chart.html.haml +++ b/app/views/report/_widget_form_chart.html.haml @@ -1,4 +1,4 @@ -- url = url_for_only_path(:action => 'widget_form_field_changed', :id => (@widget.id || "new)") +- url = url_for_only_path(:action => 'widget_form_field_changed', :id => (@widget.id || "new")) %h3 = _('Chart Report') .form-horizontal diff --git a/app/views/service/_svcs_show.html.haml b/app/views/service/_svcs_show.html.haml index de894aaa0e9..b753437fe5a 100644 --- a/app/views/service/_svcs_show.html.haml +++ b/app/views/service/_svcs_show.html.haml @@ -1,8 +1,32 @@ -= render :partial => "layouts/textual_groups_generic" -.row - .col-md-12.col-lg-6 - %h3 - = _('VMs') - - - if @view - = render :partial => "layouts/gtl", :locals => {:view => @view} +#services_tab + %ul.nav.nav-tabs + = miq_tab_header("details") do + = _("Details") + - if @record.type == "ServiceAnsiblePlaybook" + - job = @record.try(:job, "Retirement") + = miq_tab_header("provisioning") do + = _("Provisioning") + - if job + = miq_tab_header("retirement") do + = _("Retirement") + .tab-content + = miq_tab_content("details", 'default', :class => 'cm-tab') do + = render :partial => "layouts/textual_groups_generic" + .row + .col-md-12.col-lg-6 + %h3 + = _('VMs') + - if @view + = render :partial => "layouts/gtl", :locals => {:view => @view} + - if @record.type == "ServiceAnsiblePlaybook" + = miq_tab_content("provisioning", 'default', :class => 'cm-tab') do + = render :partial => "layouts/textual_groups_tabs", :locals => {:textual_group_list => textual_provisioning_group_list} + - if @job && @job.try(:raw_stdout) + = render :partial => "layouts/textual_code_mirror", :locals => {:label => 'Standard Output', :value => @job.raw_stdout, :mode => "htmlmixed", :text_area_id => "provision_output"} + - if job + = miq_tab_content("retirement", 'default', :class => 'cm-tab') do + = render :partial => "layouts/textual_groups_tabs", :locals => {:textual_group_list => textual_retirement_group_list} + = render :partial => "layouts/textual_code_mirror", :locals => {:label => 'Standard Output', :value => job.raw_stdout, :mode => "htmlmixed", :text_area_id => "retirement_output"} +:javascript + miq_tabs_init('#services_tab'); + miq_refresh_code_mirror(); diff --git a/app/views/shared/dialogs/_dialog_field.html.haml b/app/views/shared/dialogs/_dialog_field.html.haml index 76e83d36985..08af07d5f59 100644 --- a/app/views/shared/dialogs/_dialog_field.html.haml +++ b/app/views/shared/dialogs/_dialog_field.html.haml @@ -47,17 +47,11 @@ = button_tag(_("Save"), :class => edit ? 'btn btn-primary' : 'btn btn-primary disabled') - when 'DialogFieldTagControl' - - category_tags = DialogFieldTagControl.category_tags(field.category).map { |cat| [cat[:description], cat[:id]] } - if edit - - if field.single_value? - - select_values = dialog_dropdown_select_values(field, wf.value(field.name), category_tags) - = select_tag(field.name, - options_for_select(select_values, wf.value(field.name)), - drop_down_options(field, url)) - - else - = select_tag(field.name, - options_for_select(category_tags, wf.value(field.name)), - drop_down_options(field, url).merge(:multiple => true)) + - multiple = field.single_value? ? {} : {:multiple => true} + = select_tag(field.name, + options_for_select(dialog_dropdown_select_values(field), wf.value(field.name)), + drop_down_options(field, url).merge(multiple)) :javascript dialogFieldRefresh.initializeDialogSelectPicker('#{field.name}', undefined, '#{url}', JSON.parse('#{j(auto_refresh_options.to_json)}')); diff --git a/app/views/shared/dialogs/_dialog_field_drop_down_list.html.haml b/app/views/shared/dialogs/_dialog_field_drop_down_list.html.haml index 77fc045669d..ef8db261c1c 100644 --- a/app/views/shared/dialogs/_dialog_field_drop_down_list.html.haml +++ b/app/views/shared/dialogs/_dialog_field_drop_down_list.html.haml @@ -37,4 +37,4 @@ }); - else - = h(field.values.detect { |k, _v| [k, k.to_s].include?(wf.value(field.name)) }.try(:last) || wf.value(field.name)) + = h(field.value.nil? ? "" : field.value) diff --git a/app/views/shared/views/_ownership.html.haml b/app/views/shared/views/_ownership.html.haml index 7e154c48acb..c7c5b199c31 100644 --- a/app/views/shared/views/_ownership.html.haml +++ b/app/views/shared/views/_ownership.html.haml @@ -41,6 +41,9 @@ %hr %h3 = _('Affected Items') + - if @origin_ownership_items.count != @ownershipitems.count + %strong + = _('Note: Some items might be hidden due to the possibility of an ownership change') - if @ownershipitems - @embedded = true - @quadicon_no_url = true diff --git a/app/views/shared/views/ems_common/_form.html.haml b/app/views/shared/views/ems_common/_form.html.haml deleted file mode 100644 index 08f04c36e69..00000000000 --- a/app/views/shared/views/ems_common/_form.html.haml +++ /dev/null @@ -1,118 +0,0 @@ -- url = url_for_only_path(:action => 'form_field_changed', :id => (@ems.id || 'new')) - -#form_div - = render :partial => "layouts/flash_msg" - %h3 - = _('Basic Information') - .form-horizontal - .form-group - %label.control-label.col-md-2 - = _('Name') - .col-md-8 - = text_field_tag("name", @edit[:new][:name], - :maxlength => MAX_NAME_LEN, - "class" => "form-control", - "data-miq_focus" => true, - "data-miq_observe" => {:interval => '.5', :url => url}.to_json) - .form-group - %label.control-label.col-md-2 - = _('Type') - .col-md-8 - - if @edit[:ems_id].nil? - = select_tag("server_emstype", - options_for_select([["<#{_('Choose')}>", nil]] + Array(@edit[:ems_types].invert).sort_by(&:first), @edit[:new][:emstype]), - "class" => "selectpicker") - :javascript - miqInitSelectPicker(); - miqSelectPickerEvent("server_emstype", "#{url}"); - - else - = h(@edit[:ems_types][@edit[:new][:emstype]]) - = render(:partial => "form_fields", :locals => {:url => url}) - - if @edit[:new][:emstype] && %w(rhevm openstack_infra).include?(@edit[:new][:emstype]) - .form-group#port_tr - %label.control-label.col-md-2 - = _('API Port') - .col-md-8 - = text_field_tag("port", @edit[:new][:port], - :maxlength => 15, - "class" => "form-control", - "data-miq_observe" => {:interval => '.5', :url => url}.to_json) - - if @edit[:new][:emstype] && %w(openstack openstack_infra).include?(@edit[:new][:emstype]) - .form-group - %label.control-label.col-md-2 - = _('API Version') - .col-md-8 - = select_tag("api_version", - options_for_select(@edit[:openstack_api_versions], @edit[:new][:api_version]), - "class" => "selectpicker") - :javascript - miqInitSelectPicker(); - miqSelectPickerEvent("api_version", "#{url}"); - - if @edit[:new][:emstype] && @edit[:new][:emstype] == 'openstack' && @edit[:openstack_infra_providers].length > 1 - .form-group - %label.control-label.col-md-2 - = _('Openstack Infra provider') - .col-md-8 - = select_tag("provider_id", - options_for_select(@edit[:openstack_infra_providers], @edit[:new][:provider_id]), - "class" => "selectpicker") - :javascript - miqInitSelectPicker(); - miqSelectPickerEvent("provider_id", "#{url}"); - .form-group - %label.control-label.col-md-2 - = _('Zone') - .col-md-2 - - if @edit[:server_zones].length <= 1 - = text_field_tag("server_zone", @edit[:new][:zone], - :maxlength => 15, - :disabled => true, - "class" => "form-control", - "data-miq_observe" => {:interval => '.5', :url => url}.to_json) - - else - = select_tag("server_zone", - options_for_select(@edit[:server_zones], @edit[:new][:zone]), - "class" => "selectpicker") - :javascript - miqInitSelectPicker(); - miqSelectPickerEvent("server_zone", "#{url}"); - - if @ems.kind_of?(ManageIQ::Providers::Vmware::InfraManager) - .form-group - %label.control-label.col-md-2 - = _('Host Default VNC Port Range') - .col-md-8 - = text_field_tag("host_default_vnc_port_start", @edit[:new][:host_default_vnc_port_start], - :maxlength => 6, - :size => 6, - "class" => "form-control", - "data-miq_observe" => {:interval => '.5', :url => url}.to_json) - = text_field_tag("host_default_vnc_port_end", @edit[:new][:host_default_vnc_port_end], - :maxlength => 6, - :size => 6, - "class" => "form-control", - "data-miq_observe" => {:interval => '.5', :url => url}.to_json) - - layout = %w(ems_container).include?(params[:controller]) ? "container_auth" : "multi_auth_credentials" - %hr - = render :partial => "/layouts/#{layout}", :locals => {:record => @ems} - = documentation_link(@doc_url, ui_lookup(:table => @table_name)) - - if @edit[:ems_id].nil? - %table{:width => "100%"} - %tr - %td{:align => "right"} - #buttons_on - - name = ui_lookup(:model => @ems.class.base_manager.name) - - t = _("Add this %{provider}") % {:provider => name} - = button_tag(_('Add'), - :class => "btn btn-primary", - :alt => t, - :title => t, - :onclick => "miqAjaxButton('#{url_for_only_path(:action => "create", :id => "new", :button => "add")}');") - - t = _("Cancel") - = button_tag(t, - :class => "btn btn-default", - :alt => t, - :title => t, - :href => url_for_only_path(:action => "show_list", :flash_msg => _("Add of new %{provider} was cancelled by the user") % {:provider => name}), - :onclick => 'window.location = this.getAttribute("href");') - - else - = render :partial => '/layouts/edit_form_buttons', :locals => {:record_id => @ems.id, :ajax_buttons => true, :restful => true} diff --git a/app/views/shared/views/ems_common/_show.html.haml b/app/views/shared/views/ems_common/_show.html.haml index 24d4e273ca0..0bb8d604849 100644 --- a/app/views/shared/views/ems_common/_show.html.haml +++ b/app/views/shared/views/ems_common/_show.html.haml @@ -1,7 +1,7 @@ #main_div - arr = %w(container_images container_image_registries containers container_replicators container_routes) - arr.concat(%w(container_builds container_projects container_nodes container_services container_groups availability_zones host_aggregates)) - - arr.concat(%w(middleware_servers middleware_deployments middleware_datasources middleware_domains middleware_messagings)) + - arr.concat(%w(middleware_servers middleware_server_groups middleware_deployments middleware_datasources middleware_domains middleware_messagings)) - arr.concat(%w(security_groups floating_ips cloud_subnets network_routers network_ports cloud_networks)) - arr.concat(%w(load_balancers container_templates)) - arr.concat(%w(cloud_tenants ems_clusters flavors resource_group hosts instances images miq_templates cloud_volumes)) diff --git a/app/views/shared/views/ems_common/angular/_form.html.haml b/app/views/shared/views/ems_common/angular/_form.html.haml index 6ff59888420..2563495f8e2 100644 --- a/app/views/shared/views/ems_common/angular/_form.html.haml +++ b/app/views/shared/views/ems_common/angular/_form.html.haml @@ -59,7 +59,7 @@ .form-group{"ng-class" => "{'has-error': angularForm.project.$invalid}", "ng-if" => "emsCommonModel.emstype == 'gce'"} %label.col-md-2.control-label{"for" => "ems_project"} - = _('Project') + = _('Project ID') .col-md-4 %input.form-control{"type" => "text", "id" => "ems_project", diff --git a/config/routes.rb b/config/routes.rb index 49c5d239aae..f121b140eb1 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -473,7 +473,6 @@ :cloud_volume => { :get => %w( - delete_volumes download_data download_summary_pdf attach @@ -691,7 +690,7 @@ protect squash_toggle launch_cockpit - launch_external_logging_support + launch_external_logging ) + adv_search_post + exp_post + @@ -1300,7 +1299,7 @@ tagging_edit tag_edit_form_field_changed squash_toggle - launch_external_logging_support + launch_external_logging ) + adv_search_post + compare_post + @@ -1693,7 +1692,6 @@ :cloud_subnet => { :get => %w( - delete_subnets download_data download_summary_pdf cloud_subnet_form_fields @@ -1730,7 +1728,6 @@ :cloud_network => { :get => %w( cloud_network_form_fields - delete_networks download_data download_summary_pdf edit @@ -1793,12 +1790,12 @@ :network_router => { :get => %w( add_interface_select - delete_network_routers download_data edit index network_router_form_fields network_router_networks_by_ems + network_router_subnets_by_network new remove_interface_select show diff --git a/lib/miq_decorator.rb b/lib/miq_decorator.rb index 29408ba101a..8b48a28e572 100644 --- a/lib/miq_decorator.rb +++ b/lib/miq_decorator.rb @@ -10,7 +10,14 @@ def for(klass) decorator end + + # Initialize these two attributes with default to nil + attr_reader :fonticon, :listicon_image end + + # Call the class methods with identical names if these are not set + delegate :fonticon, :to => :class + delegate :listicon_image, :to => :class end module MiqDecorator::Instance diff --git a/lib/report_formatter/c3.rb b/lib/report_formatter/c3.rb index 52f8b741e70..b3a9248eb60 100644 --- a/lib/report_formatter/c3.rb +++ b/lib/report_formatter/c3.rb @@ -58,7 +58,7 @@ def build_document_header mri.chart = { :miqChart => type, :data => {:columns => [], :names => {}}, - :axis => {:x => {:tick => {}}, :y => {:tick => {}}}, + :axis => {:x => {:tick => {}}, :y => {:tick => {}, :padding => {:bottom => 0}}}, :tooltip => {:format => {}}, :miq => {:name_table => {}, :category_table => {}}, :legend => {} @@ -97,7 +97,7 @@ def build_document_header return unless format axis_formatter = {:function => format, :options => options} - mri.chart[:axis][:y] = {:tick => {:format => axis_formatter}} + mri.chart[:axis][:y][:tick] = {:format => axis_formatter} mri.chart[:miq][:format] = axis_formatter end end diff --git a/locale/ManageIQ_UI_Classic.pot b/locale/ManageIQ_UI_Classic.pot index d0f67664004..682ef3b50f8 100644 --- a/locale/ManageIQ_UI_Classic.pot +++ b/locale/ManageIQ_UI_Classic.pot @@ -1,16 +1,16 @@ -# ManageIQ UI Classic -# Copyright (C) 2016 +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the ManageIQ_UI_Classic package. -# Milan Zazrivec , YEAR. +# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: ManageIQ_UI_Classic 1.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-20 15:56+0100\n" -"PO-Revision-Date: 2016-12-20 15:56+0100\n" -"Last-Translator: Milan Zazrivec \n" +"POT-Creation-Date: 2017-03-17 10:38+0100\n" +"PO-Revision-Date: 2017-03-17 10:38+0100\n" +"Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" @@ -22,15 +22,15 @@ msgstr "" msgid " # of Days" msgstr "" -#: ../app/controllers/ems_infra_controller.rb:232 +#: ../app/controllers/ems_infra_controller.rb:233 msgid " %{host_uid_ems} is not a compute node " msgstr "" -#: ../app/controllers/ems_infra_controller.rb:227 +#: ../app/controllers/ems_infra_controller.rb:228 msgid " %{host_uid_ems} needs to be evacuated before it can be removed " msgstr "" -#: ../app/controllers/ems_infra_controller.rb:222 +#: ../app/controllers/ems_infra_controller.rb:223 msgid " %{host_uid_ems} needs to be in maintenance mode before it can be removed " msgstr "" @@ -38,151 +38,127 @@ msgstr "" msgid " %{model} Assignments" msgstr "" -#: ../app/controllers/ems_infra_controller.rb:65 +#: ../app/controllers/ems_infra_controller.rb:66 msgid " %{name} from %{value} to %{parameters} " msgstr "" -#: ../app/presenters/tree_node_builder.rb:541 +#: ../app/presenters/tree_node/assigned_server_role.rb:24 msgid " (%{priority}active, PID=%{number})" msgstr "" -#: ../app/presenters/tree_node_builder.rb:545 +#: ../app/presenters/tree_node/assigned_server_role.rb:28 msgid " (%{priority}available, PID=%{number})" msgstr "" -#: ../app/presenters/tree_node_builder.rb:549 +#: ../app/presenters/tree_node/assigned_server_role.rb:31 msgid " (%{priority}unavailable)" msgstr "" -#: ../app/presenters/tree_node_builder.rb:437 -msgid " (Active)" -msgstr "" - -#: ../app/controllers/ems_common.rb:42 ../app/controllers/ems_common.rb:506 +#: ../app/controllers/ems_common.rb:53 ../app/controllers/ems_common.rb:446 msgid " (Ad hoc Metrics)" msgstr "" -#: ../app/controllers/vm_common.rb:331 -msgid " (All %{file_shares})" -msgstr "" - -#: ../app/controllers/vm_common.rb:325 -msgid " (All %{storage_volumes})" -msgstr "" - -#: ../app/controllers/vm_common.rb:319 -msgid " (All %{storages})" -msgstr "" - -#: ../app/controllers/storage_controller.rb:94 ../app/controllers/ems_cluster_controller.rb:95 ../app/controllers/ems_cluster_controller.rb:102 ../app/controllers/ems_cluster_controller.rb:109 ../app/controllers/ems_cluster_controller.rb:116 ../app/controllers/vm_common.rb:313 -msgid " (All %{tables})" -msgstr "" - -#: ../app/controllers/ems_common.rb:151 -msgid " (All %{title})" -msgstr "" - -#: ../app/controllers/ems_cluster_controller.rb:88 +#: ../app/controllers/ems_cluster_controller.rb:81 msgid " (All Descendant %{table}(s))" msgstr "" -#: ../app/controllers/ems_cluster_controller.rb:63 +#: ../app/controllers/ems_cluster_controller.rb:64 msgid " (All Resource Pools)" msgstr "" -#: ../app/controllers/ems_cluster_controller.rb:34 +#: ../app/controllers/ems_cluster_controller.rb:35 msgid " (All VMs - Tree View)" msgstr "" -#: ../app/controllers/ems_cluster_controller.rb:43 +#: ../app/controllers/ems_cluster_controller.rb:44 msgid " (All VMs)" msgstr "" -#: ../app/controllers/vm_common.rb:1022 ../app/controllers/vm_common.rb:1024 +#: ../app/controllers/vm_common.rb:876 ../app/controllers/vm_common.rb:878 msgid " (Analysis History)" msgstr "" -#: ../app/presenters/tree_node_builder_datacenter.rb:24 +#: ../app/presenters/tree_builder_datacenter.rb:20 msgid " (Click to view)" msgstr "" -#: ../app/controllers/vm_common.rb:298 +#: ../app/controllers/vm_common.rb:250 msgid " (Compliance History - Last %{number} Checks)" msgstr "" -#: ../app/controllers/vm_common.rb:257 +#: ../app/controllers/vm_common.rb:204 msgid " (Container)" msgstr "" -#: ../app/controllers/ems_common.rb:36 +#: ../app/controllers/mixins/dashboard_view_mixin.rb:15 msgid " (Dashboard)" msgstr "" -#: ../app/controllers/vm_common.rb:275 +#: ../app/controllers/vm_common.rb:224 msgid " (Devices)" msgstr "" -#: ../app/controllers/ems_cluster_controller.rb:50 +#: ../app/controllers/ems_cluster_controller.rb:51 msgid " (Direct %{title})" msgstr "" -#: ../app/controllers/vm_common.rb:280 +#: ../app/controllers/vm_common.rb:228 msgid " (Genealogy)" msgstr "" -#: ../app/controllers/ems_common.rb:13 +#: ../app/controllers/ems_common.rb:40 msgid " (Hosts & Clusters)" msgstr "" -#: ../app/presenters/tree_builder_policy_simulation_results.rb:61 ../app/presenters/tree_builder_policy_simulation.rb:78 +#: ../app/presenters/tree_builder_policy_simulation_results.rb:62 ../app/presenters/tree_builder_policy_simulation.rb:82 msgid " (Inactive)" msgstr "" -#: ../app/controllers/vm_common.rb:295 +#: ../app/controllers/vm_common.rb:247 msgid " (Latest Compliance Check)" msgstr "" -#: ../app/controllers/application_controller.rb:1037 ../app/controllers/vm_common.rb:1355 +#: ../app/controllers/vm_common.rb:1166 ../app/controllers/application_controller.rb:1044 msgid " (Names with \"%{search_text}\")" msgstr "" -#: ../app/controllers/container_controller.rb:188 +#: ../app/controllers/container_controller.rb:175 msgid " (Names with \"%{text}\")" msgstr "" -#: ../app/controllers/vm_common.rb:251 +#: ../app/controllers/vm_common.rb:198 msgid " (Networks)" msgstr "" -#: ../app/controllers/vm_common.rb:254 +#: ../app/controllers/vm_common.rb:201 msgid " (OS Information)" msgstr "" -#: ../app/controllers/ems_common.rb:5 -msgid " (Properties)" +#: ../app/presenters/tree_builder_genealogy.rb:49 +msgid " (Parent)" msgstr "" -#: ../app/controllers/vm_common.rb:260 -msgid " (Resources)" +#: ../app/controllers/ems_common.rb:32 +msgid " (Properties)" msgstr "" -#: ../app/controllers/vm_common.rb:405 -msgid " (Selected)" +#: ../app/controllers/vm_common.rb:207 +msgid " (Resources)" msgstr "" -#: ../app/controllers/vm_common.rb:263 +#: ../app/controllers/vm_common.rb:210 msgid " (Snapshots)" msgstr "" -#: ../app/controllers/ems_cluster_controller.rb:29 ../app/controllers/vm_common.rb:246 +#: ../app/controllers/vm_common.rb:193 ../app/controllers/ems_cluster_controller.rb:30 msgid " (Summary)" msgstr "" -#: ../app/controllers/ems_common.rb:48 +#: ../app/controllers/mixins/more_show_actions.rb:32 msgid " (Topology)" msgstr "" -#: ../app/controllers/ems_common.rb:10 +#: ../app/controllers/ems_common.rb:37 msgid " (VMs & Templates)" msgstr "" @@ -202,11 +178,11 @@ msgstr "" msgid " - %{last_refresh_date} Ago" msgstr "" -#: ../app/controllers/application_controller/filter.rb:673 +#: ../app/controllers/application_controller/filter.rb:671 msgid " - Filtered by \"%{text}\"" msgstr "" -#: ../app/controllers/application_controller/filter.rb:675 +#: ../app/controllers/application_controller/filter.rb:673 msgid " - Filtered by \"%{text}\" report" msgstr "" @@ -214,7 +190,7 @@ msgstr "" msgid " - Filtered by %{filter}" msgstr "" -#: ../app/controllers/application_controller/filter.rb:680 +#: ../app/controllers/application_controller/filter.rb:678 msgid " - Filtered by custom search" msgstr "" @@ -226,15 +202,15 @@ msgstr "" msgid " Address" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:177 +#: ../app/helpers/host_helper/textual_summary.rb:184 msgid " Build %{number}" msgstr "" -#: ../app/helpers/ui_constants.rb:543 +#: ../app/helpers/ui_constants.rb:510 msgid " Day" msgstr "" -#: ../app/helpers/ui_constants.rb:543 +#: ../app/helpers/ui_constants.rb:510 msgid " Days" msgstr "" @@ -246,11 +222,11 @@ msgstr "" msgid " Full Screen" msgstr "" -#: ../app/helpers/ui_constants.rb:542 +#: ../app/helpers/ui_constants.rb:509 msgid " Hour" msgstr "" -#: ../app/helpers/ui_constants.rb:542 +#: ../app/helpers/ui_constants.rb:509 msgid " Hours" msgstr "" @@ -274,15 +250,15 @@ msgstr "" msgid " Remove Widget" msgstr "" -#: ../app/controllers/ems_infra_controller.rb:111 +#: ../app/controllers/ems_infra_controller.rb:112 msgid " Scaling down to %{a} compute nodes" msgstr "" -#: ../app/views/miq_policy/_event_details.html.haml:89 ../app/views/miq_policy/_event_details.html.haml:265 +#: ../app/views/miq_policy/_event_details.html.haml:72 ../app/views/miq_policy/_event_details.html.haml:248 msgid " Selected Actions:" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:304 +#: ../app/views/miq_policy/_action_options.html.haml:296 msgid " Selected Alerts:" msgstr "" @@ -302,11 +278,11 @@ msgstr "" msgid " Valid numeric quota value required " msgstr "" -#: ../app/helpers/ui_constants.rb:544 +#: ../app/helpers/ui_constants.rb:511 msgid " Week" msgstr "" -#: ../app/helpers/ui_constants.rb:544 +#: ../app/helpers/ui_constants.rb:511 msgid " Weeks" msgstr "" @@ -314,7 +290,7 @@ msgstr "" msgid " Zoom in" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:413 +#: ../app/controllers/miq_ae_customization_controller.rb:427 msgid " [%{text} Information]" msgstr "" @@ -322,15 +298,15 @@ msgstr "" msgid " by %{user}" msgstr "" -#: ../app/controllers/infra_networking_controller.rb:515 +#: ../app/controllers/infra_networking_controller.rb:521 msgid "\"%{action}\" for %{switch} \"%{name}\"" msgstr "" -#: ../app/controllers/vm_common.rb:1835 +#: ../app/controllers/vm_common.rb:1647 msgid "\"%{action}\" for %{vm_or_template} \"%{name}\"" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2706 +#: ../app/controllers/application_controller/ci_processing.rb:2738 msgid "\"%{datastore_name}\": cannot be removed, has vms or hosts" msgstr "" @@ -338,37 +314,37 @@ msgstr "" msgid "\"%{field}\" %{model} cannot be deleted" msgstr "" -#: ../app/controllers/configuration_controller.rb:325 +#: ../app/controllers/configuration_controller.rb:308 msgid "\"%{name}\": Global %{model} cannot be deleted" msgstr "" -#: ../app/controllers/configuration_controller.rb:329 +#: ../app/controllers/configuration_controller.rb:312 msgid "\"%{name}\": In use by %{rep_count} Report, cannot be deleted" msgid_plural "\"%{name}\": In use by %{rep_count} Reports, cannot be deleted" msgstr[0] "" msgstr[1] "" -#: ../app/controllers/application_controller/ci_processing.rb:2385 +#: ../app/controllers/application_controller/ci_processing.rb:2417 msgid "\"%{record}\": %{task} invalid" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2345 ../app/controllers/application_controller/ci_processing.rb:2355 ../app/controllers/application_controller/ci_processing.rb:2363 ../app/controllers/application_controller/ci_processing.rb:2394 ../app/controllers/application_controller/ci_processing.rb:2403 ../app/controllers/application_controller/ci_processing.rb:2412 ../app/controllers/application_controller/ci_processing.rb:2421 ../app/controllers/application_controller/ci_processing.rb:2611 ../app/controllers/application_controller.rb:1390 ../app/controllers/miq_task_controller.rb:222 +#: ../app/controllers/miq_task_controller.rb:202 ../app/controllers/application_controller.rb:1397 ../app/controllers/application_controller/ci_processing.rb:2377 ../app/controllers/application_controller/ci_processing.rb:2387 ../app/controllers/application_controller/ci_processing.rb:2395 ../app/controllers/application_controller/ci_processing.rb:2426 ../app/controllers/application_controller/ci_processing.rb:2435 ../app/controllers/application_controller/ci_processing.rb:2444 ../app/controllers/application_controller/ci_processing.rb:2453 ../app/controllers/application_controller/ci_processing.rb:2643 msgid "\"%{record}\": %{task} successfully initiated" msgstr "" -#: ../app/controllers/mixins/containers_common_mixin.rb:210 +#: ../app/controllers/mixins/containers_common_mixin.rb:87 msgid "\"%{record}\": Analysis successfully initiated" msgstr "" -#: ../app/controllers/mixins/containers_common_mixin.rb:225 +#: ../app/controllers/mixins/containers_common_mixin.rb:103 msgid "\"%{record}\": Compliance check successfully initiated" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2609 +#: ../app/controllers/application_controller/ci_processing.rb:2641 msgid "\"%{record}\": Refresh successfully initiated" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2378 ../app/controllers/application_controller/ci_processing.rb:2383 +#: ../app/controllers/application_controller/ci_processing.rb:2410 ../app/controllers/application_controller/ci_processing.rb:2415 msgid "\"%{record}\": Scheduling is %{status} now." msgstr "" @@ -376,26 +352,34 @@ msgstr "" msgid "\"%{task_description}\" was executed" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2423 +#: ../app/controllers/application_controller/ci_processing.rb:2455 msgid "\"%{task}\": not available for %{hostname}" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2396 -msgid "\"%{task}\": not available for %{hostname}. %{hostname}'s provision state must be in \"available\", \"adoptfail\", \"cleanfail\", or \"inspectfail\"" +#: ../app/controllers/application_controller/ci_processing.rb:2428 +msgid "\"%{task}\": not available for %{hostname}. %{hostname}'s provision state must be in \"available\", \"adoptfail\", \"cleanfail\", \"enroll\", or \"inspectfail\"" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2405 ../app/controllers/application_controller/ci_processing.rb:2414 +#: ../app/controllers/application_controller/ci_processing.rb:2437 ../app/controllers/application_controller/ci_processing.rb:2446 msgid "\"%{task}\": not available for %{hostname}. %{hostname}'s provision state needs to be in \"manageable\"" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2347 ../app/controllers/application_controller/ci_processing.rb:2358 ../app/controllers/application_controller/ci_processing.rb:2366 +#: ../app/controllers/application_controller/ci_processing.rb:2379 ../app/controllers/application_controller/ci_processing.rb:2390 ../app/controllers/application_controller/ci_processing.rb:2398 msgid "\"%{task}\": not supported for %{hostname}" msgstr "" -#: ../app/controllers/catalog_controller.rb:1082 +#: ../app/controllers/catalog_controller.rb:1095 msgid "\"%{type}\" is not a valid Orchestration Template type" msgstr "" +#: ../app/helpers/application_helper/button/ems_container_launch_external_logging_support.rb:13 ../app/controllers/mixins/containers_external_logging_support_mixin.rb:12 +msgid "\"A route named '#{route_name}' is configured to connect to the \"external logging server but it doesn't exist" +msgstr "" + +#: ../app/helpers/application_helper/button/smart_state_scan.rb:8 +msgid "\"There is no server with the #{role} role enabled\"" +msgstr "" + #: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:158 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:30 msgid "# CPUS" msgstr "" @@ -404,11 +388,11 @@ msgstr "" msgid "% Complete" msgstr "" -#: ../app/controllers/application_controller/compare.rb:1561 ../app/controllers/application_controller/compare.rb:1599 ../app/controllers/application_controller/compare.rb:1682 +#: ../app/controllers/application_controller/compare.rb:1453 ../app/controllers/application_controller/compare.rb:1491 ../app/controllers/application_controller/compare.rb:1574 msgid "% Matched" msgstr "" -#: ../app/controllers/application_controller/compare.rb:1561 ../app/controllers/application_controller/compare.rb:1599 +#: ../app/controllers/application_controller/compare.rb:1453 ../app/controllers/application_controller/compare.rb:1491 msgid "% Matched:" msgstr "" @@ -416,30 +400,38 @@ msgstr "" msgid "% Savings" msgstr "" -#: ../app/views/report/_form_filter_chargeback.html.haml:280 +#: ../app/views/report/_form_filter_chargeback.html.haml:308 msgid "%d Months Ago" msgstr "" -#: ../app/views/report/_form_filter_chargeback.html.haml:278 +#: ../app/assets/javascripts/services/alerts_center_service.js:484 +msgid "%d Note" +msgstr "" + +#: ../app/assets/javascripts/services/alerts_center_service.js:486 +msgid "%d Notes" +msgstr "" + +#: ../app/views/report/_form_filter_chargeback.html.haml:306 msgid "%d Weeks Ago" msgstr "" -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:90 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:108 +#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:90 +msgid "%d%% in use of %d %s total" +msgstr "" + +#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:166 msgid "%d%% in use of %d total" msgstr "" -#: ../app/controllers/infra_networking_controller.rb:507 +#: ../app/controllers/infra_networking_controller.rb:513 msgid "%{action} \"%{item_name}\" for %{switch} \"%{name}\"" msgstr "" -#: ../app/controllers/vm_common.rb:1824 +#: ../app/controllers/vm_common.rb:1636 msgid "%{action} \"%{item_name}\" for %{vm_or_template} \"%{name}\"" msgstr "" -#: ../app/views/layouts/gtl/_list.html.haml:202 ../app/views/layouts/gtl/_list.html.haml:313 -msgid "%{agent} record no longer exists" -msgstr "" - #: ../app/views/miq_policy/_alert_profile_details.html.haml:238 msgid "%{alert_profiles} with %{type} Tags" msgstr "" @@ -450,11 +442,11 @@ msgid_plural "%{amount} %{objects} Being Tagged" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/application_helper/toolbar_builder.rb:600 +#: ../app/helpers/application_helper/button/miq_request_delete.rb:10 msgid "%{approval_states} requests cannot be deleted" msgstr "" -#: ../app/presenters/tree_node_builder.rb:349 +#: ../app/presenters/tree_node/custom_button_set.rb:5 msgid "%{button_group_name} (Group)" msgstr "" @@ -462,7 +454,7 @@ msgstr "" msgid "%{button_name} Button not yet implemented" msgstr "" -#: ../app/views/report/_form_filter_chargeback.html.haml:269 +#: ../app/views/report/_form_filter_chargeback.html.haml:297 msgid "%{chargeback_interval} Ending with" msgstr "" @@ -478,23 +470,27 @@ msgstr "" msgid "%{count} unread notifications" msgstr "" -#: ../app/controllers/application_controller/performance.rb:725 +#: ../app/views/ops/_rbac_group_details.html.haml:274 +msgid "%{current_tenant} Tags" +msgstr "" + +#: ../app/controllers/application_controller/performance.rb:599 msgid "%{date_from} to %{date_to}" msgstr "" -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:728 +#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:719 msgid "%{description} category Scan" msgstr "" -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:745 +#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:736 msgid "%{description} registry Scan" msgstr "" -#: ../app/views/catalog/_sandt_tree_show.html.haml:150 +#: ../app/views/catalog/_sandt_tree_show.html.haml:166 msgid "%{entry_point} Entry Point (NameSpace/Class/Instance)" msgstr "" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:478 ../app/controllers/miq_ae_customization_controller/dialogs.rb:495 +#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:468 ../app/controllers/miq_ae_customization_controller/dialogs.rb:485 msgid "%{field} '%{value}' is already in use" msgstr "" @@ -510,19 +506,23 @@ msgstr "" msgid "%{host} to validate against, Username and matching password fields are needed to perform verification of credentials" msgstr "" -#: ../app/controllers/vm_cloud_controller.rb:40 +#: ../app/controllers/vm_cloud_controller.rb:41 msgid "%{instance_model} \"%{instance_name}\" has no attached %{volumes}" msgstr "" +#: ../app/presenters/tree_builder_genealogy.rb:6 +msgid "%{item} (Selected)" +msgstr "" + #: ../app/controllers/ops_controller/settings/rhn.rb:308 msgid "%{item} has been initiated for the selected Servers" msgstr "" -#: ../app/controllers/host_controller.rb:441 ../app/controllers/ops_controller/settings/schedules.rb:283 +#: ../app/controllers/host_controller.rb:393 ../app/controllers/ops_controller/settings/schedules.rb:277 msgid "%{key} changed to %{value}" msgstr "" -#: ../app/controllers/application_controller.rb:1419 +#: ../app/controllers/application_controller.rb:1426 msgid "%{labels} are not in the current region and will be skipped" msgstr "" @@ -530,11 +530,11 @@ msgstr "" msgid "%{label} Authentication" msgstr "" -#: ../app/helpers/textual_summary_helper.rb:177 +#: ../app/helpers/textual_summary_helper.rb:191 msgid "%{label} Credentials" msgstr "" -#: ../app/controllers/application_controller.rb:1417 +#: ../app/controllers/application_controller.rb:1424 msgid "%{label} is not in the current region and will be skipped" msgstr "" @@ -542,19 +542,19 @@ msgstr "" msgid "%{log_description} log downloaded" msgstr "" -#: ../app/controllers/ops_controller.rb:776 +#: ../app/controllers/ops_controller.rb:815 msgid "%{message} %{key}:[%{old_value}] to [%{new_value}]" msgstr "" -#: ../app/controllers/ops_controller.rb:770 +#: ../app/controllers/ops_controller.rb:809 msgid "%{message} %{key}:[%{old_value}] to [new_value]" msgstr "" -#: ../app/controllers/ops_controller.rb:765 +#: ../app/controllers/ops_controller.rb:804 msgid "%{message} %{key}:[*] to [*]" msgstr "" -#: ../app/controllers/vm_common.rb:556 +#: ../app/controllers/vm_common.rb:410 msgid "%{missing_field_name} is required" msgstr "" @@ -566,7 +566,7 @@ msgstr "" msgid "%{model_name} Group Reorder saved" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:395 +#: ../app/controllers/miq_ae_customization_controller.rb:409 msgid "%{models} Group Reorder" msgstr "" @@ -574,15 +574,15 @@ msgstr "" msgid "%{models} can not be deleted" msgstr "" -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:79 ../app/controllers/miq_policy_controller/conditions.rb:127 ../app/controllers/miq_policy_controller/alerts.rb:56 ../app/controllers/miq_policy_controller/miq_actions.rb:72 ../app/controllers/miq_policy_controller/policies.rb:121 +#: ../app/controllers/miq_policy_controller/alerts.rb:56 ../app/controllers/miq_policy_controller/policy_profiles.rb:79 ../app/controllers/miq_policy_controller/miq_actions.rb:72 ../app/controllers/miq_policy_controller/conditions.rb:127 ../app/controllers/miq_policy_controller/policies.rb:121 msgid "%{models} no longer exists" msgstr "" -#: ../app/controllers/pxe_controller/pxe_servers.rb:486 ../app/controllers/pxe_controller/pxe_servers.rb:489 ../app/controllers/pxe_controller/pxe_servers.rb:492 ../app/controllers/pxe_controller/iso_datastores.rb:314 ../app/controllers/pxe_controller/iso_datastores.rb:317 ../app/controllers/pxe_controller/pxe_image_types.rb:220 ../app/controllers/pxe_controller/pxe_customization_templates.rb:256 ../app/controllers/service_controller.rb:188 ../app/controllers/service_controller.rb:201 ../app/controllers/ops_controller.rb:543 ../app/controllers/ops_controller.rb:570 ../app/controllers/ops_controller.rb:584 ../app/controllers/ops_controller.rb:595 ../app/controllers/ops_controller.rb:606 ../app/controllers/ops_controller.rb:649 ../app/controllers/ops_controller.rb:657 ../app/controllers/provider_foreman_controller.rb:494 ../app/controllers/provider_foreman_controller.rb:601 ../app/controllers/provider_foreman_controller.rb:608 ../app/controllers/provider_foreman_controller.rb:621 ../app/controllers/provider_foreman_controller.rb:653 ../app/controllers/provider_foreman_controller.rb:675 ../app/controllers/catalog_controller.rb:1662 ../app/controllers/catalog_controller.rb:1694 ../app/controllers/catalog_controller.rb:1697 ../app/controllers/catalog_controller.rb:1747 ../app/controllers/miq_policy_controller/policy_profiles.rb:154 ../app/controllers/miq_policy_controller/alert_profiles.rb:356 ../app/controllers/miq_policy_controller/events.rb:116 ../app/controllers/miq_policy_controller/conditions.rb:240 ../app/controllers/miq_policy_controller/alerts.rb:642 ../app/controllers/miq_policy_controller/miq_actions.rb:413 ../app/controllers/miq_policy_controller/policies.rb:242 ../app/controllers/ops_controller/db.rb:139 ../app/controllers/ops_controller/db.rb:153 ../app/controllers/ops_controller/ops_rbac.rb:881 ../app/controllers/ops_controller/ops_rbac.rb:884 ../app/controllers/ops_controller/ops_rbac.rb:887 ../app/controllers/ops_controller/ops_rbac.rb:891 ../app/controllers/miq_ae_customization_controller/dialogs.rb:1395 ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:114 ../app/controllers/storage_controller/storage_pod.rb:53 ../app/controllers/storage_controller/storage_d.rb:62 ../app/controllers/vm_common.rb:1278 ../app/controllers/pxe_controller.rb:134 ../app/controllers/pxe_controller.rb:138 ../app/controllers/pxe_controller.rb:140 ../app/controllers/pxe_controller.rb:152 ../app/controllers/pxe_controller.rb:156 ../app/controllers/pxe_controller.rb:167 ../app/controllers/pxe_controller.rb:179 ../app/controllers/infra_networking_controller.rb:266 ../app/controllers/miq_policy_controller.rb:562 ../app/controllers/miq_policy_controller.rb:605 ../app/controllers/miq_policy_controller.rb:638 ../app/controllers/miq_policy_controller.rb:644 ../app/controllers/miq_policy_controller.rb:656 ../app/controllers/miq_policy_controller.rb:665 ../app/controllers/report_controller/reports.rb:32 ../app/controllers/report_controller/reports.rb:190 ../app/controllers/report_controller/schedules.rb:500 +#: ../app/controllers/service_controller.rb:218 ../app/controllers/service_controller.rb:242 ../app/controllers/provider_foreman_controller.rb:351 ../app/controllers/provider_foreman_controller.rb:377 ../app/controllers/ops_controller.rb:582 ../app/controllers/ops_controller.rb:609 ../app/controllers/ops_controller.rb:623 ../app/controllers/ops_controller.rb:634 ../app/controllers/ops_controller.rb:645 ../app/controllers/ops_controller.rb:688 ../app/controllers/ops_controller.rb:696 ../app/controllers/pxe_controller.rb:133 ../app/controllers/pxe_controller.rb:137 ../app/controllers/pxe_controller.rb:139 ../app/controllers/pxe_controller.rb:151 ../app/controllers/pxe_controller.rb:155 ../app/controllers/pxe_controller.rb:166 ../app/controllers/pxe_controller.rb:178 ../app/controllers/miq_policy_controller.rb:562 ../app/controllers/miq_policy_controller.rb:605 ../app/controllers/miq_policy_controller.rb:638 ../app/controllers/miq_policy_controller.rb:644 ../app/controllers/miq_policy_controller.rb:656 ../app/controllers/miq_policy_controller.rb:665 ../app/controllers/vm_common.rb:1089 ../app/controllers/automation_manager_controller.rb:334 ../app/controllers/automation_manager_controller.rb:344 ../app/controllers/automation_manager_controller.rb:363 ../app/controllers/miq_policy_controller/alert_profiles.rb:370 ../app/controllers/miq_policy_controller/alerts.rb:642 ../app/controllers/miq_policy_controller/policy_profiles.rb:154 ../app/controllers/miq_policy_controller/miq_actions.rb:419 ../app/controllers/miq_policy_controller/events.rb:122 ../app/controllers/miq_policy_controller/conditions.rb:240 ../app/controllers/miq_policy_controller/policies.rb:242 ../app/controllers/storage_controller/storage_pod.rb:46 ../app/controllers/storage_controller/storage_d.rb:55 ../app/controllers/catalog_controller.rb:1676 ../app/controllers/catalog_controller.rb:1708 ../app/controllers/catalog_controller.rb:1711 ../app/controllers/catalog_controller.rb:1768 ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:114 ../app/controllers/miq_ae_customization_controller/dialogs.rb:1411 ../app/controllers/pxe_controller/pxe_image_types.rb:213 ../app/controllers/pxe_controller/iso_datastores.rb:307 ../app/controllers/pxe_controller/iso_datastores.rb:310 ../app/controllers/pxe_controller/pxe_customization_templates.rb:247 ../app/controllers/pxe_controller/pxe_servers.rb:479 ../app/controllers/pxe_controller/pxe_servers.rb:482 ../app/controllers/pxe_controller/pxe_servers.rb:485 ../app/controllers/infra_networking_controller.rb:272 ../app/controllers/report_controller/reports.rb:32 ../app/controllers/report_controller/reports.rb:190 ../app/controllers/report_controller/schedules.rb:500 ../app/controllers/mixins/manager_controller_mixin.rb:237 ../app/controllers/ops_controller/db.rb:131 ../app/controllers/ops_controller/db.rb:145 ../app/controllers/ops_controller/ops_rbac.rb:886 ../app/controllers/ops_controller/ops_rbac.rb:889 ../app/controllers/ops_controller/ops_rbac.rb:893 ../app/controllers/ops_controller/ops_rbac.rb:897 msgid "%{model} \"%{name}\"" msgstr "" -#: ../app/controllers/container_controller.rb:173 +#: ../app/controllers/container_controller.rb:160 msgid "%{model} \"%{name}\" (Summary)" msgstr "" @@ -598,76 +598,68 @@ msgstr "" msgid "%{model} \"%{name}\" already exists" msgstr "" -#: ../app/controllers/cloud_tenant_controller.rb:216 ../app/controllers/cloud_volume_controller.rb:387 +#: ../app/controllers/cloud_volume_controller.rb:453 msgid "%{model} \"%{name}\" cannot be removed because it is attached to one or more %{instances}" msgstr "" -#: ../app/controllers/network_router_controller.rb:105 ../app/controllers/cloud_tenant_controller.rb:107 ../app/controllers/host_aggregate_controller.rb:217 +#: ../app/controllers/network_router_controller.rb:109 ../app/controllers/host_aggregate_controller.rb:206 msgid "%{model} \"%{name}\" created" msgstr "" -#: ../app/helpers/application_helper/button/instance_detach.rb:4 -msgid "%{model} \"%{name}\" has no attached %{volumes}" -msgstr "" - #: ../app/helpers/application_helper/button/volume_detach.rb:6 msgid "%{model} \"%{name}\" is not attached to any %{instances}" msgstr "" -#: ../app/controllers/vm_common.rb:847 +#: ../app/controllers/vm_common.rb:701 msgid "%{model} \"%{name}\" successfully added to Service \"%{to_name}\"" msgstr "" -#: ../app/controllers/network_router_controller.rb:207 ../app/controllers/cloud_tenant_controller.rb:168 ../app/controllers/host_aggregate_controller.rb:295 +#: ../app/controllers/network_router_controller.rb:210 ../app/controllers/host_aggregate_controller.rb:284 msgid "%{model} \"%{name}\" updated" msgstr "" -#: ../app/controllers/pxe_controller/pxe_servers.rb:66 ../app/controllers/pxe_controller/iso_datastores.rb:57 ../app/controllers/pxe_controller/pxe_image_types.rb:52 ../app/controllers/pxe_controller/pxe_customization_templates.rb:128 ../app/controllers/application_controller/buttons.rb:382 ../app/controllers/application_controller/buttons.rb:465 ../app/controllers/provider_foreman_controller.rb:181 ../app/controllers/catalog_controller.rb:913 ../app/controllers/host_controller.rb:276 ../app/controllers/miq_policy_controller/policy_profiles.rb:54 ../app/controllers/miq_policy_controller/alert_profiles.rb:54 ../app/controllers/miq_policy_controller/conditions.rb:61 ../app/controllers/miq_policy_controller/alerts.rb:26 ../app/controllers/miq_policy_controller/miq_actions.rb:46 ../app/controllers/miq_policy_controller/policies.rb:63 ../app/controllers/miq_policy_controller/policies.rb:108 ../app/controllers/miq_ae_class_controller.rb:644 ../app/controllers/miq_ae_class_controller.rb:1191 ../app/controllers/miq_ae_class_controller.rb:1226 ../app/controllers/miq_ae_class_controller.rb:1255 ../app/controllers/ops_controller/settings/tags.rb:81 ../app/controllers/ops_controller/settings/zones.rb:33 ../app/controllers/ops_controller/settings/label_tag_mapping.rb:156 ../app/controllers/storage_manager_controller.rb:84 ../app/controllers/miq_ae_customization_controller/dialogs.rb:225 ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:283 ../app/controllers/report_controller/schedules.rb:247 ../app/controllers/report_controller/reports/editor.rb:73 ../app/controllers/chargeback_controller.rb:138 +#: ../app/controllers/miq_ae_class_controller.rb:644 ../app/controllers/miq_ae_class_controller.rb:1191 ../app/controllers/miq_ae_class_controller.rb:1226 ../app/controllers/miq_ae_class_controller.rb:1255 ../app/controllers/miq_policy_controller/alert_profiles.rb:54 ../app/controllers/miq_policy_controller/alerts.rb:26 ../app/controllers/miq_policy_controller/policy_profiles.rb:54 ../app/controllers/miq_policy_controller/miq_actions.rb:46 ../app/controllers/miq_policy_controller/conditions.rb:61 ../app/controllers/miq_policy_controller/policies.rb:63 ../app/controllers/miq_policy_controller/policies.rb:108 ../app/controllers/catalog_controller.rb:926 ../app/controllers/chargeback_controller.rb:134 ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:272 ../app/controllers/miq_ae_customization_controller/dialogs.rb:215 ../app/controllers/pxe_controller/pxe_image_types.rb:52 ../app/controllers/pxe_controller/iso_datastores.rb:57 ../app/controllers/pxe_controller/pxe_customization_templates.rb:121 ../app/controllers/pxe_controller/pxe_servers.rb:66 ../app/controllers/storage_manager_controller.rb:85 ../app/controllers/host_controller.rb:228 ../app/controllers/report_controller/reports/editor.rb:73 ../app/controllers/report_controller/schedules.rb:247 ../app/controllers/application_controller/buttons.rb:382 ../app/controllers/application_controller/buttons.rb:465 ../app/controllers/mixins/manager_controller_mixin.rb:40 ../app/controllers/ops_controller/settings/zones.rb:33 ../app/controllers/ops_controller/settings/tags.rb:81 ../app/controllers/ops_controller/settings/label_tag_mapping.rb:166 msgid "%{model} \"%{name}\" was added" msgstr "" -#: ../app/controllers/pxe_controller/pxe_servers.rb:66 ../app/controllers/pxe_controller/pxe_servers.rb:200 ../app/controllers/pxe_controller/pxe_servers.rb:251 ../app/controllers/pxe_controller/iso_datastores.rb:180 ../app/controllers/pxe_controller/pxe_customization_templates.rb:128 ../app/controllers/application_controller/buttons.rb:347 ../app/controllers/application_controller/buttons.rb:517 ../app/controllers/catalog_controller.rb:579 ../app/controllers/catalog_controller.rb:913 ../app/controllers/catalog_controller.rb:1001 ../app/controllers/catalog_controller.rb:1054 ../app/controllers/catalog_controller.rb:1100 ../app/controllers/host_controller.rb:358 ../app/controllers/orchestration_stack_controller.rb:259 ../app/controllers/miq_policy_controller/policy_profiles.rb:53 ../app/controllers/miq_policy_controller/alert_profiles.rb:53 ../app/controllers/miq_policy_controller/conditions.rb:60 ../app/controllers/miq_policy_controller/alerts.rb:25 ../app/controllers/miq_policy_controller/miq_actions.rb:45 ../app/controllers/miq_policy_controller/policies.rb:62 ../app/controllers/miq_ae_class_controller.rb:599 ../app/controllers/miq_ae_class_controller.rb:990 ../app/controllers/miq_ae_class_controller.rb:1075 ../app/controllers/miq_ae_class_controller.rb:1121 ../app/controllers/ops_controller/ops_rbac.rb:132 ../app/controllers/ops_controller/ops_rbac.rb:731 ../app/controllers/ops_controller/settings.rb:165 ../app/controllers/ops_controller/settings/tags.rb:100 ../app/controllers/ops_controller/settings/schedules.rb:80 ../app/controllers/ops_controller/settings/ldap.rb:61 ../app/controllers/ops_controller/settings/ldap.rb:182 ../app/controllers/ops_controller/settings/analysis_profiles.rb:271 ../app/controllers/ops_controller/settings/zones.rb:32 ../app/controllers/ops_controller/settings/label_tag_mapping.rb:174 ../app/controllers/storage_manager_controller.rb:167 ../app/controllers/miq_ae_customization_controller/dialogs.rb:227 ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:285 ../app/controllers/vm_common.rb:958 ../app/controllers/mixins/ems_common_angular.rb:33 ../app/controllers/mixins/ems_common_angular.rb:87 ../app/controllers/ems_common.rb:193 ../app/controllers/ems_common.rb:310 ../app/controllers/report_controller/reports.rb:33 ../app/controllers/report_controller/schedules.rb:246 ../app/controllers/report_controller/widgets.rb:63 ../app/controllers/report_controller/reports/editor.rb:72 ../app/controllers/chargeback_controller.rb:141 ../app/controllers/configuration_controller.rb:426 +#: ../app/controllers/ems_common.rb:136 ../app/controllers/ems_common.rb:253 ../app/controllers/vm_common.rb:812 ../app/controllers/miq_ae_class_controller.rb:599 ../app/controllers/miq_ae_class_controller.rb:990 ../app/controllers/miq_ae_class_controller.rb:1075 ../app/controllers/miq_ae_class_controller.rb:1121 ../app/controllers/miq_policy_controller/alert_profiles.rb:53 ../app/controllers/miq_policy_controller/alerts.rb:25 ../app/controllers/miq_policy_controller/policy_profiles.rb:53 ../app/controllers/miq_policy_controller/miq_actions.rb:45 ../app/controllers/miq_policy_controller/conditions.rb:60 ../app/controllers/miq_policy_controller/policies.rb:62 ../app/controllers/orchestration_stack_controller.rb:263 ../app/controllers/catalog_controller.rb:586 ../app/controllers/catalog_controller.rb:926 ../app/controllers/catalog_controller.rb:1014 ../app/controllers/catalog_controller.rb:1067 ../app/controllers/catalog_controller.rb:1113 ../app/controllers/chargeback_controller.rb:137 ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:274 ../app/controllers/miq_ae_customization_controller/dialogs.rb:217 ../app/controllers/configuration_controller.rb:418 ../app/controllers/pxe_controller/iso_datastores.rb:173 ../app/controllers/pxe_controller/pxe_customization_templates.rb:121 ../app/controllers/pxe_controller/pxe_servers.rb:66 ../app/controllers/pxe_controller/pxe_servers.rb:193 ../app/controllers/pxe_controller/pxe_servers.rb:244 ../app/controllers/storage_manager_controller.rb:168 ../app/controllers/host_controller.rb:310 ../app/controllers/report_controller/reports.rb:33 ../app/controllers/report_controller/reports/editor.rb:72 ../app/controllers/report_controller/widgets.rb:63 ../app/controllers/report_controller/schedules.rb:246 ../app/controllers/application_controller/buttons.rb:347 ../app/controllers/application_controller/buttons.rb:517 ../app/controllers/mixins/ems_common_angular.rb:33 ../app/controllers/mixins/ems_common_angular.rb:87 ../app/controllers/ops_controller/settings.rb:165 ../app/controllers/ops_controller/settings/zones.rb:32 ../app/controllers/ops_controller/settings/analysis_profiles.rb:262 ../app/controllers/ops_controller/settings/tags.rb:100 ../app/controllers/ops_controller/settings/label_tag_mapping.rb:184 ../app/controllers/ops_controller/settings/schedules.rb:74 ../app/controllers/ops_controller/settings/ldap.rb:54 ../app/controllers/ops_controller/settings/ldap.rb:175 ../app/controllers/ops_controller/ops_rbac.rb:132 ../app/controllers/ops_controller/ops_rbac.rb:731 msgid "%{model} \"%{name}\" was saved" msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:184 +#: ../app/controllers/mixins/manager_controller_mixin.rb:43 msgid "%{model} \"%{name}\" was updated" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1544 ../app/controllers/application_controller/ci_processing.rb:2238 ../app/controllers/storage_manager_controller.rb:463 ../app/controllers/miq_request_controller.rb:571 ../app/controllers/ontap_file_share_controller.rb:70 ../app/controllers/ems_common.rb:1038 +#: ../app/controllers/ems_common.rb:927 ../app/controllers/miq_request_controller.rb:568 ../app/controllers/storage_manager_controller.rb:466 ../app/controllers/application_controller/ci_processing.rb:1520 ../app/controllers/application_controller/ci_processing.rb:2270 msgid "%{model} \"%{name}\": %{task} successfully initiated" msgstr "" -#: ../app/controllers/ontap_storage_system_controller.rb:76 -msgid "%{model} \"%{name}\": Create Logical Disk successfully initiated" -msgstr "" - -#: ../app/controllers/application_controller/ci_processing.rb:1583 ../app/controllers/application_controller/buttons.rb:151 ../app/controllers/application_controller/buttons.rb:228 ../app/controllers/miq_ae_class_controller.rb:2590 ../app/controllers/ops_controller/diagnostics.rb:713 ../app/controllers/ops_controller/settings/tags.rb:24 ../app/controllers/ops_controller/settings/zones.rb:70 ../app/controllers/ops_controller/settings/label_tag_mapping.rb:194 ../app/controllers/storage_manager_controller.rb:458 ../app/controllers/miq_request_controller.rb:569 ../app/controllers/report_controller/reports.rb:101 ../app/controllers/miq_task_controller.rb:219 +#: ../app/controllers/miq_ae_class_controller.rb:2590 ../app/controllers/miq_request_controller.rb:566 ../app/controllers/miq_task_controller.rb:199 ../app/controllers/storage_manager_controller.rb:461 ../app/controllers/report_controller/reports.rb:101 ../app/controllers/application_controller/buttons.rb:151 ../app/controllers/application_controller/buttons.rb:228 ../app/controllers/application_controller/ci_processing.rb:1559 ../app/controllers/ops_controller/diagnostics.rb:704 ../app/controllers/ops_controller/settings/zones.rb:70 ../app/controllers/ops_controller/settings/tags.rb:24 ../app/controllers/ops_controller/settings/label_tag_mapping.rb:204 msgid "%{model} \"%{name}\": Delete successful" msgstr "" -#: ../app/controllers/ops_controller/diagnostics.rb:703 +#: ../app/controllers/ops_controller/diagnostics.rb:694 msgid "%{model} \"%{name}\": Error during '%{task}': " msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2201 ../app/controllers/application_controller/ci_processing.rb:2232 ../app/controllers/application_controller/ci_processing.rb:2602 ../app/controllers/catalog_controller.rb:631 ../app/controllers/ems_common.rb:1031 +#: ../app/controllers/ems_common.rb:920 ../app/controllers/catalog_controller.rb:638 ../app/controllers/application_controller/ci_processing.rb:2233 ../app/controllers/application_controller/ci_processing.rb:2264 ../app/controllers/application_controller/ci_processing.rb:2634 msgid "%{model} \"%{name}\": Error during '%{task}': %{error_message}" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1540 +#: ../app/controllers/application_controller/ci_processing.rb:1516 msgid "%{model} \"%{name}\": Error during '%{task}': %{error_msg}" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2298 ../app/controllers/ops_controller/settings/analysis_profiles.rb:514 ../app/controllers/storage_manager_controller.rb:445 ../app/controllers/miq_request_controller.rb:560 ../app/controllers/miq_task_controller.rb:211 +#: ../app/controllers/miq_request_controller.rb:557 ../app/controllers/miq_task_controller.rb:191 ../app/controllers/storage_manager_controller.rb:448 ../app/controllers/application_controller/ci_processing.rb:2330 ../app/controllers/ops_controller/settings/analysis_profiles.rb:505 msgid "%{model} \"%{name}\": Error during '%{task}': %{message}" msgstr "" -#: ../app/controllers/mixins/containers_common_mixin.rb:204 +#: ../app/controllers/mixins/containers_common_mixin.rb:81 msgid "%{model} \"%{name}\": Error during 'Analysis': %{message}" msgstr "" -#: ../app/controllers/mixins/containers_common_mixin.rb:220 -msgid "%{model} \"%{name}\": Error during 'Check Compliance': " +#: ../app/controllers/mixins/containers_common_mixin.rb:97 +msgid "%{model} \"%{name}\": Error during 'Check Compliance': %{error}" msgstr "" #: ../app/controllers/application_controller/filter.rb:353 @@ -678,19 +670,19 @@ msgstr "" msgid "%{model} \"%{name}\": Error during 'miq_report_delete': %{message}" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1578 ../app/controllers/application_controller/ci_processing.rb:1586 ../app/controllers/miq_ae_class_controller.rb:2592 +#: ../app/controllers/miq_ae_class_controller.rb:2592 ../app/controllers/application_controller/ci_processing.rb:1554 ../app/controllers/application_controller/ci_processing.rb:1562 msgid "%{model} \"%{name}\": Error during delete: %{error_msg}" msgstr "" -#: ../app/controllers/application_controller/performance.rb:276 +#: ../app/controllers/application_controller/performance.rb:205 msgid "%{model} (%{tag} running %{time})" msgstr "" -#: ../app/presenters/tree_builder_alert_profile.rb:31 +#: ../app/presenters/tree_builder_alert_profile.rb:32 msgid "%{model} Alert Profiles" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:624 ../app/controllers/ops_controller/settings/schedules.rb:625 +#: ../app/controllers/ops_controller/settings/schedules.rb:619 ../app/controllers/ops_controller/settings/schedules.rb:620 msgid "%{model} Analysis" msgstr "" @@ -706,19 +698,19 @@ msgstr "" msgid "%{model} [%{name} - Updated %{time}%{update}]" msgstr "" -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:264 +#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:254 msgid "%{model} for %{group} \"%{name}\"" msgstr "" -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:36 ../app/controllers/miq_policy_controller/alert_profiles.rb:36 +#: ../app/controllers/miq_policy_controller/alert_profiles.rb:36 ../app/controllers/miq_policy_controller/policy_profiles.rb:36 msgid "%{model} must contain at least one %{field}" msgstr "" -#: ../app/helpers/application_helper.rb:1188 ../app/controllers/pxe_controller/pxe_servers.rb:134 ../app/controllers/pxe_controller/iso_datastores.rb:114 ../app/controllers/pxe_controller/pxe_image_types.rb:107 ../app/controllers/pxe_controller/pxe_customization_templates.rb:224 ../app/controllers/miq_policy_controller/alert_profiles.rb:114 ../app/controllers/ops_controller/settings/analysis_profiles.rb:411 ../app/controllers/storage_manager_controller.rb:394 ../app/controllers/mixins/containers_common_mixin.rb:191 ../app/controllers/report_controller/schedules.rb:83 ../app/controllers/report_controller/schedules.rb:109 ../app/controllers/report_controller/widgets.rb:98 +#: ../app/helpers/application_helper.rb:1125 ../app/controllers/miq_policy_controller/alert_profiles.rb:114 ../app/controllers/pxe_controller/pxe_image_types.rb:107 ../app/controllers/pxe_controller/iso_datastores.rb:114 ../app/controllers/pxe_controller/pxe_customization_templates.rb:217 ../app/controllers/pxe_controller/pxe_servers.rb:134 ../app/controllers/storage_manager_controller.rb:397 ../app/controllers/report_controller/widgets.rb:98 ../app/controllers/report_controller/schedules.rb:83 ../app/controllers/report_controller/schedules.rb:109 ../app/controllers/mixins/containers_common_mixin.rb:68 ../app/controllers/ops_controller/settings/analysis_profiles.rb:402 msgid "%{model} no longer exists" msgstr "" -#: ../app/controllers/cloud_tenant_controller.rb:214 ../app/controllers/auth_key_pair_cloud_controller.rb:169 ../app/controllers/cloud_volume_controller.rb:385 ../app/controllers/host_aggregate_controller.rb:333 +#: ../app/controllers/host_aggregate_controller.rb:322 ../app/controllers/cloud_volume_controller.rb:451 ../app/controllers/auth_key_pair_cloud_controller.rb:184 msgid "%{model} no longer exists." msgstr "" @@ -730,19 +722,19 @@ msgstr "" msgid "%{model} search \"%{name}\" was successfully loaded" msgstr "" -#: ../app/controllers/application_controller/filter.rb:365 +#: ../app/controllers/application_controller/filter.rb:364 msgid "%{model} search \"%{name}\": Delete successful" msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:1073 +#: ../app/controllers/provider_foreman_controller.rb:492 msgid "%{model} under %{record_model} \"%{name}\"" msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:1127 +#: ../app/controllers/automation_manager_controller.rb:512 msgid "%{model} under Inventory Group \"%{name}\"" msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:1078 +#: ../app/controllers/provider_foreman_controller.rb:497 msgid "%{model} under Unassigned Profiles Group" msgstr "" @@ -750,151 +742,139 @@ msgstr "" msgid "%{model}: %{name}" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2207 +#: ../app/controllers/application_controller/ci_processing.rb:2239 msgid "%{model}: %{task} successfully initiated" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1447 +#: ../app/controllers/application_controller/ci_processing.rb:1423 msgid "%{model}: Discovery successfully initiated" msgstr "" -#: ../app/controllers/resource_pool_controller.rb:26 -msgid "%{name} %{text} (Summary)" -msgstr "" - -#: ../app/controllers/application_controller/compare.rb:420 +#: ../app/controllers/application_controller/compare.rb:730 msgid "%{name} '%{vm_name}' Drift Report" msgstr "" -#: ../app/controllers/availability_zone_controller.rb:36 ../app/controllers/host_aggregate_controller.rb:37 +#: ../app/controllers/availability_zone_controller.rb:35 ../app/controllers/host_aggregate_controller.rb:35 msgid "%{name} (%{table}(s))" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:95 ../app/controllers/cloud_volume_controller.rb:104 +#: ../app/controllers/cloud_volume_controller.rb:96 ../app/controllers/cloud_volume_controller.rb:105 msgid "%{name} (All %{children})" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1155 ../app/controllers/cim_instance_controller.rb:135 ../app/controllers/storage_controller.rb:101 ../app/controllers/storage_controller.rb:108 ../app/controllers/storage_controller.rb:115 ../app/controllers/host_controller.rb:115 ../app/controllers/host_controller.rb:122 ../app/controllers/host_controller.rb:129 ../app/controllers/host_controller.rb:136 ../app/controllers/host_controller.rb:143 +#: ../app/controllers/host_controller.rb:98 msgid "%{name} (All %{tables})" msgstr "" -#: ../app/controllers/ems_cluster_controller.rb:216 ../app/controllers/infra_networking_controller.rb:233 +#: ../app/controllers/ems_cluster_controller.rb:186 ../app/controllers/infra_networking_controller.rb:239 msgid "%{name} (All %{titles})" msgstr "" -#: ../app/controllers/availability_zone_controller.rb:44 ../app/controllers/availability_zone_controller.rb:52 ../app/controllers/host_controller.rb:97 ../app/controllers/orchestration_stack_controller.rb:35 ../app/controllers/orchestration_stack_controller.rb:42 ../app/controllers/orchestration_stack_controller.rb:49 ../app/controllers/cloud_volume_controller.rb:113 ../app/controllers/host_aggregate_controller.rb:46 ../app/controllers/host_aggregate_controller.rb:54 ../app/controllers/mixins/containers_common_mixin.rb:150 ../app/controllers/mixins/middleware_common_mixin.rb:48 ../app/controllers/mixins/generic_show_mixin.rb:85 ../app/controllers/resource_pool_controller.rb:52 +#: ../app/controllers/availability_zone_controller.rb:43 ../app/controllers/availability_zone_controller.rb:51 ../app/controllers/host_aggregate_controller.rb:44 ../app/controllers/host_aggregate_controller.rb:52 ../app/controllers/cloud_volume_controller.rb:114 ../app/controllers/orchestration_stack_controller.rb:37 ../app/controllers/orchestration_stack_controller.rb:44 ../app/controllers/orchestration_stack_controller.rb:51 ../app/controllers/host_controller.rb:80 ../app/controllers/mixins/generic_show_mixin.rb:179 msgid "%{name} (All %{title})" msgstr "" -#: ../app/controllers/storage_controller.rb:66 +#: ../app/controllers/storage_controller.rb:65 msgid "%{name} (All Registered %{title})" msgstr "" -#: ../app/controllers/storage_controller.rb:73 ../app/controllers/infra_networking_controller.rb:55 +#: ../app/controllers/storage_controller.rb:72 ../app/controllers/infra_networking_controller.rb:57 msgid "%{name} (All Registered Hosts)" msgstr "" -#: ../app/controllers/host_controller.rb:109 ../app/controllers/resource_pool_controller.rb:58 +#: ../app/controllers/host_controller.rb:92 msgid "%{name} (All Resource Pools)" msgstr "" -#: ../app/controllers/resource_pool_controller.rb:38 +#: ../app/controllers/mixins/generic_show_mixin.rb:143 msgid "%{name} (All VMs - Tree View)" msgstr "" -#: ../app/controllers/host_controller.rb:103 +#: ../app/controllers/host_controller.rb:86 msgid "%{name} (All cloud tenants present on this host)" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1194 ../app/controllers/application_controller/ci_processing.rb:1206 +#: ../app/controllers/application_controller/ci_processing.rb:1170 ../app/controllers/application_controller/ci_processing.rb:1182 msgid "%{name} (Applications)" msgstr "" -#: ../app/controllers/ems_common.rb:609 ../app/controllers/ems_common.rb:617 -msgid "%{name} (Arbitration Profiles)" -msgstr "" - -#: ../app/controllers/host_controller.rb:83 ../app/controllers/mixins/containers_common_mixin.rb:127 +#: ../app/controllers/mixins/more_show_actions.rb:49 msgid "%{name} (Compliance History - Last %{number} Checks)" msgstr "" -#: ../app/controllers/host_controller.rb:37 +#: ../app/controllers/host_controller.rb:44 msgid "%{name} (Devices)" msgstr "" -#: ../app/controllers/resource_pool_controller.rb:32 -msgid "%{name} (Direct VMs)" -msgstr "" - -#: ../app/controllers/vm_common.rb:310 +#: ../app/controllers/vm_common.rb:262 msgid "%{name} (Disks)" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1253 ../app/controllers/application_controller/ci_processing.rb:1260 +#: ../app/controllers/application_controller/ci_processing.rb:1229 ../app/controllers/application_controller/ci_processing.rb:1236 msgid "%{name} (Groups)" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1308 ../app/controllers/application_controller/ci_processing.rb:1314 +#: ../app/controllers/application_controller/ci_processing.rb:1284 ../app/controllers/application_controller/ci_processing.rb:1290 msgid "%{name} (Hosts)" msgstr "" -#: ../app/controllers/host_controller.rb:80 ../app/controllers/mixins/containers_common_mixin.rb:123 +#: ../app/controllers/mixins/more_show_actions.rb:45 msgid "%{name} (Latest Compliance Check)" msgstr "" -#: ../app/controllers/host_controller.rb:49 +#: ../app/controllers/host_controller.rb:56 msgid "%{name} (Network)" msgstr "" -#: ../app/controllers/host_controller.rb:41 +#: ../app/controllers/host_controller.rb:48 msgid "%{name} (OS Information)" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1191 ../app/controllers/application_controller/ci_processing.rb:1203 +#: ../app/controllers/application_controller/ci_processing.rb:1167 ../app/controllers/application_controller/ci_processing.rb:1179 msgid "%{name} (Packages)" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1227 ../app/controllers/application_controller/ci_processing.rb:1233 +#: ../app/controllers/application_controller/ci_processing.rb:1203 ../app/controllers/application_controller/ci_processing.rb:1209 msgid "%{name} (Patches)" msgstr "" -#: ../app/controllers/host_controller.rb:89 +#: ../app/controllers/host_controller.rb:72 msgid "%{name} (Storage Adapters)" msgstr "" -#: ../app/controllers/availability_zone_controller.rb:24 ../app/controllers/cloud_object_store_object_controller.rb:38 ../app/controllers/cim_instance_controller.rb:120 ../app/controllers/host_controller.rb:32 ../app/controllers/orchestration_stack_controller.rb:29 ../app/controllers/storage_manager_controller.rb:218 ../app/controllers/cloud_volume_controller.rb:86 ../app/controllers/host_aggregate_controller.rb:25 ../app/controllers/mixins/containers_common_mixin.rb:58 ../app/controllers/mixins/generic_show_mixin.rb:33 ../app/controllers/mixins/generic_show_mixin.rb:83 ../app/controllers/infra_networking_controller.rb:60 ../app/controllers/configuration_job_controller.rb:35 +#: ../app/controllers/availability_zone_controller.rb:26 ../app/controllers/cloud_object_store_object_controller.rb:48 ../app/controllers/host_aggregate_controller.rb:26 ../app/controllers/cloud_volume_controller.rb:87 ../app/controllers/orchestration_stack_controller.rb:31 ../app/controllers/storage_manager_controller.rb:219 ../app/controllers/host_controller.rb:39 ../app/controllers/infra_networking_controller.rb:62 ../app/controllers/mixins/generic_show_mixin.rb:74 ../app/controllers/mixins/generic_show_mixin.rb:177 ../app/controllers/configuration_job_controller.rb:36 msgid "%{name} (Summary)" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1280 ../app/controllers/application_controller/ci_processing.rb:1287 +#: ../app/controllers/application_controller/ci_processing.rb:1256 ../app/controllers/application_controller/ci_processing.rb:1263 msgid "%{name} (Users)" msgstr "" -#: ../app/controllers/host_controller.rb:45 +#: ../app/controllers/host_controller.rb:52 msgid "%{name} (VM Monitor Information)" msgstr "" -#: ../app/controllers/miq_request_controller.rb:489 +#: ../app/controllers/miq_request_controller.rb:486 msgid "%{name} (no longer exists)" msgstr "" -#: ../app/controllers/availability_zone_controller.rb:31 ../app/controllers/application_controller/performance.rb:600 ../app/controllers/application_controller/performance.rb:615 ../app/controllers/cim_instance_controller.rb:127 ../app/controllers/storage_controller.rb:89 ../app/controllers/host_controller.rb:58 ../app/controllers/ems_cluster_controller.rb:74 ../app/controllers/host_aggregate_controller.rb:32 ../app/controllers/vm_common.rb:304 ../app/controllers/mixins/containers_common_mixin.rb:72 ../app/controllers/ems_common.rb:53 ../app/controllers/ems_common.rb:497 +#: ../app/controllers/ems_common.rb:437 ../app/controllers/vm_common.rb:256 ../app/controllers/storage_controller.rb:88 ../app/controllers/application_controller/performance.rb:135 ../app/controllers/mixins/more_show_actions.rb:17 msgid "%{name} Capacity & Utilization" msgstr "" -#: ../app/controllers/application_controller/performance.rb:596 ../app/controllers/application_controller/performance.rb:609 +#: ../app/controllers/application_controller/performance.rb:129 msgid "%{name} Capacity & Utilization (by %{option}:%{model})" msgstr "" -#: ../app/controllers/application_controller/compare.rb:416 +#: ../app/controllers/application_controller/compare.rb:726 msgid "%{name} Compare Report (* = Value does not match base)" msgstr "" -#: ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:23 ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:25 +#: ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:26 ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:28 msgid "%{name} Configured Systems" msgstr "" -#: ../app/presenters/tree_builder_configuration_manager.rb:27 ../app/presenters/tree_builder_configuration_manager.rb:29 +#: ../app/presenters/tree_builder_configuration_manager.rb:28 ../app/presenters/tree_builder_configuration_manager.rb:30 msgid "%{name} Providers" msgstr "" @@ -902,7 +882,7 @@ msgstr "" msgid "%{name} RSS Feeds" msgstr "" -#: ../app/helpers/catalog_helper/textual_summary.rb:19 ../app/helpers/textual_summary_helper.rb:43 ../app/helpers/container_summary_helper.rb:178 +#: ../app/helpers/textual_summary_helper.rb:52 ../app/helpers/catalog_helper/textual_summary.rb:19 msgid "%{name} Tags" msgstr "" @@ -914,7 +894,7 @@ msgstr "" msgid "%{name} domain: Current version - %{version}, Available version - %{available_version}" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:877 +#: ../app/controllers/report_controller/reports/editor.rb:885 msgid "%{name} is currently being used in the Display Filter" msgstr "" @@ -922,43 +902,43 @@ msgstr "" msgid "%{name} is required" msgstr "" -#: ../app/controllers/application_controller/compare.rb:1471 ../app/views/shared/_compare_header_expanded.html.haml:2 +#: ../app/controllers/application_controller/compare.rb:1364 ../app/views/shared/_compare_header_expanded.html.haml:2 msgid "%{name} is the base" msgstr "" -#: ../app/controllers/storage_manager_controller.rb:465 ../app/controllers/ems_common.rb:1040 +#: ../app/controllers/ems_common.rb:929 ../app/controllers/storage_manager_controller.rb:468 msgid "%{name}: '%{task}' successfully initiated" msgstr "" -#: ../app/controllers/storage_manager_controller.rb:460 +#: ../app/controllers/storage_manager_controller.rb:463 msgid "%{name}: Delete successful" msgstr "" -#: ../app/controllers/storage_manager_controller.rb:451 ../app/controllers/ems_common.rb:1034 +#: ../app/controllers/ems_common.rb:923 ../app/controllers/storage_manager_controller.rb:454 msgid "%{name}: Error during '%{task}': %{message}" msgstr "" -#: ../app/controllers/miq_policy_controller.rb:960 ../app/controllers/miq_policy_controller.rb:964 +#: ../app/controllers/miq_policy_controller.rb:963 ../app/controllers/miq_policy_controller.rb:967 msgid "%{name}:[%{key}] to [%{new_key}]" msgstr "" -#: ../app/helpers/storage_helper/textual_summary.rb:176 ../app/helpers/storage_helper/textual_summary.rb:195 ../app/helpers/storage_helper/textual_summary.rb:213 ../app/helpers/storage_helper/textual_summary.rb:230 ../app/helpers/storage_helper/textual_summary.rb:247 +#: ../app/helpers/storage_helper/textual_summary.rb:131 ../app/helpers/storage_helper/textual_summary.rb:150 ../app/helpers/storage_helper/textual_summary.rb:168 ../app/helpers/storage_helper/textual_summary.rb:185 ../app/helpers/storage_helper/textual_summary.rb:202 msgid "%{number} (%{percentage} of Used Space, %{amount} file)" msgid_plural "%{number} (%{percentage} of Used Space, %{amount} files)" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:107 ../app/helpers/ems_cluster_helper/textual_summary.rb:114 +#: ../app/helpers/ems_cluster_helper/textual_summary.rb:118 ../app/helpers/ems_cluster_helper/textual_summary.rb:125 msgid "%{number} (Virtual to Real Ratio: %{ratio})" msgstr "" -#: ../app/views/report/_form_filter_chargeback.html.haml:294 +#: ../app/views/report/_form_filter_chargeback.html.haml:322 msgid "%{number} Day" msgid_plural "%{number} Days" msgstr[0] "" msgstr[1] "" -#: ../app/views/report/_form_filter_chargeback.html.haml:276 +#: ../app/views/report/_form_filter_chargeback.html.haml:304 msgid "%{number} Days Ago" msgstr "" @@ -968,23 +948,23 @@ msgid_plural "%{number} Hours" msgstr[0] "" msgstr[1] "" -#: ../app/views/report/_form_filter_chargeback.html.haml:298 +#: ../app/views/report/_form_filter_chargeback.html.haml:326 msgid "%{number} Month" msgid_plural "%{number} Months" msgstr[0] "" msgstr[1] "" -#: ../app/views/report/_form_filter_chargeback.html.haml:294 ../app/views/report/_form_filter_chargeback.html.haml:296 +#: ../app/views/report/_form_filter_chargeback.html.haml:322 ../app/views/report/_form_filter_chargeback.html.haml:324 msgid "%{number} Week" msgid_plural "%{number} Weeks" msgstr[0] "" msgstr[1] "" -#: ../app/views/layouts/gtl/_list.html.haml:216 +#: ../app/views/layouts/gtl/_list.html.haml:206 msgid "%{number} bytes" msgstr "" -#: ../app/controllers/vm_common.rb:1333 +#: ../app/controllers/vm_common.rb:1144 msgid "%{object_types} under %{datastore_or_provider} \"%{provider_or_datastore_name}\"" msgstr "" @@ -992,10 +972,18 @@ msgstr "" msgid "%{object} Conditions" msgstr "" -#: ../app/controllers/middleware_server_controller.rb:239 ../app/controllers/middleware_server_controller.rb:279 +#: ../app/controllers/middleware_server_group_controller.rb:71 +msgid "%{operation} initiated for given server group." +msgstr "" + +#: ../app/controllers/middleware_server_controller.rb:232 ../app/controllers/middleware_server_controller.rb:272 msgid "%{operation} initiated for selected server(s)" msgstr "" +#: ../app/controllers/middleware_server_group_controller.rb:74 +msgid "%{operation} was not initiated for given group." +msgstr "" + #: ../app/controllers/ops_controller/diagnostics.rb:36 msgid "%{product} Appliance restart initiated successfully" msgstr "" @@ -1004,11 +992,11 @@ msgstr "" msgid "%{product} Log" msgstr "" -#: ../app/presenters/tree_builder_ops_rbac.rb:21 ../app/presenters/tree_builder_utilization.rb:26 ../app/presenters/tree_builder_ops_settings.rb:18 ../app/presenters/tree_builder_ops_diagnostics.rb:18 +#: ../app/presenters/tree_builder_utilization.rb:26 ../app/presenters/tree_builder_ops_rbac.rb:21 ../app/presenters/tree_builder_ops_diagnostics.rb:18 ../app/presenters/tree_builder_ops_settings.rb:18 msgid "%{product} Region: %{region_description} [%{region}]" msgstr "" -#: ../app/controllers/ops_controller/diagnostics.rb:728 ../app/controllers/ops_controller/diagnostics.rb:746 +#: ../app/controllers/ops_controller/diagnostics.rb:719 ../app/controllers/ops_controller/diagnostics.rb:737 msgid "%{product} Server \"%{name}\" set as %{priority} for Role \"%{role_description}\"" msgstr "" @@ -1024,7 +1012,7 @@ msgstr "" msgid "%{record_name} has no snapshots" msgstr "" -#: ../app/controllers/application_controller.rb:2280 +#: ../app/controllers/application_controller.rb:2286 msgid "%{record_name} no longer exists in the database" msgstr "" @@ -1032,7 +1020,7 @@ msgstr "" msgid "%{record} - \"%{button_text}\"" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1868 ../app/controllers/application_controller/ci_processing.rb:1941 ../app/controllers/application_controller/ci_processing.rb:2263 ../app/controllers/application_controller/ci_processing.rb:2554 ../app/controllers/application_controller/ci_processing.rb:2642 ../app/controllers/application_controller/ci_processing.rb:2713 ../app/controllers/application_controller/ci_processing.rb:2746 ../app/controllers/miq_ae_customization_controller/dialogs.rb:1365 ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:83 ../app/controllers/miq_policy_controller.rb:239 ../app/controllers/ems_common.rb:642 ../app/controllers/ems_common.rb:1065 ../app/controllers/ems_common.rb:1100 ../app/controllers/ems_common.rb:1141 ../app/controllers/chargeback_controller.rb:219 +#: ../app/controllers/ems_common.rb:954 ../app/controllers/ems_common.rb:989 ../app/controllers/ems_common.rb:1030 ../app/controllers/miq_policy_controller.rb:239 ../app/controllers/chargeback_controller.rb:215 ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:83 ../app/controllers/miq_ae_customization_controller/dialogs.rb:1381 ../app/controllers/application_controller/ci_processing.rb:1840 ../app/controllers/application_controller/ci_processing.rb:1894 ../app/controllers/application_controller/ci_processing.rb:1968 ../app/controllers/application_controller/ci_processing.rb:2295 ../app/controllers/application_controller/ci_processing.rb:2586 ../app/controllers/application_controller/ci_processing.rb:2674 ../app/controllers/application_controller/ci_processing.rb:2745 ../app/controllers/application_controller/ci_processing.rb:2778 msgid "%{record} no longer exists" msgstr "" @@ -1044,15 +1032,15 @@ msgstr "" msgid "%{schedule} %{name} was deleted" msgstr "" -#: ../app/presenters/tree_node_builder.rb:383 +#: ../app/presenters/tree_node/miq_server.rb:7 msgid "%{server}: %{server_name} [%{server_id}] (current)" msgstr "" -#: ../app/views/layouts/_pagingcontrols.html.haml:132 ../app/views/layouts/_x_pagingcontrols.html.haml:92 +#: ../app/views/layouts/_pagingcontrols.html.haml:132 ../app/views/layouts/_paging_bar.html.haml:35 msgid "%{start_number} of %{total_items}" msgstr "" -#: ../app/views/layouts/_x_pagingcontrols.html.haml:96 ../app/views/layouts/_x_pagingcontrols.html.haml:99 +#: ../app/views/layouts/_paging_bar.html.haml:38 ../app/views/layouts/_paging_bar.html.haml:41 msgid "%{start_number}-%{end_number} of %{total_items}" msgstr "" @@ -1064,69 +1052,69 @@ msgstr "" msgid "%{status} - %{time}" msgstr "" -#: ../app/helpers/storage_helper/textual_summary.rb:36 +#: ../app/helpers/storage_helper/textual_summary.rb:35 msgid "%{storage} Type" msgstr "" -#: ../app/presenters/tree_builder_region.rb:37 ../app/presenters/tree_builder_region.rb:42 -msgid "%{tables} (Click to open)" -msgstr "" - #: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:37 ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:44 msgid "%{table} (%{count})" msgstr "" -#: ../app/controllers/ops_controller/diagnostics.rb:690 ../app/controllers/ops_controller/settings/schedules.rb:207 ../app/controllers/ops_controller/settings/ldap.rb:117 ../app/controllers/ops_controller/settings/ldap.rb:285 ../app/controllers/miq_request_controller.rb:532 +#: ../app/controllers/miq_request_controller.rb:529 ../app/controllers/ops_controller/diagnostics.rb:681 ../app/controllers/ops_controller/settings/schedules.rb:201 ../app/controllers/ops_controller/settings/ldap.rb:110 ../app/controllers/ops_controller/settings/ldap.rb:278 msgid "%{table} no longer exists" msgstr "" -#: ../app/views/layouts/listnav/_cloud_object_store_object.html.haml:28 ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:28 +#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:28 ../app/views/layouts/listnav/_cloud_object_store_object.html.haml:28 msgid "%{table}: %{name}" msgstr "" -#: ../app/controllers/application_controller.rb:2346 +#: ../app/controllers/application_controller.rb:2352 msgid "%{task} does not apply to at least one of the selected %{model}" msgstr "" -#: ../app/controllers/application_controller.rb:2350 +#: ../app/controllers/application_controller.rb:2356 ../app/controllers/application_controller/ci_processing.rb:1888 msgid "%{task} does not apply to at least one of the selected items" msgstr "" -#: ../app/controllers/ems_common.rb:995 +#: ../app/controllers/application_controller/ci_processing.rb:1899 +msgid "%{task} does not apply to this item" +msgstr "" + +#: ../app/controllers/ems_common.rb:884 msgid "%{task} initiated for %{count} %{model} from the %{product} Database" msgid_plural "%{task} initiated for %{count} %{models} from the %{product} Database" msgstr[0] "" msgstr[1] "" -#: ../app/controllers/application_controller/ci_processing.rb:2318 +#: ../app/controllers/application_controller/ci_processing.rb:2350 msgid "%{task} initiated for %{count} Host from the %{product} Database" msgid_plural "%{task} initiated for %{count} Hosts from the %{product} Database" msgstr[0] "" msgstr[1] "" -#: ../app/controllers/storage_manager_controller.rb:423 +#: ../app/controllers/storage_manager_controller.rb:426 msgid "%{task} initiated for %{count} Storage Manager from the %{product} Database" msgid_plural "%{task} initiated for %{count} Storage Managers from the %{product} Database" msgstr[0] "" msgstr[1] "" -#: ../app/controllers/application_controller/ci_processing.rb:1966 -msgid "%{task} initiated for %{count} provider (%{controller})" -msgid_plural "%{task} initiated for %{count} providers (%{controller})" +#: ../app/controllers/application_controller/ci_processing.rb:1999 +msgid "%{task} initiated for %{count} provider" +msgid_plural "%{task} initiated for %{count} providers)" msgstr[0] "" msgstr[1] "" -#: ../app/controllers/application_controller/ci_processing.rb:1928 +#: ../app/controllers/application_controller/ci_processing.rb:1955 msgid "%{task} initiated for %{number} %{model} from the %{product} Database" msgid_plural "%{task} initiated for %{number} %{models} from the %{product} Database" msgstr[0] "" msgstr[1] "" -#: ../app/controllers/application_controller.rb:721 +#: ../app/controllers/application_controller.rb:724 msgid "%{tenant_name} (%{group}): %{group_description}" msgstr "" -#: ../app/controllers/application_controller.rb:719 +#: ../app/controllers/application_controller.rb:722 msgid "%{tenant_name} (All %{groups})" msgstr "" @@ -1134,27 +1122,27 @@ msgstr "" msgid "%{time} Ago" msgstr "" -#: ../app/views/ops/_rbac_group_details.html.haml:279 +#: ../app/views/ops/_rbac_group_details.html.haml:277 msgid "%{title_for_hosts} & %{title_for_clusters}" msgstr "" -#: ../app/controllers/configuration_controller.rb:302 +#: ../app/controllers/configuration_controller.rb:285 msgid "%{title} '%{description}'" msgstr "" -#: ../app/helpers/ems_infra_helper/textual_summary.rb:178 +#: ../app/helpers/ems_infra_helper/textual_summary.rb:173 msgid "%{title} Default VNC Port Range" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1381 ../app/controllers/application_controller/ci_processing.rb:1453 +#: ../app/controllers/application_controller/ci_processing.rb:1357 ../app/controllers/application_controller/ci_processing.rb:1429 msgid "%{title} Discovery" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1440 +#: ../app/controllers/application_controller/ci_processing.rb:1416 msgid "%{title} Discovery returned: %{error_message}" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1328 +#: ../app/controllers/application_controller/ci_processing.rb:1304 msgid "%{title} Discovery was cancelled by the user" msgstr "" @@ -1170,11 +1158,11 @@ msgstr "" msgid "%{type} Information" msgstr "" -#: ../app/presenters/tree_node_builder.rb:235 +#: ../app/presenters/tree_node/guest_device.rb:9 msgid "%{type} Storage Adapter: %{name}" msgstr "" -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:121 ../app/controllers/miq_policy_controller.rb:583 ../app/controllers/miq_policy_controller.rb:918 ../app/controllers/report_controller/widgets.rb:260 ../app/controllers/chargeback_controller.rb:230 ../app/controllers/report_controller.rb:448 ../app/controllers/report_controller.rb:468 +#: ../app/controllers/report_controller.rb:452 ../app/controllers/report_controller.rb:472 ../app/controllers/miq_policy_controller.rb:583 ../app/controllers/miq_policy_controller.rb:921 ../app/controllers/chargeback_controller.rb:226 ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:121 ../app/controllers/report_controller/widgets.rb:260 msgid "%{typ} %{model}" msgstr "" @@ -1194,19 +1182,19 @@ msgstr "" msgid "%{typ} Button Groups" msgstr "" -#: ../app/controllers/application_controller/miq_request_methods.rb:619 +#: ../app/controllers/application_controller/miq_request_methods.rb:622 msgid "%{typ} Request was Submitted, you will be notified when your %{title} are ready" msgstr "" -#: ../app/controllers/application_controller/miq_request_methods.rb:619 +#: ../app/controllers/application_controller/miq_request_methods.rb:622 msgid "%{typ} Request was re-submitted, you will be notified when your %{title} are ready" msgstr "" -#: ../app/controllers/catalog_controller.rb:1712 +#: ../app/controllers/catalog_controller.rb:1731 msgid "%{typ} in %{model} \"%{name}\"" msgstr "" -#: ../app/controllers/catalog_controller.rb:1705 +#: ../app/controllers/catalog_controller.rb:1719 msgid "%{typ} in %{model} \"Unassigned\"" msgstr "" @@ -1214,35 +1202,31 @@ msgstr "" msgid "%{val} missing for %{field}" msgstr "" -#: ../app/controllers/vm_common.rb:1776 +#: ../app/controllers/vm_common.rb:1588 msgid "%{vm_or_template} Policy Assignment" msgstr "" -#: ../app/controllers/vm_common.rb:1767 ../app/controllers/vm_common.rb:1771 +#: ../app/controllers/vm_common.rb:1579 ../app/controllers/vm_common.rb:1583 msgid "%{vm_or_template} Policy Simulation" msgstr "" -#: ../app/controllers/cloud_tenant_controller.rb:34 ../app/controllers/cloud_volume_controller.rb:41 +#: ../app/controllers/cloud_volume_controller.rb:42 ../app/controllers/cloud_tenant_controller.rb:35 msgid "%{volume} \"%{volume_name}\" is not attached to any %{instances}" msgstr "" -#: ../app/presenters/tree_node_builder.rb:442 -msgid "%{zone}: %{zone_description} (current)" -msgstr "" - #: ../app/controllers/application_controller/policy_support.rb:185 msgid "'%{model}' Policy Assignment" msgstr "" -#: ../app/controllers/application_controller/compare.rb:564 ../app/controllers/application_controller/compare.rb:592 +#: ../app/controllers/application_controller/compare.rb:380 ../app/controllers/application_controller/compare.rb:402 msgid "'%{name}' Drift Analysis" msgstr "" -#: ../app/controllers/storage_manager_controller.rb:427 +#: ../app/controllers/storage_manager_controller.rb:430 msgid "'%{task}' successfully initiated for %{items}" msgstr "" -#: ../app/controllers/ems_common.rb:1003 +#: ../app/controllers/ems_common.rb:892 msgid "'%{task}' successfully initiated for %{table}" msgstr "" @@ -1250,7 +1234,7 @@ msgstr "" msgid "'%{type}' Worker restart initiated successfully" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:778 +#: ../app/helpers/application_helper/button/zone_delete.rb:6 msgid "'Default' zone cannot be deleted" msgstr "" @@ -1266,7 +1250,7 @@ msgstr "" msgid "(%{number} bytes)" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:650 +#: ../app/helpers/vm_helper/textual_summary.rb:689 msgid "(%{value}) * Overallocated" msgstr "" @@ -1274,7 +1258,7 @@ msgstr "" msgid "(All)" msgstr "" -#: ../app/views/vm_common/_vmtree.html.haml:7 ../app/views/layouts/_pagingcontrols.html.haml:15 +#: ../app/views/vm_common/_vmtree.html.haml:9 ../app/views/layouts/_pagingcontrols.html.haml:15 msgid "(Check All)" msgstr "" @@ -1286,15 +1270,15 @@ msgstr "" msgid "(Click to remove)" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:34 ../app/views/miq_policy/_alert_details.html.haml:308 ../app/views/report/_show_schedule.html.haml:51 ../app/views/layouts/_edit_email.html.haml:50 +#: ../app/views/miq_policy/_action_options.html.haml:33 ../app/views/miq_policy/_alert_details.html.haml:308 ../app/views/report/_show_schedule.html.haml:51 ../app/views/layouts/_edit_email.html.haml:50 msgid "(Default: %{email_from})" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:228 +#: ../app/views/miq_policy/_action_options.html.haml:220 msgid "(Enter the value between 4 - 65636 MB)" msgstr "" -#: ../app/views/ops/_rbac_group_details.html.haml:45 +#: ../app/views/ops/_rbac_group_details.html.haml:44 msgid "(Look up %{authentication_mode_name} Groups)" msgstr "" @@ -1306,11 +1290,11 @@ msgstr "" msgid "(current)" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:23 ../app/views/layouts/_edit_email.html.haml:39 +#: ../app/views/miq_policy/_action_options.html.haml:22 ../app/views/layouts/_edit_email.html.haml:39 msgid "(leave blank for default)" msgstr "" -#: ../app/controllers/application_controller/compare.rb:1896 ../app/controllers/application_controller/compare.rb:1899 +#: ../app/controllers/application_controller/compare.rb:1787 ../app/controllers/application_controller/compare.rb:1790 msgid "(missing)" msgstr "" @@ -1322,10 +1306,6 @@ msgstr "" msgid "(optional) your HTTP proxy information" msgstr "" -#: ../app/controllers/resource_pool_controller.rb:25 -msgid "(vApp)" -msgstr "" - #: ../app/views/ops/_category_form.html.haml:229 msgid "* 'Name' and 'Single Value' fields cannot be edited after adding a category." msgstr "" @@ -1358,7 +1338,7 @@ msgstr "" msgid "* Checking this box will remove this setting from all other PXE Images on this PXE Server" msgstr "" -#: ../app/views/layouts/_perf_options.html.haml:233 +#: ../app/views/layouts/_perf_options.html.haml:210 msgid "* Daily charts only include days for which all 24 hours of data has been collected." msgstr "" @@ -1394,7 +1374,7 @@ msgstr "" msgid "* If all Conditions are removed from a Policy, it will be unconditional and always evaluate to true." msgstr "" -#: ../app/views/miq_capacity/_utilization_summary.html.haml:59 ../app/views/miq_capacity/_utilization_report.html.haml:69 ../app/views/miq_capacity/_utilization_details.html.haml:26 +#: ../app/views/miq_capacity/_utilization_details.html.haml:26 ../app/views/miq_capacity/_utilization_report.html.haml:69 ../app/views/miq_capacity/_utilization_summary.html.haml:59 msgid "* Information shown is based on available trend data from %{start_time} to %{end_time} in the %{timezone} time zone." msgstr "" @@ -1446,7 +1426,7 @@ msgstr "" msgid "* Report is not owned by your group so it cannot be removed" msgstr "" -#: ../app/views/ops/_settings_import_tags_tab.html.haml:39 ../app/views/ops/_settings_import_tab.html.haml:54 +#: ../app/views/ops/_settings_import_tab.html.haml:54 ../app/views/ops/_settings_import_tags_tab.html.haml:39 msgid "* Requirements: CSV formatted file." msgstr "" @@ -1458,7 +1438,7 @@ msgstr "" msgid "* Requirements: File-type - PNG; Dimensions - 350x70." msgstr "" -#: ../app/views/catalog/_sandt_tree_show.html.haml:218 +#: ../app/views/catalog/_sandt_tree_show.html.haml:234 msgid "* Requires image file in .png or .jpg format" msgstr "" @@ -1490,27 +1470,27 @@ msgstr "" msgid "* Style \"If\" conditions are evaluated top to bottom for each column" msgstr "" -#: ../app/controllers/application_controller.rb:1182 +#: ../app/controllers/application_controller.rb:1189 msgid ", Connect at Power On = No" msgstr "" -#: ../app/controllers/application_controller.rb:1182 +#: ../app/controllers/application_controller.rb:1189 msgid ", Connect at Power On = Yes" msgstr "" -#: ../app/controllers/application_controller.rb:1213 ../app/controllers/application_controller.rb:1226 ../app/controllers/application_controller.rb:1241 +#: ../app/controllers/application_controller.rb:1220 ../app/controllers/application_controller.rb:1233 ../app/controllers/application_controller.rb:1248 msgid ", Mode: %{mode}" msgstr "" -#: ../app/controllers/application_controller.rb:1210 ../app/controllers/application_controller.rb:1223 ../app/controllers/application_controller.rb:1238 +#: ../app/controllers/application_controller.rb:1217 ../app/controllers/application_controller.rb:1230 ../app/controllers/application_controller.rb:1245 msgid ", Percent Used Provisioned Space: %{number}%%" msgstr "" -#: ../app/controllers/application_controller.rb:1206 ../app/controllers/application_controller.rb:1220 ../app/controllers/application_controller.rb:1234 +#: ../app/controllers/application_controller.rb:1213 ../app/controllers/application_controller.rb:1227 ../app/controllers/application_controller.rb:1241 msgid ", Size on disk: %{number}" msgstr "" -#: ../app/controllers/application_controller.rb:1203 ../app/controllers/application_controller.rb:1217 ../app/controllers/application_controller.rb:1231 +#: ../app/controllers/application_controller.rb:1210 ../app/controllers/application_controller.rb:1224 ../app/controllers/application_controller.rb:1238 msgid ", Size: %{number}" msgstr "" @@ -1526,11 +1506,11 @@ msgstr "" msgid "1 Day" msgstr "" -#: ../app/helpers/ui_constants.rb:406 +#: ../app/helpers/ui_constants.rb:403 msgid "1 Day Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:353 ../app/controllers/miq_policy_controller/alerts.rb:456 ../app/controllers/miq_policy_controller/alerts.rb:463 ../app/controllers/miq_policy_controller/alerts.rb:472 ../app/controllers/miq_policy_controller/alerts.rb:478 ../app/controllers/miq_policy_controller/alerts.rb:487 +#: ../app/helpers/ui_constants.rb:350 ../app/controllers/miq_policy_controller/alerts.rb:456 ../app/controllers/miq_policy_controller/alerts.rb:463 ../app/controllers/miq_policy_controller/alerts.rb:472 ../app/controllers/miq_policy_controller/alerts.rb:478 ../app/controllers/miq_policy_controller/alerts.rb:487 msgid "1 Hour" msgstr "" @@ -1538,11 +1518,11 @@ msgstr "" msgid "1 Minute" msgstr "" -#: ../app/helpers/ui_constants.rb:338 +#: ../app/helpers/ui_constants.rb:335 msgid "1 Week" msgstr "" -#: ../app/views/report/_form_filter_chargeback.html.haml:276 +#: ../app/views/report/_form_filter_chargeback.html.haml:304 msgid "1 Week Ago" msgstr "" @@ -1550,15 +1530,15 @@ msgstr "" msgid "1 Week before retirement" msgstr "" -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 +#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:25 msgid "1-2" msgstr "" -#: ../app/helpers/ui_constants.rb:563 +#: ../app/helpers/ui_constants.rb:530 msgid "10 Hours Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:349 ../app/controllers/miq_policy_controller/alerts.rb:455 ../app/controllers/miq_policy_controller/alerts.rb:471 ../app/controllers/miq_policy_controller/alerts.rb:486 ../app/views/miq_policy/_alert_details.html.haml:204 +#: ../app/helpers/ui_constants.rb:346 ../app/controllers/miq_policy_controller/alerts.rb:455 ../app/controllers/miq_policy_controller/alerts.rb:471 ../app/controllers/miq_policy_controller/alerts.rb:486 ../app/views/miq_policy/_alert_details.html.haml:204 msgid "10 Minutes" msgstr "" @@ -1566,7 +1546,7 @@ msgstr "" msgid "10 items" msgstr "" -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 +#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:26 msgid "10-11" msgstr "" @@ -1578,59 +1558,59 @@ msgstr "" msgid "1000 items" msgstr "" -#: ../app/helpers/ui_constants.rb:564 +#: ../app/helpers/ui_constants.rb:531 msgid "11 Hours Ago" msgstr "" -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 +#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:26 msgid "11-12" msgstr "" -#: ../app/helpers/ui_constants.rb:304 ../app/controllers/miq_policy_controller/alerts.rb:458 ../app/controllers/miq_policy_controller/alerts.rb:464 ../app/controllers/miq_policy_controller/alerts.rb:479 ../app/controllers/miq_policy_controller/alerts.rb:489 +#: ../app/helpers/ui_constants.rb:301 ../app/controllers/miq_policy_controller/alerts.rb:458 ../app/controllers/miq_policy_controller/alerts.rb:464 ../app/controllers/miq_policy_controller/alerts.rb:479 ../app/controllers/miq_policy_controller/alerts.rb:489 msgid "12 Hours" msgstr "" -#: ../app/helpers/ui_constants.rb:565 +#: ../app/helpers/ui_constants.rb:532 msgid "12 Hours Ago" msgstr "" -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 +#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:25 msgid "12-1" msgstr "" -#: ../app/helpers/ui_constants.rb:566 +#: ../app/helpers/ui_constants.rb:533 msgid "13 Hours Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:587 +#: ../app/helpers/ui_constants.rb:554 msgid "14 Days Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:567 +#: ../app/helpers/ui_constants.rb:534 msgid "14 Hours Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:568 +#: ../app/helpers/ui_constants.rb:535 msgid "15 Hours Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:350 ../app/controllers/miq_policy_controller/alerts.rb:455 ../app/controllers/miq_policy_controller/alerts.rb:472 ../app/controllers/miq_policy_controller/alerts.rb:487 +#: ../app/helpers/ui_constants.rb:347 ../app/controllers/miq_policy_controller/alerts.rb:455 ../app/controllers/miq_policy_controller/alerts.rb:472 ../app/controllers/miq_policy_controller/alerts.rb:487 msgid "15 Minutes" msgstr "" -#: ../app/helpers/ui_constants.rb:569 +#: ../app/helpers/ui_constants.rb:536 msgid "16 Hours Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:570 +#: ../app/helpers/ui_constants.rb:537 msgid "17 Hours Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:571 +#: ../app/helpers/ui_constants.rb:538 msgid "18 Hours Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:572 +#: ../app/helpers/ui_constants.rb:539 msgid "19 Hours Ago" msgstr "" @@ -1638,19 +1618,19 @@ msgstr "" msgid "2 - Specify the VM Options to define the source of the values used for the plan calculations." msgstr "" -#: ../app/helpers/ui_constants.rb:291 +#: ../app/helpers/ui_constants.rb:288 msgid "2 Days" msgstr "" -#: ../app/helpers/ui_constants.rb:407 ../app/helpers/ui_constants.rb:581 +#: ../app/helpers/ui_constants.rb:404 ../app/helpers/ui_constants.rb:548 msgid "2 Days Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:299 ../app/controllers/miq_policy_controller/alerts.rb:456 ../app/controllers/miq_policy_controller/alerts.rb:463 ../app/controllers/miq_policy_controller/alerts.rb:473 ../app/controllers/miq_policy_controller/alerts.rb:478 ../app/controllers/miq_policy_controller/alerts.rb:488 +#: ../app/helpers/ui_constants.rb:296 ../app/controllers/miq_policy_controller/alerts.rb:456 ../app/controllers/miq_policy_controller/alerts.rb:463 ../app/controllers/miq_policy_controller/alerts.rb:473 ../app/controllers/miq_policy_controller/alerts.rb:478 ../app/controllers/miq_policy_controller/alerts.rb:488 msgid "2 Hours" msgstr "" -#: ../app/helpers/ui_constants.rb:555 +#: ../app/helpers/ui_constants.rb:522 msgid "2 Hours Ago" msgstr "" @@ -1658,23 +1638,23 @@ msgstr "" msgid "2 Minutes" msgstr "" -#: ../app/helpers/ui_constants.rb:314 +#: ../app/helpers/ui_constants.rb:311 msgid "2 Months" msgstr "" -#: ../app/helpers/ui_constants.rb:599 +#: ../app/helpers/ui_constants.rb:566 msgid "2 Months Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:607 +#: ../app/helpers/ui_constants.rb:574 msgid "2 Quarters Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:308 ../app/helpers/ui_constants.rb:339 +#: ../app/helpers/ui_constants.rb:305 ../app/helpers/ui_constants.rb:336 msgid "2 Weeks" msgstr "" -#: ../app/helpers/ui_constants.rb:592 +#: ../app/helpers/ui_constants.rb:559 msgid "2 Weeks Ago" msgstr "" @@ -1682,15 +1662,15 @@ msgstr "" msgid "2 Weeks before retirement" msgstr "" -#: ../app/helpers/ui_constants.rb:614 +#: ../app/helpers/ui_constants.rb:581 msgid "2 Years Ago" msgstr "" -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 +#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:25 msgid "2-3" msgstr "" -#: ../app/helpers/ui_constants.rb:573 +#: ../app/helpers/ui_constants.rb:540 msgid "20 Hours Ago" msgstr "" @@ -1702,15 +1682,15 @@ msgstr "" msgid "200 items" msgstr "" -#: ../app/helpers/ui_constants.rb:574 +#: ../app/helpers/ui_constants.rb:541 msgid "21 Hours Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:575 +#: ../app/helpers/ui_constants.rb:542 msgid "22 Hours Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:576 +#: ../app/helpers/ui_constants.rb:543 msgid "23 Hours Ago" msgstr "" @@ -1722,19 +1702,19 @@ msgstr "" msgid "3 - Specify Target Options to qualify target %{hosts} or %{clusters}." msgstr "" -#: ../app/helpers/ui_constants.rb:292 +#: ../app/helpers/ui_constants.rb:289 msgid "3 Days" msgstr "" -#: ../app/helpers/ui_constants.rb:408 ../app/helpers/ui_constants.rb:582 +#: ../app/helpers/ui_constants.rb:405 ../app/helpers/ui_constants.rb:549 msgid "3 Days Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:300 ../app/controllers/miq_policy_controller/alerts.rb:457 ../app/controllers/miq_policy_controller/alerts.rb:463 ../app/controllers/miq_policy_controller/alerts.rb:478 ../app/controllers/miq_policy_controller/alerts.rb:488 +#: ../app/helpers/ui_constants.rb:297 ../app/controllers/miq_policy_controller/alerts.rb:457 ../app/controllers/miq_policy_controller/alerts.rb:463 ../app/controllers/miq_policy_controller/alerts.rb:478 ../app/controllers/miq_policy_controller/alerts.rb:488 msgid "3 Hours" msgstr "" -#: ../app/helpers/ui_constants.rb:556 +#: ../app/helpers/ui_constants.rb:523 msgid "3 Hours Ago" msgstr "" @@ -1742,31 +1722,31 @@ msgstr "" msgid "3 Minutes" msgstr "" -#: ../app/helpers/ui_constants.rb:315 +#: ../app/helpers/ui_constants.rb:312 msgid "3 Months" msgstr "" -#: ../app/helpers/ui_constants.rb:600 +#: ../app/helpers/ui_constants.rb:567 msgid "3 Months Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:608 +#: ../app/helpers/ui_constants.rb:575 msgid "3 Quarters Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:309 ../app/helpers/ui_constants.rb:340 +#: ../app/helpers/ui_constants.rb:306 ../app/helpers/ui_constants.rb:337 msgid "3 Weeks" msgstr "" -#: ../app/helpers/ui_constants.rb:593 +#: ../app/helpers/ui_constants.rb:560 msgid "3 Weeks Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:615 +#: ../app/helpers/ui_constants.rb:582 msgid "3 Years Ago" msgstr "" -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 +#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:25 msgid "3-4" msgstr "" @@ -1774,11 +1754,11 @@ msgstr "" msgid "30 Days before retirement" msgstr "" -#: ../app/helpers/ui_constants.rb:351 ../app/controllers/miq_policy_controller/alerts.rb:456 ../app/controllers/miq_policy_controller/alerts.rb:472 ../app/controllers/miq_policy_controller/alerts.rb:487 +#: ../app/helpers/ui_constants.rb:348 ../app/controllers/miq_policy_controller/alerts.rb:456 ../app/controllers/miq_policy_controller/alerts.rb:472 ../app/controllers/miq_policy_controller/alerts.rb:487 msgid "30 Minutes" msgstr "" -#: ../app/helpers/flavor_helper/textual_summary.rb:44 +#: ../app/helpers/flavor_helper/textual_summary.rb:40 msgid "32 Bit Architecture" msgstr "" @@ -1786,19 +1766,19 @@ msgstr "" msgid "4 - Change the Trend Options used to calculate the daily trends, if desired." msgstr "" -#: ../app/helpers/ui_constants.rb:293 +#: ../app/helpers/ui_constants.rb:290 msgid "4 Days" msgstr "" -#: ../app/helpers/ui_constants.rb:409 ../app/helpers/ui_constants.rb:583 +#: ../app/helpers/ui_constants.rb:406 ../app/helpers/ui_constants.rb:550 msgid "4 Days Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:301 ../app/controllers/miq_policy_controller/alerts.rb:457 ../app/controllers/miq_policy_controller/alerts.rb:464 ../app/controllers/miq_policy_controller/alerts.rb:479 ../app/controllers/miq_policy_controller/alerts.rb:488 +#: ../app/helpers/ui_constants.rb:298 ../app/controllers/miq_policy_controller/alerts.rb:457 ../app/controllers/miq_policy_controller/alerts.rb:464 ../app/controllers/miq_policy_controller/alerts.rb:479 ../app/controllers/miq_policy_controller/alerts.rb:488 msgid "4 Hours" msgstr "" -#: ../app/helpers/ui_constants.rb:557 +#: ../app/helpers/ui_constants.rb:524 msgid "4 Hours Ago" msgstr "" @@ -1806,35 +1786,35 @@ msgstr "" msgid "4 Minutes" msgstr "" -#: ../app/helpers/ui_constants.rb:316 +#: ../app/helpers/ui_constants.rb:313 msgid "4 Months" msgstr "" -#: ../app/helpers/ui_constants.rb:601 +#: ../app/helpers/ui_constants.rb:568 msgid "4 Months Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:609 +#: ../app/helpers/ui_constants.rb:576 msgid "4 Quarters Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:310 ../app/helpers/ui_constants.rb:341 +#: ../app/helpers/ui_constants.rb:307 ../app/helpers/ui_constants.rb:338 msgid "4 Weeks" msgstr "" -#: ../app/helpers/ui_constants.rb:594 +#: ../app/helpers/ui_constants.rb:561 msgid "4 Weeks Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:616 +#: ../app/helpers/ui_constants.rb:583 msgid "4 Years Ago" msgstr "" -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 +#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:25 msgid "4-5" msgstr "" -#: ../app/helpers/ui_constants.rb:352 +#: ../app/helpers/ui_constants.rb:349 msgid "45 Minutes" msgstr "" @@ -1842,15 +1822,15 @@ msgstr "" msgid "5 - Press the Submit button." msgstr "" -#: ../app/helpers/ui_constants.rb:294 +#: ../app/helpers/ui_constants.rb:291 msgid "5 Days" msgstr "" -#: ../app/helpers/ui_constants.rb:410 ../app/helpers/ui_constants.rb:584 +#: ../app/helpers/ui_constants.rb:407 ../app/helpers/ui_constants.rb:551 msgid "5 Days Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:558 +#: ../app/helpers/ui_constants.rb:525 msgid "5 Hours Ago" msgstr "" @@ -1858,7 +1838,7 @@ msgstr "" msgid "5 Minutes" msgstr "" -#: ../app/helpers/ui_constants.rb:317 +#: ../app/helpers/ui_constants.rb:314 msgid "5 Months" msgstr "" @@ -1866,7 +1846,7 @@ msgstr "" msgid "5 items" msgstr "" -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 +#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:25 msgid "5-6" msgstr "" @@ -1878,147 +1858,167 @@ msgstr "" msgid "500 items" msgstr "" -#: ../app/helpers/ui_constants.rb:295 +#: ../app/helpers/ui_constants.rb:292 msgid "6 Days" msgstr "" -#: ../app/helpers/ui_constants.rb:411 ../app/helpers/ui_constants.rb:585 +#: ../app/helpers/ui_constants.rb:408 ../app/helpers/ui_constants.rb:552 msgid "6 Days Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:302 ../app/controllers/miq_policy_controller/alerts.rb:457 ../app/controllers/miq_policy_controller/alerts.rb:464 ../app/controllers/miq_policy_controller/alerts.rb:479 ../app/controllers/miq_policy_controller/alerts.rb:489 +#: ../app/helpers/ui_constants.rb:299 ../app/controllers/miq_policy_controller/alerts.rb:457 ../app/controllers/miq_policy_controller/alerts.rb:464 ../app/controllers/miq_policy_controller/alerts.rb:479 ../app/controllers/miq_policy_controller/alerts.rb:489 msgid "6 Hours" msgstr "" -#: ../app/helpers/ui_constants.rb:559 +#: ../app/helpers/ui_constants.rb:526 msgid "6 Hours Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:318 +#: ../app/helpers/ui_constants.rb:315 msgid "6 Months" msgstr "" -#: ../app/helpers/ui_constants.rb:602 +#: ../app/helpers/ui_constants.rb:569 msgid "6 Months Ago" msgstr "" -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 +#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:26 msgid "6-7" msgstr "" -#: ../app/helpers/flavor_helper/textual_summary.rb:49 +#: ../app/helpers/flavor_helper/textual_summary.rb:45 msgid "64 Bit Architecture" msgstr "" -#: ../app/helpers/ui_constants.rb:586 +#: ../app/helpers/ui_constants.rb:553 msgid "7 Days Ago" msgstr "" -#: ../app/helpers/ui_constants.rb:560 +#: ../app/helpers/ui_constants.rb:527 msgid "7 Hours Ago" msgstr "" -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 +#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:26 msgid "7-8" msgstr "" -#: ../app/helpers/ui_constants.rb:303 +#: ../app/helpers/ui_constants.rb:300 msgid "8 Hours" msgstr "" -#: ../app/helpers/ui_constants.rb:561 +#: ../app/helpers/ui_constants.rb:528 msgid "8 Hours Ago" msgstr "" -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 +#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:26 msgid "8-9" msgstr "" -#: ../app/helpers/ui_constants.rb:562 +#: ../app/helpers/ui_constants.rb:529 msgid "9 Hours Ago" msgstr "" -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 +#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:26 msgid "9-10" msgstr "" -#: ../app/helpers/application_helper.rb:456 +#: ../app/helpers/application_helper/title.rb:30 +msgid ": About" +msgstr "" + +#: ../app/helpers/application_helper/title.rb:46 msgid ": All UI Tasks" msgstr "" -#: ../app/helpers/application_helper.rb:452 +#: ../app/helpers/application_helper/title.rb:42 msgid ": Analysis Profiles" msgstr "" -#: ../app/helpers/application_helper.rb:479 -msgid ": Automate" +#: ../app/helpers/application_helper/title.rb:70 +msgid ": Automation" +msgstr "" + +#: ../app/helpers/application_helper/title.rb:28 +msgid ": Chargeback" msgstr "" -#: ../app/helpers/application_helper.rb:464 +#: ../app/helpers/application_helper/title.rb:24 ../app/helpers/application_helper/title.rb:54 msgid ": Configuration" msgstr "" -#: ../app/helpers/application_helper.rb:466 +#: ../app/helpers/application_helper/title.rb:56 msgid ": Configuration Management" msgstr "" -#: ../app/helpers/application_helper.rb:481 +#: ../app/helpers/application_helper/title.rb:72 msgid ": Control" msgstr "" -#: ../app/helpers/application_helper.rb:472 +#: ../app/helpers/application_helper/title.rb:80 +msgid ": Credentials" +msgstr "" + +#: ../app/helpers/application_helper/title.rb:26 +msgid ": Dashboard" +msgstr "" + +#: ../app/helpers/application_helper/title.rb:62 msgid ": Instances" msgstr "" -#: ../app/helpers/application_helper.rb:490 +#: ../app/views/layouts/login.html.haml:9 msgid ": Login" msgstr "" -#: ../app/helpers/application_helper.rb:458 +#: ../app/helpers/application_helper/title.rb:48 msgid ": My UI Tasks" msgstr "" -#: ../app/helpers/application_helper.rb:483 +#: ../app/helpers/application_helper/title.rb:74 msgid ": Optimize" msgstr "" -#: ../app/helpers/application_helper.rb:468 +#: ../app/helpers/application_helper/title.rb:58 msgid ": PXE" msgstr "" -#: ../app/helpers/application_helper.rb:454 +#: ../app/helpers/application_helper/title.rb:78 +msgid ": Playbooks (Ansible Tower)" +msgstr "" + +#: ../app/helpers/application_helper/title.rb:44 msgid ": Policy Simulation" msgstr "" -#: ../app/helpers/application_helper.rb:460 +#: ../app/helpers/application_helper/title.rb:50 msgid ": RSS" msgstr "" -#: ../app/helpers/application_helper.rb:485 -msgid ": Requests" +#: ../app/helpers/application_helper/title.rb:82 +msgid ": Repositories" msgstr "" -#: ../app/helpers/application_helper.rb:448 -msgid ": Servers" +#: ../app/helpers/application_helper/title.rb:76 +msgid ": Requests" msgstr "" -#: ../app/helpers/application_helper.rb:488 -msgid ": Storage - %{tables}" +#: ../app/helpers/application_helper/title.rb:38 +msgid ": Servers" msgstr "" -#: ../app/helpers/application_helper.rb:462 +#: ../app/helpers/application_helper/title.rb:52 msgid ": Storage - Storage Managers" msgstr "" -#: ../app/helpers/application_helper.rb:450 +#: ../app/helpers/application_helper/title.rb:40 msgid ": VM Usage" msgstr "" -#: ../app/helpers/application_helper.rb:474 +#: ../app/helpers/application_helper/title.rb:64 msgid ": Virtual Machines" msgstr "" -#: ../app/helpers/application_helper.rb:476 +#: ../app/helpers/application_helper/title.rb:66 msgid ": Workloads" msgstr "" @@ -2046,19 +2046,19 @@ msgstr "" msgid "" msgstr "" -#: ../app/views/ops/_rbac_user_details.html.haml:180 +#: ../app/views/ops/_rbac_user_details.html.haml:179 msgid "" msgstr "" -#: ../app/controllers/ops_controller/ops_rbac.rb:1089 ../app/controllers/ops_controller/ops_rbac.rb:1090 ../app/controllers/ops_controller/ops_rbac.rb:1091 +#: ../app/controllers/ops_controller/ops_rbac.rb:1150 ../app/controllers/ops_controller/ops_rbac.rb:1151 ../app/controllers/ops_controller/ops_rbac.rb:1152 msgid "" msgstr "" -#: ../app/views/ops/_ldap_region_form.html.haml:60 ../app/views/ops/_diagnostics_database_tab.html.haml:114 ../app/views/layouts/_edit_to_email.html.haml:59 ../app/views/layouts/_adv_search_body.html.haml:54 +#: ../app/views/ops/_diagnostics_database_tab.html.haml:114 ../app/views/ops/_ldap_region_form.html.haml:60 ../app/views/layouts/_edit_to_email.html.haml:59 ../app/views/layouts/_adv_search_body.html.haml:54 msgid "" msgstr "" -#: ../app/views/ops/_ldap_server_entry.html.haml:98 +#: ../app/views/ops/_ldap_server_entry.html.haml:97 msgid "" msgstr "" @@ -2078,11 +2078,11 @@ msgstr "" msgid "" msgstr "" -#: ../app/views/ops/_ap_form_nteventlog.html.haml:31 ../app/views/ops/_ap_form_nteventlog.html.haml:33 ../app/views/ops/_ap_form_nteventlog.html.haml:35 ../app/views/ops/_ap_form_nteventlog.html.haml:37 ../app/views/ops/_ap_form_nteventlog.html.haml:39 ../app/views/ops/_ap_form_registry.html.haml:28 ../app/views/ops/_ap_form_registry.html.haml:30 ../app/views/ops/_ap_form_registry.html.haml:32 ../app/views/ops/_classification_entry.html.haml:69 ../app/views/ops/_ap_form_file.html.haml:25 +#: ../app/views/ops/_ap_form_registry.html.haml:28 ../app/views/ops/_ap_form_registry.html.haml:30 ../app/views/ops/_ap_form_registry.html.haml:32 ../app/views/ops/_ap_form_file.html.haml:25 ../app/views/ops/_classification_entry.html.haml:69 ../app/views/ops/_ap_form_nteventlog.html.haml:31 ../app/views/ops/_ap_form_nteventlog.html.haml:33 ../app/views/ops/_ap_form_nteventlog.html.haml:35 ../app/views/ops/_ap_form_nteventlog.html.haml:37 ../app/views/ops/_ap_form_nteventlog.html.haml:39 msgid "" msgstr "" -#: ../app/views/ops/_ldap_server_entry.html.haml:93 +#: ../app/views/ops/_ldap_server_entry.html.haml:92 msgid "" msgstr "" @@ -2098,7 +2098,7 @@ msgstr "" msgid "" msgstr "" -#: ../app/controllers/application_controller.rb:1342 +#: ../app/controllers/application_controller.rb:1349 msgid "" msgstr "" @@ -2122,11 +2122,11 @@ msgstr "" msgid "" msgstr "" -#: ../app/helpers/textual_summary_helper.rb:174 +#: ../app/helpers/textual_summary_helper.rb:188 msgid "" msgstr "" -#: ../app/helpers/container_service_helper/textual_summary.rb:22 ../app/helpers/container_service_helper/textual_summary.rb:59 +#: ../app/helpers/container_service_helper/textual_summary.rb:18 ../app/helpers/container_service_helper/textual_summary.rb:59 msgid "" msgstr "" @@ -2138,7 +2138,7 @@ msgstr "" msgid "A Driving Event must be selected" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1620 +#: ../app/controllers/report_controller/reports/editor.rb:1635 msgid "A Group by Tag must be selected" msgstr "" @@ -2146,31 +2146,35 @@ msgstr "" msgid "A Red Hat subscription that covers your product" msgstr "" -#: ../app/controllers/report_controller/schedules.rb:239 ../app/controllers/report_controller/widgets.rb:631 +#: ../app/controllers/report_controller/widgets.rb:631 ../app/controllers/report_controller/schedules.rb:239 msgid "A Report must be selected" msgstr "" -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:87 ../app/controllers/report_controller/reports/editor.rb:1609 +#: ../app/controllers/miq_policy_controller/alert_profiles.rb:87 ../app/controllers/report_controller/reports/editor.rb:1624 msgid "A Tag Category must be selected" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1611 +#: ../app/controllers/report_controller/reports/editor.rb:1626 msgid "A Tag must be selected" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1606 +#: ../app/controllers/report_controller/reports/editor.rb:1621 msgid "A Tenant Category must be selected" msgstr "" -#: ../app/controllers/ops_controller/ops_rbac.rb:1274 +#: ../app/controllers/ops_controller/ops_rbac.rb:1330 msgid "A User Group must be assigned a Role" msgstr "" -#: ../app/controllers/ops_controller/ops_rbac.rb:1003 +#: ../app/controllers/ops_controller/ops_rbac.rb:1035 msgid "A User must be assigned to a Group" msgstr "" -#: ../app/controllers/application_controller/filter.rb:850 +#: ../app/controllers/ops_controller/ops_rbac.rb:1038 +msgid "A User must be assigned to an allowed Group" +msgstr "" + +#: ../app/controllers/application_controller/filter.rb:848 msgid "A check field must be chosen to commit this expression element" msgstr "" @@ -2178,63 +2182,63 @@ msgstr "" msgid "A condition must contain a valid expression." msgstr "" -#: ../app/controllers/application_controller/filter.rb:774 +#: ../app/controllers/application_controller/filter.rb:772 msgid "A field must be chosen to commit this expression element" msgstr "" -#: ../app/controllers/application_controller/filter.rb:847 +#: ../app/controllers/application_controller/filter.rb:845 msgid "A find field must be chosen to commit this expression element" msgstr "" -#: ../app/controllers/application_controller/filter.rb:827 +#: ../app/controllers/application_controller/filter.rb:825 msgid "A registry key name must be entered to commit this expression element" msgstr "" -#: ../app/controllers/application_controller/filter.rb:829 +#: ../app/controllers/application_controller/filter.rb:827 msgid "A registry value name must be entered to commit this expression element" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:681 +#: ../app/controllers/ops_controller/settings/schedules.rb:676 msgid "A single Cluster" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:675 +#: ../app/controllers/ops_controller/settings/schedules.rb:670 msgid "A single Container Image" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:690 +#: ../app/controllers/ops_controller/settings/schedules.rb:685 msgid "A single Datastore" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:666 +#: ../app/controllers/ops_controller/settings/schedules.rb:661 msgid "A single Host" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:657 +#: ../app/controllers/ops_controller/settings/schedules.rb:652 msgid "A single Template" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:647 +#: ../app/controllers/ops_controller/settings/schedules.rb:642 msgid "A single VM" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1615 +#: ../app/controllers/report_controller/reports/editor.rb:1630 msgid "A specific %{chargeback} or all must be selected" msgstr "" -#: ../app/controllers/application_controller/filter.rb:813 +#: ../app/controllers/application_controller/filter.rb:811 msgid "A tag category must be chosen to commit this expression element" msgstr "" -#: ../app/controllers/application_controller/filter.rb:815 +#: ../app/controllers/application_controller/filter.rb:813 msgid "A tag value must be chosen to commit this expression element" msgstr "" -#: ../app/controllers/miq_policy_controller/conditions.rb:52 ../app/controllers/miq_policy_controller/alerts.rb:545 +#: ../app/controllers/miq_policy_controller/alerts.rb:545 ../app/controllers/miq_policy_controller/conditions.rb:52 msgid "A valid expression must be present" msgstr "" -#: ../app/controllers/ems_infra_controller.rb:211 +#: ../app/controllers/ems_infra_controller.rb:212 msgid "A value must be changed or provider stack will not be updated." msgstr "" @@ -2258,7 +2262,7 @@ msgstr "" msgid "A4 - 210mm x 297mm (default)" msgstr "" -#: ../app/controllers/application_controller/filter.rb:992 ../app/views/miq_capacity/_bottlenecks_options.html.haml:20 ../app/views/miq_request/_prov_field.html.haml:31 +#: ../app/controllers/application_controller/filter.rb:994 ../app/views/miq_capacity/_bottlenecks_options.html.haml:20 ../app/views/miq_request/_prov_field.html.haml:31 msgid "ALL" msgstr "" @@ -2270,31 +2274,31 @@ msgstr "" msgid "AM:" msgstr "" -#: ../app/helpers/textual_summary_helper.rb:169 ../app/views/layouts/_multi_auth_credentials.html.haml:25 +#: ../app/helpers/textual_summary_helper.rb:183 ../app/views/layouts/_multi_auth_credentials.html.haml:25 msgid "AMQP" msgstr "" -#: ../app/views/layouts/_exp_editor.html.haml:68 ../app/views/layouts/_exp_editor.html.haml:94 +#: ../app/views/layouts/_exp_editor.html.haml:58 ../app/views/layouts/_exp_editor.html.haml:94 msgid "AND with a new expression element" msgstr "" -#: ../app/helpers/ems_cinder_helper/textual_summary.rb:48 ../app/helpers/ems_infra_helper/textual_summary.rb:45 ../app/helpers/ems_cloud_helper/textual_summary.rb:68 ../app/helpers/ems_storage_helper/textual_summary.rb:48 ../app/helpers/ems_swift_helper/textual_summary.rb:48 ../app/helpers/ems_network_helper/textual_summary.rb:51 ../app/views/shared/views/ems_common/_form.html.haml:62 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:57 +#: ../app/helpers/ems_swift_helper/textual_summary.rb:49 ../app/helpers/ems_network_helper/textual_summary.rb:58 ../app/helpers/ems_cloud_helper/textual_summary.rb:73 ../app/helpers/ems_infra_helper/textual_summary.rb:55 ../app/helpers/ems_cinder_helper/textual_summary.rb:48 ../app/helpers/ems_physical_infra_helper/textual_summary.rb:53 ../app/helpers/ems_storage_helper/textual_summary.rb:51 ../app/views/shared/views/ems_common/_form.html.haml:62 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:58 msgid "API Port" msgstr "" -#: ../app/views/shared/views/ems_common/_form.html.haml:79 ../app/views/shared/views/ems_common/angular/_form.html.haml:182 ../app/views/shared/views/ems_common/angular/_form.html.haml:201 ../app/views/shared/views/ems_common/angular/_form.html.haml:258 ../app/views/ems_infra/_form.html.haml:74 +#: ../app/views/shared/views/ems_common/angular/_form.html.haml:182 ../app/views/shared/views/ems_common/angular/_form.html.haml:201 ../app/views/shared/views/ems_common/angular/_form.html.haml:258 ../app/views/shared/views/ems_common/_form.html.haml:79 ../app/views/ems_infra/_form.html.haml:74 msgid "API Version" msgstr "" -#: ../app/controllers/application_controller.rb:1189 +#: ../app/controllers/application_controller.rb:1196 msgid "ATAPI CD-ROM (IDE %{location})%{connection}" msgstr "" -#: ../app/assets/javascripts/miq_application.js:297 ../app/assets/javascripts/miq_application.js:307 +#: ../app/assets/javascripts/miq_application.js:299 ../app/assets/javascripts/miq_application.js:309 msgid "Abandon changes?" msgstr "" -#: ../app/helpers/ui_constants.rb:414 +#: ../app/helpers/ui_constants.rb:411 msgid "Aborting" msgstr "" @@ -2302,27 +2306,27 @@ msgstr "" msgid "About" msgstr "" -#: ../app/views/ops/_settings_replication_tab.html.haml:208 ../app/views/ops/_settings_replication_tab.html.haml:420 +#: ../app/views/ops/_settings_replication_tab.html.haml:136 ../app/views/ops/_settings_replication_tab.html.haml:317 msgid "Accept" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:238 +#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:108 ../app/helpers/application_helper/toolbar/x_vm_center.rb:247 msgid "Access" msgstr "" -#: ../app/controllers/ops_controller.rb:208 +#: ../app/controllers/ops_controller.rb:237 msgid "Access Control" msgstr "" -#: ../app/controllers/ops_controller/ops_rbac.rb:868 ../app/controllers/ops_controller/ops_rbac.rb:871 ../app/controllers/ops_controller/ops_rbac.rb:874 ../app/controllers/ops_controller/ops_rbac.rb:877 +#: ../app/controllers/ops_controller/ops_rbac.rb:873 ../app/controllers/ops_controller/ops_rbac.rb:876 ../app/controllers/ops_controller/ops_rbac.rb:879 ../app/controllers/ops_controller/ops_rbac.rb:882 msgid "Access Control %{model}" msgstr "" -#: ../app/controllers/ops_controller/ops_rbac.rb:894 +#: ../app/controllers/ops_controller/ops_rbac.rb:900 msgid "Access Control %{model} \"%{name}\"" msgstr "" -#: ../app/controllers/ops_controller.rb:448 +#: ../app/controllers/ops_controller.rb:487 msgid "Access Control %{text}" msgstr "" @@ -2330,15 +2334,15 @@ msgstr "" msgid "Access Key" msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 ../app/views/layouts/_multi_auth_credentials.html.haml:44 ../app/views/layouts/_multi_auth_credentials.html.haml:66 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:72 ../app/views/layouts/_multi_auth_credentials.html.haml:44 ../app/views/layouts/_multi_auth_credentials.html.haml:66 msgid "Access Key ID" msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:72 msgid "Access Key ID and matching Secret Access Key fields are needed to perform verification of credentials" msgstr "" -#: ../app/views/ops/_rbac_role_details.html.haml:49 +#: ../app/views/ops/_rbac_role_details.html.haml:48 msgid "Access Restriction for Services, VMs, and Templates" msgstr "" @@ -2362,11 +2366,23 @@ msgstr "" msgid "Account Policies" msgstr "" -#: ../app/views/shared/buttons/_ab_form.html.haml:27 ../app/views/catalog/_form_resources_info.html.haml:55 ../app/views/catalog/_sandt_tree_show.html.haml:261 ../app/views/catalog/_sandt_tree_show.html.haml:262 ../app/views/ops/_schedule_form.html.haml:86 ../app/views/ops/_schedule_show.html.haml:29 +#: ../app/views/static/edit_alert_dialog.html.haml:67 ../app/assets/javascripts/services/alerts_center_service.js:285 +msgid "Acknowledge" +msgstr "" + +#: ../app/assets/javascripts/services/alerts_center_service.js:803 +msgid "Acknowledge Alert" +msgstr "" + +#: ../app/assets/javascripts/services/alerts_center_service.js:112 ../app/assets/javascripts/services/alerts_center_service.js:115 ../app/assets/javascripts/services/alerts_center_service.js:178 ../app/assets/javascripts/services/alerts_center_service.js:277 ../app/assets/javascripts/controllers/alerts/alerts_list_controller.js:34 ../app/assets/javascripts/controllers/alerts/alerts_most_recent_controller.js:32 +msgid "Acknowledged" +msgstr "" + +#: ../app/presenters/tree_builder_policy_simulation_results.rb:76 ../app/views/ops/_schedule_show.html.haml:29 ../app/views/ops/_schedule_form.html.haml:86 ../app/views/shared/buttons/_ab_form.html.haml:27 ../app/views/shared/views/_alerts_list.html.haml:169 ../app/views/catalog/_form_resources_info.html.haml:55 ../app/views/catalog/_sandt_tree_show.html.haml:277 ../app/views/catalog/_sandt_tree_show.html.haml:278 msgid "Action" msgstr "" -#: ../app/views/catalog/_form_resources_info.html.haml:55 ../app/views/catalog/_sandt_tree_show.html.haml:261 +#: ../app/views/catalog/_form_resources_info.html.haml:55 ../app/views/catalog/_sandt_tree_show.html.haml:277 msgid "Action Order" msgstr "" @@ -2374,23 +2390,23 @@ msgstr "" msgid "Action Type" msgstr "" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:371 +#: ../app/controllers/miq_policy_controller/miq_actions.rb:367 msgid "Action Type must be selected" msgstr "" -#: ../app/controllers/application_controller.rb:119 +#: ../app/controllers/application_controller.rb:115 msgid "Action not implemented" msgstr "" -#: ../app/controllers/miq_policy_controller.rb:1106 ../app/views/miq_policy/_policy_details.html.haml:319 ../app/views/chargeback/_cb_rate_edit_table.html.haml:20 ../app/views/vm_common/_reconfigure.html.haml:217 ../app/views/ops/_settings_replication_tab.html.haml:148 ../app/views/ops/_ap_form_nteventlog.html.haml:22 ../app/views/ops/_ap_form_registry.html.haml:18 ../app/views/ops/_settings_co_categories_tab.html.haml:22 ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:16 ../app/views/ops/_classification_entries.html.haml:17 ../app/views/ops/_ap_form_file.html.haml:16 +#: ../app/controllers/miq_policy_controller.rb:1109 ../app/views/miq_policy/_policy_details.html.haml:319 ../app/views/vm_common/_reconfigure.html.haml:217 ../app/views/ops/_ap_form_registry.html.haml:18 ../app/views/ops/_ap_form_file.html.haml:16 ../app/views/ops/_classification_entries.html.haml:17 ../app/views/ops/_settings_co_categories_tab.html.haml:22 ../app/views/ops/_settings_replication_tab.html.haml:76 ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:16 ../app/views/ops/_ap_form_nteventlog.html.haml:22 ../app/views/chargeback/_cb_rate_edit_table.html.haml:20 ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:279 msgid "Actions" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:585 +#: ../app/helpers/application_helper/button/miq_action_delete.rb:5 msgid "Actions assigned to Policies can not be deleted" msgstr "" -#: ../app/controllers/miq_policy_controller/events.rb:37 +#: ../app/controllers/miq_policy_controller/events.rb:43 msgid "Actions for Policy Event \"%{events}\" were saved" msgstr "" @@ -2398,10 +2414,14 @@ msgstr "" msgid "Activate the %{server_role_description} Role on another Server to suspend it on %{server_name} [%{server_id}]" msgstr "" -#: ../app/helpers/ui_constants.rb:418 ../app/views/miq_policy/_alert_details.html.haml:43 ../app/views/miq_policy/_policy_details.html.haml:49 ../app/views/miq_policy/_policy_details.html.haml:66 ../app/views/ops/_schedule_form.html.haml:70 ../app/views/ops/_schedule_show.html.haml:19 ../app/views/report/_schedule_form.html.haml:51 ../app/views/report/_widget_form.html.haml:54 ../app/views/report/_report_info.html.haml:134 ../app/views/report/_show_schedule.html.haml:19 ../app/views/report/_widget_show.html.haml:42 +#: ../app/helpers/ui_constants.rb:415 ../app/views/miq_policy/_alert_details.html.haml:43 ../app/views/miq_policy/_policy_details.html.haml:49 ../app/views/miq_policy/_policy_details.html.haml:66 ../app/views/ops/_schedule_show.html.haml:19 ../app/views/ops/_schedule_form.html.haml:70 ../app/views/report/_show_schedule.html.haml:19 ../app/views/report/_widget_form.html.haml:54 ../app/views/report/_schedule_form.html.haml:51 ../app/views/report/_widget_show.html.haml:42 ../app/views/report/_report_info.html.haml:134 msgid "Active" msgstr "" +#: ../app/presenters/tree_builder_services.rb:26 ../app/presenters/tree_builder_services.rb:29 ../app/controllers/service_controller.rb:226 +msgid "Active Services" +msgstr "" + #: ../app/controllers/miq_capacity_controller.rb:658 msgid "Activity" msgstr "" @@ -2410,7 +2430,7 @@ msgstr "" msgid "Ad hoc Metrics" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:6 ../app/helpers/application_helper/toolbar/dialog_center.rb:38 ../app/views/host_aggregate/add_host_select.html.haml:40 ../app/views/host_aggregate/new.html.haml:85 ../app/views/static/buttons.html.haml:3 ../app/views/static/buttons.html.haml:4 ../app/views/static/buttons.html.haml:13 ../app/views/static/buttons.html.haml:14 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:451 ../app/views/chargeback/_cb_rate_edit_table.html.haml:85 ../app/views/chargeback/_tier_first_row.haml:46 ../app/views/shared/views/ems_common/_form.html.haml:181 ../app/views/cloud_volume/new.html.haml:86 ../app/views/vm_common/_add_to_service.html.haml:49 ../app/views/ops/_ap_form_nteventlog.html.haml:45 ../app/views/ops/_ap_form_registry.html.haml:38 ../app/views/ops/_settings_co_categories_tab.html.haml:49 ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:34 ../app/views/ops/_classification_entry.html.haml:25 ../app/views/ops/_classification_entry.html.haml:78 ../app/views/ops/_ap_form_file.html.haml:33 ../app/views/storage_manager/_form.html.haml:240 ../app/views/layouts/_edit_to_email.html.haml:92 ../app/views/layouts/_x_edit_buttons.html.haml:46 ../app/views/layouts/_x_edit_buttons.html.haml:141 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:3 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:3 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:3 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:11 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:11 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:11 ../app/views/layouts/_edit_buttons.html.haml:15 ../app/views/layouts/_edit_buttons.html.haml:15 ../app/views/layouts/_edit_buttons.html.haml:52 ../app/views/layouts/_edit_buttons.html.haml:52 ../app/assets/javascripts/controllers/buttons/button_group_controller.js:5 ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:3 +#: ../app/helpers/application_helper/toolbar/dialog_center.rb:38 ../app/helpers/application_helper/toolbar/x_edit_view.rb:6 ../app/views/vm_common/_add_to_service.html.haml:49 ../app/views/host_aggregate/add_host_select.html.haml:32 ../app/views/host_aggregate/new.html.haml:85 ../app/views/ops/_ap_form_registry.html.haml:38 ../app/views/ops/_ap_form_file.html.haml:33 ../app/views/ops/_settings_co_categories_tab.html.haml:49 ../app/views/ops/_classification_entry.html.haml:25 ../app/views/ops/_classification_entry.html.haml:78 ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:34 ../app/views/ops/_ap_form_nteventlog.html.haml:45 ../app/views/cloud_volume/new.html.haml:230 ../app/views/storage_manager/_form.html.haml:240 ../app/views/shared/views/ems_common/_form.html.haml:180 ../app/views/chargeback/_tier_first_row.haml:46 ../app/views/chargeback/_cb_rate_edit_table.html.haml:85 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:451 ../app/views/layouts/_edit_to_email.html.haml:92 ../app/views/layouts/_edit_buttons.html.haml:15 ../app/views/layouts/_edit_buttons.html.haml:15 ../app/views/layouts/_edit_buttons.html.haml:52 ../app/views/layouts/_edit_buttons.html.haml:52 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:5 ../app/views/layouts/angular/_generic_form_buttons.html.haml:5 ../app/views/layouts/_x_edit_buttons.html.haml:46 ../app/views/layouts/_x_edit_buttons.html.haml:141 ../app/views/middleware_server/_add_datasource_step3.html.haml:165 ../app/views/network_router/add_interface_select.html.haml:32 ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:3 msgid "Add" msgstr "" @@ -2426,7 +2446,7 @@ msgstr "" msgid "Add Button" msgstr "" -#: ../app/helpers/container_helper/textual_summary.rb:71 +#: ../app/helpers/container_helper/textual_summary.rb:81 msgid "Add Capabilities" msgstr "" @@ -2434,7 +2454,7 @@ msgstr "" msgid "Add Datasource" msgstr "" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:144 +#: ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:95 ../app/helpers/application_helper/toolbar/middleware_server_center.rb:144 msgid "Add Deployment" msgstr "" @@ -2450,6 +2470,10 @@ msgstr "" msgid "Add Existing Containers Provider" msgstr "" +#: ../app/views/ems_container/ad_hoc/_list_view_form.html.haml:34 +msgid "Add Filter" +msgstr "" + #: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:318 msgid "Add Host" msgstr "" @@ -2458,19 +2482,19 @@ msgstr "" msgid "Add Host Analysis Profile" msgstr "" -#: ../app/controllers/host_aggregate_controller.rb:425 +#: ../app/controllers/host_aggregate_controller.rb:414 msgid "Add Host not supported by %{model} \"%{name}\"" msgstr "" -#: ../app/controllers/host_aggregate_controller.rb:385 +#: ../app/controllers/host_aggregate_controller.rb:374 msgid "Add Host to %{model} \"%{name}\"" msgstr "" -#: ../app/controllers/host_aggregate_controller.rb:411 +#: ../app/controllers/host_aggregate_controller.rb:400 msgid "Add Host to %{model} \"%{name}\" failed: Task start failed: ID [%{id}]" msgstr "" -#: ../app/controllers/host_aggregate_controller.rb:398 +#: ../app/controllers/host_aggregate_controller.rb:387 msgid "Add Host to %{model} \"%{name}\" was cancelled by the user" msgstr "" @@ -2478,19 +2502,47 @@ msgstr "" msgid "Add Host to Host Aggregate" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:27 +#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:28 msgid "Add Host to Selected Host Aggregate" msgstr "" +#: ../app/controllers/network_router_controller.rb:283 +msgid "Add Interface not supported by Router \"%{name}\"" +msgstr "" + +#: ../app/controllers/network_router_controller.rb:270 +msgid "Add Interface on Subnet to Router \"%{name}\" failed: Task start failed: ID [%{id}]" +msgstr "" + +#: ../app/controllers/network_router_controller.rb:258 +msgid "Add Interface on Subnet to Router \"%{name}\" was cancelled by the user" +msgstr "" + +#: ../app/views/network_router/add_interface_select.html.haml:7 +msgid "Add Interface to Router" +msgstr "" + +#: ../app/controllers/network_router_controller.rb:246 +msgid "Add Interface to Router \"%{name}\"" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/network_routers_center.rb:31 +msgid "Add Interface to selected Router" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/network_router_center.rb:21 +msgid "Add Interface to this Router" +msgstr "" + #: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:164 ../app/views/middleware_server/_add_jdbc_driver.html.haml:35 msgid "Add JDBC Driver" msgstr "" -#: ../app/views/middleware_server/_deploy.html.haml:36 +#: ../app/views/middleware_shared/_deploy.html.haml:36 msgid "Add Middleware Deployment" msgstr "" -#: ../app/controllers/cloud_tenant_controller.rb:71 ../app/controllers/auth_key_pair_cloud_controller.rb:91 ../app/controllers/auth_key_pair_cloud_controller.rb:134 ../app/controllers/cloud_volume_controller.rb:246 ../app/controllers/cloud_volume_controller.rb:283 +#: ../app/controllers/cloud_volume_controller.rb:283 ../app/controllers/cloud_volume_controller.rb:313 ../app/controllers/auth_key_pair_cloud_controller.rb:91 ../app/controllers/auth_key_pair_cloud_controller.rb:127 msgid "Add New %{model}" msgstr "" @@ -2498,7 +2550,7 @@ msgstr "" msgid "Add New %{tables}" msgstr "" -#: ../app/controllers/ems_common.rb:168 ../app/controllers/ems_common.rb:202 +#: ../app/controllers/ems_common.rb:111 ../app/controllers/ems_common.rb:145 msgid "Add New %{table}" msgstr "" @@ -2510,27 +2562,47 @@ msgstr "" msgid "Add New Cloud Network " msgstr "" -#: ../app/controllers/host_controller.rb:258 ../app/controllers/host_controller.rb:285 +#: ../app/controllers/cloud_tenant_controller.rb:72 +msgid "Add New Cloud Tenant" +msgstr "" + +#: ../app/controllers/floating_ip_controller.rb:185 +msgid "Add New Floating IP" +msgstr "" + +#: ../app/controllers/host_controller.rb:210 ../app/controllers/host_controller.rb:237 msgid "Add New Host" msgstr "" -#: ../app/controllers/network_router_controller.rb:69 +#: ../app/controllers/network_router_controller.rb:73 msgid "Add New Router" msgstr "" -#: ../app/controllers/storage_manager_controller.rb:56 ../app/controllers/storage_manager_controller.rb:93 +#: ../app/controllers/security_group_controller.rb:179 +msgid "Add New Security Group" +msgstr "" + +#: ../app/controllers/security_group_controller.rb:88 +msgid "Add New Security Group " +msgstr "" + +#: ../app/controllers/storage_manager_controller.rb:57 ../app/controllers/storage_manager_controller.rb:94 msgid "Add New Storage Manager" msgstr "" -#: ../app/controllers/cloud_subnet_controller.rb:67 +#: ../app/controllers/cloud_subnet_controller.rb:88 msgid "Add New Subnet" msgstr "" +#: ../app/assets/javascripts/services/alerts_center_service.js:291 ../app/assets/javascripts/services/alerts_center_service.js:815 +msgid "Add Note" +msgstr "" + #: ../app/helpers/application_helper/toolbar/tenant_center.rb:20 msgid "Add Project to this Tenant" msgstr "" -#: ../app/views/ops/_settings_replication_tab.html.haml:123 +#: ../app/views/ops/_settings_replication_tab.html.haml:51 msgid "Add Subscription" msgstr "" @@ -2538,7 +2610,7 @@ msgstr "" msgid "Add VM" msgstr "" -#: ../app/controllers/vm_common.rb:843 +#: ../app/controllers/vm_common.rb:697 msgid "Add VM \"%{name}\" to a Service was cancelled by the user" msgstr "" @@ -2546,7 +2618,7 @@ msgstr "" msgid "Add VM Analysis Profile" msgstr "" -#: ../app/controllers/vm_common.rb:836 +#: ../app/controllers/vm_common.rb:690 msgid "Add VM to a Service" msgstr "" @@ -2574,7 +2646,7 @@ msgstr "" msgid "Add a New Catalog" msgstr "" -#: ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:17 +#: ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:18 msgid "Add a New Catalog Bundle" msgstr "" @@ -2586,7 +2658,7 @@ msgstr "" msgid "Add a New Class" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:29 +#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:30 msgid "Add a New Cloud Provider" msgstr "" @@ -2610,7 +2682,7 @@ msgstr "" msgid "Add a New ISO Datastore" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:29 +#: ../app/helpers/application_helper/toolbar/ems_physical_infras_center.rb:29 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:30 msgid "Add a New Infrastructure Provider" msgstr "" @@ -2654,7 +2726,7 @@ msgstr "" msgid "Add a New Volume" msgstr "" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:80 +#: ../app/helpers/application_helper/toolbar/hosts_center.rb:81 msgid "Add a New item" msgstr "" @@ -2682,15 +2754,19 @@ msgstr "" msgid "Add a new Arbitration Profile to this Cloud Provider" msgstr "" +#: ../app/controllers/automation_manager_controller.rb:457 +msgid "Add a new Automation Manager Provider" +msgstr "" + #: ../app/helpers/application_helper/toolbar/dialog_center.rb:52 msgid "Add a new Box to this Tab" msgstr "" -#: ../app/helpers/application_helper/toolbar/servicetemplate_center.rb:19 ../app/helpers/application_helper/toolbar/custom_button_set_center.rb:17 ../app/helpers/application_helper/toolbar/custom_buttons_center.rb:19 ../app/helpers/application_helper/toolbar/catalogitem_button_set_center.rb:18 ../app/helpers/application_helper/toolbar/catalogitem_buttons_center.rb:19 +#: ../app/helpers/application_helper/toolbar/custom_button_set_center.rb:18 ../app/helpers/application_helper/toolbar/catalogitem_buttons_center.rb:19 ../app/helpers/application_helper/toolbar/custom_buttons_center.rb:19 ../app/helpers/application_helper/toolbar/servicetemplate_center.rb:19 ../app/helpers/application_helper/toolbar/catalogitem_button_set_center.rb:18 msgid "Add a new Button" msgstr "" -#: ../app/helpers/application_helper/toolbar/servicetemplate_center.rb:12 ../app/helpers/application_helper/toolbar/custom_button_set_center.rb:12 ../app/helpers/application_helper/toolbar/catalogitem_button_set_center.rb:12 +#: ../app/helpers/application_helper/toolbar/custom_button_set_center.rb:12 ../app/helpers/application_helper/toolbar/servicetemplate_center.rb:12 ../app/helpers/application_helper/toolbar/catalogitem_button_set_center.rb:12 msgid "Add a new Button Group" msgstr "" @@ -2710,19 +2786,19 @@ msgstr "" msgid "Add a new Cloud Volume" msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:795 +#: ../app/controllers/provider_foreman_controller.rb:443 msgid "Add a new Configuration Management Provider" msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:899 -msgid "Add a new Configuration Manager Provider" -msgstr "" - #: ../app/helpers/application_helper/toolbar/miq_widget_sets_center.rb:12 msgid "Add a new Dashboard" msgstr "" -#: ../app/helpers/application_helper/toolbar/dialogs_center.rb:12 ../app/helpers/application_helper/toolbar/miq_dialogs_center.rb:12 +#: ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:94 +msgid "Add a new Deployment" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/miq_dialogs_center.rb:12 ../app/helpers/application_helper/toolbar/dialogs_center.rb:12 msgid "Add a new Dialog" msgstr "" @@ -2730,6 +2806,10 @@ msgstr "" msgid "Add a new Element to this Box" msgstr "" +#: ../app/helpers/application_helper/toolbar/floating_ips_center.rb:14 +msgid "Add a new Floating IP" +msgstr "" + #: ../app/helpers/application_helper/toolbar/miq_groups_center.rb:12 msgid "Add a new Group" msgstr "" @@ -2762,7 +2842,7 @@ msgstr "" msgid "Add a new Middleware JDBC Driver" msgstr "" -#: ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:24 +#: ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:24 ../app/helpers/application_helper/toolbar/automation_manager_providers_center.rb:25 ../app/controllers/mixins/manager_controller_mixin.rb:342 msgid "Add a new Provider" msgstr "" @@ -2782,6 +2862,10 @@ msgstr "" msgid "Add a new Schedule" msgstr "" +#: ../app/helpers/application_helper/toolbar/security_groups_center.rb:14 +msgid "Add a new Security Group" +msgstr "" + #: ../app/helpers/application_helper/toolbar/pxe_image_types_center.rb:12 msgid "Add a new System Image Type" msgstr "" @@ -2810,7 +2894,7 @@ msgstr "" msgid "Add a new Zone" msgstr "" -#: ../app/views/chargeback/_cb_rate_edit_table.html.haml:85 ../app/views/chargeback/_tier_first_row.haml:46 +#: ../app/views/chargeback/_tier_first_row.haml:46 ../app/views/chargeback/_cb_rate_edit_table.html.haml:85 msgid "Add a new tier" msgstr "" @@ -2822,11 +2906,11 @@ msgstr "" msgid "Add child Tenant to this Tenant" msgstr "" -#: ../app/controllers/report_controller.rb:745 +#: ../app/controllers/report_controller.rb:749 msgid "Add folder to selected Accordion" msgstr "" -#: ../app/controllers/configuration_controller.rb:289 +#: ../app/controllers/configuration_controller.rb:272 msgid "Add new Time Profile" msgstr "" @@ -2834,23 +2918,23 @@ msgstr "" msgid "Add of %{model} was cancelled by the user" msgstr "" -#: ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:45 -msgid "Add of Arbitration Profile was cancelled by the user" +#: ../app/controllers/mixins/manager_controller_mixin.rb:59 +msgid "Add of %{provider} was cancelled by the user" msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:200 -msgid "Add of Configuration Manager %{provider} was cancelled by the user" +#: ../app/assets/javascripts/controllers/catalog/catalog_item_form_controller.js:130 +msgid "Add of Catalog Item was cancelled by the user" msgstr "" #: ../app/controllers/application_controller/buttons.rb:307 ../app/controllers/application_controller/buttons.rb:428 msgid "Add of new %{model_name} was cancelled by the user" msgstr "" -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:10 ../app/controllers/miq_policy_controller/alerts.rb:11 ../app/controllers/miq_policy_controller/miq_actions.rb:13 ../app/controllers/miq_policy_controller/policies.rb:13 +#: ../app/controllers/miq_policy_controller/alerts.rb:11 ../app/controllers/miq_policy_controller/policy_profiles.rb:10 ../app/controllers/miq_policy_controller/miq_actions.rb:13 ../app/controllers/miq_policy_controller/policies.rb:13 msgid "Add of new %{models} was cancelled by the user" msgstr "" -#: ../app/controllers/pxe_controller/pxe_servers.rb:48 ../app/controllers/pxe_controller/iso_datastores.rb:43 ../app/controllers/pxe_controller/pxe_image_types.rb:31 ../app/controllers/pxe_controller/pxe_customization_templates.rb:103 ../app/controllers/catalog_controller.rb:92 ../app/controllers/catalog_controller.rb:561 ../app/controllers/cloud_tenant_controller.rb:81 ../app/controllers/host_controller.rb:266 ../app/controllers/miq_policy_controller/alert_profiles.rb:11 ../app/controllers/miq_policy_controller/conditions.rb:13 ../app/controllers/miq_ae_class_controller.rb:617 ../app/controllers/ops_controller/ops_rbac.rb:108 ../app/controllers/ops_controller/settings/tags.rb:41 ../app/controllers/ops_controller/settings/schedules.rb:48 ../app/controllers/ops_controller/settings/ldap.rb:37 ../app/controllers/ops_controller/settings/ldap.rb:154 ../app/controllers/ops_controller/settings/analysis_profiles.rb:228 ../app/controllers/ops_controller/settings/label_tag_mapping.rb:9 ../app/controllers/auth_key_pair_cloud_controller.rb:109 ../app/controllers/storage_manager_controller.rb:65 ../app/controllers/cloud_volume_controller.rb:256 ../app/controllers/miq_ae_customization_controller/dialogs.rb:196 ../app/controllers/report_controller/schedules.rb:225 ../app/controllers/report_controller/widgets.rb:47 ../app/controllers/report_controller/reports/editor.rb:44 ../app/controllers/chargeback_controller.rb:107 +#: ../app/controllers/miq_ae_class_controller.rb:617 ../app/controllers/miq_policy_controller/alert_profiles.rb:11 ../app/controllers/miq_policy_controller/conditions.rb:13 ../app/controllers/cloud_volume_controller.rb:293 ../app/controllers/catalog_controller.rb:92 ../app/controllers/catalog_controller.rb:568 ../app/controllers/chargeback_controller.rb:100 ../app/controllers/miq_ae_customization_controller/dialogs.rb:186 ../app/controllers/pxe_controller/pxe_image_types.rb:31 ../app/controllers/pxe_controller/iso_datastores.rb:43 ../app/controllers/pxe_controller/pxe_customization_templates.rb:96 ../app/controllers/pxe_controller/pxe_servers.rb:48 ../app/controllers/storage_manager_controller.rb:66 ../app/controllers/host_controller.rb:218 ../app/controllers/report_controller/reports/editor.rb:44 ../app/controllers/report_controller/widgets.rb:47 ../app/controllers/report_controller/schedules.rb:225 ../app/controllers/ops_controller/settings/analysis_profiles.rb:219 ../app/controllers/ops_controller/settings/tags.rb:41 ../app/controllers/ops_controller/settings/label_tag_mapping.rb:9 ../app/controllers/ops_controller/settings/schedules.rb:42 ../app/controllers/ops_controller/settings/ldap.rb:30 ../app/controllers/ops_controller/settings/ldap.rb:147 ../app/controllers/ops_controller/ops_rbac.rb:108 ../app/controllers/auth_key_pair_cloud_controller.rb:109 msgid "Add of new %{model} was cancelled by the user" msgstr "" @@ -2858,11 +2942,11 @@ msgstr "" msgid "Add of new %{name} was cancelled by the user" msgstr "" -#: ../app/views/shared/views/ems_common/_form.html.haml:188 +#: ../app/views/shared/views/ems_common/_form.html.haml:187 msgid "Add of new %{provider} was cancelled by the user" msgstr "" -#: ../app/controllers/miq_ae_class_controller.rb:1173 ../app/controllers/miq_ae_class_controller.rb:1206 ../app/controllers/miq_ae_class_controller.rb:1244 ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:245 +#: ../app/controllers/miq_ae_class_controller.rb:1173 ../app/controllers/miq_ae_class_controller.rb:1206 ../app/controllers/miq_ae_class_controller.rb:1244 ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:234 msgid "Add of new %{record} was cancelled by the user" msgstr "" @@ -2874,7 +2958,7 @@ msgstr "" msgid "Add of new %{type} Request was cancelled by the user" msgstr "" -#: ../app/controllers/catalog_controller.rb:301 +#: ../app/controllers/catalog_controller.rb:304 msgid "Add of new Catalog Bundle was cancelled by the user" msgstr "" @@ -2882,27 +2966,39 @@ msgstr "" msgid "Add of new Cloud Network was cancelled by the user" msgstr "" +#: ../app/controllers/cloud_tenant_controller.rb:82 +msgid "Add of new Cloud Tenenat was cancelled by the user" +msgstr "" + #: ../app/controllers/report_controller/dashboards.rb:60 msgid "Add of new Dashboard was cancelled by the user" msgstr "" -#: ../app/controllers/network_router_controller.rb:79 +#: ../app/controllers/floating_ip_controller.rb:58 +msgid "Add of new Floating IP was cancelled by the user" +msgstr "" + +#: ../app/controllers/network_router_controller.rb:83 msgid "Add of new Router was cancelled by the user" msgstr "" -#: ../app/controllers/report_controller.rb:756 ../app/views/report/_menu_form1.html.haml:45 -msgid "Add subfolder to selected folder" +#: ../app/controllers/security_group_controller.rb:68 +msgid "Add of new Security Group was cancelled by the user" msgstr "" -#: ../app/views/ems_container/_show_ad_hoc_metrics.html.haml:150 -msgid "Add tags and click the Apply button to view available metrics" +#: ../app/controllers/report_controller.rb:760 ../app/views/report/_menu_form1.html.haml:45 +msgid "Add subfolder to selected folder" msgstr "" #: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:42 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:42 msgid "Add tags individually for each VM or select multiple rows and edit tags as a group." msgstr "" -#: ../app/views/shared/views/ems_common/_form.html.haml:180 +#: ../app/views/ems_container/ad_hoc/_list_view_blank.html.haml:24 +msgid "Add tags to view available metrics" +msgstr "" + +#: ../app/views/shared/views/ems_common/_form.html.haml:179 msgid "Add this %{provider}" msgstr "" @@ -2930,7 +3026,7 @@ msgstr "" msgid "Add this Storage Manager" msgstr "" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:7 ../app/views/miq_ae_class/_inputs.html.haml:98 ../app/views/miq_ae_class/_class_fields.html.haml:160 ../app/views/ops/_ap_form_nteventlog.html.haml:99 ../app/views/ops/_ap_form_registry.html.haml:74 ../app/views/ops/_ldap_forest_entries.html.haml:63 ../app/views/ops/_ldap_forest_entries.html.haml:63 ../app/views/ops/_classification_entry.html.haml:18 ../app/views/ops/_ap_form_file.html.haml:55 +#: ../app/views/ops/_ap_form_registry.html.haml:74 ../app/views/ops/_ap_form_file.html.haml:55 ../app/views/ops/_classification_entry.html.haml:18 ../app/views/ops/_ap_form_nteventlog.html.haml:99 ../app/views/ops/_ldap_forest_entries.html.haml:63 ../app/views/ops/_ldap_forest_entries.html.haml:63 ../app/views/miq_ae_class/_inputs.html.haml:98 ../app/views/miq_ae_class/_class_fields.html.haml:160 ../app/views/miq_ae_customization/_field_value_entry.html.haml:7 msgid "Add this entry" msgstr "" @@ -2946,11 +3042,11 @@ msgstr "" msgid "Adding a new %{model_name} Policy" msgstr "" -#: ../app/controllers/pxe_controller.rb:150 ../app/controllers/pxe_controller.rb:178 +#: ../app/controllers/pxe_controller.rb:149 ../app/controllers/pxe_controller.rb:177 msgid "Adding a new %{models}" msgstr "" -#: ../app/controllers/ops_controller.rb:538 ../app/controllers/ops_controller.rb:566 ../app/controllers/ops_controller.rb:579 ../app/controllers/ops_controller.rb:590 ../app/controllers/ops_controller.rb:601 ../app/controllers/catalog_controller.rb:237 ../app/controllers/catalog_controller.rb:1160 ../app/controllers/catalog_controller.rb:1314 ../app/controllers/miq_ae_class_controller.rb:543 ../app/controllers/miq_ae_class_controller.rb:673 ../app/controllers/miq_ae_class_controller.rb:711 ../app/controllers/miq_ae_class_controller.rb:754 ../app/controllers/miq_ae_class_controller.rb:2389 ../app/controllers/miq_ae_customization_controller.rb:385 ../app/controllers/miq_ae_customization_controller.rb:392 ../app/controllers/miq_ae_customization_controller.rb:408 ../app/controllers/miq_ae_customization_controller.rb:447 ../app/controllers/pxe_controller.rb:132 ../app/controllers/pxe_controller.rb:164 ../app/controllers/miq_policy_controller.rb:625 ../app/controllers/report_controller.rb:699 ../app/controllers/report_controller.rb:707 ../app/controllers/report_controller.rb:716 ../app/controllers/report_controller.rb:731 +#: ../app/controllers/report_controller.rb:703 ../app/controllers/report_controller.rb:711 ../app/controllers/report_controller.rb:720 ../app/controllers/report_controller.rb:735 ../app/controllers/ops_controller.rb:577 ../app/controllers/ops_controller.rb:605 ../app/controllers/ops_controller.rb:618 ../app/controllers/ops_controller.rb:629 ../app/controllers/ops_controller.rb:640 ../app/controllers/pxe_controller.rb:131 ../app/controllers/pxe_controller.rb:163 ../app/controllers/miq_policy_controller.rb:625 ../app/controllers/miq_ae_class_controller.rb:543 ../app/controllers/miq_ae_class_controller.rb:673 ../app/controllers/miq_ae_class_controller.rb:711 ../app/controllers/miq_ae_class_controller.rb:754 ../app/controllers/miq_ae_class_controller.rb:2389 ../app/controllers/catalog_controller.rb:240 ../app/controllers/catalog_controller.rb:1173 ../app/controllers/catalog_controller.rb:1328 ../app/controllers/miq_ae_customization_controller.rb:399 ../app/controllers/miq_ae_customization_controller.rb:406 ../app/controllers/miq_ae_customization_controller.rb:422 ../app/controllers/miq_ae_customization_controller.rb:461 msgid "Adding a new %{model}" msgstr "" @@ -2962,51 +3058,51 @@ msgstr "" msgid "Adding a new %{record}" msgstr "" -#: ../app/controllers/vm_common.rb:1802 +#: ../app/controllers/vm_common.rb:1614 msgid "Adding a new %{snapshot}" msgstr "" -#: ../app/controllers/ops_controller.rb:643 +#: ../app/controllers/ops_controller.rb:682 msgid "Adding a new %{tenant}" msgstr "" -#: ../app/controllers/catalog_controller.rb:1853 +#: ../app/controllers/catalog_controller.rb:1909 msgid "Adding a new Button" msgstr "" -#: ../app/controllers/catalog_controller.rb:1859 +#: ../app/controllers/catalog_controller.rb:1915 msgid "Adding a new Button Group" msgstr "" -#: ../app/controllers/catalog_controller.rb:1365 +#: ../app/controllers/catalog_controller.rb:1379 msgid "Adding a new Catalog Bundle" msgstr "" -#: ../app/controllers/ops_controller.rb:550 +#: ../app/controllers/ops_controller.rb:589 msgid "Adding a new Category" msgstr "" -#: ../app/controllers/ops_controller.rb:558 +#: ../app/controllers/ops_controller.rb:597 msgid "Adding a new Mapping" msgstr "" -#: ../app/controllers/catalog_controller.rb:748 +#: ../app/controllers/catalog_controller.rb:755 msgid "Adding a new Orchestration Template" msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:1183 +#: ../app/controllers/automation_manager_controller.rb:542 msgid "Adding a new Service Dialog from \"%{name}\"" msgstr "" -#: ../app/controllers/catalog_controller.rb:784 +#: ../app/controllers/catalog_controller.rb:791 msgid "Adding a new Service Dialog from Orchestration Template \"%{name}\"" msgstr "" -#: ../app/controllers/report_controller.rb:685 +#: ../app/controllers/report_controller.rb:689 msgid "Adding a new dashboard" msgstr "" -#: ../app/controllers/configuration_controller.rb:380 +#: ../app/controllers/configuration_controller.rb:363 msgid "Adding copy of '%{description}'" msgstr "" @@ -3026,21 +3122,21 @@ msgstr "" msgid "Administrative State" msgstr "" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:149 ../app/views/ops/_all_tabs.html.haml:37 +#: ../app/views/ops/_all_tabs.html.haml:37 ../app/views/miq_ae_customization/_dialog_field_form.html.haml:171 msgid "Advanced" msgstr "" -#: ../app/views/layouts/_x_adv_searchbox.html.haml:53 ../app/views/layouts/_adv_search.html.haml:36 ../app/views/layouts/_searchbar.html.haml:55 +#: ../app/views/layouts/_adv_search.html.haml:36 ../app/views/layouts/_searchbar.html.haml:55 ../app/views/layouts/_x_adv_searchbox.html.haml:53 msgid "Advanced Search" msgstr "" -#: ../app/controllers/vm_common.rb:1616 +#: ../app/controllers/vm_common.rb:1424 msgid "Advanced Setting" msgid_plural "Advanced Settings" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/host_helper/textual_summary.rb:470 ../app/helpers/textual_mixins/textual_advanced_settings.rb:4 ../app/controllers/host_controller.rb:232 ../app/controllers/vm_common.rb:476 ../app/views/static/deploy_containers_provider/deploy-provider-review-summary.html.haml:17 ../app/views/layouts/listnav/_host.html.haml:236 +#: ../app/helpers/host_helper/textual_summary.rb:433 ../app/helpers/textual_mixins/textual_advanced_settings.rb:4 ../app/controllers/vm_common.rb:330 ../app/controllers/host_controller.rb:184 ../app/views/static/deploy_containers_provider/deploy-provider-review-summary.html.haml:17 ../app/views/layouts/listnav/_host.html.haml:205 msgid "Advanced Settings" msgstr "" @@ -3048,15 +3144,19 @@ msgstr "" msgid "Affected Items" msgstr "" -#: ../app/views/miq_request/_reconfigure_show.html.haml:111 ../app/views/vm_common/_reconfigure.html.haml:387 +#: ../app/views/vm_common/_reconfigure.html.haml:387 ../app/views/miq_request/_reconfigure_show.html.haml:111 msgid "Affected VMs" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:737 ../app/helpers/vm_cloud_helper/textual_summary.rb:256 +#: ../app/views/shared/views/_alerts_list.html.haml:80 +msgid "Age" +msgstr "" + +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:267 ../app/helpers/vm_helper/textual_summary.rb:728 msgid "Agent Address" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:742 ../app/helpers/vm_cloud_helper/textual_summary.rb:261 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:272 ../app/helpers/vm_helper/textual_summary.rb:733 msgid "Agent Port" msgstr "" @@ -3064,47 +3164,39 @@ msgstr "" msgid "Agent Type" msgstr "" -#: ../app/helpers/ems_infra_helper/textual_summary.rb:63 +#: ../app/helpers/ems_infra_helper/textual_summary.rb:73 msgid "Aggregate %{title} CPU Cores" msgstr "" -#: ../app/helpers/ems_infra_helper/textual_summary.rb:49 +#: ../app/helpers/ems_infra_helper/textual_summary.rb:59 msgid "Aggregate %{title} CPU Resources" msgstr "" -#: ../app/helpers/ems_infra_helper/textual_summary.rb:59 +#: ../app/helpers/ems_infra_helper/textual_summary.rb:69 msgid "Aggregate %{title} CPUs" msgstr "" -#: ../app/helpers/ems_infra_helper/textual_summary.rb:54 +#: ../app/helpers/ems_infra_helper/textual_summary.rb:64 msgid "Aggregate %{title} Memory" msgstr "" -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:26 -msgid "Aggregate (free space)" -msgstr "" - -#: ../app/helpers/ems_container_helper/textual_summary.rb:71 +#: ../app/helpers/ems_container_helper/textual_summary.rb:75 msgid "Aggregate Node CPU Cores" msgstr "" -#: ../app/helpers/ems_container_helper/textual_summary.rb:65 +#: ../app/helpers/ems_container_helper/textual_summary.rb:69 msgid "Aggregate Node Memory" msgstr "" -#: ../app/controllers/ontap_storage_system_controller.rb:109 -msgid "Aggregate is required" -msgstr "" - -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:105 +#: ../app/views/ems_container/_show_dashboard.html.haml:105 msgid "Aggregated Node Utilization" msgstr "" #: ../app/controllers/miq_policy_controller/alert_profiles.rb:95 -msgid "Alert Profile \"%{alert_profile}\" assignments succesfully saved" +msgid "Alert Profile \"%{alert_profile}\" assignments successfully saved" msgstr "" -#: ../app/controllers/miq_policy_controller.rb:1107 ../app/views/miq_policy/_alert_profile_folders.html.haml:24 +#: ../app/controllers/miq_policy_controller.rb:1110 ../app/views/miq_policy/_alert_profile_folders.html.haml:24 msgid "Alert Profiles" msgstr "" @@ -3112,15 +3204,15 @@ msgstr "" msgid "Alert Selection" msgstr "" -#: ../app/controllers/miq_policy_controller.rb:1108 ../app/views/miq_policy/_export.html.haml:107 ../app/views/miq_policy/_alert_profile_details.html.haml:39 +#: ../app/presenters/menu/default_menu.rb:269 ../app/controllers/miq_policy_controller.rb:1111 ../app/views/miq_policy/_alert_profile_details.html.haml:39 ../app/views/miq_policy/_export.html.haml:107 ../app/views/shared/views/_show_alerts_most_recent.html.haml:16 ../app/views/shared/views/_show_alerts_list.html.haml:16 ../app/views/shared/views/_show_alerts_overview.html.haml:14 msgid "Alerts" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:591 +#: ../app/helpers/application_helper/button/miq_alert_delete.rb:5 msgid "Alerts referenced by Actions can not be deleted" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:590 +#: ../app/helpers/application_helper/button/miq_alert_delete.rb:6 msgid "Alerts that belong to Alert Profiles can not be deleted" msgstr "" @@ -3128,7 +3220,7 @@ msgstr "" msgid "Alerts to Evaluate" msgstr "" -#: ../app/views/miq_capacity/_planning_options.html.haml:301 ../app/views/miq_request/_prov_options.html.haml:24 ../app/views/miq_request/_prov_options.html.haml:68 ../app/views/configuration/_timeprofile_form.html.haml:81 ../app/views/configuration/_timeprofile_form.html.haml:159 ../app/views/report/_form_sort.html.haml:206 ../app/views/report/_form_sort.html.haml:218 ../app/views/miq_task/_tasks_options.html.haml:143 ../app/views/layouts/gtl/_list.html.haml:85 +#: ../app/views/configuration/_timeprofile_form.html.haml:83 ../app/views/configuration/_timeprofile_form.html.haml:160 ../app/views/miq_task/_tasks_options.html.haml:155 ../app/views/miq_capacity/_planning_options.html.haml:301 ../app/views/miq_request/_prov_options.html.haml:24 ../app/views/miq_request/_prov_options.html.haml:68 ../app/views/report/_form_sort.html.haml:184 ../app/views/report/_form_sort.html.haml:196 ../app/views/layouts/gtl/_list.html.haml:85 msgid "All" msgstr "" @@ -3140,15 +3232,15 @@ msgstr "" msgid "All %{items}" msgstr "" -#: ../app/presenters/tree_builder_report_roles.rb:19 ../app/controllers/pxe_controller/pxe_servers.rb:478 ../app/controllers/pxe_controller/iso_datastores.rb:306 ../app/controllers/pxe_controller/pxe_image_types.rb:214 ../app/controllers/service_controller.rb:197 ../app/controllers/container_controller.rb:170 ../app/controllers/catalog_controller.rb:1681 ../app/controllers/catalog_controller.rb:1684 ../app/controllers/miq_policy_controller/policy_profiles.rb:146 ../app/controllers/miq_policy_controller/conditions.rb:225 ../app/controllers/miq_policy_controller/conditions.rb:233 ../app/controllers/ops_controller/db.rb:118 ../app/controllers/miq_ae_customization_controller/dialogs.rb:1386 ../app/controllers/storage_controller/storage_d.rb:56 ../app/controllers/vm_common.rb:1321 ../app/controllers/pxe_controller.rb:127 ../app/controllers/pxe_controller.rb:147 ../app/controllers/pxe_controller.rb:177 ../app/controllers/miq_policy_controller.rb:555 ../app/controllers/report_controller/dashboards.rb:232 ../app/controllers/report_controller/schedules.rb:52 ../app/controllers/report_controller/menus.rb:661 ../app/controllers/report_controller/widgets.rb:254 ../app/controllers/chargeback_controller.rb:393 ../app/controllers/report_controller.rb:488 +#: ../app/controllers/report_controller.rb:492 ../app/controllers/pxe_controller.rb:126 ../app/controllers/pxe_controller.rb:146 ../app/controllers/pxe_controller.rb:176 ../app/controllers/miq_policy_controller.rb:555 ../app/controllers/vm_common.rb:1132 ../app/controllers/miq_policy_controller/policy_profiles.rb:146 ../app/controllers/miq_policy_controller/conditions.rb:225 ../app/controllers/miq_policy_controller/conditions.rb:233 ../app/controllers/storage_controller/storage_d.rb:35 ../app/controllers/storage_controller/storage_d.rb:49 ../app/controllers/catalog_controller.rb:1695 ../app/controllers/catalog_controller.rb:1698 ../app/controllers/chargeback_controller.rb:389 ../app/controllers/miq_ae_customization_controller/dialogs.rb:1402 ../app/controllers/pxe_controller/pxe_image_types.rb:207 ../app/controllers/pxe_controller/iso_datastores.rb:299 ../app/controllers/pxe_controller/pxe_servers.rb:471 ../app/controllers/report_controller/menus.rb:661 ../app/controllers/report_controller/dashboards.rb:232 ../app/controllers/report_controller/widgets.rb:254 ../app/controllers/report_controller/schedules.rb:52 ../app/controllers/ops_controller/db.rb:110 msgid "All %{models}" msgstr "" -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:249 +#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:240 msgid "All %{model} - %{group}" msgstr "" -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:338 ../app/controllers/miq_policy_controller/alert_profiles.rb:346 +#: ../app/controllers/miq_policy_controller/alert_profiles.rb:352 ../app/controllers/miq_policy_controller/alert_profiles.rb:360 msgid "All %{records}" msgstr "" @@ -3156,79 +3248,79 @@ msgstr "" msgid "All %{reports}" msgstr "" -#: ../app/controllers/miq_policy_controller/events.rb:108 +#: ../app/controllers/miq_policy_controller/events.rb:114 msgid "All %{tables}" msgstr "" -#: ../app/presenters/tree_builder_pxe_customization_templates.rb:14 -msgid "All %{template} - %{type}" -msgstr "" - -#: ../app/controllers/ems_cluster_controller.rb:230 ../app/controllers/infra_networking_controller.rb:247 +#: ../app/controllers/ems_cluster_controller.rb:200 ../app/controllers/infra_networking_controller.rb:253 msgid "All %{titles} with %{name}" msgstr "" -#: ../app/controllers/vm_common.rb:1291 ../app/controllers/infra_networking_controller.rb:331 +#: ../app/controllers/vm_common.rb:1102 ../app/controllers/infra_networking_controller.rb:337 msgid "All %{title}" msgstr "" -#: ../app/controllers/infra_networking_controller.rb:393 +#: ../app/controllers/infra_networking_controller.rb:399 msgid "All %{title} " msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:684 ../app/controllers/provider_foreman_controller.rb:697 +#: ../app/controllers/mixins/manager_controller_mixin.rb:259 msgid "All %{title} Configured Systems" msgstr "" -#: ../app/controllers/storage_controller/storage_d.rb:42 -msgid "All %{title} Datastores" -msgstr "" - -#: ../app/controllers/provider_foreman_controller.rb:629 +#: ../app/controllers/mixins/manager_controller_mixin.rb:251 msgid "All %{title} Providers" msgstr "" -#: ../app/controllers/miq_policy_controller.rb:572 ../app/controllers/miq_policy_controller.rb:578 ../app/controllers/miq_policy_controller.rb:587 ../app/controllers/miq_policy_controller.rb:926 +#: ../app/controllers/miq_policy_controller.rb:572 ../app/controllers/miq_policy_controller.rb:578 ../app/controllers/miq_policy_controller.rb:587 ../app/controllers/miq_policy_controller.rb:929 msgid "All %{typ} %{model}" msgstr "" -#: ../app/controllers/miq_policy_controller.rb:940 +#: ../app/controllers/miq_policy_controller.rb:943 msgid "All %{typ} Alert Profiles" msgstr "" -#: ../app/controllers/miq_policy_controller.rb:934 +#: ../app/controllers/miq_policy_controller.rb:937 msgid "All %{typ} Conditions" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:71 ../app/helpers/host_helper/textual_summary.rb:94 +#: ../app/helpers/host_helper/textual_summary.rb:101 ../app/helpers/ems_cluster_helper/textual_summary.rb:82 msgid "All (%{number})" msgstr "" -#: ../app/presenters/tree_builder_action.rb:10 +#: ../app/presenters/tree_builder_action.rb:11 msgid "All Actions" msgstr "" -#: ../app/presenters/tree_builder_alert_profile.rb:21 +#: ../app/presenters/tree_builder_alert_profile.rb:22 msgid "All Alert Profiles" msgstr "" -#: ../app/presenters/tree_builder_alert.rb:10 +#: ../app/presenters/menu/default_menu.rb:271 ../app/presenters/tree_builder_alert.rb:11 ../app/views/shared/views/_show_alerts_list.html.haml:23 msgid "All Alerts" msgstr "" -#: ../app/presenters/tree_builder_configuration_manager_configuration_scripts.rb:17 ../app/controllers/provider_foreman_controller.rb:705 ../app/controllers/provider_foreman_controller.rb:728 +#: ../app/presenters/tree_builder_automation_manager_configured_systems.rb:17 ../app/controllers/automation_manager_controller.rb:392 +msgid "All Ansible Tower Configured Systems" +msgstr "" + +#: ../app/presenters/tree_builder_automation_manager_configuration_scripts.rb:18 ../app/controllers/automation_manager_controller.rb:373 ../app/controllers/automation_manager_controller.rb:396 msgid "All Ansible Tower Job Templates" msgstr "" -#: ../app/controllers/chargeback_controller.rb:50 ../app/controllers/chargeback_controller.rb:418 +#: ../app/presenters/tree_builder_automation_manager_providers.rb:18 ../app/controllers/automation_manager_controller.rb:388 +msgid "All Ansible Tower Providers" +msgstr "" + +#: ../app/controllers/chargeback_controller.rb:50 ../app/controllers/chargeback_controller.rb:414 msgid "All Assignments" msgstr "" -#: ../app/presenters/tree_builder_catalog_items.rb:17 +#: ../app/presenters/tree_builder_catalog_items.rb:18 msgid "All Catalog Items" msgstr "" -#: ../app/presenters/tree_builder_catalogs.rb:14 +#: ../app/presenters/tree_builder_catalogs.rb:15 msgid "All Catalogs" msgstr "" @@ -3236,51 +3328,55 @@ msgstr "" msgid "All Chargeback Rates" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:679 +#: ../app/controllers/ops_controller/settings/schedules.rb:674 msgid "All Clusters" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:680 +#: ../app/controllers/ops_controller/settings/schedules.rb:675 msgid "All Clusters for %{table}" msgstr "" -#: ../app/presenters/tree_builder_condition.rb:15 +#: ../app/presenters/tree_builder_condition.rb:16 msgid "All Conditions" msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:720 +#: ../app/controllers/provider_foreman_controller.rb:388 msgid "All Configuration Management Providers" msgstr "" -#: ../app/presenters/tree_builder_configuration_manager.rb:19 +#: ../app/presenters/tree_builder_configuration_manager.rb:18 msgid "All Configuration Manager Providers" msgstr "" -#: ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:16 ../app/controllers/provider_foreman_controller.rb:724 +#: ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:17 ../app/controllers/provider_foreman_controller.rb:392 ../app/controllers/mixins/manager_controller_mixin.rb:276 msgid "All Configured Systems" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:673 +#: ../app/controllers/ops_controller/settings/schedules.rb:668 msgid "All Container Images" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:674 +#: ../app/controllers/ops_controller/settings/schedules.rb:669 msgid "All Container Images for Containers Provider" msgstr "" -#: ../app/presenters/tree_builder_containers_filter.rb:17 +#: ../app/presenters/tree_builder_containers_filter.rb:18 ../app/controllers/container_controller.rb:157 msgid "All Containers" msgstr "" -#: ../app/presenters/tree_builder_containers.rb:19 +#: ../app/presenters/tree_builder_containers.rb:20 msgid "All Containers (by Pods)" msgstr "" -#: ../app/presenters/tree_builder_report_dashboards.rb:19 ../app/controllers/report_controller/dashboards.rb:212 +#: ../app/presenters/tree_builder_pxe_customization_templates.rb:14 +msgid "All Customization Templates - System Image Types" +msgstr "" + +#: ../app/presenters/tree_builder_report_dashboards.rb:20 ../app/controllers/report_controller/dashboards.rb:212 msgid "All Dashboards" msgstr "" -#: ../app/presenters/tree_builder_storage_pod.rb:14 ../app/controllers/storage_controller/storage_pod.rb:46 +#: ../app/presenters/tree_builder_storage_pod.rb:15 ../app/controllers/storage_controller/storage_pod.rb:39 msgid "All Datastore Clusters" msgstr "" @@ -3288,63 +3384,67 @@ msgstr "" msgid "All Datastore customizations will be lost. Are you sure you want to reset all classes and instances to default?" msgstr "" -#: ../app/presenters/tree_builder_storage.rb:14 ../app/controllers/ops_controller/settings/schedules.rb:687 +#: ../app/presenters/tree_builder_storage.rb:15 ../app/controllers/ops_controller/settings/schedules.rb:682 msgid "All Datastores" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:689 +#: ../app/controllers/ops_controller/settings/schedules.rb:684 msgid "All Datastores for %{table}" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:688 +#: ../app/controllers/ops_controller/settings/schedules.rb:683 msgid "All Datastores for Host" msgstr "" -#: ../app/presenters/tree_builder_provisioning_dialogs.rb:9 ../app/presenters/tree_builder_service_dialogs.rb:12 +#: ../app/presenters/tree_builder_provisioning_dialogs.rb:10 ../app/presenters/tree_builder_service_dialogs.rb:13 msgid "All Dialogs" msgstr "" -#: ../app/presenters/tree_builder_infra_networking.rb:23 +#: ../app/presenters/tree_builder_infra_networking.rb:24 msgid "All Distributed Switches" msgstr "" -#: ../app/presenters/tree_builder_event.rb:10 +#: ../app/presenters/tree_builder_report_roles.rb:19 +msgid "All EVM Grouops" +msgstr "" + +#: ../app/presenters/tree_builder_event.rb:11 msgid "All Events" msgstr "" -#: ../app/helpers/storage_helper/textual_summary.rb:165 ../app/controllers/storage_controller.rb:199 ../app/views/layouts/listnav/_storage.html.haml:86 +#: ../app/helpers/storage_helper/textual_summary.rb:120 ../app/controllers/storage_controller.rb:170 ../app/views/layouts/listnav/_storage.html.haml:47 msgid "All Files" msgstr "" -#: ../app/presenters/tree_builder_report_dashboards.rb:28 +#: ../app/presenters/tree_builder_report_dashboards.rb:31 msgid "All Groups" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:663 +#: ../app/controllers/ops_controller/settings/schedules.rb:658 msgid "All Hosts" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:664 ../app/controllers/ops_controller/settings/schedules.rb:665 +#: ../app/controllers/ops_controller/settings/schedules.rb:659 ../app/controllers/ops_controller/settings/schedules.rb:660 msgid "All Hosts for %{table}" msgstr "" -#: ../app/presenters/tree_builder_iso_datastores.rb:16 +#: ../app/presenters/tree_builder_iso_datastores.rb:17 msgid "All ISO Datastores" msgstr "" -#: ../app/presenters/tree_builder_images_filter.rb:16 +#: ../app/presenters/tree_builder_images_filter.rb:17 msgid "All Images" msgstr "" -#: ../app/presenters/tree_builder_images.rb:23 +#: ../app/presenters/tree_builder_images.rb:25 msgid "All Images by Provider that I can see" msgstr "" -#: ../app/presenters/tree_builder_instances_filter.rb:16 +#: ../app/presenters/tree_builder_instances_filter.rb:17 msgid "All Instances" msgstr "" -#: ../app/presenters/tree_builder_instances.rb:25 +#: ../app/presenters/tree_builder_instances.rb:27 msgid "All Instances by Provider that I can see" msgstr "" @@ -3352,27 +3452,27 @@ msgstr "" msgid "All Object Types" msgstr "" -#: ../app/presenters/tree_builder_orchestration_templates.rb:15 +#: ../app/presenters/tree_builder_orchestration_templates.rb:16 msgid "All Orchestration Templates" msgstr "" -#: ../app/controllers/miq_task_controller.rb:43 ../app/controllers/miq_task_controller.rb:102 +#: ../app/controllers/miq_task_controller.rb:43 msgid "All Other Tasks" msgstr "" -#: ../app/presenters/tree_builder_pxe_servers.rb:16 ../app/controllers/pxe_controller.rb:52 +#: ../app/presenters/tree_builder_pxe_servers.rb:17 ../app/controllers/pxe_controller.rb:52 msgid "All PXE Servers" msgstr "" -#: ../app/presenters/tree_builder_policy.rb:44 ../app/controllers/miq_policy_controller/policies.rb:235 +#: ../app/presenters/tree_builder_policy.rb:63 ../app/controllers/miq_policy_controller/policies.rb:235 msgid "All Policies" msgstr "" -#: ../app/presenters/tree_builder_policy_profile.rb:20 +#: ../app/presenters/tree_builder_policy_profile.rb:21 msgid "All Policy Profiles" msgstr "" -#: ../app/views/report/_form_filter_chargeback.html.haml:137 +#: ../app/views/report/_form_filter_chargeback.html.haml:165 msgid "All Providers" msgstr "" @@ -3380,91 +3480,95 @@ msgstr "" msgid "All RSS Feeds" msgstr "" -#: ../app/presenters/tree_builder_report_reports.rb:23 ../app/controllers/report_controller.rb:378 +#: ../app/presenters/tree_builder_report_reports.rb:24 ../app/controllers/report_controller.rb:382 msgid "All Reports" msgstr "" -#: ../app/controllers/chargeback_controller.rb:51 ../app/controllers/chargeback_controller.rb:429 +#: ../app/controllers/chargeback_controller.rb:51 ../app/controllers/chargeback_controller.rb:425 msgid "All Saved Chargeback Reports" msgstr "" -#: ../app/presenters/tree_builder_report_saved_reports.rb:17 ../app/controllers/report_controller/saved_reports.rb:132 +#: ../app/presenters/tree_builder_report_saved_reports.rb:18 ../app/controllers/report_controller/saved_reports.rb:133 msgid "All Saved Reports" msgstr "" -#: ../app/presenters/tree_builder_report_schedules.rb:17 +#: ../app/presenters/tree_builder_report_schedules.rb:18 msgid "All Schedules" msgstr "" -#: ../app/controllers/application_controller/compare.rb:993 +#: ../app/controllers/application_controller/compare.rb:889 msgid "All Sections" msgstr "" -#: ../app/presenters/tree_builder_services.rb:19 ../app/presenters/tree_builder_service_catalog.rb:17 +#: ../app/controllers/service_controller.rb:237 +msgid "All Service Catalog Items" +msgstr "" + +#: ../app/presenters/tree_builder_service_catalog.rb:18 ../app/controllers/service_controller.rb:235 msgid "All Services" msgstr "" -#: ../app/controllers/infra_networking_controller.rb:400 +#: ../app/controllers/infra_networking_controller.rb:406 msgid "All Switches" msgstr "" -#: ../app/presenters/tree_builder_pxe_image_types.rb:14 +#: ../app/presenters/tree_builder_pxe_image_types.rb:15 msgid "All System Image Types" msgstr "" -#: ../app/presenters/tree_builder_template_filter.rb:16 ../app/helpers/ems_cluster_helper/textual_summary.rb:161 ../app/controllers/ops_controller/settings/schedules.rb:653 ../app/views/layouts/listnav/_ems_cluster.html.haml:65 +#: ../app/presenters/tree_builder_template_filter.rb:17 ../app/helpers/ems_cluster_helper/textual_summary.rb:172 ../app/controllers/ops_controller/settings/schedules.rb:648 ../app/views/layouts/listnav/_ems_cluster.html.haml:65 msgid "All Templates" msgstr "" -#: ../app/presenters/tree_builder_templates_images_filter.rb:12 +#: ../app/presenters/tree_builder_templates_images_filter.rb:15 msgid "All Templates & Images" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:654 ../app/controllers/ops_controller/settings/schedules.rb:655 +#: ../app/controllers/ops_controller/settings/schedules.rb:649 ../app/controllers/ops_controller/settings/schedules.rb:650 msgid "All Templates for %{table}" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:656 +#: ../app/controllers/ops_controller/settings/schedules.rb:651 msgid "All Templates for Host" msgstr "" -#: ../app/views/configuration/_timeprofile_form.html.haml:56 ../app/views/miq_task/_tasks_options.html.haml:44 +#: ../app/views/configuration/_timeprofile_form.html.haml:58 ../app/views/miq_task/_tasks_options.html.haml:44 msgid "All Users" msgstr "" -#: ../app/controllers/miq_task_controller.rb:40 ../app/controllers/miq_task_controller.rb:95 +#: ../app/controllers/miq_task_controller.rb:40 msgid "All VM and Container Analysis Tasks" msgstr "" -#: ../app/controllers/ops_controller/db.rb:120 +#: ../app/controllers/ops_controller/db.rb:112 msgid "All VMDB Indexes" msgstr "" -#: ../app/presenters/tree_builder_vms_filter.rb:15 ../app/helpers/ems_cluster_helper/textual_summary.rb:149 ../app/helpers/resource_pool_helper/textual_summary.rb:99 ../app/controllers/ops_controller/settings/schedules.rb:643 ../app/views/layouts/listnav/_ems_cluster.html.haml:58 ../app/views/layouts/listnav/_resource_pool.html.haml:50 +#: ../app/presenters/tree_builder_vms_filter.rb:16 ../app/helpers/resource_pool_helper/textual_summary.rb:114 ../app/helpers/ems_cluster_helper/textual_summary.rb:160 ../app/controllers/ops_controller/settings/schedules.rb:638 ../app/views/layouts/listnav/_resource_pool.html.haml:50 ../app/views/layouts/listnav/_ems_cluster.html.haml:58 msgid "All VMs" msgstr "" -#: ../app/presenters/tree_builder_vms_instances_filter.rb:12 +#: ../app/presenters/tree_builder_vms_instances_filter.rb:15 msgid "All VMs & Instances" msgstr "" -#: ../app/presenters/tree_builder_vandt.rb:15 ../app/controllers/vm_common.rb:1293 ../app/controllers/vm_common.rb:1323 +#: ../app/presenters/tree_builder_vandt.rb:16 ../app/controllers/vm_common.rb:1104 ../app/controllers/vm_common.rb:1134 msgid "All VMs & Templates" msgstr "" -#: ../app/presenters/tree_builder_vandt.rb:15 +#: ../app/presenters/tree_builder_vandt.rb:17 msgid "All VMs & Templates that I can see" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:171 ../app/helpers/resource_pool_helper/textual_summary.rb:109 ../app/views/layouts/listnav/_ems_cluster.html.haml:72 ../app/views/layouts/listnav/_resource_pool.html.haml:58 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:124 ../app/helpers/ems_cluster_helper/textual_summary.rb:182 ../app/views/layouts/listnav/_resource_pool.html.haml:58 ../app/views/layouts/listnav/_ems_cluster.html.haml:72 msgid "All VMs (Tree View)" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:644 ../app/controllers/ops_controller/settings/schedules.rb:645 +#: ../app/controllers/ops_controller/settings/schedules.rb:639 ../app/controllers/ops_controller/settings/schedules.rb:640 msgid "All VMs for %{table}" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:646 +#: ../app/controllers/ops_controller/settings/schedules.rb:641 msgid "All VMs for Host" msgstr "" @@ -3472,7 +3576,7 @@ msgstr "" msgid "All VMs/Instances" msgstr "" -#: ../app/presenters/tree_builder_report_widgets.rb:13 ../app/controllers/report_controller/widgets.rb:240 +#: ../app/presenters/tree_builder_report_widgets.rb:14 ../app/controllers/report_controller/widgets.rb:240 msgid "All Widgets" msgstr "" @@ -3480,15 +3584,15 @@ msgstr "" msgid "All Zones" msgstr "" -#: ../app/helpers/application_helper/toolbar/compare_center.rb:6 ../app/helpers/application_helper/toolbar/drift_center.rb:6 +#: ../app/helpers/application_helper/toolbar/drift_center.rb:6 ../app/helpers/application_helper/toolbar/compare_center.rb:6 msgid "All attributes" msgstr "" -#: ../app/controllers/pxe_controller/pxe_servers.rb:83 ../app/controllers/pxe_controller/pxe_servers.rb:221 ../app/controllers/pxe_controller/pxe_servers.rb:271 ../app/controllers/pxe_controller/iso_datastores.rb:73 ../app/controllers/pxe_controller/iso_datastores.rb:201 ../app/controllers/pxe_controller/pxe_image_types.rb:64 ../app/controllers/pxe_controller/pxe_customization_templates.rb:143 ../app/controllers/application_controller/policy_support.rb:32 ../app/controllers/application_controller/automate.rb:115 ../app/controllers/application_controller/ci_processing.rb:177 ../app/controllers/application_controller/ci_processing.rb:181 ../app/controllers/application_controller/dialog_runner.rb:67 ../app/controllers/application_controller/tags.rb:161 ../app/controllers/application_controller/buttons.rb:50 ../app/controllers/application_controller/buttons.rb:401 ../app/controllers/application_controller/buttons.rb:536 ../app/controllers/catalog_controller.rb:104 ../app/controllers/catalog_controller.rb:352 ../app/controllers/catalog_controller.rb:597 ../app/controllers/catalog_controller.rb:1013 ../app/controllers/catalog_controller.rb:2045 ../app/controllers/host_controller.rb:394 ../app/controllers/miq_policy_controller/policy_profiles.rb:22 ../app/controllers/miq_policy_controller/alert_profiles.rb:22 ../app/controllers/miq_policy_controller/alert_profiles.rb:104 ../app/controllers/miq_policy_controller/events.rb:17 ../app/controllers/miq_policy_controller/conditions.rb:25 ../app/controllers/miq_policy_controller/alerts.rb:44 ../app/controllers/miq_policy_controller/miq_actions.rb:23 ../app/controllers/miq_policy_controller/policies.rb:23 ../app/controllers/miq_ae_class_controller.rb:605 ../app/controllers/miq_ae_class_controller.rb:1000 ../app/controllers/miq_ae_class_controller.rb:1043 ../app/controllers/miq_ae_class_controller.rb:1084 ../app/controllers/miq_ae_class_controller.rb:1133 ../app/controllers/miq_ae_class_controller.rb:1451 ../app/controllers/miq_ae_class_controller.rb:1490 ../app/controllers/miq_ae_class_controller.rb:1682 ../app/controllers/ops_controller/ops_rbac.rb:155 ../app/controllers/ops_controller/ops_rbac.rb:220 ../app/controllers/ops_controller/ops_rbac.rb:426 ../app/controllers/ops_controller/ops_rbac.rb:606 ../app/controllers/ops_controller/ops_rbac.rb:694 ../app/controllers/ops_controller/settings.rb:173 ../app/controllers/ops_controller/settings/common.rb:583 ../app/controllers/ops_controller/settings/cap_and_u.rb:44 ../app/controllers/ops_controller/settings/tags.rb:118 ../app/controllers/ops_controller/settings/schedules.rb:113 ../app/controllers/ops_controller/settings/ldap.rb:87 ../app/controllers/ops_controller/settings/ldap.rb:237 ../app/controllers/ops_controller/settings/analysis_profiles.rb:338 ../app/controllers/ops_controller/settings/zones.rb:51 ../app/controllers/ops_controller/settings/label_tag_mapping.rb:47 ../app/controllers/storage_manager_controller.rb:183 ../app/controllers/miq_ae_customization_controller/dialogs.rb:254 ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:302 ../app/controllers/vm_common.rb:783 ../app/controllers/vm_common.rb:786 ../app/controllers/vm_common.rb:974 ../app/controllers/ems_common.rb:340 ../app/controllers/report_controller/dashboards.rb:42 ../app/controllers/report_controller/dashboards.rb:99 ../app/controllers/report_controller/schedules.rb:269 ../app/controllers/report_controller/menus.rb:210 ../app/controllers/report_controller/widgets.rb:82 ../app/controllers/report_controller/reports/editor.rb:95 ../app/controllers/chargeback_controller.rb:178 ../app/controllers/chargeback_controller.rb:297 ../app/controllers/configuration_controller.rb:224 ../app/assets/javascripts/controllers/ems_common/ems_common_form_controller.js:276 ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:57 ../app/assets/javascripts/controllers/auth_key_pair_cloud/auth_key_pair_cloud_controller.js:53 ../app/assets/javascripts/controllers/reconfigure/reconfigure_form_controller.js:275 ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:202 ../app/assets/javascripts/controllers/ownership/ownership_form_controller.js:58 ../app/assets/javascripts/controllers/provider_foreman/provider_foreman_form_controller.js:100 ../app/assets/javascripts/controllers/service/service_form_controller.js:41 ../app/assets/javascripts/controllers/ops/log_collection_form_controller.js:101 ../app/assets/javascripts/controllers/ops/tenant_quota_form_controller.js:60 ../app/assets/javascripts/controllers/ops/tenant_form_controller.js:63 ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:43 ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:318 ../app/assets/javascripts/controllers/host/host_form_controller.js:137 +#: ../app/controllers/ems_common.rb:283 ../app/controllers/vm_common.rb:637 ../app/controllers/vm_common.rb:640 ../app/controllers/vm_common.rb:828 ../app/controllers/miq_ae_class_controller.rb:605 ../app/controllers/miq_ae_class_controller.rb:1000 ../app/controllers/miq_ae_class_controller.rb:1043 ../app/controllers/miq_ae_class_controller.rb:1084 ../app/controllers/miq_ae_class_controller.rb:1133 ../app/controllers/miq_ae_class_controller.rb:1451 ../app/controllers/miq_ae_class_controller.rb:1490 ../app/controllers/miq_ae_class_controller.rb:1682 ../app/controllers/miq_policy_controller/alert_profiles.rb:22 ../app/controllers/miq_policy_controller/alert_profiles.rb:104 ../app/controllers/miq_policy_controller/alerts.rb:44 ../app/controllers/miq_policy_controller/policy_profiles.rb:22 ../app/controllers/miq_policy_controller/miq_actions.rb:23 ../app/controllers/miq_policy_controller/events.rb:17 ../app/controllers/miq_policy_controller/conditions.rb:25 ../app/controllers/miq_policy_controller/policies.rb:23 ../app/controllers/catalog_controller.rb:104 ../app/controllers/catalog_controller.rb:355 ../app/controllers/catalog_controller.rb:604 ../app/controllers/catalog_controller.rb:1026 ../app/controllers/catalog_controller.rb:2110 ../app/controllers/chargeback_controller.rb:174 ../app/controllers/chargeback_controller.rb:293 ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:291 ../app/controllers/miq_ae_customization_controller/dialogs.rb:244 ../app/controllers/configuration_controller.rb:207 ../app/controllers/pxe_controller/pxe_image_types.rb:64 ../app/controllers/pxe_controller/iso_datastores.rb:73 ../app/controllers/pxe_controller/iso_datastores.rb:194 ../app/controllers/pxe_controller/pxe_customization_templates.rb:136 ../app/controllers/pxe_controller/pxe_servers.rb:83 ../app/controllers/pxe_controller/pxe_servers.rb:214 ../app/controllers/pxe_controller/pxe_servers.rb:264 ../app/controllers/storage_manager_controller.rb:184 ../app/controllers/host_controller.rb:346 ../app/controllers/report_controller/menus.rb:210 ../app/controllers/report_controller/reports/editor.rb:95 ../app/controllers/report_controller/dashboards.rb:42 ../app/controllers/report_controller/dashboards.rb:99 ../app/controllers/report_controller/widgets.rb:82 ../app/controllers/report_controller/schedules.rb:269 ../app/controllers/application_controller/buttons.rb:50 ../app/controllers/application_controller/buttons.rb:401 ../app/controllers/application_controller/buttons.rb:536 ../app/controllers/application_controller/automate.rb:115 ../app/controllers/application_controller/dialog_runner.rb:67 ../app/controllers/application_controller/policy_support.rb:32 ../app/controllers/application_controller/tags.rb:161 ../app/controllers/application_controller/ci_processing.rb:197 ../app/controllers/application_controller/ci_processing.rb:201 ../app/controllers/ops_controller/settings.rb:173 ../app/controllers/ops_controller/settings/cap_and_u.rb:44 ../app/controllers/ops_controller/settings/common.rb:541 ../app/controllers/ops_controller/settings/zones.rb:51 ../app/controllers/ops_controller/settings/analysis_profiles.rb:329 ../app/controllers/ops_controller/settings/tags.rb:118 ../app/controllers/ops_controller/settings/label_tag_mapping.rb:47 ../app/controllers/ops_controller/settings/schedules.rb:107 ../app/controllers/ops_controller/settings/ldap.rb:80 ../app/controllers/ops_controller/settings/ldap.rb:230 ../app/controllers/ops_controller/ops_rbac.rb:155 ../app/controllers/ops_controller/ops_rbac.rb:220 ../app/controllers/ops_controller/ops_rbac.rb:426 ../app/controllers/ops_controller/ops_rbac.rb:606 ../app/controllers/ops_controller/ops_rbac.rb:694 ../app/assets/javascripts/controllers/reconfigure/reconfigure_form_controller.js:253 ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:180 ../app/assets/javascripts/controllers/ops/tenant_form_controller.js:54 ../app/assets/javascripts/controllers/ops/log_collection_form_controller.js:85 ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:34 ../app/assets/javascripts/controllers/ops/tenant_quota_form_controller.js:39 ../app/assets/javascripts/controllers/ownership/ownership_form_controller.js:54 ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:344 ../app/assets/javascripts/controllers/provider_foreman/provider_foreman_form_controller.js:78 ../app/assets/javascripts/controllers/auth_key_pair_cloud/auth_key_pair_cloud_controller.js:48 ../app/assets/javascripts/controllers/host/host_form_controller.js:108 ../app/assets/javascripts/controllers/ems_common/ems_common_form_controller.js:301 ../app/assets/javascripts/controllers/service/service_form_controller.js:36 ../app/assets/javascripts/controllers/automation_manager/automation_manager_form_controller.js:105 ../app/assets/javascripts/controllers/catalog/catalog_item_form_controller.js:142 msgid "All changes have been reset" msgstr "" -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:87 +#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:78 msgid "All current subscriptions will be removed" msgstr "" @@ -3496,43 +3600,43 @@ msgstr "" msgid "All custom classes and instances have been reset to default" msgstr "" -#: ../app/presenters/tree_builder_images_filter.rb:16 +#: ../app/presenters/tree_builder_images_filter.rb:18 msgid "All of the Images that I can see" msgstr "" -#: ../app/presenters/tree_builder_instances_filter.rb:16 +#: ../app/presenters/tree_builder_instances_filter.rb:18 msgid "All of the Instances that I can see" msgstr "" -#: ../app/presenters/tree_builder_templates_images_filter.rb:12 +#: ../app/presenters/tree_builder_templates_images_filter.rb:16 msgid "All of the Templates & Images that I can see" msgstr "" -#: ../app/presenters/tree_builder_template_filter.rb:16 +#: ../app/presenters/tree_builder_template_filter.rb:18 msgid "All of the Templates that I can see" msgstr "" -#: ../app/presenters/tree_builder_vms_instances_filter.rb:12 +#: ../app/presenters/tree_builder_vms_instances_filter.rb:16 msgid "All of the VMs & Instances that I can see" msgstr "" -#: ../app/presenters/tree_builder_vms_filter.rb:15 +#: ../app/presenters/tree_builder_vms_filter.rb:17 msgid "All of the VMs that I can see" msgstr "" -#: ../app/controllers/application_controller.rb:1414 +#: ../app/controllers/application_controller.rb:1421 msgid "All selected %{labels} are not in the current region" msgstr "" -#: ../app/controllers/host_controller.rb:203 +#: ../app/controllers/host_controller.rb:155 msgid "All system services of %{name}" msgstr "" -#: ../app/helpers/ops_helper/textual_summary.rb:139 +#: ../app/helpers/ops_helper/textual_summary.rb:149 msgid "Allocated" msgstr "" -#: ../app/helpers/ui_constants.rb:397 +#: ../app/helpers/ui_constants.rb:394 msgid "Allocation" msgstr "" @@ -3540,7 +3644,7 @@ msgstr "" msgid "Allow All" msgstr "" -#: ../app/helpers/ops_helper.rb:34 ../app/helpers/application_helper/discover.rb:6 ../app/views/ops/_settings_authentication_tab.html.haml:55 +#: ../app/helpers/application_helper/discover.rb:6 ../app/helpers/ops_helper.rb:34 ../app/views/ops/_settings_authentication_tab.html.haml:55 msgid "Amazon" msgstr "" @@ -3548,7 +3652,7 @@ msgstr "" msgid "Amazon Primary AWS Account Settings for IAM" msgstr "" -#: ../app/controllers/ops_controller/settings/common.rb:362 +#: ../app/controllers/ops_controller/settings/common.rb:320 msgid "Amazon Settings validation was successful" msgstr "" @@ -3556,7 +3660,11 @@ msgstr "" msgid "Amazon access key and secret are needed to validate Amazon Settings" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1604 +#: ../app/controllers/miq_policy_controller/miq_actions.rb:410 +msgid "An Ansible Playbook must be selected" +msgstr "" + +#: ../app/controllers/report_controller/reports/editor.rb:1619 msgid "An Owner must be selected" msgstr "" @@ -3564,7 +3672,7 @@ msgstr "" msgid "An alert must contain a valid expression." msgstr "" -#: ../app/controllers/orchestration_stack_controller.rb:192 +#: ../app/controllers/orchestration_stack_controller.rb:196 msgid "An error occured when changing orchestration template \"%{name}\" to orderable: %{err_msg}" msgstr "" @@ -3576,11 +3684,11 @@ msgstr "" msgid "An unknown error has occurred." msgstr "" -#: ../app/helpers/application_helper/tasks.rb:14 ../app/controllers/application_controller/ci_processing.rb:2290 ../app/controllers/application_controller/ci_processing.rb:2478 ../app/controllers/application_controller/ci_processing.rb:2669 ../app/views/ops/_schedule_show.html.haml:49 +#: ../app/helpers/application_helper/tasks.rb:14 ../app/controllers/application_controller/ci_processing.rb:2322 ../app/controllers/application_controller/ci_processing.rb:2510 ../app/controllers/application_controller/ci_processing.rb:2701 ../app/views/ops/_schedule_show.html.haml:49 msgid "Analysis" msgstr "" -#: ../app/controllers/ops_controller/settings/common.rb:695 +#: ../app/controllers/ops_controller/settings/common.rb:642 msgid "Analysis Affinity was saved" msgstr "" @@ -3592,62 +3700,62 @@ msgstr "" msgid "Analysis Profile" msgstr "" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:373 +#: ../app/controllers/miq_policy_controller/miq_actions.rb:369 msgid "Analysis Profile is required" msgstr "" -#: ../app/presenters/tree_builder_ops_settings.rb:27 ../app/views/miq_policy/_action_options.html.haml:507 ../app/views/miq_policy/_action_options.html.haml:516 ../app/views/ops/_settings_details_tab.html.haml:71 +#: ../app/presenters/tree_builder_ops_settings.rb:31 ../app/views/miq_policy/_action_options.html.haml:499 ../app/views/miq_policy/_action_options.html.haml:508 ../app/views/ops/_settings_details_tab.html.haml:71 msgid "Analysis Profiles" msgstr "" -#: ../app/controllers/ems_common.rb:1090 ../app/controllers/ems_common.rb:1105 +#: ../app/controllers/ems_common.rb:979 ../app/controllers/ems_common.rb:994 msgid "Analysis initiated for %{count} %{model} from the %{product} Database" msgid_plural "Analysis initiated for %{count} %{models} from the %{product} Database" msgstr[0] "" msgstr[1] "" -#: ../app/controllers/application_controller/ci_processing.rb:2500 +#: ../app/controllers/application_controller/ci_processing.rb:2532 msgid "Analyze and Compliance Check" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:96 ../app/helpers/application_helper/toolbar/hosts_center.rb:141 +#: ../app/helpers/application_helper/toolbar/host_center.rb:97 ../app/helpers/application_helper/toolbar/hosts_center.rb:143 msgid "Analyze then Check Compliance" msgstr "" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:140 +#: ../app/helpers/application_helper/toolbar/hosts_center.rb:142 msgid "Analyze then Check Compliance for the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:143 +#: ../app/helpers/application_helper/toolbar/hosts_center.rb:145 msgid "Analyze then Check Compliance for the selected items?" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:95 +#: ../app/helpers/application_helper/toolbar/host_center.rb:96 msgid "Analyze then Check Compliance for this item" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:97 +#: ../app/helpers/application_helper/toolbar/host_center.rb:98 msgid "Analyze then Check Compliance for this item?" msgstr "" -#: ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:28 ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:30 -msgid "Ansible Tower Configured Systems" +#: ../app/presenters/menu/default_menu.rb:236 +msgid "Ansible" msgstr "" -#: ../app/views/catalog/_form_basic_info.html.haml:196 ../app/views/catalog/_sandt_tree_show.html.haml:134 -msgid "Ansible Tower Job Template" +#: ../app/presenters/menu/default_menu.rb:229 +msgid "Ansible Tower" msgstr "" -#: ../app/presenters/tree_node_builder.rb:59 -msgid "Ansible Tower Job Template: %{name}" +#: ../app/presenters/tree_builder_automation_manager_configured_systems.rb:26 ../app/presenters/tree_builder_automation_manager_configured_systems.rb:28 +msgid "Ansible Tower Configured Systems" msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:526 -msgid "Ansible Tower Job Templates" +#: ../app/views/catalog/_sandt_tree_show.html.haml:149 ../app/views/catalog/_form_basic_info.html.haml:213 +msgid "Ansible Tower Job Template" msgstr "" -#: ../app/presenters/tree_builder_configuration_manager.rb:33 ../app/presenters/tree_builder_configuration_manager.rb:35 -msgid "Ansible Tower Providers" +#: ../app/presenters/tree_node/configuration_script_base.rb:4 +msgid "Ansible Tower Job Template: %{name}" msgstr "" #: ../app/views/pxe/_pxe_image_type_form.html.haml:39 @@ -3678,17 +3786,17 @@ msgstr "" msgid "Appliances in this region can be registered with:" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:510 ../app/helpers/vm_cloud_helper/textual_summary.rb:153 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:164 ../app/helpers/vm_helper/textual_summary.rb:549 msgid "Application" msgid_plural "Applications" msgstr[0] "" msgstr[1] "" -#: ../app/views/miq_policy/_action_options.html.haml:102 ../app/views/miq_policy/_action_details.html.haml:309 +#: ../app/views/miq_policy/_action_options.html.haml:101 ../app/views/miq_policy/_action_details.html.haml:309 msgid "Applied Tag" msgstr "" -#: ../app/views/ems_container/_show_ad_hoc_metrics.html.haml:17 ../app/views/miq_request/_prov_options.html.haml:125 ../app/views/miq_request/_prov_options.html.haml:143 ../app/views/miq_task/_tasks_options.html.haml:158 ../app/views/miq_task/_tasks_options.html.haml:175 ../app/views/layouts/_adv_search_footer.html.haml:22 ../app/views/layouts/_adv_search_footer.html.haml:25 ../app/views/layouts/_tl_options.html.haml:145 ../app/views/layouts/_x_edit_buttons.html.haml:54 ../app/views/layouts/_x_edit_buttons.html.haml:145 ../app/views/layouts/listnav/_compare_sections.html.haml:163 ../app/views/layouts/_ae_tree_select.html.haml:57 ../app/views/layouts/_ae_tree_select.html.haml:78 ../app/views/layouts/_user_input_filter.html.haml:105 +#: ../app/views/miq_task/_tasks_options.html.haml:170 ../app/views/miq_task/_tasks_options.html.haml:187 ../app/views/miq_request/_prov_options.html.haml:125 ../app/views/miq_request/_prov_options.html.haml:143 ../app/views/layouts/_ae_tree_select.html.haml:57 ../app/views/layouts/_ae_tree_select.html.haml:78 ../app/views/layouts/_user_input_filter.html.haml:106 ../app/views/layouts/_user_input_filter.html.haml:114 ../app/views/layouts/listnav/_compare_sections.html.haml:147 ../app/views/layouts/_adv_search_footer.html.haml:20 ../app/views/layouts/_adv_search_footer.html.haml:26 ../app/views/layouts/_x_edit_buttons.html.haml:54 ../app/views/layouts/_x_edit_buttons.html.haml:145 ../app/views/layouts/_tl_options.html.haml:145 msgid "Apply" msgstr "" @@ -3696,27 +3804,31 @@ msgstr "" msgid "Apply %{product} Update" msgstr "" -#: ../app/views/layouts/listnav/_compare_sections.html.haml:163 ../app/views/layouts/listnav/_compare_sections.html.haml:163 +#: ../app/views/ems_container/ad_hoc/_list_view_form.html.haml:41 +msgid "Apply Filters" +msgstr "" + +#: ../app/views/layouts/listnav/_compare_sections.html.haml:147 ../app/views/layouts/listnav/_compare_sections.html.haml:147 msgid "Apply sections" msgstr "" -#: ../app/views/layouts/_adv_search_footer.html.haml:25 +#: ../app/views/layouts/_adv_search_footer.html.haml:26 msgid "Apply the current filter" msgstr "" -#: ../app/views/layouts/_user_input_filter.html.haml:110 +#: ../app/views/layouts/_user_input_filter.html.haml:114 msgid "Apply the current filter (Enter)" msgstr "" -#: ../app/controllers/ops_controller.rb:357 +#: ../app/controllers/ops_controller.rb:396 msgid "Apply the good VM custom variable value records" msgstr "" -#: ../app/controllers/ops_controller.rb:359 +#: ../app/controllers/ops_controller.rb:398 msgid "Apply the good import records" msgstr "" -#: ../app/views/miq_request/_prov_options.html.haml:143 ../app/views/miq_task/_tasks_options.html.haml:175 +#: ../app/views/miq_task/_tasks_options.html.haml:187 ../app/views/miq_request/_prov_options.html.haml:143 msgid "Apply the selected filters" msgstr "" @@ -3732,11 +3844,11 @@ msgstr "" msgid "Approval State:" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_request_center.rb:35 +#: ../app/helpers/application_helper/toolbar/miq_request_center.rb:36 msgid "Approve this Request" msgstr "" -#: ../app/helpers/ui_constants.rb:423 +#: ../app/helpers/ui_constants.rb:420 msgid "Approved" msgstr "" @@ -3748,23 +3860,11 @@ msgstr "" msgid "Approved/Denied on" msgstr "" -#: ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:70 -msgid "Arbitration Profile %s was added" -msgstr "" - -#: ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:61 -msgid "Arbitration Profile %s was saved" -msgstr "" - -#: ../app/helpers/ems_cloud_helper/textual_summary.rb:149 ../app/controllers/ems_common.rb:590 -msgid "Arbitration Profiles" -msgstr "" - -#: ../app/helpers/provider_foreman_helper.rb:86 ../app/helpers/provider_foreman_helper.rb:167 ../app/helpers/provider_foreman_helper.rb:213 ../app/helpers/vm_cloud_helper/textual_summary.rb:95 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:106 ../app/helpers/provider_foreman_helper.rb:88 ../app/helpers/provider_foreman_helper.rb:170 ../app/helpers/provider_foreman_helper.rb:218 ../app/helpers/automation_manager_helper.rb:54 msgid "Architecture" msgstr "" -#: ../app/controllers/vm_common.rb:1313 +#: ../app/controllers/vm_common.rb:1124 msgid "Archived %{models}" msgstr "" @@ -3772,7 +3872,7 @@ msgstr "" msgid "Archived %{model}" msgstr "" -#: ../app/controllers/vm_common.rb:1315 +#: ../app/controllers/vm_common.rb:1126 msgid "Archived VMs & Templates" msgstr "" @@ -3840,7 +3940,11 @@ msgstr "" msgid "Are you sure you want to delete this Alert?" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_group_center.rb:20 +#: ../app/helpers/application_helper/toolbar/generic_object_definition.rb:38 +msgid "Are you sure you want to delete this Generic Object Definition?" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/miq_group_center.rb:21 msgid "Are you sure you want to delete this Group?" msgstr "" @@ -3856,11 +3960,11 @@ msgstr "" msgid "Are you sure you want to delete this Request?" msgstr "" -#: ../app/helpers/application_helper/toolbar/user_role_center.rb:25 +#: ../app/helpers/application_helper/toolbar/user_role_center.rb:26 msgid "Are you sure you want to delete this Role?" msgstr "" -#: ../app/helpers/application_helper/toolbar/user_center.rb:25 +#: ../app/helpers/application_helper/toolbar/user_center.rb:26 msgid "Are you sure you want to delete this User?" msgstr "" @@ -3900,7 +4004,7 @@ msgstr "" msgid "Are you sure you want to remove the selected Namespaces?" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_ae_fields_center.rb:27 ../app/helpers/application_helper/toolbar/miq_ae_methods_center.rb:27 ../app/helpers/application_helper/toolbar/miq_ae_instances_center.rb:27 ../app/helpers/application_helper/toolbar/miq_ae_class_center.rb:27 +#: ../app/helpers/application_helper/toolbar/miq_ae_fields_center.rb:27 ../app/helpers/application_helper/toolbar/miq_ae_instances_center.rb:27 ../app/helpers/application_helper/toolbar/miq_ae_class_center.rb:27 ../app/helpers/application_helper/toolbar/miq_ae_methods_center.rb:27 msgid "Are you sure you want to remove this Class?" msgstr "" @@ -3908,7 +4012,7 @@ msgstr "" msgid "Are you sure you want to remove this Condition from Policy [%{condition_policy_description}]?" msgstr "" -#: ../app/views/catalog/_sandt_tree_show.html.haml:182 +#: ../app/views/catalog/_sandt_tree_show.html.haml:198 msgid "Are you sure you want to remove this Custom Image?" msgstr "" @@ -3932,39 +4036,47 @@ msgstr "" msgid "Are you sure you want to remove this Policy Profile?" msgstr "" -#: ../app/views/catalog/_form_basic_info.html.haml:232 +#: ../app/views/catalog/_form_basic_info.html.haml:249 msgid "Are you sure you want to remove this Provisioning Entry Point?" msgstr "" -#: ../app/views/catalog/_form_basic_info.html.haml:271 +#: ../app/views/catalog/_form_basic_info.html.haml:288 msgid "Are you sure you want to remove this Reconfigure Entry Point?" msgstr "" -#: ../app/views/catalog/_form_basic_info.html.haml:310 +#: ../app/views/catalog/_form_basic_info.html.haml:327 msgid "Are you sure you want to remove this Retirement Entry Point?" msgstr "" -#: ../app/assets/javascripts/miq_application.js:1575 +#: ../app/assets/javascripts/miq_application.js:1582 msgid "Are you sure you want to reset this Dashboard's Widgets to the defaults?" msgstr "" -#: ../app/views/layouts/_pagingcontrols.html.haml:22 ../app/views/layouts/_x_pagingcontrols.html.haml:25 +#: ../app/views/layouts/_x_pagingcontrols.html.haml:25 ../app/views/layouts/_pagingcontrols.html.haml:22 msgid "Asc" msgstr "" -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:272 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:370 ../app/views/report/_form_sort.html.haml:56 +#: ../app/views/report/_form_sort.html.haml:56 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:269 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:367 msgid "Ascending" msgstr "" +#: ../app/assets/javascripts/services/alerts_center_service.js:297 +msgid "Assign" +msgstr "" + +#: ../app/assets/javascripts/services/alerts_center_service.js:809 +msgid "Assign Alert" +msgstr "" + #: ../app/views/shared/buttons/_group_form.html.haml:91 msgid "Assign Buttons" msgstr "" -#: ../app/views/catalog/_stcat_form.html.haml:65 +#: ../app/views/catalog/_stcat_form.html.haml:64 msgid "Assign Catalog Items" msgstr "" -#: ../app/views/ops/_rbac_group_details.html.haml:266 +#: ../app/views/ops/_rbac_group_details.html.haml:265 msgid "Assign Filters" msgstr "" @@ -3980,7 +4092,7 @@ msgstr "" msgid "Assigned Analysis Profile" msgstr "" -#: ../app/views/ops/_rbac_group_details.html.haml:266 +#: ../app/views/ops/_rbac_group_details.html.haml:265 msgid "Assigned Filters (read only)" msgstr "" @@ -3988,19 +4100,19 @@ msgstr "" msgid "Assigned To" msgstr "" -#: ../app/views/layouts/_tag_edit_assignments.html.haml:18 ../app/views/layouts/_classify_table.html.haml:13 +#: ../app/views/layouts/_classify_table.html.haml:13 ../app/views/layouts/_tag_edit_assignments.html.haml:18 msgid "Assigned Value" msgstr "" -#: ../app/views/miq_policy/_condition_details.html.haml:123 ../app/views/miq_policy/_event_details.html.haml:52 ../app/views/miq_policy/_action_details.html.haml:540 +#: ../app/views/miq_policy/_event_details.html.haml:35 ../app/views/miq_policy/_condition_details.html.haml:123 ../app/views/miq_policy/_action_details.html.haml:540 msgid "Assigned to Policies" msgstr "" -#: ../app/controllers/ems_infra_controller.rb:59 +#: ../app/controllers/ems_infra_controller.rb:60 msgid "Assigning %{hosts} but only have %{hosts_count} hosts available." msgstr "" -#: ../app/presenters/tree_builder_chargeback_assignments.rb:9 ../app/controllers/chargeback_controller.rb:328 ../app/views/miq_policy/_alert_profile_assign.html.haml:8 +#: ../app/presenters/tree_builder_chargeback_assignments.rb:10 ../app/controllers/chargeback_controller.rb:324 ../app/views/miq_policy/_alert_profile_assign.html.haml:8 msgid "Assignments" msgstr "" @@ -4008,59 +4120,75 @@ msgstr "" msgid "Associate Floating IP" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:686 +#: ../app/controllers/floating_ip_controller.rb:139 +msgid "Associate Floating IP \"%{name}\"" +msgstr "" + +#: ../app/controllers/application_controller/ci_processing.rb:723 msgid "Associate Floating IP with Instance '%{name}'" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:60 +#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:62 msgid "Associate a Floating IP with this Instance" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:719 -msgid "Associating Floating IP %{address} with Instance \"%{name}\"" +#: ../app/views/floating_ip/edit.haml:8 +msgid "Associate or disassociate a Port - Blank the field to disassociate" msgstr "" -#: ../app/controllers/vm_common.rb:1704 -msgid "Associating Floating IP with %{model} \"%{name}\"" +#: ../app/views/floating_ip/new.html.haml:72 +msgid "Associated Port (optional)" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:712 -msgid "Association of Floating IP with Instance \"%{name}\" was cancelled by the user" +#: ../app/controllers/application_controller/ci_processing.rb:756 +msgid "Associating Floating IP %{address} with Instance \"%{name}\"" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2157 +#: ../app/controllers/vm_common.rb:1512 +msgid "Associating Floating IP with %{model} \"%{name}\"" +msgstr "" + +#: ../app/views/floating_ip/new.html.haml:63 +msgid "Association Information" +msgstr "" + +#: ../app/controllers/application_controller/ci_processing.rb:749 +msgid "Association of Floating IP with Instance \"%{name}\" was cancelled by the user" +msgstr "" + +#: ../app/controllers/application_controller/ci_processing.rb:2189 msgid "At least 1 %{model} must be selected for Policy Simulation" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1417 +#: ../app/controllers/application_controller/ci_processing.rb:1393 msgid "At least 1 item must be selected for discovery" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:94 ../app/controllers/miq_policy_controller.rb:36 ../app/controllers/report_controller.rb:207 +#: ../app/controllers/report_controller.rb:211 ../app/controllers/miq_policy_controller.rb:36 ../app/controllers/miq_ae_customization_controller.rb:95 msgid "At least 1 item must be selected for export" msgstr "" -#: ../app/views/ops/_settings_replication_tab.html.haml:113 +#: ../app/views/ops/_settings_replication_tab.html.haml:41 msgid "At least 1 subscription must be added to save server replication type" msgstr "" -#: ../app/controllers/application_controller/compare.rb:876 +#: ../app/controllers/application_controller/compare.rb:772 msgid "At least 2 %{model} must be selected for Compare" msgstr "" -#: ../app/controllers/application_controller/compare.rb:925 +#: ../app/controllers/application_controller/compare.rb:821 msgid "At least 2 Analyses must be selected for Drift" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:214 +#: ../app/controllers/application_controller/ci_processing.rb:234 msgid "At least one %{model} must be selected for tagging" msgstr "" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:383 +#: ../app/controllers/miq_policy_controller/miq_actions.rb:379 msgid "At least one Alert must be selected" msgstr "" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:389 +#: ../app/controllers/miq_policy_controller/miq_actions.rb:385 msgid "At least one Category must be selected" msgstr "" @@ -4072,11 +4200,11 @@ msgstr "" msgid "At least one E-mail recipient must be configured" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1596 +#: ../app/controllers/report_controller/reports/editor.rb:1611 msgid "At least one Field must be selected" msgstr "" -#: ../app/controllers/ops_controller/ops_rbac.rb:1261 +#: ../app/controllers/ops_controller/ops_rbac.rb:1317 msgid "At least one Product Feature must be selected" msgstr "" @@ -4088,7 +4216,7 @@ msgstr "" msgid "At least one Selection must be checked" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:66 +#: ../app/controllers/miq_ae_customization_controller.rb:67 msgid "At least one Service Dialog must be selected." msgstr "" @@ -4096,7 +4224,7 @@ msgstr "" msgid "At least one Shortcut must be selected" msgstr "" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:405 +#: ../app/controllers/miq_policy_controller/miq_actions.rb:404 msgid "At least one Tag must be selected" msgstr "" @@ -4108,7 +4236,11 @@ msgstr "" msgid "At least one VM Option must be selected" msgstr "" -#: ../app/views/configuration/_timeprofile_form.html.haml:144 +#: ../app/controllers/miq_policy_controller/events.rb:35 +msgid "At least one action must be selected to save this Policy Event" +msgstr "" + +#: ../app/views/configuration/_timeprofile_form.html.haml:145 msgid "At least one day needs to be selected" msgstr "" @@ -4116,11 +4248,15 @@ msgstr "" msgid "At least one domain should be enabled and unlocked" msgstr "" -#: ../app/views/configuration/_timeprofile_form.html.haml:312 +#: ../app/controllers/miq_policy_controller/miq_actions.rb:412 +msgid "At least one host must be specified for manual mode" +msgstr "" + +#: ../app/views/configuration/_timeprofile_form.html.haml:308 msgid "At least one hour needs to be selected" msgstr "" -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:244 +#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:235 msgid "At least one item must be entered to create Analysis Profile" msgstr "" @@ -4128,7 +4264,7 @@ msgstr "" msgid "At least one of E-mail, SNMP Trap, Timeline Event, or Management Event must be configured" msgstr "" -#: ../app/controllers/miq_request_controller.rb:350 +#: ../app/controllers/miq_request_controller.rb:347 msgid "At least one status must be selected" msgstr "" @@ -4136,23 +4272,23 @@ msgstr "" msgid "Attach" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:142 +#: ../app/controllers/cloud_volume_controller.rb:141 msgid "Attach %{model} \"%{name}\"" msgstr "" -#: ../app/controllers/vm_cloud_controller.rb:22 +#: ../app/controllers/vm_cloud_controller.rb:23 msgid "Attach %{volume} to %{instance_model} \"%{instance_name}\"" msgstr "" -#: ../app/controllers/vm_common.rb:1676 +#: ../app/controllers/vm_common.rb:1484 msgid "Attach Cloud Volume to %{model} \"%{name}\"" msgstr "" -#: ../app/views/cloud_volume/attach.html.haml:7 ../app/views/vm_common/_attach.html.haml:7 +#: ../app/views/vm_common/_attach.html.haml:7 ../app/views/cloud_volume/attach.html.haml:7 msgid "Attach Volume" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:49 +#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:50 msgid "Attach a Cloud Volume to this Instance" msgstr "" @@ -4164,51 +4300,55 @@ msgstr "" msgid "Attach this Cloud Volume to an Instance" msgstr "" -#: ../app/views/miq_policy/_event_details.html.haml:41 +#: ../app/views/miq_policy/_event_details.html.haml:24 msgid "Attached to Policy" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:170 +#: ../app/controllers/cloud_volume_controller.rb:169 msgid "Attaching %{model} \"%{name}\" was cancelled by the user" msgstr "" -#: ../app/controllers/vm_cloud_controller.rb:66 +#: ../app/controllers/vm_cloud_controller.rb:67 msgid "Attaching %{volume_model} to %{instance_model} \"%{instance_name}\" was cancelled by the user" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:180 ../app/controllers/vm_cloud_controller.rb:76 -msgid "Attaching %{volume} \"%{volume_name}\" to %{vm_name}" +#: ../app/controllers/cloud_volume_controller.rb:200 ../app/controllers/vm_cloud_controller.rb:98 +msgid "Attaching Cloud Volume \"%{volume_name}\" to %{vm_name} finished" +msgstr "" + +#: ../app/controllers/cloud_volume_controller.rb:182 ../app/controllers/vm_cloud_controller.rb:80 +msgid "Attaching Cloud volume failed: Task start failed" msgstr "" #: ../app/views/report/_schedule_email_options.html.haml:30 msgid "Attachments" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:68 ../app/views/miq_policy/_action_details.html.haml:233 +#: ../app/views/miq_policy/_action_options.html.haml:67 ../app/views/miq_policy/_action_details.html.haml:233 msgid "Attribute Name" msgstr "" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:376 +#: ../app/controllers/miq_policy_controller/miq_actions.rb:372 msgid "Attribute Name is required" msgstr "" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:379 +#: ../app/controllers/miq_policy_controller/miq_actions.rb:375 msgid "Attribute missing for %{field}" msgstr "" -#: ../app/views/miq_policy/_action_details.html.haml:160 ../app/views/shared/buttons/_ab_show.html.haml:177 ../app/views/ops/_schedule_show.html.haml:162 ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:126 ../app/views/layouts/_ae_resolve_options.html.haml:190 +#: ../app/views/miq_policy/_action_details.html.haml:160 ../app/views/ops/_schedule_show.html.haml:162 ../app/views/shared/buttons/_ab_show.html.haml:177 ../app/views/layouts/_ae_resolve_options.html.haml:190 ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:126 msgid "Attribute/Value Pairs" msgstr "" -#: ../app/helpers/application_helper/toolbar/compare_center.rb:14 ../app/helpers/application_helper/toolbar/drift_center.rb:14 +#: ../app/helpers/application_helper/toolbar/drift_center.rb:14 ../app/helpers/application_helper/toolbar/compare_center.rb:14 msgid "Attributes with different values" msgstr "" -#: ../app/helpers/application_helper/toolbar/compare_center.rb:22 ../app/helpers/application_helper/toolbar/drift_center.rb:22 +#: ../app/helpers/application_helper/toolbar/drift_center.rb:22 ../app/helpers/application_helper/toolbar/compare_center.rb:22 msgid "Attributes with same values" msgstr "" -#: ../app/controllers/ops_controller/diagnostics.rb:871 +#: ../app/controllers/ops_controller/diagnostics.rb:861 msgid "Audit" msgstr "" @@ -4224,7 +4364,7 @@ msgstr "" msgid "Authenticated, please close tab to return to ManageIQ." msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:90 ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:67 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:104 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:93 ../app/helpers/application_helper/toolbar/ems_container_center.rb:100 ../app/helpers/application_helper/toolbar/ems_containers_center.rb:93 ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:69 ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:70 ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:66 ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:93 ../app/views/ops/_settings_server_tab.html.haml:476 ../app/views/ops/_settings_authentication_tab.html.haml:7 ../app/views/ops/_all_tabs.html.haml:27 +#: ../app/helpers/application_helper/toolbar/ems_physical_infras_center.rb:93 ../app/helpers/application_helper/toolbar/ems_physical_infra_center.rb:83 ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:71 ../app/helpers/application_helper/toolbar/ems_container_center.rb:109 ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:66 ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:91 ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:67 ../app/helpers/application_helper/toolbar/ems_containers_center.rb:94 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:95 ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:70 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:104 ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:95 ../app/views/ops/_all_tabs.html.haml:27 ../app/views/ops/_settings_authentication_tab.html.haml:7 ../app/views/ops/_settings_server_tab.html.haml:440 msgid "Authentication" msgstr "" @@ -4232,11 +4372,11 @@ msgstr "" msgid "Authentication Details" msgstr "" -#: ../app/views/host/_main.html.haml:31 +#: ../app/helpers/host_helper/textual_summary.rb:54 msgid "Authentication Status" msgstr "" -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:2 +#: ../app/helpers/ansible_credential_helper/textual_summary.rb:13 ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:2 msgid "Authentication Type" msgstr "" @@ -4244,11 +4384,11 @@ msgstr "" msgid "Authentication Type:" msgstr "" -#: ../app/controllers/ops_controller/settings/common.rb:511 +#: ../app/controllers/ops_controller/settings/common.rb:469 msgid "Authentication settings saved for %{product} Server \"%{name} [%{server_id}]\" in Zone \"%{zone}\"" msgstr "" -#: ../app/controllers/ems_common.rb:534 +#: ../app/controllers/ems_common.rb:475 msgid "Authentication status will be saved and workers will be restarted for the selected %{controller_name}" msgstr "" @@ -4276,7 +4416,7 @@ msgstr "" msgid "Auto-select Host?" msgstr "" -#: ../app/presenters/menu/default_menu.rb:228 +#: ../app/presenters/menu/default_menu.rb:249 msgid "Automate" msgstr "" @@ -4284,12 +4424,12 @@ msgstr "" msgid "Automate Task" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:639 -msgid "Automate Tasks" +#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:180 +msgid "Automate Tasks Selection" msgstr "" -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:173 -msgid "Automate Tasks Selection" +#: ../app/presenters/menu/default_menu.rb:221 +msgid "Automation" msgstr "" #: ../app/controllers/application_controller/automate.rb:21 @@ -4300,6 +4440,10 @@ msgstr "" msgid "Automation Simulation has been run" msgstr "" +#: ../app/controllers/ops_controller/settings/schedules.rb:634 +msgid "Automation Tasks" +msgstr "" + #: ../app/controllers/miq_ae_tools_controller.rb:59 msgid "Automation log downloaded" msgstr "" @@ -4308,7 +4452,7 @@ msgstr "" msgid "Automations Tasks" msgstr "" -#: ../app/controllers/availability_zone_controller.rb:143 ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:79 +#: ../app/views/cloud_volume/new.html.haml:68 msgid "Availability Zone" msgstr "" @@ -4316,19 +4460,19 @@ msgstr "" msgid "Availability Zone Name" msgstr "" -#: ../app/presenters/tree_node_builder.rb:56 +#: ../app/presenters/tree_node/availability_zone.rb:3 msgid "Availability Zone: %{name}" msgstr "" -#: ../app/presenters/menu/default_menu.rb:49 ../app/controllers/ems_common.rb:87 ../app/views/configuration/_ui_2.html.haml:175 ../app/views/cloud_topology/show.html.haml:52 +#: ../app/presenters/menu/default_menu.rb:50 ../app/views/cloud_topology/show.html.haml:52 ../app/views/configuration/_ui_2.html.haml:176 ../app/views/network_topology/show.html.haml:33 msgid "Availability Zones" msgstr "" -#: ../app/controllers/availability_zone_controller.rb:19 +#: ../app/controllers/availability_zone_controller.rb:21 msgid "Availabilty Zones" msgstr "" -#: ../app/helpers/ems_infra_helper/textual_summary.rb:74 ../app/helpers/ems_infra_helper/textual_summary.rb:86 ../app/helpers/host_helper/textual_summary.rb:214 ../app/helpers/host_helper/textual_summary.rb:481 ../app/helpers/vm_helper/textual_summary.rb:170 ../app/helpers/vm_helper/textual_summary.rb:673 ../app/helpers/ops_helper/textual_summary.rb:139 ../app/helpers/compliance_summary_helper.rb:39 ../app/helpers/container_summary_helper.rb:136 ../app/helpers/vm_cloud_helper/textual_summary.rb:111 ../app/helpers/vm_cloud_helper/textual_summary.rb:240 +#: ../app/helpers/ems_infra_helper/textual_summary.rb:85 ../app/helpers/ems_infra_helper/textual_summary.rb:97 ../app/helpers/host_helper/textual_summary.rb:221 ../app/helpers/host_helper/textual_summary.rb:444 ../app/helpers/vm_cloud_helper/textual_summary.rb:122 ../app/helpers/vm_cloud_helper/textual_summary.rb:251 ../app/helpers/compliance_summary_helper.rb:39 ../app/helpers/container_summary_helper.rb:140 ../app/helpers/vm_helper/textual_summary.rb:210 ../app/helpers/vm_helper/textual_summary.rb:712 ../app/helpers/ops_helper/textual_summary.rb:149 msgid "Available" msgstr "" @@ -4344,7 +4488,7 @@ msgstr "" msgid "Available %{title}:" msgstr "" -#: ../app/views/miq_policy/_event_details.html.haml:85 ../app/views/miq_policy/_event_details.html.haml:261 +#: ../app/views/miq_policy/_event_details.html.haml:68 ../app/views/miq_policy/_event_details.html.haml:244 msgid "Available Actions:" msgstr "" @@ -4352,7 +4496,7 @@ msgstr "" msgid "Available Active Data" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:300 +#: ../app/views/miq_policy/_action_options.html.haml:292 msgid "Available Alerts:" msgstr "" @@ -4388,7 +4532,7 @@ msgstr "" msgid "Available Widgets:" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:789 ../app/helpers/vm_helper/textual_summary.rb:798 ../app/helpers/vm_helper/textual_summary.rb:808 ../app/helpers/vm_helper/textual_summary.rb:819 ../app/views/vm_common/_right_size.html.haml:30 +#: ../app/helpers/vm_helper/textual_summary.rb:786 ../app/helpers/vm_helper/textual_summary.rb:795 ../app/helpers/vm_helper/textual_summary.rb:805 ../app/helpers/vm_helper/textual_summary.rb:816 ../app/views/vm_common/_right_size.html.haml:30 msgid "Average" msgstr "" @@ -4400,7 +4544,7 @@ msgstr "" msgid "Azure" msgstr "" -#: ../app/presenters/tree_builder_orchestration_templates.rb:32 ../app/presenters/tree_builder_orchestration_templates.rb:34 +#: ../app/presenters/tree_builder_orchestration_templates.rb:35 ../app/presenters/tree_builder_orchestration_templates.rb:37 msgid "Azure Templates" msgstr "" @@ -4408,18 +4552,22 @@ msgstr "" msgid "Azure Tenant ID" msgstr "" -#: ../app/views/vm_common/_right_size.html.haml:445 ../app/views/miq_ae_tools/_import_export.html.haml:312 ../app/views/middleware_server/_add_datasource_step1.html.haml:88 ../app/views/middleware_server/_add_datasource_step2.html.haml:123 ../app/views/middleware_server/_add_datasource_step3.html.haml:115 ../app/views/dashboard/login.html.haml:128 ../app/views/dashboard/login.html.haml:128 ../app/views/layouts/_x_edit_buttons.html.haml:185 +#: ../app/views/vm_common/_right_size.html.haml:445 ../app/views/layouts/_x_edit_buttons.html.haml:185 ../app/views/middleware_server/_add_datasource_step2.html.haml:49 ../app/views/middleware_server/_add_datasource_step3.html.haml:185 ../app/views/middleware_server/_add_datasource_step1.html.haml:88 ../app/views/miq_ae_tools/_import_export.html.haml:312 ../app/views/dashboard/login.html.haml:128 ../app/views/dashboard/login.html.haml:128 msgid "Back" msgstr "" -#: ../app/views/configuration/_ui_1.html.haml:60 +#: ../app/views/configuration/_ui_1.html.haml:59 msgid "Back (ABCD...)" msgstr "" -#: ../app/helpers/container_helper/textual_summary.rb:62 +#: ../app/helpers/container_helper/textual_summary.rb:71 msgid "Backing Ref (Container ID)" msgstr "" +#: ../app/views/ops/_settings_replication_tab.html.haml:74 +msgid "Backlog" +msgstr "" + #: ../app/views/cloud_volume/backup_new.html.haml:16 msgid "Backup Name" msgstr "" @@ -4428,15 +4576,15 @@ msgstr "" msgid "Backup Schedules" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:479 +#: ../app/controllers/cloud_volume_controller.rb:545 msgid "Backup for %{model} \"%{name}\" created" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:448 +#: ../app/controllers/cloud_volume_controller.rb:514 msgid "Backup of %{model} \"%{name}\" was cancelled by the user" msgstr "" -#: ../app/views/_ldap_domain_form.html.haml:150 ../app/views/ops/_ldap_domain_show.html.haml:193 ../app/views/ops/_ldap_forest_entries.html.haml:24 ../app/views/ops/_settings_authentication_tab.html.haml:339 ../app/views/ops/_ldap_domain_form.html.haml:150 ../app/views/ops/_ldap_region_show.html.haml:73 +#: ../app/views/ops/_ldap_region_show.html.haml:73 ../app/views/ops/_ldap_domain_show.html.haml:193 ../app/views/ops/_ldap_domain_form.html.haml:150 ../app/views/ops/_settings_authentication_tab.html.haml:339 ../app/views/ops/_ldap_forest_entries.html.haml:24 ../app/views/_ldap_domain_form.html.haml:150 msgid "Base DN" msgstr "" @@ -4452,19 +4600,15 @@ msgstr "" msgid "Based On" msgstr "" -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:99 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:106 -msgid "Based On Underlying Redundancy" -msgstr "" - -#: ../app/controllers/ems_common.rb:829 ../app/controllers/ems_common.rb:908 +#: ../app/controllers/ems_common.rb:714 ../app/controllers/ems_common.rb:797 msgid "Basic (SSL)" msgstr "" -#: ../app/controllers/miq_capacity_controller.rb:765 ../app/views/chargeback/_cb_assignments.html.haml:9 ../app/views/chargeback/_cb_rate_edit.html.haml:7 ../app/views/chargeback/_cb_rate_show.html.haml:7 ../app/views/miq_ae_customization/_dialog_details.html.haml:18 ../app/views/shared/buttons/_group_form.html.haml:8 ../app/views/catalog/_form.html.haml:4 ../app/views/catalog/_sandt_tree_show.html.haml:8 ../app/views/catalog/_stcat_form.html.haml:11 ../app/views/ops/_logs_selected.html.haml:8 ../app/views/ops/_diagnostics_database_tab.html.haml:12 +#: ../app/controllers/miq_capacity_controller.rb:765 ../app/views/ops/_diagnostics_database_tab.html.haml:12 ../app/views/ops/_logs_selected.html.haml:8 ../app/views/shared/buttons/_group_form.html.haml:8 ../app/views/chargeback/_cb_rate_edit.html.haml:7 ../app/views/chargeback/_cb_assignments.html.haml:9 ../app/views/chargeback/_cb_rate_show.html.haml:7 ../app/views/miq_ae_customization/_dialog_details.html.haml:18 ../app/views/catalog/_sandt_tree_show.html.haml:8 ../app/views/catalog/_form.html.haml:4 ../app/views/catalog/_stcat_form.html.haml:10 msgid "Basic Info" msgstr "" -#: ../app/views/network_router/new.html.haml:36 ../app/views/miq_capacity/_utilization_report.html.haml:10 ../app/views/cloud_tenant/new.html.haml:7 ../app/views/host_aggregate/new.html.haml:7 ../app/views/miq_policy/_condition_details.html.haml:12 ../app/views/miq_policy/_event_details.html.haml:7 ../app/views/miq_policy/_action_details.html.haml:9 ../app/views/miq_policy/_profile_details.html.haml:13 ../app/views/miq_policy/_alert_profile_details.html.haml:15 ../app/views/miq_policy/_policy_details.html.haml:15 ../app/views/miq_policy/_policy_details.html.haml:60 ../app/views/auth_key_pair_cloud/_form.html.haml:3 ../app/views/pxe/_pxe_img_form.html.haml:8 ../app/views/pxe/_pxe_server_details.html.haml:11 ../app/views/pxe/_pxe_server_details.html.haml:152 ../app/views/pxe/_pxe_server_details.html.haml:165 ../app/views/pxe/_template_form.html.haml:7 ../app/views/pxe/_template_details.html.haml:11 ../app/views/pxe/_iso_datastore_form.html.haml:8 ../app/views/pxe/_pxe_wimg_form.html.haml:8 ../app/views/pxe/_pxe_image_type_form.html.haml:8 ../app/views/pxe/_pxe_form.html.haml:8 ../app/views/pxe/_iso_datastore_details.html.haml:1 ../app/views/pxe/_pxe_image_type_details.html.haml:9 ../app/views/pxe/_iso_img_form.html.haml:8 ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:8 ../app/views/miq_ae_customization/_old_dialogs_details.html.haml:11 ../app/views/miq_ae_customization/_dialog_info.html.haml:6 ../app/views/_ldap_domain_form.html.haml:10 ../app/views/shared/buttons/_ab_list.html.haml:125 ../app/views/shared/buttons/_ab_show.html.haml:6 ../app/views/shared/views/ems_common/_form.html.haml:9 ../app/views/cloud_volume/new.html.haml:7 ../app/views/cloud_volume/snapshot_new.html.haml:7 ../app/views/cloud_volume/backup_new.html.haml:7 ../app/views/cloud_volume/backup_select.html.haml:7 ../app/views/vm_common/_form.html.haml:9 ../app/views/vm_common/_config.html.haml:42 ../app/views/vm_common/_config.html.haml:112 ../app/views/catalog/_sandt_tree_show.html.haml:27 ../app/views/catalog/_sandt_tree_show.html.haml:225 ../app/views/ops/_ldap_domain_show.html.haml:7 ../app/views/ops/_settings_evm_servers_tab.html.haml:5 ../app/views/ops/_settings_server_tab.html.haml:7 ../app/views/ops/_ldap_region_form.html.haml:10 ../app/views/ops/_ap_form.html.haml:11 ../app/views/ops/_ldap_domain_form.html.haml:10 ../app/views/ops/_ldap_region_show.html.haml:9 ../app/views/storage_manager/_form.html.haml:14 ../app/views/report/_db_form.html.haml:9 ../app/views/report/_schedule_form.html.haml:8 ../app/views/report/_widget_form.html.haml:8 ../app/views/report/_db_show.html.haml:3 ../app/views/report/_widget_show.html.haml:4 +#: ../app/views/cloud_tenant/new.html.haml:7 ../app/views/miq_policy/_alert_profile_details.html.haml:15 ../app/views/miq_policy/_profile_details.html.haml:13 ../app/views/miq_policy/_event_details.html.haml:7 ../app/views/miq_policy/_policy_details.html.haml:15 ../app/views/miq_policy/_policy_details.html.haml:60 ../app/views/miq_policy/_condition_details.html.haml:12 ../app/views/miq_policy/_action_details.html.haml:9 ../app/views/vm_common/_config.html.haml:42 ../app/views/vm_common/_config.html.haml:112 ../app/views/vm_common/_form.html.haml:9 ../app/views/miq_capacity/_utilization_report.html.haml:10 ../app/views/host_aggregate/new.html.haml:7 ../app/views/ops/_ldap_region_show.html.haml:9 ../app/views/ops/_ldap_domain_show.html.haml:7 ../app/views/ops/_ap_form.html.haml:11 ../app/views/ops/_ldap_region_form.html.haml:10 ../app/views/ops/_ldap_domain_form.html.haml:10 ../app/views/ops/_settings_server_tab.html.haml:7 ../app/views/ops/_settings_evm_servers_tab.html.haml:5 ../app/views/cloud_volume/backup_new.html.haml:7 ../app/views/cloud_volume/backup_select.html.haml:7 ../app/views/cloud_volume/snapshot_new.html.haml:7 ../app/views/storage_manager/_form.html.haml:14 ../app/views/shared/buttons/_ab_show.html.haml:6 ../app/views/shared/buttons/_ab_list.html.haml:125 ../app/views/shared/views/ems_common/_form.html.haml:9 ../app/views/pxe/_iso_datastore_form.html.haml:8 ../app/views/pxe/_template_form.html.haml:7 ../app/views/pxe/_pxe_form.html.haml:8 ../app/views/pxe/_iso_datastore_details.html.haml:1 ../app/views/pxe/_iso_img_form.html.haml:8 ../app/views/pxe/_pxe_image_type_form.html.haml:8 ../app/views/pxe/_pxe_img_form.html.haml:8 ../app/views/pxe/_pxe_wimg_form.html.haml:8 ../app/views/pxe/_pxe_server_details.html.haml:11 ../app/views/pxe/_pxe_server_details.html.haml:124 ../app/views/pxe/_pxe_server_details.html.haml:137 ../app/views/pxe/_template_details.html.haml:11 ../app/views/pxe/_pxe_image_type_details.html.haml:9 ../app/views/report/_db_form.html.haml:9 ../app/views/report/_db_show.html.haml:3 ../app/views/report/_widget_form.html.haml:8 ../app/views/report/_schedule_form.html.haml:8 ../app/views/report/_widget_show.html.haml:4 ../app/views/auth_key_pair_cloud/_form.html.haml:3 ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:8 ../app/views/miq_ae_customization/_dialog_info.html.haml:6 ../app/views/miq_ae_customization/_old_dialogs_details.html.haml:11 ../app/views/_ldap_domain_form.html.haml:10 ../app/views/catalog/_sandt_tree_show.html.haml:27 ../app/views/catalog/_sandt_tree_show.html.haml:241 ../app/views/network_router/new.html.haml:36 msgid "Basic Information" msgstr "" @@ -4492,15 +4636,15 @@ msgstr "" msgid "Best Fit Hosts" msgstr "" -#: ../app/helpers/middleware_server_helper/textual_summary.rb:36 +#: ../app/helpers/middleware_server_helper/textual_summary.rb:40 msgid "Bind Address" msgstr "" -#: ../app/views/_ldap_domain_form.html.haml:167 ../app/views/ops/_ldap_domain_show.html.haml:209 ../app/views/ops/_ldap_forest_entries.html.haml:26 ../app/views/ops/_settings_authentication_tab.html.haml:356 ../app/views/ops/_ldap_domain_form.html.haml:167 +#: ../app/views/ops/_ldap_domain_show.html.haml:209 ../app/views/ops/_ldap_domain_form.html.haml:167 ../app/views/ops/_settings_authentication_tab.html.haml:356 ../app/views/ops/_ldap_forest_entries.html.haml:26 ../app/views/_ldap_domain_form.html.haml:167 msgid "Bind DN" msgstr "" -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:81 ../app/views/_ldap_domain_form.html.haml:184 ../app/views/ops/_ldap_domain_show.html.haml:225 ../app/views/ops/_ldap_forest_entries.html.haml:28 ../app/views/ops/_settings_authentication_tab.html.haml:373 ../app/views/ops/_ldap_domain_form.html.haml:184 +#: ../app/views/ops/_ldap_domain_show.html.haml:225 ../app/views/ops/_ldap_domain_form.html.haml:184 ../app/views/ops/_settings_authentication_tab.html.haml:373 ../app/views/ops/_ldap_forest_entries.html.haml:28 ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:81 ../app/views/_ldap_domain_form.html.haml:184 msgid "Bind Password" msgstr "" @@ -4524,22 +4668,14 @@ msgstr "" msgid "Block Migration" msgstr "" -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:74 ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:53 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:81 -msgid "Block Size" -msgstr "" - -#: ../app/presenters/menu/default_menu.rb:159 +#: ../app/presenters/menu/default_menu.rb:161 msgid "Block Storage" msgstr "" -#: ../app/helpers/flavor_helper/textual_summary.rb:64 +#: ../app/helpers/flavor_helper/textual_summary.rb:60 msgid "Block Storage Based" msgstr "" -#: ../app/controllers/ems_common.rb:63 -msgid "Block Storage Managers" -msgstr "" - #: ../app/helpers/ui_constants.rb:103 msgid "Blue" msgstr "" @@ -4564,7 +4700,7 @@ msgstr "" msgid "Bottleneck Event Details" msgstr "" -#: ../app/presenters/menu/default_menu.rb:243 ../app/controllers/miq_capacity_controller.rb:56 +#: ../app/presenters/menu/default_menu.rb:264 ../app/controllers/miq_capacity_controller.rb:56 msgid "Bottlenecks" msgstr "" @@ -4572,7 +4708,7 @@ msgstr "" msgid "Bottlenecks Summary" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:322 +#: ../app/controllers/miq_ae_customization_controller.rb:336 msgid "Box" msgstr "" @@ -4580,19 +4716,19 @@ msgstr "" msgid "Box Information" msgstr "" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:688 +#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:678 msgid "Box Label is required" msgstr "" -#: ../app/views/miq_ae_tools/_import_export.html.haml:186 ../app/views/miq_ae_class/_git_domain_refresh.html.haml:17 +#: ../app/views/miq_ae_class/_git_domain_refresh.html.haml:17 ../app/views/miq_ae_tools/_import_export.html.haml:186 msgid "Branch/Tag" msgstr "" -#: ../app/views/miq_ae_tools/_import_export.html.haml:201 ../app/views/miq_ae_class/_git_domain_refresh.html.haml:33 +#: ../app/views/miq_ae_class/_git_domain_refresh.html.haml:33 ../app/views/miq_ae_tools/_import_export.html.haml:201 msgid "Branches" msgstr "" -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:107 ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:165 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:24 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:24 +#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:24 ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:107 ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:165 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:24 msgid "Browse" msgstr "" @@ -4608,11 +4744,11 @@ msgstr "" msgid "Browser Version" msgstr "" -#: ../app/views/container_build/_main.html.haml:28 +#: ../app/helpers/container_build_helper/textual_summary.rb:23 msgid "Build Instances" msgstr "" -#: ../app/controllers/application_controller.rb:1295 ../app/controllers/application_controller.rb:1327 +#: ../app/controllers/application_controller.rb:1302 ../app/controllers/application_controller.rb:1334 msgid "Build Number" msgstr "" @@ -4620,7 +4756,7 @@ msgstr "" msgid "Builtin name" msgstr "" -#: ../app/controllers/application_controller/buttons.rb:983 ../app/controllers/miq_ae_customization_controller/custom_buttons.rb:101 +#: ../app/controllers/miq_ae_customization_controller/custom_buttons.rb:101 ../app/controllers/application_controller/buttons.rb:983 msgid "Button \"%{name}\"" msgstr "" @@ -4632,7 +4768,7 @@ msgstr "" msgid "Button Group Hover Text" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:485 +#: ../app/controllers/miq_ae_customization_controller.rb:499 msgid "Button Group Hover Text is required" msgstr "" @@ -4648,11 +4784,11 @@ msgstr "" msgid "Button Group Text" msgstr "" -#: ../app/presenters/tree_node_builder.rb:355 +#: ../app/presenters/tree_node/custom_button_set.rb:14 msgid "Button Group: %{button_group_description}" msgstr "" -#: ../app/views/shared/buttons/_ab_list.html.haml:154 ../app/views/shared/buttons/_ab_show.html.haml:35 ../app/views/shared/buttons/_ab_form.html.haml:69 +#: ../app/views/shared/buttons/_ab_show.html.haml:35 ../app/views/shared/buttons/_ab_list.html.haml:154 ../app/views/shared/buttons/_ab_form.html.haml:69 msgid "Button Hover Text" msgstr "" @@ -4668,7 +4804,7 @@ msgstr "" msgid "Button Image must be selected" msgstr "" -#: ../app/views/shared/buttons/_ab_list.html.haml:134 ../app/views/shared/buttons/_ab_show.html.haml:15 ../app/views/shared/buttons/_ab_form.html.haml:36 +#: ../app/views/shared/buttons/_ab_show.html.haml:15 ../app/views/shared/buttons/_ab_list.html.haml:134 ../app/views/shared/buttons/_ab_form.html.haml:36 msgid "Button Text" msgstr "" @@ -4676,31 +4812,23 @@ msgstr "" msgid "Button Text is required" msgstr "" -#: ../app/helpers/application_helper.rb:698 ../app/controllers/availability_zone_controller.rb:109 ../app/controllers/application_controller/policy_support.rb:145 ../app/controllers/application_controller/filter.rb:46 ../app/controllers/cim_instance_controller.rb:82 ../app/controllers/storage_controller.rb:175 ../app/controllers/host_controller.rb:520 ../app/controllers/orchestration_stack_controller.rb:137 ../app/controllers/ems_cluster_controller.rb:189 ../app/controllers/storage_manager_controller.rb:21 ../app/controllers/host_aggregate_controller.rb:157 ../app/controllers/vm_common.rb:26 ../app/controllers/vm_common.rb:827 ../app/controllers/miq_ae_tools_controller.rb:25 ../app/controllers/miq_request_controller.rb:23 ../app/controllers/infra_networking_controller.rb:85 ../app/controllers/miq_policy_controller.rb:84 ../app/controllers/configuration_job_controller.rb:68 ../app/controllers/configuration_controller.rb:56 +#: ../app/helpers/application_helper.rb:650 ../app/controllers/availability_zone_controller.rb:100 ../app/controllers/miq_policy_controller.rb:84 ../app/controllers/vm_common.rb:39 ../app/controllers/vm_common.rb:681 ../app/controllers/host_aggregate_controller.rb:146 ../app/controllers/miq_request_controller.rb:23 ../app/controllers/ems_cluster_controller.rb:151 ../app/controllers/miq_ae_tools_controller.rb:25 ../app/controllers/orchestration_stack_controller.rb:136 ../app/controllers/storage_controller.rb:146 ../app/controllers/configuration_controller.rb:39 ../app/controllers/storage_manager_controller.rb:22 ../app/controllers/host_controller.rb:472 ../app/controllers/infra_networking_controller.rb:86 ../app/controllers/application_controller/filter.rb:46 ../app/controllers/application_controller/policy_support.rb:145 ../app/controllers/configuration_job_controller.rb:66 msgid "Button not yet implemented" msgstr "" -#: ../app/controllers/service_controller.rb:32 -msgid "Button not yet implemented %{model_name}:%{action_name}" -msgstr "" - -#: ../app/controllers/container_controller.rb:35 -msgid "Button not yet implemented %{model}: %{action}" -msgstr "" - #: ../app/controllers/application_controller/explorer.rb:130 msgid "Button not yet implemented %{model}:%{action}" msgstr "" -#: ../app/presenters/tree_node_builder.rb:87 +#: ../app/presenters/tree_node/custom_button.rb:3 msgid "Button: %{button_description}" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:182 ../app/views/miq_ae_customization/_dialog_info_form.html.haml:50 +#: ../app/controllers/miq_ae_customization_controller.rb:196 ../app/views/miq_ae_customization/_dialog_info_form.html.haml:50 msgid "Buttons" msgstr "" -#: ../app/controllers/catalog_controller.rb:1862 +#: ../app/controllers/catalog_controller.rb:1918 msgid "Buttons Group Reorder" msgstr "" @@ -4764,11 +4892,11 @@ msgstr "" msgid "C & U Data Processors" msgstr "" -#: ../app/helpers/textual_summary_helper.rb:168 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:22 ../app/views/layouts/_multi_auth_credentials.html.haml:21 +#: ../app/helpers/textual_summary_helper.rb:182 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:24 ../app/views/layouts/_multi_auth_credentials.html.haml:21 msgid "C & U Database" msgstr "" -#: ../app/controllers/ems_common.rb:702 +#: ../app/controllers/ems_common.rb:586 msgid "C & U Database Login Password and Verify Password fields do not match" msgstr "" @@ -4788,11 +4916,11 @@ msgstr "" msgid "CA:" msgstr "" -#: ../app/controllers/application_controller.rb:1186 +#: ../app/controllers/application_controller.rb:1193 msgid "CD-ROM (IDE %{location})%{connection}" msgstr "" -#: ../app/controllers/application_controller.rb:1192 +#: ../app/controllers/application_controller.rb:1199 msgid "CD-ROM Image (IDE %{location})%{connection}" msgstr "" @@ -4808,23 +4936,23 @@ msgstr "" msgid "CIDR" msgstr "" -#: ../app/helpers/service_helper/textual_summary.rb:39 ../app/helpers/chargeback_helper.rb:4 ../app/helpers/vm_helper/textual_summary.rb:788 ../app/controllers/miq_capacity_controller.rb:766 ../app/views/miq_capacity/_utilization_summary.html.haml:18 ../app/views/miq_capacity/_utilization_report.html.haml:33 ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:55 ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:132 ../app/views/vm_common/_right_size.html.haml:44 ../app/assets/javascripts/controllers/ems_infra_dashboard/ems_infra_dashboard_controller.js:22 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:37 ../app/assets/javascripts/controllers/container_dashboard/container_dashboard_controller.js:25 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:45 +#: ../app/helpers/service_helper/textual_summary.rb:84 ../app/helpers/vm_helper/textual_summary.rb:785 ../app/helpers/chargeback_helper.rb:4 ../app/controllers/miq_capacity_controller.rb:766 ../app/views/vm_common/_right_size.html.haml:44 ../app/views/miq_capacity/_utilization_report.html.haml:33 ../app/views/miq_capacity/_utilization_summary.html.haml:18 ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:55 ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:132 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:37 ../app/assets/javascripts/controllers/ems_infra_dashboard/ems_infra_dashboard_controller.js:21 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:61 ../app/assets/javascripts/controllers/container_dashboard/container_dashboard_controller.js:24 msgid "CPU" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:155 +#: ../app/helpers/vm_helper/textual_summary.rb:195 msgid "CPU Affinity" msgstr "" -#: ../app/helpers/flavor_helper/textual_summary.rb:39 +#: ../app/helpers/flavor_helper/textual_summary.rb:35 msgid "CPU Cores" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:242 +#: ../app/helpers/host_helper/textual_summary.rb:249 msgid "CPU Cores Per Socket" msgstr "" -#: ../app/helpers/resource_pool_helper.rb:27 ../app/helpers/resource_pool_helper/textual_summary.rb:163 ../app/views/vm_common/_config.html.haml:236 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:188 ../app/helpers/resource_pool_helper.rb:27 ../app/views/vm_common/_config.html.haml:236 msgid "CPU Limit" msgstr "" @@ -4832,23 +4960,23 @@ msgstr "" msgid "CPU Percent" msgstr "" -#: ../app/helpers/resource_pool_helper.rb:20 ../app/helpers/resource_pool_helper/textual_summary.rb:151 ../app/views/vm_common/_config.html.haml:236 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:176 ../app/helpers/resource_pool_helper.rb:20 ../app/views/vm_common/_config.html.haml:236 msgid "CPU Reserve" msgstr "" -#: ../app/helpers/resource_pool_helper.rb:22 ../app/helpers/resource_pool_helper/textual_summary.rb:157 ../app/views/vm_common/_config.html.haml:236 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:182 ../app/helpers/resource_pool_helper.rb:22 ../app/views/vm_common/_config.html.haml:236 msgid "CPU Reserve Expand" msgstr "" -#: ../app/helpers/resource_pool_helper.rb:30 ../app/helpers/resource_pool_helper/textual_summary.rb:169 ../app/views/vm_common/_config.html.haml:236 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:194 ../app/helpers/resource_pool_helper.rb:30 ../app/views/vm_common/_config.html.haml:236 msgid "CPU Shares" msgstr "" -#: ../app/helpers/resource_pool_helper.rb:32 ../app/helpers/resource_pool_helper/textual_summary.rb:175 ../app/views/vm_common/_config.html.haml:236 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:200 ../app/helpers/resource_pool_helper.rb:32 ../app/views/vm_common/_config.html.haml:236 msgid "CPU Shares Level" msgstr "" -#: ../app/controllers/application_controller.rb:1160 ../app/views/miq_capacity/_planning_vm_profile.html.haml:16 ../app/views/miq_capacity/_planning_vm_profile.html.haml:67 ../app/views/miq_capacity/_planning_options.html.haml:148 ../app/views/miq_capacity/_planning_options.html.haml:320 +#: ../app/controllers/application_controller.rb:1167 ../app/views/miq_capacity/_planning_options.html.haml:148 ../app/views/miq_capacity/_planning_options.html.haml:320 ../app/views/miq_capacity/_planning_vm_profile.html.haml:16 ../app/views/miq_capacity/_planning_vm_profile.html.haml:67 msgid "CPU Speed" msgstr "" @@ -4856,27 +4984,27 @@ msgstr "" msgid "CPU Time" msgstr "" -#: ../app/controllers/application_controller.rb:1157 +#: ../app/controllers/application_controller.rb:1164 msgid "CPU Type" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:797 ../app/views/vm_common/_right_size.html.haml:79 +#: ../app/helpers/vm_helper/textual_summary.rb:794 ../app/views/vm_common/_right_size.html.haml:79 msgid "CPU Usage" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:67 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:77 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:77 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:67 msgid "CPU/Memory Recommendations of selected item" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:44 +#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:46 msgid "CPU/Memory Recommendations of this Image" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:79 ../app/helpers/application_helper/toolbar/x_vm_center.rb:58 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:58 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:81 msgid "CPU/Memory Recommendations of this VM" msgstr "" -#: ../app/helpers/flavor_helper/textual_summary.rb:35 ../app/controllers/application_controller/miq_request_methods.rb:409 +#: ../app/helpers/flavor_helper/textual_summary.rb:31 ../app/controllers/application_controller/miq_request_methods.rb:409 msgid "CPUs" msgstr "" @@ -4884,19 +5012,23 @@ msgstr "" msgid "CSV" msgstr "" -#: ../app/views/report/_form_sort.html.haml:246 ../app/views/report/_form_consolidate.html.haml:107 +#: ../app/views/report/_form_sort.html.haml:224 ../app/views/report/_form_consolidate.html.haml:107 msgid "Calculations" msgstr "" +#: ../app/controllers/chargeback_controller.rb:114 +msgid "Can not change description of 'Default Container Image Rate'" +msgstr "" + #: ../app/controllers/report_controller/menus.rb:52 msgid "Can not delete folder, one or more reports in the selected folder are not owned by your group" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:31 ../app/views/ontap_storage_system/_create_logical_disk.html.haml:70 ../app/views/host_aggregate/edit.html.haml:51 ../app/views/host_aggregate/new.html.haml:104 ../app/views/miq_policy/_export.html.haml:33 ../app/views/miq_policy/import.html.haml:73 ../app/views/static/buttons.html.haml:52 ../app/views/static/buttons.html.haml:53 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:445 ../app/views/miq_request/_prov_form_buttons.html.haml:15 ../app/views/miq_request/_prov_form_buttons.html.haml:46 ../app/views/miq_ae_customization/_dialog_import_export.html.haml:67 ../app/views/shared/views/ems_common/_form.html.haml:187 ../app/views/shared/views/_retire.html.haml:106 ../app/views/shared/views/_retire.html.haml:106 ../app/views/cloud_volume/edit.html.haml:52 ../app/views/cloud_volume/attach.html.haml:70 ../app/views/cloud_volume/new.html.haml:105 ../app/views/cloud_volume/snapshot_new.html.haml:52 ../app/views/cloud_volume/backup_new.html.haml:69 ../app/views/cloud_volume/backup_select.html.haml:53 ../app/views/cloud_volume/detach.html.haml:46 ../app/views/vm_common/_add_to_service.html.haml:56 ../app/views/vm_common/_associate_floating_ip.html.haml:48 ../app/views/vm_common/_live_migrate.html.haml:119 ../app/views/vm_common/_disassociate_floating_ip.html.haml:48 ../app/views/vm_common/_resize.html.haml:70 ../app/views/vm_common/_resize.html.haml:83 ../app/views/vm_common/_reconfigure.html.haml:422 ../app/views/vm_common/_reconfigure.html.haml:422 ../app/views/vm_common/_snap.html.haml:70 ../app/views/vm_common/_evacuate.html.haml:115 ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:37 ../app/views/miq_ae_tools/_import_export.html.haml:234 ../app/views/ontap_file_share/_create_datastore.html.haml:73 ../app/views/middleware_server/_deploy.html.haml:116 ../app/views/middleware_server/_ops_params.html.haml:93 ../app/views/middleware_server/_add_datasource_step1.html.haml:80 ../app/views/middleware_server/_add_datasource_step2.html.haml:115 ../app/views/middleware_server/_add_datasource_step3.html.haml:107 ../app/views/middleware_server/_choose_datasource.html.haml:42 ../app/views/middleware_server/_add_jdbc_driver.html.haml:188 ../app/views/ems_cloud/discover.html.haml:61 ../app/views/ems_cloud/discover.html.haml:61 ../app/views/storage_manager/_form.html.haml:246 ../app/views/report/_export_widgets.html.haml:68 ../app/views/ems_infra/register_nodes.html.haml:23 ../app/views/ems_infra/scaledown.html.haml:96 ../app/views/ems_infra/scaledown.html.haml:96 ../app/views/ems_infra/scaling.html.haml:66 ../app/views/ems_infra/scaling.html.haml:66 ../app/views/layouts/_adv_search_footer.html.haml:77 ../app/views/layouts/_adv_search_footer.html.haml:90 ../app/views/layouts/_x_dialog_buttons.html.haml:46 ../app/views/layouts/_x_dialog_buttons.html.haml:71 ../app/views/layouts/_x_edit_buttons.html.haml:130 ../app/views/layouts/_x_edit_buttons.html.haml:173 ../app/views/layouts/_x_edit_buttons.html.haml:193 ../app/views/layouts/_x_edit_buttons.html.haml:211 ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:35 ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:35 ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:35 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:51 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:51 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:51 ../app/views/layouts/_form_buttons.html.haml:65 ../app/views/layouts/_form_buttons.html.haml:83 ../app/views/layouts/_discover.html.haml:110 ../app/views/layouts/_discover.html.haml:110 ../app/views/layouts/_ae_tree_select.html.haml:66 ../app/views/layouts/_ae_tree_select.html.haml:80 ../app/views/layouts/_user_input_filter.html.haml:123 ../app/views/layouts/_edit_form_buttons.html.haml:123 ../app/views/layouts/_edit_form_buttons.html.haml:132 ../app/views/layouts/_edit_form_buttons.html.haml:163 ../app/views/layouts/_edit_form_buttons.html.haml:172 ../app/views/layouts/_edit_buttons.html.haml:40 ../app/views/layouts/_edit_buttons.html.haml:40 ../app/views/layouts/_edit_buttons.html.haml:63 ../app/views/layouts/_edit_buttons.html.haml:63 ../app/assets/javascripts/controllers/container_deployment/wizard/wizard-directive.js:46 ../app/assets/javascripts/controllers/buttons/button_group_controller.js:8 ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:10 +#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:31 ../app/views/ems_cloud/discover.html.haml:61 ../app/views/ems_cloud/discover.html.haml:61 ../app/views/miq_policy/_export.html.haml:33 ../app/views/miq_policy/import.html.haml:73 ../app/views/vm_common/_live_migrate.html.haml:119 ../app/views/vm_common/_reconfigure.html.haml:415 ../app/views/vm_common/_associate_floating_ip.html.haml:48 ../app/views/vm_common/_evacuate.html.haml:115 ../app/views/vm_common/_disassociate_floating_ip.html.haml:48 ../app/views/vm_common/_resize.html.haml:70 ../app/views/vm_common/_resize.html.haml:83 ../app/views/vm_common/_add_to_service.html.haml:56 ../app/views/vm_common/_snap.html.haml:70 ../app/views/host_aggregate/edit.html.haml:51 ../app/views/host_aggregate/new.html.haml:104 ../app/views/miq_request/_prov_form_buttons.html.haml:15 ../app/views/miq_request/_prov_form_buttons.html.haml:46 ../app/views/middleware_shared/_deploy.html.haml:119 ../app/views/middleware_shared/_ops_params.html.haml:93 ../app/views/cloud_volume/edit.html.haml:52 ../app/views/cloud_volume/attach.html.haml:70 ../app/views/cloud_volume/backup_new.html.haml:69 ../app/views/cloud_volume/backup_select.html.haml:53 ../app/views/cloud_volume/detach.html.haml:46 ../app/views/cloud_volume/new.html.haml:249 ../app/views/cloud_volume/snapshot_new.html.haml:52 ../app/views/storage_manager/_form.html.haml:246 ../app/views/shared/views/_retire.html.haml:106 ../app/views/shared/views/_retire.html.haml:106 ../app/views/shared/views/ems_common/_form.html.haml:186 ../app/views/report/_export_widgets.html.haml:68 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:445 ../app/views/static/edit_alert_dialog.html.haml:93 ../app/views/ems_infra/scaledown.html.haml:96 ../app/views/ems_infra/scaledown.html.haml:96 ../app/views/ems_infra/register_nodes.html.haml:23 ../app/views/ems_infra/scaling.html.haml:66 ../app/views/ems_infra/scaling.html.haml:66 ../app/views/layouts/_ae_tree_select.html.haml:66 ../app/views/layouts/_ae_tree_select.html.haml:80 ../app/views/layouts/_user_input_filter.html.haml:127 ../app/views/layouts/_edit_buttons.html.haml:40 ../app/views/layouts/_edit_buttons.html.haml:40 ../app/views/layouts/_edit_buttons.html.haml:63 ../app/views/layouts/_edit_buttons.html.haml:63 ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:19 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:28 ../app/views/layouts/angular/_generic_form_buttons.html.haml:28 ../app/views/layouts/_edit_form_buttons.html.haml:123 ../app/views/layouts/_edit_form_buttons.html.haml:132 ../app/views/layouts/_edit_form_buttons.html.haml:163 ../app/views/layouts/_edit_form_buttons.html.haml:172 ../app/views/layouts/_adv_search_footer.html.haml:84 ../app/views/layouts/_adv_search_footer.html.haml:97 ../app/views/layouts/_x_dialog_buttons.html.haml:46 ../app/views/layouts/_x_dialog_buttons.html.haml:71 ../app/views/layouts/_discover.html.haml:110 ../app/views/layouts/_discover.html.haml:110 ../app/views/layouts/_x_edit_buttons.html.haml:130 ../app/views/layouts/_x_edit_buttons.html.haml:173 ../app/views/layouts/_x_edit_buttons.html.haml:193 ../app/views/layouts/_x_edit_buttons.html.haml:211 ../app/views/layouts/_form_buttons.html.haml:65 ../app/views/layouts/_form_buttons.html.haml:83 ../app/views/miq_ae_customization/_dialog_import_export.html.haml:67 ../app/views/middleware_server/_choose_datasource.html.haml:61 ../app/views/middleware_server/_add_jdbc_driver.html.haml:188 ../app/views/middleware_server/_add_datasource_step2.html.haml:41 ../app/views/middleware_server/_add_datasource_step3.html.haml:177 ../app/views/middleware_server/_add_datasource_step1.html.haml:80 ../app/views/miq_ae_tools/_import_export.html.haml:234 ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:37 ../app/assets/javascripts/controllers/container_deployment/wizard/wizard-directive.js:46 ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:10 msgid "Cancel" msgstr "" -#: ../app/views/layouts/_user_input_filter.html.haml:123 +#: ../app/views/layouts/_user_input_filter.html.haml:127 msgid "Cancel (Esc)" msgstr "" @@ -4904,11 +5036,11 @@ msgstr "" msgid "Cancel Add" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:30 ../app/views/miq_policy/_export.html.haml:33 ../app/views/miq_policy/import.html.haml:73 ../app/views/miq_ae_customization/_dialog_import_export.html.haml:67 ../app/views/vm_common/_resize.html.haml:70 ../app/views/vm_common/_resize.html.haml:83 ../app/views/report/_export_widgets.html.haml:68 ../app/views/layouts/_edit_form_buttons.html.haml:123 ../app/views/layouts/_edit_form_buttons.html.haml:132 +#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:30 ../app/views/miq_policy/_export.html.haml:33 ../app/views/miq_policy/import.html.haml:73 ../app/views/vm_common/_resize.html.haml:70 ../app/views/vm_common/_resize.html.haml:83 ../app/views/report/_export_widgets.html.haml:68 ../app/views/layouts/_edit_form_buttons.html.haml:123 ../app/views/layouts/_edit_form_buttons.html.haml:132 ../app/views/miq_ae_customization/_dialog_import_export.html.haml:67 msgid "Cancel Changes" msgstr "" -#: ../app/views/vm_common/_reconfigure.html.haml:372 ../app/views/ops/_settings_replication_tab.html.haml:350 +#: ../app/views/vm_common/_reconfigure.html.haml:372 ../app/views/ops/_settings_replication_tab.html.haml:271 msgid "Cancel Delete" msgstr "" @@ -4932,7 +5064,7 @@ msgstr "" msgid "Cancel client key change" msgstr "" -#: ../app/views/ops/_rbac_user_details.html.haml:2 ../app/views/storage_manager/_form.html.haml:4 ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:15 ../app/views/layouts/_auth_credentials.html.haml:12 +#: ../app/views/ops/_rbac_user_details.html.haml:2 ../app/views/storage_manager/_form.html.haml:4 ../app/views/layouts/_auth_credentials.html.haml:12 ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:15 msgid "Cancel password change" msgstr "" @@ -4940,19 +5072,19 @@ msgstr "" msgid "Cancel private key change" msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:72 msgid "Cancel secret access key change" msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:136 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:155 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:139 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:158 msgid "Cancel stored token" msgstr "" -#: ../app/views/layouts/_adv_search_footer.html.haml:77 +#: ../app/views/layouts/_adv_search_footer.html.haml:84 msgid "Cancel the load" msgstr "" -#: ../app/views/layouts/_adv_search_footer.html.haml:90 +#: ../app/views/layouts/_adv_search_footer.html.haml:97 msgid "Cancel the save" msgstr "" @@ -4964,7 +5096,7 @@ msgstr "" msgid "Cancel this provisioning request" msgstr "" -#: ../app/helpers/ui_constants.rb:414 +#: ../app/helpers/ui_constants.rb:411 msgid "Cancelling" msgstr "" @@ -4972,59 +5104,59 @@ msgstr "" msgid "Cannot add a Widget, this Dashboard has been locked by the Administrator" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:615 +#: ../app/helpers/application_helper/button/collect_logs.rb:6 msgid "Cannot collect current logs unless the %{server} is started" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:766 +#: ../app/helpers/application_helper/button/zone_collect_logs.rb:6 msgid "Cannot collect current logs unless there are started %{servers} in the Zone" msgstr "" -#: ../app/controllers/ems_infra_controller.rb:147 +#: ../app/controllers/ems_infra_controller.rb:148 msgid "Cannot connect to workflow service: %{message}" msgstr "" -#: ../app/controllers/application_controller/miq_request_methods.rb:781 ../app/controllers/application_controller/miq_request_methods.rb:969 +#: ../app/controllers/application_controller/miq_request_methods.rb:784 ../app/controllers/application_controller/miq_request_methods.rb:972 msgid "Cannot create Request Info, error: %{error_message}" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:783 +#: ../app/helpers/application_helper/button/zone_delete.rb:8 msgid "Cannot delete a Zone that has Relationships" msgstr "" -#: ../app/views/layouts/_item.html.haml:142 +#: ../app/views/layouts/_item.html.haml:84 msgid "Cannot display binary content" msgstr "" -#: ../app/controllers/ems_infra_controller.rb:139 +#: ../app/controllers/ems_infra_controller.rb:140 msgid "Cannot parse JSON file: %{message}" msgstr "" -#: ../app/controllers/ops_controller/diagnostics.rb:610 +#: ../app/controllers/ops_controller/diagnostics.rb:601 msgid "Cannot start log collection, a log collection is already in progress within this scope" msgstr "" -#: ../app/controllers/ops_controller/diagnostics.rb:608 +#: ../app/controllers/ops_controller/diagnostics.rb:599 msgid "Cannot start log collection, requires a started server" msgstr "" -#: ../app/views/vm_common/console_vnc.html.haml:38 -msgid "Canvas not supported." -msgstr "" - -#: ../app/views/persistent_volume/_main.html.haml:22 +#: ../app/helpers/persistent_volume_helper/textual_summary.rb:37 msgid "Capacity" msgstr "" -#: ../app/views/layouts/listnav/_container_group.html.haml:19 ../app/views/layouts/listnav/_container_group.html.haml:27 ../app/views/layouts/listnav/_ems_cluster.html.haml:26 ../app/views/layouts/listnav/_host.html.haml:71 ../app/views/layouts/listnav/_ems_container.html.haml:19 ../app/views/layouts/listnav/_ems_container.html.haml:27 ../app/views/layouts/listnav/_storage.html.haml:18 ../app/views/layouts/listnav/_container_project.html.haml:19 ../app/views/layouts/listnav/_container_project.html.haml:27 ../app/views/layouts/listnav/_container_replicator.html.haml:19 ../app/views/layouts/listnav/_container_replicator.html.haml:27 ../app/views/layouts/listnav/_container_service.html.haml:19 ../app/views/layouts/listnav/_container_service.html.haml:27 ../app/views/layouts/listnav/_container_node.html.haml:19 ../app/views/layouts/listnav/_container_node.html.haml:27 +#: ../app/views/layouts/listnav/_host.html.haml:71 ../app/views/layouts/listnav/_container_project.html.haml:19 ../app/views/layouts/listnav/_container_project.html.haml:27 ../app/views/layouts/listnav/_storage.html.haml:18 ../app/views/layouts/listnav/_container_replicator.html.haml:19 ../app/views/layouts/listnav/_container_replicator.html.haml:27 ../app/views/layouts/listnav/_container_service.html.haml:19 ../app/views/layouts/listnav/_container_service.html.haml:27 ../app/views/layouts/listnav/_container_node.html.haml:19 ../app/views/layouts/listnav/_container_node.html.haml:27 ../app/views/layouts/listnav/_container_group.html.haml:19 ../app/views/layouts/listnav/_container_group.html.haml:27 ../app/views/layouts/listnav/_ems_cluster.html.haml:26 ../app/views/layouts/listnav/_ems_container.html.haml:19 ../app/views/layouts/listnav/_ems_container.html.haml:27 msgid "Capacity & Utilization" msgstr "" -#: ../app/controllers/vm_common.rb:1757 +#: ../app/controllers/vm_common.rb:1569 msgid "Capacity & Utilization data for %{vm_or_template} \"%{name}\"" msgstr "" -#: ../app/views/ops/_db_summary.html.haml:7 ../app/views/ontap_logical_disk/_main.html.haml:16 +#: ../app/controllers/container_controller.rb:188 +msgid "Capacity & Utilization data for Container \"%{container_name}\"" +msgstr "" + +#: ../app/helpers/ops_helper/textual_summary.rb:30 msgid "Capacity Data" msgstr "" @@ -5032,10 +5164,6 @@ msgstr "" msgid "Capacity and Utilization Collection settings saved" msgstr "" -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:35 ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:38 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:45 -msgid "Caption" -msgstr "" - #: ../app/views/ops/_settings_co_categories_tab.html.haml:18 msgid "Capture C & U Data" msgstr "" @@ -5044,35 +5172,43 @@ msgstr "" msgid "Capture C & U Data by Tag" msgstr "" -#: ../app/views/catalog/_form_basic_info.html.haml:54 ../app/views/catalog/_sandt_tree_show.html.haml:65 +#: ../app/views/catalog/_sandt_tree_show.html.haml:65 ../app/views/catalog/_st_angular_form.html.haml:89 ../app/views/catalog/_form_basic_info.html.haml:54 msgid "Catalog" msgstr "" -#: ../app/controllers/catalog_controller.rb:331 +#: ../app/controllers/catalog_controller.rb:334 msgid "Catalog Bundle \"%{name}\" was added" msgstr "" -#: ../app/controllers/catalog_controller.rb:329 +#: ../app/controllers/catalog_controller.rb:332 msgid "Catalog Bundle \"%{name}\" was saved" msgstr "" +#: ../app/assets/javascripts/controllers/catalog/catalog_item_form_controller.js:155 +msgid "Catalog Item %s was added" +msgstr "" + +#: ../app/assets/javascripts/controllers/catalog/catalog_item_form_controller.js:146 +msgid "Catalog Item %s was saved" +msgstr "" + #: ../app/views/catalog/_st_form.html.haml:13 msgid "Catalog Item Type" msgstr "" -#: ../app/controllers/catalog_controller.rb:827 ../app/controllers/catalog_controller.rb:2009 ../app/views/configuration/_ui_2.html.haml:49 ../app/views/catalog/_stcat_tree_show.html.haml:49 +#: ../app/controllers/catalog_controller.rb:840 ../app/controllers/catalog_controller.rb:2074 ../app/views/configuration/_ui_2.html.haml:50 ../app/views/catalog/_stcat_tree_show.html.haml:49 msgid "Catalog Items" msgstr "" -#: ../app/presenters/menu/default_menu.rb:40 ../app/controllers/catalog_controller.rb:837 +#: ../app/presenters/menu/default_menu.rb:41 ../app/controllers/catalog_controller.rb:850 msgid "Catalogs" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:568 ../app/views/miq_policy/_action_options.html.haml:598 ../app/views/miq_policy/_action_details.html.haml:502 ../app/views/miq_policy/_action_details.html.haml:526 ../app/views/ops/_ap_show.html.haml:67 ../app/views/ops/_all_tabs.html.haml:77 +#: ../app/views/miq_policy/_action_options.html.haml:560 ../app/views/miq_policy/_action_options.html.haml:590 ../app/views/miq_policy/_action_details.html.haml:502 ../app/views/miq_policy/_action_details.html.haml:526 ../app/views/ops/_ap_show.html.haml:67 ../app/views/ops/_all_tabs.html.haml:77 msgid "Categories" msgstr "" -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:287 ../app/views/ops/_ap_form.html.haml:80 ../app/views/ops/_settings_co_tags_tab.html.haml:15 ../app/views/ops/_label_tag_mapping_form.html.haml:63 ../app/views/layouts/_tag_edit_assignments.html.haml:13 ../app/views/layouts/_classify_table.html.haml:11 +#: ../app/views/ops/_label_tag_mapping_form.html.haml:63 ../app/views/ops/_settings_co_tags_tab.html.haml:15 ../app/views/ops/_ap_form.html.haml:80 ../app/views/layouts/_classify_table.html.haml:11 ../app/views/layouts/_tag_edit_assignments.html.haml:13 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:284 msgid "Category" msgstr "" @@ -5108,7 +5244,7 @@ msgstr "" msgid "Category is required" msgstr "" -#: ../app/presenters/tree_node_builder.rb:241 +#: ../app/presenters/tree_node/classification.rb:6 msgid "Category: %{description}" msgstr "" @@ -5120,14 +5256,6 @@ msgstr "" msgid "Caution: Manual changes to configuration files can disable the Server!" msgstr "" -#: ../app/views/ops/_settings_replication_tab.html.haml:146 -msgid "Central Admin Enabled" -msgstr "" - -#: ../app/controllers/ops_controller/settings/common.rb:283 -msgid "Central Admin has been disabled" -msgstr "" - #: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:131 msgid "Challenge URL" msgstr "" @@ -5140,10 +5268,6 @@ msgstr "" msgid "Change Group" msgstr "" -#: ../app/views/ems_container/_show_ad_hoc_metrics.html.haml:168 -msgid "Change Metrics" -msgstr "" - #: ../app/views/layouts/_auth_credentials2.html.haml:10 msgid "Change Password / Confirm Password" msgstr "" @@ -5152,7 +5276,7 @@ msgstr "" msgid "Change stored client key" msgstr "" -#: ../app/views/ops/_rbac_user_details.html.haml:1 ../app/views/storage_manager/_form.html.haml:3 ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:14 ../app/views/layouts/_auth_credentials.html.haml:11 +#: ../app/views/ops/_rbac_user_details.html.haml:1 ../app/views/storage_manager/_form.html.haml:3 ../app/views/layouts/_auth_credentials.html.haml:11 ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:14 msgid "Change stored password" msgstr "" @@ -5160,11 +5284,11 @@ msgstr "" msgid "Change stored private key" msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:72 msgid "Change stored secret access key" msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:136 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:155 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:139 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:158 msgid "Change stored token" msgstr "" @@ -5172,7 +5296,7 @@ msgstr "" msgid "Change to this Group" msgstr "" -#: ../app/controllers/application_controller/compare.rb:1004 ../app/controllers/application_controller/compare.rb:1045 +#: ../app/controllers/application_controller/compare.rb:900 ../app/controllers/application_controller/compare.rb:941 msgid "Changed from previous" msgstr "" @@ -5184,23 +5308,35 @@ msgstr "" msgid "Changing the UI Workers Count will immediately restart the webserver" msgstr "" -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:89 +#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:80 msgid "Changing to remote replication role will remove all current subscriptions" msgstr "" -#: ../app/presenters/menu/default_menu.rb:25 ../app/controllers/chargeback_controller.rb:924 +#: ../app/presenters/menu/default_menu.rb:26 ../app/controllers/chargeback_controller.rb:921 msgid "Chargeback" msgstr "" -#: ../app/views/report/_form_filter_chargeback.html.haml:4 +#: ../app/views/report/_form_filter_chargeback.html.haml:32 msgid "Chargeback Filters" msgstr "" -#: ../app/views/report/_form_filter_chargeback.html.haml:240 +#: ../app/views/report/_form_filter_chargeback.html.haml:268 msgid "Chargeback Interval" msgstr "" -#: ../app/helpers/ui_constants.rb:629 ../app/views/report/_report_info.html.haml:56 ../app/views/report/_report_list.html.haml:132 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:172 +msgid "Chargeback Preview" +msgstr "" + +#: ../app/views/report/_form_filter_chargeback.html.haml:5 +msgid "Chargeback Resources" +msgstr "" + +#: ../app/controllers/vm_common.rb:1540 +msgid "Chargeback preview for \"%{vm_name}\"" +msgstr "" + +#: ../app/helpers/ui_constants.rb:596 ../app/views/report/_report_list.html.haml:132 ../app/views/report/_report_info.html.haml:56 msgid "Chart" msgstr "" @@ -5216,11 +5352,11 @@ msgstr "" msgid "Chart Settings" msgstr "" -#: ../app/views/configuration/_ui_1.html.haml:146 +#: ../app/views/configuration/_ui_1.html.haml:173 msgid "Chart Theme" msgstr "" -#: ../app/controllers/application_controller/performance.rb:523 +#: ../app/controllers/application_controller/performance.rb:449 msgid "Chart menu selection not yet implemented" msgstr "" @@ -5232,19 +5368,19 @@ msgstr "" msgid "Chart no longer exists" msgstr "" -#: ../app/helpers/ui_constants.rb:622 ../app/controllers/report_controller/reports/editor.rb:334 +#: ../app/helpers/ui_constants.rb:589 ../app/controllers/report_controller/reports/editor.rb:339 msgid "Charts" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1729 +#: ../app/controllers/report_controller/reports/editor.rb:1744 msgid "Charts tab is not available unless a sort field has been selected" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1727 +#: ../app/controllers/report_controller/reports/editor.rb:1742 msgid "Charts tab is not available until at least 1 field has been selected" msgstr "" -#: ../app/views/miq_ae_class/_ns_details.html.haml:13 ../app/views/miq_ae_class/_class_instances.html.haml:14 ../app/views/miq_ae_class/_ns_list.html.haml:15 ../app/views/miq_ae_class/_class_methods.html.haml:14 ../app/views/ops/_settings_cu_collection_tab.html.haml:59 ../app/views/ops/_settings_cu_collection_tab.html.haml:112 ../app/views/layouts/exp_atom/_edit_find.html.haml:151 ../app/views/layouts/_x_pagingcontrols.html.haml:18 +#: ../app/views/ops/_settings_cu_collection_tab.html.haml:59 ../app/views/ops/_settings_cu_collection_tab.html.haml:112 ../app/views/miq_ae_class/_ns_details.html.haml:13 ../app/views/miq_ae_class/_ns_list.html.haml:15 ../app/views/miq_ae_class/_class_instances.html.haml:14 ../app/views/miq_ae_class/_class_methods.html.haml:14 ../app/views/layouts/_x_pagingcontrols.html.haml:18 ../app/views/layouts/exp_atom/_edit_find.html.haml:151 msgid "Check All" msgstr "" @@ -5256,27 +5392,27 @@ msgstr "" msgid "Check Compliance" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:64 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:138 ../app/helpers/application_helper/toolbar/template_infras_center.rb:103 ../app/helpers/application_helper/toolbar/host_center.rb:90 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:72 ../app/helpers/application_helper/toolbar/container_replicators_center.rb:31 ../app/helpers/application_helper/toolbar/container_image_center.rb:39 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:78 ../app/helpers/application_helper/toolbar/vms_center.rb:95 ../app/helpers/application_helper/toolbar/container_replicator_center.rb:49 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:110 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:97 ../app/helpers/application_helper/toolbar/container_images_center.rb:50 ../app/helpers/application_helper/toolbar/miq_template_center.rb:73 ../app/helpers/application_helper/toolbar/miq_template_center.rb:168 ../app/helpers/application_helper/toolbar/container_node_center.rb:49 ../app/helpers/application_helper/toolbar/container_groups_center.rb:31 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:81 ../app/helpers/application_helper/toolbar/ems_container_center.rb:91 ../app/helpers/application_helper/toolbar/ems_containers_center.rb:81 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:114 ../app/helpers/application_helper/toolbar/container_group_center.rb:49 ../app/helpers/application_helper/toolbar/x_vm_center.rb:97 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:130 ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:81 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:94 ../app/helpers/application_helper/toolbar/hosts_center.rb:132 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:75 ../app/helpers/application_helper/toolbar/container_nodes_center.rb:31 +#: ../app/helpers/application_helper/toolbar/container_replicators_center.rb:31 ../app/helpers/application_helper/toolbar/ems_physical_infras_center.rb:81 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:72 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:77 ../app/helpers/application_helper/toolbar/container_replicator_center.rb:49 ../app/helpers/application_helper/toolbar/ems_physical_infra_center.rb:57 ../app/helpers/application_helper/toolbar/ems_container_center.rb:100 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:130 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:115 ../app/helpers/application_helper/toolbar/host_center.rb:90 ../app/helpers/application_helper/toolbar/container_image_center.rb:41 ../app/helpers/application_helper/toolbar/x_vm_center.rb:97 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:99 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:139 ../app/helpers/application_helper/toolbar/container_node_center.rb:58 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:112 ../app/helpers/application_helper/toolbar/vms_center.rb:95 ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:65 ../app/helpers/application_helper/toolbar/ems_containers_center.rb:82 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:94 ../app/helpers/application_helper/toolbar/container_images_center.rb:51 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:83 ../app/helpers/application_helper/toolbar/container_group_center.rb:49 ../app/helpers/application_helper/toolbar/template_infras_center.rb:103 ../app/helpers/application_helper/toolbar/hosts_center.rb:134 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:78 ../app/helpers/application_helper/toolbar/container_nodes_center.rb:31 ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:83 ../app/helpers/application_helper/toolbar/container_groups_center.rb:31 msgid "Check Compliance of Last Known Configuration" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:102 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:93 +#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:93 ../app/helpers/application_helper/toolbar/template_infras_center.rb:102 msgid "Check Compliance of the last known configuration for the selected Templates" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:137 ../app/helpers/application_helper/toolbar/vms_center.rb:94 ../app/helpers/application_helper/toolbar/container_images_center.rb:49 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:113 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:129 ../app/helpers/application_helper/toolbar/hosts_center.rb:131 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:129 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:114 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:138 ../app/helpers/application_helper/toolbar/vms_center.rb:94 ../app/helpers/application_helper/toolbar/container_images_center.rb:50 ../app/helpers/application_helper/toolbar/hosts_center.rb:133 msgid "Check Compliance of the last known configuration for the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:80 +#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:82 msgid "Check Compliance of the last known configuration for these Cloud Managers" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:80 +#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:81 msgid "Check Compliance of the last known configuration for these Container Managers" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:80 +#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:82 msgid "Check Compliance of the last known configuration for these Infra Managers" msgstr "" @@ -5284,6 +5420,10 @@ msgstr "" msgid "Check Compliance of the last known configuration for these Nodes" msgstr "" +#: ../app/helpers/application_helper/toolbar/ems_physical_infras_center.rb:80 +msgid "Check Compliance of the last known configuration for these Physical Infra Managers" +msgstr "" + #: ../app/helpers/application_helper/toolbar/container_groups_center.rb:30 msgid "Check Compliance of the last known configuration for these Pods" msgstr "" @@ -5292,15 +5432,15 @@ msgstr "" msgid "Check Compliance of the last known configuration for these Replicators" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:63 +#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:64 msgid "Check Compliance of the last known configuration for this Cloud Manager" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:90 +#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:99 msgid "Check Compliance of the last known configuration for this Container Manager" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:96 +#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:98 msgid "Check Compliance of the last known configuration for this Image" msgstr "" @@ -5308,14 +5448,18 @@ msgstr "" msgid "Check Compliance of the last known configuration for this Infra Manager" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:109 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:74 +#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:76 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:111 msgid "Check Compliance of the last known configuration for this Instance" msgstr "" -#: ../app/helpers/application_helper/toolbar/container_node_center.rb:48 +#: ../app/helpers/application_helper/toolbar/container_node_center.rb:57 msgid "Check Compliance of the last known configuration for this Node" msgstr "" +#: ../app/helpers/application_helper/toolbar/ems_physical_infra_center.rb:56 +msgid "Check Compliance of the last known configuration for this Physical Infra Manager" +msgstr "" + #: ../app/helpers/application_helper/toolbar/container_group_center.rb:48 msgid "Check Compliance of the last known configuration for this Pod" msgstr "" @@ -5324,7 +5468,7 @@ msgstr "" msgid "Check Compliance of the last known configuration for this Replicator" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:71 ../app/helpers/application_helper/toolbar/miq_template_center.rb:72 ../app/helpers/application_helper/toolbar/miq_template_center.rb:167 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:71 msgid "Check Compliance of the last known configuration for this Template" msgstr "" @@ -5332,7 +5476,7 @@ msgstr "" msgid "Check Compliance of the last known configuration for this VM" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:89 ../app/helpers/application_helper/toolbar/container_image_center.rb:38 +#: ../app/helpers/application_helper/toolbar/host_center.rb:89 ../app/helpers/application_helper/toolbar/container_image_center.rb:40 msgid "Check Compliance of the last known configuration for this item" msgstr "" @@ -5340,7 +5484,7 @@ msgstr "" msgid "Check Count" msgstr "" -#: ../app/controllers/application_controller/filter.rb:867 +#: ../app/controllers/application_controller/filter.rb:865 msgid "Check Value Error: %{msg}" msgstr "" @@ -5352,7 +5496,7 @@ msgstr "" msgid "Check for updates" msgstr "" -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:65 +#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:71 msgid "Child Orchestration Stacks" msgstr "" @@ -5368,15 +5512,15 @@ msgstr "" msgid "Child VMs:" msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:258 +#: ../app/helpers/provider_foreman_helper.rb:263 ../app/helpers/automation_manager_helper.rb:99 msgid "Choices" msgstr "" -#: ../app/views/network_router/new.html.haml:21 ../app/views/network_router/new.html.haml:79 ../app/views/network_router/new.html.haml:100 ../app/views/miq_capacity/_planning_options.html.haml:16 ../app/views/ontap_storage_system/_create_logical_disk.html.haml:30 ../app/views/cloud_subnet/new.html.haml:21 ../app/views/cloud_subnet/new.html.haml:49 ../app/views/cloud_subnet/new.html.haml:118 ../app/views/cloud_tenant/new.html.haml:21 ../app/views/host_aggregate/add_host_select.html.haml:21 ../app/views/host_aggregate/remove_host_select.html.haml:21 ../app/views/host_aggregate/new.html.haml:64 ../app/views/ems_container/_form.html.haml:45 ../app/views/miq_policy/_alert_builtin_exp.html.haml:15 ../app/views/miq_policy/_alert_builtin_exp.html.haml:44 ../app/views/miq_policy/_alert_builtin_exp.html.haml:66 ../app/views/miq_policy/_alert_builtin_exp.html.haml:88 ../app/views/miq_policy/_alert_builtin_exp.html.haml:293 ../app/views/miq_policy/_alert_builtin_exp.html.haml:329 ../app/views/miq_policy/_action_options.html.haml:192 ../app/views/miq_policy/_action_options.html.haml:521 ../app/views/miq_policy/_alert_details.html.haml:146 ../app/views/miq_policy/_action_details.html.haml:48 ../app/views/miq_policy/_rsop_form.html.haml:21 ../app/views/miq_policy/_rsop_form.html.haml:32 ../app/views/miq_policy/_rsop_form.html.haml:47 ../app/views/miq_policy/_rsop_form.html.haml:59 ../app/views/miq_policy/_rsop_form.html.haml:68 ../app/views/miq_policy/_rsop_form.html.haml:77 ../app/views/miq_policy/_rsop_form.html.haml:86 ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:68 ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:92 ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:116 ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:140 ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:164 ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:188 ../app/views/miq_request/_prov_field.html.haml:217 ../app/views/miq_request/_prov_field.html.haml:283 ../app/views/miq_request/_prov_field.html.haml:335 ../app/views/miq_request/_prov_field.html.haml:454 ../app/views/miq_request/_prov_field.html.haml:503 ../app/views/miq_request/_prov_field.html.haml:547 ../app/views/pxe/_template_form.html.haml:54 ../app/views/pxe/_template_form.html.haml:73 ../app/views/pxe/_iso_datastore_form.html.haml:22 ../app/views/pxe/_pxe_form.html.haml:39 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:292 ../app/views/miq_ae_customization/_dialog_sample.html.haml:114 ../app/views/miq_ae_customization/_dialog_sample.html.haml:155 ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:56 ../app/views/miq_ae_customization/_dialog_field_form.html.haml:74 ../app/views/configuration/_timeprofile_form.html.haml:56 ../app/views/configuration/_timeprofile_form.html.haml:56 ../app/views/shared/views/ems_common/_form.html.haml:41 ../app/views/shared/views/ems_common/angular/_form.html.haml:45 ../app/views/shared/views/ems_common/angular/_form.html.haml:45 ../app/views/shared/views/ems_common/angular/_form.html.haml:82 ../app/views/shared/views/ems_common/angular/_form.html.haml:82 ../app/views/cloud_volume/attach.html.haml:21 ../app/views/cloud_volume/attach.html.haml:21 ../app/views/cloud_volume/new.html.haml:65 ../app/views/cloud_volume/backup_select.html.haml:21 ../app/views/cloud_volume/detach.html.haml:21 ../app/views/cloud_volume/detach.html.haml:21 ../app/views/vm_common/_reconfigure.html.haml:108 ../app/views/vm_common/_reconfigure.html.haml:108 ../app/views/vm_common/_reconfigure.html.haml:129 ../app/views/vm_common/_reconfigure.html.haml:129 ../app/views/ems_datawarehouse/_form.html.haml:45 ../app/views/ems_datawarehouse/_form.html.haml:45 ../app/views/catalog/_ot_add.html.haml:75 ../app/views/catalog/_form_basic_info.html.haml:125 ../app/views/catalog/_form_basic_info.html.haml:147 ../app/views/catalog/_form_basic_info.html.haml:169 ../app/views/catalog/_form_basic_info.html.haml:191 ../app/views/catalog/_form_resources_info.html.haml:25 ../app/views/catalog/_ot_copy.html.haml:58 ../app/views/catalog/_st_form.html.haml:18 ../app/views/catalog/_ot_edit.html.haml:51 ../app/views/provider_foreman/_form.html.haml:49 ../app/views/provider_foreman/_form.html.haml:49 ../app/views/ontap_file_share/_create_datastore.html.haml:41 ../app/views/ops/_settings_import_tab.html.haml:25 ../app/views/ems_middleware/_form.html.haml:45 ../app/views/ems_middleware/_form.html.haml:45 ../app/views/cloud_network/new.html.haml:21 ../app/views/cloud_network/new.html.haml:50 ../app/views/cloud_network/new.html.haml:77 ../app/views/storage_manager/_form.html.haml:50 ../app/views/report/_widget_form_report.html.haml:20 ../app/views/report/_widget_form_report.html.haml:33 ../app/views/report/_widget_form_report.html.haml:46 ../app/views/report/_schedule_form_filter.html.haml:21 ../app/views/report/_schedule_form_filter.html.haml:42 ../app/views/report/_schedule_form_filter.html.haml:62 ../app/views/report/_schedule_form_filter.html.haml:86 ../app/views/report/_schedule_form_filter.html.haml:106 ../app/views/report/_schedule_form_filter.html.haml:125 ../app/views/report/_form_columns_trend.html.haml:11 ../app/views/report/_form_filter_chargeback.html.haml:19 ../app/views/ems_infra/_form.html.haml:45 ../app/views/ems_infra/_form.html.haml:45 ../app/views/host/_form.html.haml:79 ../app/views/host/_form.html.haml:79 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:148 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:148 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:161 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:161 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:171 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:171 ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:90 ../app/views/layouts/exp_atom/_editor.html.haml:61 ../app/views/layouts/exp_atom/_edit_count.html.haml:7 ../app/views/layouts/exp_atom/_edit_field.html.haml:7 ../app/views/layouts/exp_atom/_edit_field.html.haml:65 ../app/views/layouts/exp_atom/_edit_find.html.haml:9 ../app/views/layouts/exp_atom/_edit_find.html.haml:49 ../app/views/layouts/exp_atom/_edit_tag.html.haml:7 ../app/views/layouts/exp_atom/_edit_tag.html.haml:57 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:632 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:632 +#: ../app/views/cloud_tenant/new.html.haml:21 ../app/views/miq_policy/_action_options.html.haml:184 ../app/views/miq_policy/_action_options.html.haml:513 ../app/views/miq_policy/_action_options.html.haml:625 ../app/views/miq_policy/_alert_details.html.haml:146 ../app/views/miq_policy/_rsop_form.html.haml:21 ../app/views/miq_policy/_rsop_form.html.haml:32 ../app/views/miq_policy/_rsop_form.html.haml:47 ../app/views/miq_policy/_rsop_form.html.haml:59 ../app/views/miq_policy/_rsop_form.html.haml:68 ../app/views/miq_policy/_rsop_form.html.haml:77 ../app/views/miq_policy/_rsop_form.html.haml:86 ../app/views/miq_policy/_alert_builtin_exp.html.haml:15 ../app/views/miq_policy/_alert_builtin_exp.html.haml:44 ../app/views/miq_policy/_alert_builtin_exp.html.haml:66 ../app/views/miq_policy/_alert_builtin_exp.html.haml:88 ../app/views/miq_policy/_alert_builtin_exp.html.haml:293 ../app/views/miq_policy/_alert_builtin_exp.html.haml:329 ../app/views/miq_policy/_action_details.html.haml:48 ../app/views/vm_common/_reconfigure.html.haml:108 ../app/views/vm_common/_reconfigure.html.haml:108 ../app/views/vm_common/_reconfigure.html.haml:129 ../app/views/vm_common/_reconfigure.html.haml:129 ../app/views/configuration/_timeprofile_form.html.haml:58 ../app/views/configuration/_timeprofile_form.html.haml:58 ../app/views/miq_capacity/_planning_options.html.haml:16 ../app/views/floating_ip/new.html.haml:21 ../app/views/floating_ip/new.html.haml:53 ../app/views/floating_ip/new.html.haml:136 ../app/views/host_aggregate/add_host_select.html.haml:21 ../app/views/host_aggregate/new.html.haml:64 ../app/views/host_aggregate/remove_host_select.html.haml:21 ../app/views/ops/_settings_import_tab.html.haml:25 ../app/views/miq_request/_prov_field.html.haml:217 ../app/views/miq_request/_prov_field.html.haml:283 ../app/views/miq_request/_prov_field.html.haml:335 ../app/views/miq_request/_prov_field.html.haml:454 ../app/views/miq_request/_prov_field.html.haml:503 ../app/views/miq_request/_prov_field.html.haml:551 ../app/views/cloud_subnet/new.html.haml:21 ../app/views/cloud_subnet/new.html.haml:61 ../app/views/cloud_subnet/new.html.haml:137 ../app/views/cloud_volume/attach.html.haml:21 ../app/views/cloud_volume/attach.html.haml:21 ../app/views/cloud_volume/backup_select.html.haml:21 ../app/views/cloud_volume/detach.html.haml:21 ../app/views/cloud_volume/detach.html.haml:21 ../app/views/cloud_volume/new.html.haml:16 ../app/views/cloud_volume/new.html.haml:16 ../app/views/cloud_volume/new.html.haml:51 ../app/views/cloud_volume/new.html.haml:82 ../app/views/cloud_volume/new.html.haml:138 ../app/views/storage_manager/_form.html.haml:50 ../app/views/shared/views/ems_common/angular/_form.html.haml:45 ../app/views/shared/views/ems_common/angular/_form.html.haml:45 ../app/views/shared/views/ems_common/angular/_form.html.haml:82 ../app/views/shared/views/ems_common/angular/_form.html.haml:82 ../app/views/shared/views/ems_common/_form.html.haml:41 ../app/views/pxe/_iso_datastore_form.html.haml:22 ../app/views/pxe/_template_form.html.haml:54 ../app/views/pxe/_template_form.html.haml:73 ../app/views/pxe/_pxe_form.html.haml:39 ../app/views/report/_form_filter_chargeback.html.haml:47 ../app/views/report/_schedule_form_filter.html.haml:21 ../app/views/report/_schedule_form_filter.html.haml:42 ../app/views/report/_schedule_form_filter.html.haml:62 ../app/views/report/_schedule_form_filter.html.haml:86 ../app/views/report/_schedule_form_filter.html.haml:106 ../app/views/report/_schedule_form_filter.html.haml:125 ../app/views/report/_widget_form_report.html.haml:20 ../app/views/report/_widget_form_report.html.haml:33 ../app/views/report/_widget_form_report.html.haml:46 ../app/views/report/_form_columns_trend.html.haml:11 ../app/views/security_group/new.html.haml:21 ../app/views/security_group/new.html.haml:50 ../app/views/ems_infra/_form.html.haml:45 ../app/views/ems_infra/_form.html.haml:45 ../app/views/ems_physical_infra/_form.html.haml:45 ../app/views/ems_physical_infra/_form.html.haml:45 ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:23 ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:53 ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:82 ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:106 ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:131 ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:157 ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:382 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:638 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:638 ../app/views/layouts/exp_atom/_editor.html.haml:58 ../app/views/layouts/exp_atom/_edit_find.html.haml:9 ../app/views/layouts/exp_atom/_edit_find.html.haml:49 ../app/views/layouts/exp_atom/_edit_count.html.haml:7 ../app/views/layouts/exp_atom/_edit_field.html.haml:7 ../app/views/layouts/exp_atom/_edit_field.html.haml:65 ../app/views/layouts/exp_atom/_edit_tag.html.haml:7 ../app/views/layouts/exp_atom/_edit_tag.html.haml:53 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:150 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:150 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:163 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:163 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:173 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:173 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:186 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:186 ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:90 ../app/views/ems_datawarehouse/_form.html.haml:45 ../app/views/ems_datawarehouse/_form.html.haml:45 ../app/views/provider_foreman/_form.html.haml:52 ../app/views/provider_foreman/_form.html.haml:52 ../app/views/host/_form.html.haml:79 ../app/views/host/_form.html.haml:79 ../app/views/miq_ae_customization/_dialog_field_form.html.haml:74 ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:56 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:289 ../app/views/ems_container/_form.html.haml:45 ../app/views/cloud_network/new.html.haml:21 ../app/views/cloud_network/new.html.haml:50 ../app/views/cloud_network/new.html.haml:77 ../app/views/ems_middleware/_form.html.haml:45 ../app/views/ems_middleware/_form.html.haml:45 ../app/views/catalog/_ot_add.html.haml:75 ../app/views/catalog/_ot_edit.html.haml:51 ../app/views/catalog/_form_resources_info.html.haml:25 ../app/views/catalog/_st_form.html.haml:18 ../app/views/catalog/_ot_copy.html.haml:58 ../app/views/catalog/_form_basic_info.html.haml:142 ../app/views/catalog/_form_basic_info.html.haml:164 ../app/views/catalog/_form_basic_info.html.haml:186 ../app/views/catalog/_form_basic_info.html.haml:208 ../app/views/network_router/add_interface_select.html.haml:21 ../app/views/network_router/new.html.haml:21 ../app/views/network_router/new.html.haml:79 ../app/views/network_router/new.html.haml:100 ../app/views/network_router/remove_interface_select.html.haml:21 msgid "Choose" msgstr "" -#: ../app/views/report/_form_filter_chargeback.html.haml:162 +#: ../app/views/report/_form_filter_chargeback.html.haml:190 msgid "Choose %{entity}" msgstr "" @@ -5392,10 +5536,14 @@ msgstr "" msgid "Choose Policies" msgstr "" -#: ../app/views/report/_form_filter_chargeback.html.haml:137 +#: ../app/views/report/_form_filter_chargeback.html.haml:165 msgid "Choose Provider" msgstr "" +#: ../app/views/ems_container/ad_hoc/_list_view_form.html.haml:16 +msgid "Choose Tenants" +msgstr "" + #: ../app/views/miq_capacity/_planning_options.html.haml:51 msgid "Choose a %{cluster}" msgstr "" @@ -5416,7 +5564,7 @@ msgstr "" msgid "Choose a %{provider} first" msgstr "" -#: ../app/views/chargeback/_cb_assignments.html.haml:46 ../app/views/ops/_settings_co_tags_tab.html.haml:8 ../app/views/report/_form_filter_chargeback.html.haml:93 ../app/views/report/_form_filter_chargeback.html.haml:224 +#: ../app/views/ops/_settings_co_tags_tab.html.haml:8 ../app/views/report/_form_filter_chargeback.html.haml:121 ../app/views/report/_form_filter_chargeback.html.haml:252 ../app/views/chargeback/_cb_assignments.html.haml:46 msgid "Choose a Category" msgstr "" @@ -5432,11 +5580,11 @@ msgstr "" msgid "Choose a Label" msgstr "" -#: ../app/views/report/_savedreports_list.html.haml:29 ../app/views/report/show_saved.html.haml:3 +#: ../app/views/report/show_saved.html.haml:3 ../app/views/report/_savedreports_list.html.haml:29 msgid "Choose a Report from the menus on the left." msgstr "" -#: ../app/views/report/_reports.html.haml:2 ../app/views/report/_report_list.html.haml:214 +#: ../app/views/report/_report_list.html.haml:214 ../app/views/report/_reports.html.haml:2 msgid "Choose a Report to view from the menus on the left." msgstr "" @@ -5456,7 +5604,7 @@ msgstr "" msgid "Choose a VM" msgstr "" -#: ../app/views/report/_form_filter_chargeback.html.haml:115 +#: ../app/views/report/_form_filter_chargeback.html.haml:143 msgid "Choose a Value" msgstr "" @@ -5465,14 +5613,14 @@ msgid "Choose a chart type" msgstr "" #: ../app/views/ops/_label_tag_mapping_form.html.haml:15 -msgid "Choose a container entity and label" +msgid "Choose a resource entity and label" msgstr "" #: ../app/views/layouts/_adv_search_body.html.haml:48 msgid "Choose a saved %{model} filter:" msgstr "" -#: ../app/views/layouts/_adv_search_footer.html.haml:65 +#: ../app/views/layouts/_adv_search_footer.html.haml:72 msgid "Choose a saved filter or report filter to load" msgstr "" @@ -5480,11 +5628,11 @@ msgstr "" msgid "Choose a tag category to map to" msgstr "" -#: ../app/views/report/_form_filter_chargeback.html.haml:71 +#: ../app/views/report/_form_filter_chargeback.html.haml:99 msgid "Choose a tenant" msgstr "" -#: ../app/views/report/_form_filter_chargeback.html.haml:49 +#: ../app/views/report/_form_filter_chargeback.html.haml:77 msgid "Choose an Owner" msgstr "" @@ -5496,7 +5644,7 @@ msgstr "" msgid "Choose the branch or tag you would like to import" msgstr "" -#: ../app/controllers/ops_controller/settings/common.rb:1171 ../app/controllers/ops_controller/settings/upload.rb:48 +#: ../app/controllers/ops_controller/settings/common.rb:1119 ../app/controllers/ops_controller/settings/upload.rb:48 msgid "Choose the type of custom variables to be imported" msgstr "" @@ -5520,7 +5668,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: ../app/assets/javascripts/controllers/container_topology/container_topology_controller.js:48 ../app/assets/javascripts/controllers/infra_topology/infra_topology_controller.js:41 ../app/assets/javascripts/controllers/network_topology/network_topology_controller.js:41 ../app/assets/javascripts/controllers/cloud_topology/cloud_topology_controller.js:41 +#: ../app/assets/javascripts/controllers/cloud_topology/cloud_topology_controller.js:48 ../app/assets/javascripts/controllers/container_topology/container_topology_controller.js:50 ../app/assets/javascripts/controllers/infra_topology/infra_topology_controller.js:33 ../app/assets/javascripts/controllers/physical_infra_topology/physical_infra_topology_controller.js:33 ../app/assets/javascripts/controllers/network_topology/network_topology_controller.js:33 msgid "Click here to show/hide entities of this type" msgstr "" @@ -5532,7 +5680,7 @@ msgstr "" msgid "Click on the legend to show/hide entities, and double click on the entities in the graph to navigate to their summary pages." msgstr "" -#: ../app/views/container_topology/show.html.haml:176 ../app/views/infra_topology/show.html.haml:89 ../app/views/network_topology/show.html.haml:203 ../app/views/cloud_topology/show.html.haml:108 +#: ../app/views/cloud_topology/show.html.haml:108 ../app/views/container_topology/show.html.haml:176 ../app/views/infra_topology/show.html.haml:108 ../app/views/physical_infra_topology/show.html.haml:89 ../app/views/network_topology/show.html.haml:222 msgid "Click on the legend to show/hide entities, and double click/right click the entities in the graph to navigate to their summary pages." msgstr "" @@ -5548,7 +5696,7 @@ msgstr "" msgid "Click to add a new category" msgstr "" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:48 ../app/views/ops/_ap_form_nteventlog.html.haml:29 ../app/views/ops/_ap_form_registry.html.haml:25 ../app/views/ops/_classification_entry.html.haml:65 ../app/views/ops/_ap_form_file.html.haml:23 ../app/views/ops/_ldap_server_entry.html.haml:84 +#: ../app/views/ops/_ap_form_registry.html.haml:25 ../app/views/ops/_ap_form_file.html.haml:23 ../app/views/ops/_ldap_server_entry.html.haml:83 ../app/views/ops/_classification_entry.html.haml:65 ../app/views/ops/_ap_form_nteventlog.html.haml:29 ../app/views/miq_ae_customization/_field_value_entry.html.haml:48 msgid "Click to add a new entry" msgstr "" @@ -5560,11 +5708,11 @@ msgstr "" msgid "Click to add a new parameter" msgstr "" -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:134 ../app/views/layouts/exp_atom/_edit_find.html.haml:115 ../app/views/layouts/exp_atom/_edit_find.html.haml:247 +#: ../app/views/layouts/exp_atom/_edit_find.html.haml:115 ../app/views/layouts/exp_atom/_edit_find.html.haml:247 ../app/views/layouts/exp_atom/_edit_field.html.haml:134 msgid "Click to change to a relative Date/Time format" msgstr "" -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:144 ../app/views/layouts/exp_atom/_edit_find.html.haml:125 ../app/views/layouts/exp_atom/_edit_find.html.haml:257 +#: ../app/views/layouts/exp_atom/_edit_find.html.haml:125 ../app/views/layouts/exp_atom/_edit_find.html.haml:257 ../app/views/layouts/exp_atom/_edit_field.html.haml:144 msgid "Click to change to a specific Date/Time format" msgstr "" @@ -5572,7 +5720,7 @@ msgstr "" msgid "Click to delete Orphaned Records for this user" msgstr "" -#: ../app/views/ops/_ldap_server_entry.html.haml:113 +#: ../app/views/ops/_ldap_server_entry.html.haml:112 msgid "Click to delete this LDAP Server" msgstr "" @@ -5580,7 +5728,7 @@ msgstr "" msgid "Click to delete this category" msgstr "" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:99 ../app/views/miq_ae_customization/_field_value_entry.html.haml:114 ../app/views/ops/_ap_form_nteventlog.html.haml:216 ../app/views/ops/_ap_form_registry.html.haml:166 ../app/views/ops/_classification_entry.html.haml:101 ../app/views/ops/_ap_form_file.html.haml:82 +#: ../app/views/ops/_ap_form_registry.html.haml:166 ../app/views/ops/_ap_form_file.html.haml:82 ../app/views/ops/_classification_entry.html.haml:101 ../app/views/ops/_ap_form_nteventlog.html.haml:210 ../app/views/miq_ae_customization/_field_value_entry.html.haml:99 ../app/views/miq_ae_customization/_field_value_entry.html.haml:114 msgid "Click to delete this entry" msgstr "" @@ -5628,7 +5776,7 @@ msgstr "" msgid "Click to remove this Resource from the Catalog Item" msgstr "" -#: ../app/views/layouts/_tag_edit_assignments.html.haml:45 ../app/views/layouts/_classify_table.html.haml:39 +#: ../app/views/layouts/_classify_table.html.haml:39 ../app/views/layouts/_tag_edit_assignments.html.haml:45 msgid "Click to remove this assignment" msgstr "" @@ -5636,15 +5784,15 @@ msgstr "" msgid "Click to remove this policy" msgstr "" -#: ../app/views/catalog/_stcat_tree_show.html.haml:57 ../app/views/catalog/_sandt_tree_show.html.haml:286 +#: ../app/views/catalog/_sandt_tree_show.html.haml:302 ../app/views/catalog/_stcat_tree_show.html.haml:57 msgid "Click to this Catalog Item" msgstr "" -#: ../app/views/ops/_ldap_server_entry.html.haml:118 +#: ../app/views/ops/_ldap_server_entry.html.haml:117 msgid "Click to update this LDAP Server" msgstr "" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:120 ../app/views/miq_ae_customization/_field_value_entry.html.haml:126 ../app/views/ops/_ap_form_nteventlog.html.haml:185 ../app/views/ops/_ap_form_nteventlog.html.haml:190 ../app/views/ops/_ap_form_nteventlog.html.haml:195 ../app/views/ops/_ap_form_nteventlog.html.haml:201 ../app/views/ops/_ap_form_nteventlog.html.haml:206 ../app/views/ops/_ap_form_nteventlog.html.haml:211 ../app/views/ops/_ap_form_registry.html.haml:149 ../app/views/ops/_ap_form_registry.html.haml:154 ../app/views/ops/_ap_form_registry.html.haml:159 ../app/views/ops/_classification_entry.html.haml:86 ../app/views/ops/_classification_entry.html.haml:91 ../app/views/ops/_ap_form_file.html.haml:71 ../app/views/ops/_ap_form_file.html.haml:76 +#: ../app/views/ops/_ap_form_registry.html.haml:149 ../app/views/ops/_ap_form_registry.html.haml:154 ../app/views/ops/_ap_form_registry.html.haml:159 ../app/views/ops/_ap_form_file.html.haml:71 ../app/views/ops/_ap_form_file.html.haml:76 ../app/views/ops/_classification_entry.html.haml:86 ../app/views/ops/_classification_entry.html.haml:91 ../app/views/ops/_ap_form_nteventlog.html.haml:185 ../app/views/ops/_ap_form_nteventlog.html.haml:190 ../app/views/ops/_ap_form_nteventlog.html.haml:195 ../app/views/ops/_ap_form_nteventlog.html.haml:200 ../app/views/ops/_ap_form_nteventlog.html.haml:205 ../app/views/miq_ae_customization/_field_value_entry.html.haml:120 ../app/views/miq_ae_customization/_field_value_entry.html.haml:126 msgid "Click to update this entry" msgstr "" @@ -5652,10 +5800,6 @@ msgstr "" msgid "Click to view %{group} " msgstr "" -#: ../app/views/layouts/gtl/_list.html.haml:206 -msgid "Click to view %{record}" -msgstr "" - #: ../app/views/report/_db_list.html.haml:23 msgid "Click to view '%{title}'" msgstr "" @@ -5664,7 +5808,7 @@ msgstr "" msgid "Click to view '%{widgetset_description} (%{widgetset_name})'" msgstr "" -#: ../app/views/miq_policy/_condition_details.html.haml:133 ../app/views/miq_policy/_event_details.html.haml:62 ../app/views/miq_policy/_action_details.html.haml:550 +#: ../app/views/miq_policy/_event_details.html.haml:45 ../app/views/miq_policy/_condition_details.html.haml:133 ../app/views/miq_policy/_action_details.html.haml:550 msgid "Click to view Policy" msgstr "" @@ -5680,7 +5824,7 @@ msgstr "" msgid "Click to view child TenantProject" msgstr "" -#: ../app/views/miq_request/_request.html.haml:228 ../app/views/miq_request/_request.html.haml:242 ../app/views/shared/buttons/_ab_list.html.haml:19 ../app/views/shared/buttons/_ab_list.html.haml:64 ../app/views/shared/buttons/_ab_list.html.haml:93 ../app/views/shared/buttons/_ab_list.html.haml:207 ../app/views/ops/_ldap_region_show.html.haml:83 ../app/views/report/_report_list.html.haml:53 ../app/views/report/_report_list.html.haml:86 ../app/views/report/_report_list.html.haml:147 +#: ../app/views/ops/_ldap_region_show.html.haml:83 ../app/views/miq_request/_request.html.haml:228 ../app/views/miq_request/_request.html.haml:242 ../app/views/shared/buttons/_ab_list.html.haml:19 ../app/views/shared/buttons/_ab_list.html.haml:64 ../app/views/shared/buttons/_ab_list.html.haml:93 ../app/views/shared/buttons/_ab_list.html.haml:207 ../app/views/report/_report_list.html.haml:53 ../app/views/report/_report_list.html.haml:86 ../app/views/report/_report_list.html.haml:147 msgid "Click to view details" msgstr "" @@ -5696,7 +5840,7 @@ msgstr "" msgid "Click to view selected widget" msgstr "" -#: ../app/views/layouts/gtl/_list.html.haml:214 +#: ../app/views/layouts/gtl/_list.html.haml:204 msgid "Click to view target %{model}" msgstr "" @@ -5724,11 +5868,11 @@ msgstr "" msgid "Client Connections" msgstr "" -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:184 ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:221 ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:245 ../app/views/shared/views/ems_common/angular/_form.html.haml:404 ../app/views/ems_infra/_form.html.haml:171 ../app/views/layouts/_discover_azure_credentials.html.haml:13 +#: ../app/views/shared/views/ems_common/angular/_form.html.haml:404 ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:184 ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:221 ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:245 ../app/views/ems_infra/_form.html.haml:171 ../app/views/layouts/_discover_azure_credentials.html.haml:13 msgid "Client ID" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1391 +#: ../app/controllers/application_controller/ci_processing.rb:1367 msgid "Client ID, Client Key, Azure Tenant ID and Subscription ID are required" msgstr "" @@ -5752,31 +5896,31 @@ msgstr "" msgid "Client Secret:" msgstr "" -#: ../app/controllers/vm_common.rb:1716 +#: ../app/controllers/vm_common.rb:1524 msgid "Clone %{vm_or_template}" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:130 +#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:131 msgid "Clone selected Template" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:156 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:157 msgid "Clone selected item" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:129 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:94 ../app/helpers/application_helper/toolbar/miq_template_center.rb:88 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:95 ../app/helpers/application_helper/toolbar/template_infras_center.rb:130 msgid "Clone this Template" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:112 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:113 msgid "Clone this VM" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:155 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:156 msgid "Clone this item" msgstr "" -#: ../app/views/middleware_server/_add_datasource.html.haml:29 ../app/views/middleware_server/_ops_params.html.haml:31 ../app/views/middleware_server/_add_jdbc_driver.html.haml:29 ../app/views/dashboard/_zoomed_chart.html.haml:14 ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:211 +#: ../app/views/middleware_shared/_ops_params.html.haml:31 ../app/views/middleware_server/_add_jdbc_driver.html.haml:29 ../app/views/middleware_server/_add_datasource.html.haml:29 ../app/views/dashboard/_zoomed_chart.html.haml:14 ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:211 msgid "Close" msgstr "" @@ -5784,19 +5928,27 @@ msgstr "" msgid "Close any duplicate browser sessions, then select an option from the menu." msgstr "" -#: ../app/presenters/menu/default_menu.rb:20 -msgid "Cloud Intel" +#: ../app/helpers/service_helper/textual_summary.rb:234 +msgid "Cloud" +msgstr "" + +#: ../app/views/catalog/_sandt_tree_show.html.haml:415 ../app/views/catalog/_sandt_tree_show.html.haml:574 +msgid "Cloud Credential" msgstr "" -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:127 -msgid "Cloud Network" +#: ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:143 +msgid "Cloud Credentials" +msgstr "" + +#: ../app/presenters/menu/default_menu.rb:21 +msgid "Cloud Intel" msgstr "" #: ../app/controllers/cloud_network_controller.rb:103 msgid "Cloud Network \"%{name}\" created" msgstr "" -#: ../app/controllers/cloud_network_controller.rb:218 +#: ../app/controllers/cloud_network_controller.rb:217 msgid "Cloud Network \"%{name}\" updated" msgstr "" @@ -5812,19 +5964,15 @@ msgstr "" msgid "Cloud Network update failed: Task start failed: ID [%{id}]" msgstr "" -#: ../app/helpers/ems_network_helper/textual_summary.rb:83 ../app/controllers/orchestration_stack_controller.rb:71 ../app/controllers/ems_common.rb:103 ../app/views/network_topology/show.html.haml:109 ../app/views/layouts/listnav/_orchestration_stack.html.haml:52 +#: ../app/helpers/ems_network_helper/textual_summary.rb:90 ../app/controllers/orchestration_stack_controller.rb:70 ../app/views/layouts/listnav/_orchestration_stack.html.haml:52 ../app/views/network_topology/show.html.haml:128 msgid "Cloud Networks" msgstr "" -#: ../app/controllers/ems_common.rb:75 -msgid "Cloud Object Store Containers" -msgstr "" - #: ../app/views/layouts/listnav/_cloud_tenant.html.haml:63 msgid "Cloud Object Stores" msgstr "" -#: ../app/controllers/cloud_object_store_object_controller.rb:51 +#: ../app/controllers/cloud_object_store_object_controller.rb:59 msgid "Cloud Objects" msgstr "" @@ -5832,7 +5980,7 @@ msgstr "" msgid "Cloud Provider" msgstr "" -#: ../app/views/configuration/_ui_2.html.haml:175 +#: ../app/views/configuration/_ui_2.html.haml:176 msgid "Cloud Providers" msgstr "" @@ -5844,63 +5992,103 @@ msgstr "" msgid "Cloud Service Configuration" msgstr "" -#: ../app/controllers/host_controller.rb:228 ../app/views/host/_main.html.haml:33 +#: ../app/helpers/host_helper/textual_summary.rb:60 ../app/controllers/host_controller.rb:180 msgid "Cloud Services" msgstr "" -#: ../app/helpers/vm_helper.rb:29 ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:151 +#: ../app/helpers/vm_helper.rb:29 msgid "Cloud Subnet" msgstr "" -#: ../app/controllers/cloud_subnet_controller.rb:103 +#: ../app/controllers/cloud_subnet_controller.rb:124 msgid "Cloud Subnet \"%{name}\" created" msgstr "" -#: ../app/controllers/cloud_subnet_controller.rb:197 +#: ../app/controllers/cloud_subnet_controller.rb:218 msgid "Cloud Subnet \"%{name}\" updated" msgstr "" -#: ../app/controllers/cloud_subnet_controller.rb:90 +#: ../app/controllers/cloud_subnet_controller.rb:111 msgid "Cloud Subnet creation: Task start failed: ID [%{id}]" msgstr "" -#: ../app/views/cloud_subnet/new.html.haml:35 +#: ../app/views/cloud_subnet/new.html.haml:36 msgid "Cloud Subnet details" msgstr "" -#: ../app/controllers/cloud_subnet_controller.rb:132 +#: ../app/controllers/cloud_subnet_controller.rb:153 msgid "Cloud Subnet no longer exists." msgstr "" -#: ../app/controllers/cloud_subnet_controller.rb:184 +#: ../app/controllers/cloud_subnet_controller.rb:205 msgid "Cloud Subnet update failed: Task start failed: ID [%{id}]" msgstr "" -#: ../app/helpers/ems_network_helper/textual_summary.rb:86 ../app/controllers/ems_common.rb:102 ../app/views/network_topology/show.html.haml:33 +#: ../app/helpers/ems_network_helper/textual_summary.rb:94 ../app/views/network_topology/show.html.haml:52 msgid "Cloud Subnets" msgstr "" -#: ../app/controllers/cloud_tenant_controller.rb:279 ../app/views/network_router/new.html.haml:95 ../app/views/cloud_subnet/new.html.haml:113 ../app/views/cloud_volume/new.html.haml:60 ../app/views/cloud_network/edit.html.haml:46 ../app/views/cloud_network/new.html.haml:72 +#: ../app/views/floating_ip/new.html.haml:131 ../app/views/cloud_subnet/new.html.haml:121 ../app/views/cloud_volume/new.html.haml:37 ../app/views/security_group/edit.html.haml:19 ../app/views/security_group/new.html.haml:45 ../app/views/cloud_network/edit.html.haml:46 ../app/views/cloud_network/new.html.haml:72 ../app/views/network_router/new.html.haml:95 msgid "Cloud Tenant" msgstr "" +#: ../app/controllers/cloud_tenant_controller.rb:209 +msgid "Cloud Tenant \"%{name}\" cannot be removed because it is attached to one or more %{instances}" +msgstr "" + +#: ../app/controllers/cloud_tenant_controller.rb:107 +msgid "Cloud Tenant \"%{name}\" created" +msgstr "" + +#: ../app/controllers/cloud_tenant_controller.rb:165 +msgid "Cloud Tenant \"%{name}\" updated" +msgstr "" + +#: ../app/controllers/cloud_tenant_controller.rb:207 +msgid "Cloud Tenant no longer exists." +msgstr "" + #: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:22 msgid "Cloud Tenant:" msgstr "" -#: ../app/controllers/ems_common.rb:95 ../app/views/network_topology/show.html.haml:147 ../app/views/cloud_topology/show.html.haml:71 +#: ../app/views/cloud_topology/show.html.haml:71 ../app/views/network_topology/show.html.haml:166 msgid "Cloud Tenants" msgstr "" +#: ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:117 +msgid "Cloud Type" +msgstr "" + +#: ../app/controllers/cloud_volume_controller.rb:338 +msgid "Cloud Volume \"%{name}\" created" +msgstr "" + +#: ../app/controllers/cloud_volume_controller.rb:413 +msgid "Cloud Volume \"%{name}\" updated" +msgstr "" + #: ../app/views/cloud_volume/backup_select.html.haml:16 msgid "Cloud Volume Backup" msgstr "" -#: ../app/controllers/cloud_volume_snapshot_controller.rb:47 +#: ../app/controllers/cloud_volume_snapshot_controller.rb:53 msgid "Cloud Volume Snapshot no longer exists." msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:78 ../app/controllers/vm_common.rb:521 ../app/controllers/ems_common.rb:96 +#: ../app/views/cloud_volume/new.html.haml:123 +msgid "Cloud Volume Type" +msgstr "" + +#: ../app/controllers/cloud_volume_controller.rb:306 +msgid "Cloud Volume creation failed: Task start failed" +msgstr "" + +#: ../app/controllers/cloud_volume_controller.rb:386 +msgid "Cloud Volume update failed: Task start failed" +msgstr "" + +#: ../app/controllers/vm_common.rb:375 ../app/controllers/cloud_volume_controller.rb:79 msgid "Cloud Volumes" msgstr "" @@ -5908,23 +6096,23 @@ msgstr "" msgid "Cloud Volumes based on Snapshot (%{count})" msgstr "" -#: ../app/controllers/cloud_tenant_controller.rb:91 ../app/controllers/cloud_tenant_controller.rb:151 +#: ../app/controllers/cloud_tenant_controller.rb:91 ../app/controllers/cloud_tenant_controller.rb:148 msgid "Cloud tenant creation failed: Task start failed: ID [%{id}]" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:464 +#: ../app/controllers/cloud_volume_controller.rb:530 msgid "Cloud volume backup creation failed: Task start failed: ID [%{id}]" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:529 +#: ../app/controllers/cloud_volume_controller.rb:595 msgid "Cloud volume restore failed: Task start failed: ID [%{id}]" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:588 +#: ../app/controllers/cloud_volume_controller.rb:654 msgid "Cloud volume snapshot creation failed: Task start failed: ID [%{id}]" msgstr "" -#: ../app/presenters/tree_builder_orchestration_templates.rb:22 ../app/presenters/tree_builder_orchestration_templates.rb:24 +#: ../app/presenters/tree_builder_orchestration_templates.rb:25 ../app/presenters/tree_builder_orchestration_templates.rb:27 msgid "CloudFormation Templates" msgstr "" @@ -5932,27 +6120,31 @@ msgstr "" msgid "CloudInit" msgstr "" -#: ../app/presenters/menu/default_menu.rb:47 ../app/views/configuration/_ui_2.html.haml:172 +#: ../app/presenters/menu/default_menu.rb:48 ../app/views/configuration/_ui_2.html.haml:173 msgid "Clouds" msgstr "" -#: ../app/helpers/application_helper.rb:1538 ../app/helpers/application_helper.rb:1551 ../app/controllers/application_controller/ci_processing.rb:2184 +#: ../app/presenters/tree_builder_datacenter.rb:12 ../app/helpers/application_helper/title.rb:112 ../app/helpers/application_helper.rb:1455 ../app/controllers/application_controller/ci_processing.rb:2216 msgid "Cluster" msgstr "" -#: ../app/presenters/tree_builder_utilization.rb:46 ../app/helpers/application_helper.rb:1542 +#: ../app/presenters/tree_builder_utilization.rb:50 ../app/helpers/application_helper/title.rb:116 msgid "Cluster / Deployment Role" msgstr "" -#: ../app/presenters/tree_builder_utilization.rb:48 +#: ../app/presenters/tree_builder_utilization.rb:52 msgid "Cluster / Deployment Role (Click to open)" msgstr "" -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:167 +#: ../app/presenters/tree_node/ems_cluster.rb:3 +msgid "Cluster / Deployment Role: %{name}" +msgstr "" + +#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:174 msgid "Cluster Selection" msgstr "" -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:129 +#: ../app/views/ems_infra/_show_dashboard.html.haml:129 msgid "Cluster Utilization" msgstr "" @@ -5960,47 +6152,47 @@ msgstr "" msgid "Cluster: " msgstr "" -#: ../app/presenters/tree_builder_datacenter.rb:36 ../app/controllers/application_controller/tree_support.rb:248 +#: ../app/presenters/tree_builder_datacenter.rb:51 msgid "Cluster: %{name}" msgstr "" -#: ../app/presenters/menu/default_menu.rb:62 ../app/helpers/application_helper.rb:1538 ../app/helpers/ui_constants.rb:358 ../app/controllers/application_controller/compare.rb:867 ../app/controllers/ems_cluster_controller.rb:28 ../app/controllers/ems_cluster_controller.rb:261 ../app/views/configuration/_ui_2.html.haml:210 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:11 +#: ../app/presenters/menu/default_menu.rb:63 ../app/helpers/application_helper/title.rb:112 ../app/helpers/ui_constants.rb:355 ../app/controllers/ems_cluster_controller.rb:29 ../app/controllers/ems_cluster_controller.rb:231 ../app/controllers/application_controller/compare.rb:763 ../app/views/configuration/_ui_2.html.haml:211 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:11 msgid "Clusters" msgstr "" -#: ../app/presenters/menu/default_menu.rb:62 ../app/helpers/application_helper.rb:1542 +#: ../app/presenters/menu/default_menu.rb:63 ../app/helpers/application_helper/title.rb:116 msgid "Clusters / Deployment Roles" msgstr "" -#: ../app/assets/javascripts/miq_tree.js:409 +#: ../app/assets/javascripts/miq_tree.js:401 msgid "Collapse All" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:57 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:105 ../app/views/miq_ae_class/_instance_fields.html.haml:25 ../app/views/miq_ae_class/_class_fields.html.haml:14 ../app/views/miq_ae_class/_class_fields.html.haml:79 ../app/views/miq_ae_class/_instance_form.html.haml:97 +#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:106 ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:64 ../app/views/miq_ae_class/_instance_fields.html.haml:25 ../app/views/miq_ae_class/_instance_form.html.haml:97 ../app/views/miq_ae_class/_class_fields.html.haml:14 ../app/views/miq_ae_class/_class_fields.html.haml:79 msgid "Collect" msgstr "" -#: ../app/views/ops/_ap_show.html.haml:96 ../app/views/ops/_ap_form_file.html.haml:14 +#: ../app/views/ops/_ap_form_file.html.haml:14 ../app/views/ops/_ap_show.html.haml:96 msgid "Collect Contents?" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:56 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:104 ../app/views/ops/_all_tabs.html.haml:141 ../app/views/ops/_all_tabs.html.haml:172 +#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:105 ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:63 ../app/views/ops/_all_tabs.html.haml:141 ../app/views/ops/_all_tabs.html.haml:172 msgid "Collect Logs" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:70 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:118 +#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:119 ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:77 msgid "Collect all logs" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:69 +#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:76 msgid "Collect all logs from the selected Server" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:117 +#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:118 msgid "Collect all logs from the selected Zone" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:63 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:111 +#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:112 ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:70 msgid "Collect current logs" msgstr "" @@ -6012,11 +6204,11 @@ msgstr "" msgid "Collect for All Datastores" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:62 +#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:69 msgid "Collect the current logs from the selected Server" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:110 +#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:111 msgid "Collect the current logs from the selected Zone" msgstr "" @@ -6048,27 +6240,27 @@ msgstr "" msgid "Column 4" msgstr "" -#: ../app/views/report/_form_sort.html.haml:236 ../app/views/report/_form_styling.html.haml:21 ../app/views/report/_form_formatting.html.haml:48 ../app/views/report/_form_consolidate.html.haml:102 +#: ../app/views/report/_form_sort.html.haml:214 ../app/views/report/_form_consolidate.html.haml:102 ../app/views/report/_form_formatting.html.haml:48 ../app/views/report/_form_styling.html.haml:21 msgid "Column Name" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:315 ../app/controllers/report_controller/reports/editor.rb:321 ../app/controllers/report_controller/reports/editor.rb:328 +#: ../app/controllers/report_controller/reports/editor.rb:320 ../app/controllers/report_controller/reports/editor.rb:326 ../app/controllers/report_controller/reports/editor.rb:333 msgid "Columns" msgstr "" -#: ../app/helpers/container_helper/textual_summary.rb:66 +#: ../app/helpers/container_helper/textual_summary.rb:75 msgid "Command" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:63 ../app/controllers/report_controller.rb:238 ../app/views/miq_policy/_export.html.haml:17 ../app/views/miq_policy/_export.html.haml:23 ../app/views/miq_policy/import.html.haml:54 ../app/views/miq_policy/import.html.haml:60 ../app/views/miq_ae_customization/_dialog_import_export.html.haml:65 ../app/views/miq_ae_tools/_import_export.html.haml:309 ../app/views/report/_export_widgets.html.haml:66 ../app/views/report/_menu_form2.html.haml:171 ../app/views/report/_menu_form1.html.haml:88 +#: ../app/controllers/report_controller.rb:242 ../app/controllers/miq_ae_customization_controller.rb:64 ../app/views/miq_policy/_export.html.haml:17 ../app/views/miq_policy/_export.html.haml:23 ../app/views/miq_policy/import.html.haml:54 ../app/views/miq_policy/import.html.haml:60 ../app/views/report/_export_widgets.html.haml:66 ../app/views/report/_menu_form1.html.haml:88 ../app/views/report/_menu_form2.html.haml:171 ../app/views/miq_ae_customization/_dialog_import_export.html.haml:65 ../app/views/miq_ae_tools/_import_export.html.haml:309 msgid "Commit" msgstr "" -#: ../app/controllers/report_controller.rb:748 +#: ../app/controllers/report_controller.rb:752 msgid "Commit Accordion management changes" msgstr "" -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:65 ../app/views/report/_export_widgets.html.haml:66 +#: ../app/views/report/_export_widgets.html.haml:66 ../app/views/miq_ae_customization/_dialog_import_export.html.haml:65 msgid "Commit Changes" msgstr "" @@ -6076,11 +6268,11 @@ msgstr "" msgid "Commit Import" msgstr "" -#: ../app/views/report/_menu_form1.html.haml:79 ../app/views/layouts/exp_atom/_editor.html.haml:29 +#: ../app/views/report/_menu_form1.html.haml:79 ../app/views/layouts/exp_atom/_editor.html.haml:28 msgid "Commit expression element changes" msgstr "" -#: ../app/controllers/report_controller.rb:759 +#: ../app/controllers/report_controller.rb:763 msgid "Commit folder management changes" msgstr "" @@ -6096,11 +6288,11 @@ msgstr "" msgid "Compare" msgstr "" -#: ../app/controllers/application_controller/compare.rb:50 ../app/controllers/application_controller/compare.rb:108 +#: ../app/controllers/application_controller/compare.rb:43 ../app/controllers/application_controller/compare.rb:87 msgid "Compare %{name}" msgstr "" -#: ../app/controllers/vm_common.rb:1688 +#: ../app/controllers/vm_common.rb:1496 msgid "Compare %{vm_or_template}" msgstr "" @@ -6108,27 +6300,27 @@ msgstr "" msgid "Compare Mode" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:33 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:24 +#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:24 ../app/helpers/application_helper/toolbar/template_infras_center.rb:33 msgid "Compare Selected Templates" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:33 ../app/helpers/application_helper/toolbar/vms_center.rb:24 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:24 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:34 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:43 ../app/helpers/application_helper/toolbar/hosts_center.rb:31 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:43 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:34 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:33 ../app/helpers/application_helper/toolbar/vms_center.rb:24 ../app/helpers/application_helper/toolbar/hosts_center.rb:31 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:24 msgid "Compare Selected items" msgstr "" -#: ../app/views/layouts/_perf_options.html.haml:192 +#: ../app/views/layouts/_perf_options.html.haml:191 msgid "Compare To" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:169 ../app/helpers/application_helper/toolbar/miq_template_center.rb:182 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:172 msgid "Compare selected Templates" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:317 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:334 msgid "Compare selected VMs" msgstr "" -#: ../app/views/layouts/listnav/_compare_sections.html.haml:153 +#: ../app/views/layouts/listnav/_compare_sections.html.haml:137 msgid "Comparison Sections" msgstr "" @@ -6140,23 +6332,19 @@ msgstr "" msgid "Completed:" msgstr "" -#: ../app/helpers/container_build_helper/textual_summary.rb:27 +#: ../app/helpers/container_build_helper/textual_summary.rb:31 msgid "Completion Timestamp" msgstr "" -#: ../app/views/container_image/_main.html.haml:13 ../app/views/container_node/_main.html.haml:12 ../app/views/container_group/_main.html.haml:18 ../app/views/vm_common/_main.html.haml:27 ../app/views/container_replicator/_main.html.haml:13 ../app/views/vm_cloud/_main.html.haml:26 ../app/views/host/_main.html.haml:17 +#: ../app/helpers/compliance_summary_helper.rb:3 msgid "Compliance" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2495 ../app/views/ops/_schedule_show.html.haml:38 +#: ../app/controllers/application_controller/ci_processing.rb:2527 ../app/views/ops/_schedule_show.html.haml:38 msgid "Compliance Check" msgstr "" -#: ../app/presenters/tree_node_builder.rb:73 -msgid "Compliance Check on: " -msgstr "" - -#: ../app/presenters/tree_builder_policy.rb:50 ../app/views/miq_policy/_policy_folders.html.haml:2 +#: ../app/presenters/tree_builder_policy.rb:71 ../app/views/miq_policy/_policy_folders.html.haml:2 msgid "Compliance Policies" msgstr "" @@ -6164,38 +6352,38 @@ msgstr "" msgid "Compliant as of %{time} Ago" msgstr "" -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:139 -msgid "Compressed Data" +#: ../app/helpers/ems_container_helper/textual_summary.rb:40 +msgid "Component Statuses" msgstr "" -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:43 ../app/helpers/configuration_helper/configuration_view_helper.rb:48 ../app/helpers/application_helper/toolbar/drift_view.rb:12 ../app/helpers/application_helper/toolbar/compare_view.rb:13 +#: ../app/helpers/application_helper/toolbar/compare_view.rb:13 ../app/helpers/application_helper/toolbar/drift_view.rb:13 ../app/helpers/configuration_helper/configuration_view_helper.rb:45 ../app/helpers/configuration_helper/configuration_view_helper.rb:50 msgid "Compressed View" msgstr "" -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:143 -msgid "Compression Saved Percentage" -msgstr "" - -#: ../app/presenters/menu/default_menu.rb:5 ../app/views/chargeback/_assignments_list.html.haml:16 +#: ../app/presenters/menu/default_menu.rb:6 ../app/views/chargeback/_assignments_list.html.haml:16 msgid "Compute" msgstr "" -#: ../app/controllers/chargeback_controller.rb:405 +#: ../app/controllers/chargeback_controller.rb:401 msgid "Compute Chargeback Rate \"%{name}\"" msgstr "" -#: ../app/controllers/chargeback_controller.rb:397 +#: ../app/controllers/chargeback_controller.rb:393 msgid "Compute Chargeback Rates" msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:82 ../app/helpers/provider_foreman_helper.rb:163 +#: ../app/helpers/provider_foreman_helper.rb:84 ../app/helpers/provider_foreman_helper.rb:166 msgid "Compute Profile" msgstr "" -#: ../app/controllers/chargeback_controller.rb:414 +#: ../app/controllers/chargeback_controller.rb:410 msgid "Compute Rate Assignments" msgstr "" +#: ../app/presenters/tree_builder_compliance_history.rb:55 ../app/presenters/tree_builder_policy_simulation_results.rb:85 ../app/presenters/tree_builder_policy_simulation.rb:102 +msgid "Condition" +msgstr "" + #: ../app/controllers/miq_policy_controller/conditions.rb:112 msgid "Condition \"%{cond_name}\" has been removed from Policy \"%{pol_name}\"" msgstr "" @@ -6208,11 +6396,7 @@ msgstr "" msgid "Condition record ID %{param_id} was removed from Policy ID %{policy_id}" msgstr "" -#: ../app/presenters/tree_builder_compliance_history.rb:55 ../app/presenters/tree_builder_policy_simulation.rb:99 -msgid "Condition: " -msgstr "" - -#: ../app/controllers/miq_policy_controller.rb:1105 ../app/views/container_node/_main.html.haml:23 ../app/views/miq_policy/_policy_details.html.haml:211 ../app/views/container_group/_main.html.haml:27 +#: ../app/helpers/container_group_helper/textual_summary.rb:33 ../app/helpers/container_node_helper/textual_summary.rb:29 ../app/controllers/miq_policy_controller.rb:1108 ../app/views/miq_policy/_policy_details.html.haml:211 msgid "Conditions" msgstr "" @@ -6220,55 +6404,55 @@ msgstr "" msgid "Conditions assigned to Policies can not be deleted" msgstr "" -#: ../app/presenters/menu/default_menu.rb:13 ../app/presenters/menu/default_menu.rb:251 ../app/helpers/application_helper/toolbar/miq_widget_center.rb:6 ../app/helpers/application_helper/toolbar/orchestration_template_center.rb:6 ../app/helpers/application_helper/toolbar/zone_center.rb:6 ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:11 ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:6 ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:6 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:6 ../app/helpers/application_helper/toolbar/miq_widget_set_center.rb:6 ../app/helpers/application_helper/toolbar/miq_event_center.rb:6 ../app/helpers/application_helper/toolbar/template_infras_center.rb:6 ../app/helpers/application_helper/toolbar/users_center.rb:6 ../app/helpers/application_helper/toolbar/miq_ae_fields_center.rb:6 ../app/helpers/application_helper/toolbar/servicetemplate_center.rb:6 ../app/helpers/application_helper/toolbar/host_center.rb:6 ../app/helpers/application_helper/toolbar/custom_button_set_center.rb:6 ../app/helpers/application_helper/toolbar/arbitration_profiles_center.rb:6 ../app/helpers/application_helper/toolbar/ldap_domain_center.rb:6 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:6 ../app/helpers/application_helper/toolbar/miq_widgets_center.rb:13 ../app/helpers/application_helper/toolbar/scan_profiles_center.rb:6 ../app/helpers/application_helper/toolbar/container_image_center.rb:6 ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:6 ../app/helpers/application_helper/toolbar/customization_templates_center.rb:6 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:11 ../app/helpers/application_helper/toolbar/ldap_regions_center.rb:6 ../app/helpers/application_helper/toolbar/vms_center.rb:6 ../app/helpers/application_helper/toolbar/ontap_storage_system_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_subnets_center.rb:6 ../app/helpers/application_helper/toolbar/service_center.rb:6 ../app/helpers/application_helper/toolbar/miq_policy_profiles_center.rb:6 ../app/helpers/application_helper/toolbar/chargebacks_center.rb:6 ../app/helpers/application_helper/toolbar/miq_action_center.rb:6 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:6 ../app/helpers/application_helper/toolbar/miq_widget_sets_center.rb:6 ../app/helpers/application_helper/toolbar/miq_groups_center.rb:6 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:6 ../app/helpers/application_helper/toolbar/user_roles_center.rb:6 ../app/helpers/application_helper/toolbar/container_images_center.rb:6 ../app/helpers/application_helper/toolbar/scan_profile_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_subnet_center.rb:6 ../app/helpers/application_helper/toolbar/saved_reports_center.rb:15 ../app/helpers/application_helper/toolbar/miq_group_center.rb:6 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:6 ../app/helpers/application_helper/toolbar/orchestration_templates_center.rb:6 ../app/helpers/application_helper/toolbar/miq_template_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_volume_snapshot_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_networks_center.rb:8 ../app/helpers/application_helper/toolbar/ems_storage_center.rb:11 ../app/helpers/application_helper/toolbar/x_configuration_script_center.rb:6 ../app/helpers/application_helper/toolbar/persistent_volume_center.rb:6 ../app/helpers/application_helper/toolbar/windows_image_center.rb:6 ../app/helpers/application_helper/toolbar/miq_alert_profile_center.rb:6 ../app/helpers/application_helper/toolbar/arbitration_profile_center.rb:6 ../app/helpers/application_helper/toolbar/miq_schedules_center.rb:6 ../app/helpers/application_helper/toolbar/configuration_jobs_center.rb:6 ../app/helpers/application_helper/toolbar/miq_ae_methods_center.rb:6 ../app/helpers/application_helper/toolbar/dialog_center.rb:6 ../app/helpers/application_helper/toolbar/network_router_center.rb:8 ../app/helpers/application_helper/toolbar/auth_key_pair_clouds_center.rb:26 ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:6 ../app/helpers/application_helper/toolbar/inventory_group_center.rb:6 ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:83 ../app/helpers/application_helper/toolbar/user_center.rb:6 ../app/helpers/application_helper/toolbar/miq_alerts_center.rb:6 ../app/helpers/application_helper/toolbar/iso_datastores_center.rb:6 ../app/helpers/application_helper/toolbar/miq_report_center.rb:14 ../app/helpers/application_helper/toolbar/storage_managers_center.rb:6 ../app/helpers/application_helper/toolbar/custom_button_center.rb:6 ../app/helpers/application_helper/toolbar/ems_network_center.rb:11 ../app/helpers/application_helper/toolbar/pxe_image_type_center.rb:6 ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:6 ../app/helpers/application_helper/toolbar/miq_ae_instances_center.rb:6 ../app/helpers/application_helper/toolbar/ems_block_storages_center.rb:6 ../app/helpers/application_helper/toolbar/miq_dialog_center.rb:6 ../app/helpers/application_helper/toolbar/catalogitem_button_center.rb:6 ../app/helpers/application_helper/toolbar/generic_object_definition.rb:6 ../app/helpers/application_helper/toolbar/user_role_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_tenant_center.rb:6 ../app/helpers/application_helper/toolbar/miq_alert_center.rb:6 ../app/helpers/application_helper/toolbar/dialogs_center.rb:6 ../app/helpers/application_helper/toolbar/container_builds_center.rb:6 ../app/helpers/application_helper/toolbar/pxe_image_types_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_volumes_center.rb:6 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:6 ../app/helpers/application_helper/toolbar/ems_container_center.rb:11 ../app/helpers/application_helper/toolbar/ems_containers_center.rb:6 ../app/helpers/application_helper/toolbar/miq_policy_center.rb:6 ../app/helpers/application_helper/toolbar/miq_actions_center.rb:6 ../app/helpers/application_helper/toolbar/condition_center.rb:6 ../app/helpers/application_helper/toolbar/time_profiles_center.rb:6 ../app/helpers/application_helper/toolbar/miq_alert_profiles_center.rb:6 ../app/helpers/application_helper/toolbar/ontap_file_share_center.rb:6 ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:6 ../app/helpers/application_helper/toolbar/custom_buttons_center.rb:6 ../app/helpers/application_helper/toolbar/miq_schedule_center.rb:6 ../app/helpers/application_helper/toolbar/servicetemplatecatalogs_center.rb:6 ../app/helpers/application_helper/toolbar/storages_center.rb:6 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:6 ../app/helpers/application_helper/toolbar/network_routers_center.rb:8 ../app/helpers/application_helper/toolbar/zones_center.rb:6 ../app/helpers/application_helper/toolbar/miq_ae_class_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_network_center.rb:8 ../app/helpers/application_helper/toolbar/catalogitem_button_set_center.rb:6 ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:6 ../app/helpers/application_helper/toolbar/miq_report_schedules_center.rb:6 ../app/helpers/application_helper/toolbar/customization_template_center.rb:6 ../app/helpers/application_helper/toolbar/services_center.rb:6 ../app/helpers/application_helper/toolbar/iso_datastore_center.rb:6 ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:6 ../app/helpers/application_helper/toolbar/miq_report_schedule_center.rb:6 ../app/helpers/application_helper/toolbar/auth_key_pair_cloud_center.rb:6 ../app/helpers/application_helper/toolbar/ldap_region_center.rb:6 ../app/helpers/application_helper/toolbar/miq_ae_method_center.rb:6 ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:6 ../app/helpers/application_helper/toolbar/configuration_manager_provider_center.rb:6 ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:6 ../app/helpers/application_helper/toolbar/servicetemplatecatalog_center.rb:6 ../app/helpers/application_helper/toolbar/x_vm_center.rb:6 ../app/helpers/application_helper/toolbar/tenant_center.rb:6 ../app/helpers/application_helper/toolbar/miq_dialogs_center.rb:6 ../app/helpers/application_helper/toolbar/container_build_center.rb:6 ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:13 ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:6 ../app/helpers/application_helper/toolbar/miq_reports_center.rb:6 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:6 ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:6 ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:6 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:6 ../app/helpers/application_helper/toolbar/resource_pools_center.rb:6 ../app/helpers/application_helper/toolbar/ems_networks_center.rb:6 ../app/helpers/application_helper/toolbar/miq_policies_center.rb:6 ../app/helpers/application_helper/toolbar/miq_policy_profile_center.rb:6 ../app/helpers/application_helper/toolbar/resource_pool_center.rb:6 ../app/helpers/application_helper/toolbar/conditions_center.rb:6 ../app/helpers/application_helper/toolbar/stack_orchestration_template_center.rb:6 ../app/helpers/application_helper/toolbar/miq_ae_instance_center.rb:6 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:13 ../app/helpers/application_helper/toolbar/miq_ae_domains_center.rb:6 ../app/helpers/application_helper/toolbar/storage_manager_center.rb:6 ../app/helpers/application_helper/toolbar/configuration_job_center.rb:6 ../app/helpers/application_helper/toolbar/orchestration_stack_center.rb:6 ../app/helpers/application_helper/toolbar/tenants_center.rb:6 ../app/helpers/application_helper/toolbar/miq_ae_namespace_center.rb:6 ../app/helpers/application_helper/toolbar/pxe_server_center.rb:6 ../app/helpers/application_helper/toolbar/catalogitem_buttons_center.rb:6 ../app/helpers/application_helper/toolbar/hosts_center.rb:6 ../app/helpers/application_helper/toolbar/chargeback_center.rb:47 ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:6 ../app/helpers/application_helper/toolbar/miq_ae_domain_center.rb:6 ../app/helpers/application_helper/toolbar/configuration_script_center.rb:6 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_volume_center.rb:6 ../app/helpers/application_helper/toolbar/pxe_image_center.rb:6 ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:6 ../app/helpers/application_helper/toolbar/saved_report_center.rb:6 ../app/helpers/application_helper/toolbar/iso_image_center.rb:6 ../app/helpers/application_helper/toolbar/ems_storages_center.rb:6 ../app/helpers/application_helper/toolbar/storage_center.rb:6 ../app/controllers/ops_controller.rb:793 ../app/controllers/ems_cluster_controller.rb:70 ../app/controllers/resource_pool_controller.rb:65 ../app/controllers/configuration_controller.rb:622 ../app/views/container_image/_main.html.haml:25 ../app/views/ems_container/_deploy.html.haml:28 ../app/views/ems_cluster/_main.html.haml:19 ../app/views/shared/views/ems_common/_main.html.haml:12 ../app/views/vm_common/_main.html.haml:33 ../app/views/resource_pool/_main.html.haml:14 ../app/views/vm_cloud/_main.html.haml:32 ../app/views/host/_main.html.haml:21 ../app/views/layouts/listnav/_ems_cluster.html.haml:19 ../app/views/layouts/listnav/_host.html.haml:215 +#: ../app/presenters/menu/default_menu.rb:15 ../app/presenters/menu/default_menu.rb:286 ../app/helpers/application_helper/toolbar/ldap_region_center.rb:6 ../app/helpers/application_helper/toolbar/miq_actions_center.rb:6 ../app/helpers/application_helper/toolbar/user_roles_center.rb:6 ../app/helpers/application_helper/toolbar/storage_managers_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_volume_snapshot_center.rb:6 ../app/helpers/application_helper/toolbar/orchestration_templates_center.rb:6 ../app/helpers/application_helper/toolbar/pxe_image_type_center.rb:6 ../app/helpers/application_helper/toolbar/user_center.rb:6 ../app/helpers/application_helper/toolbar/iso_datastores_center.rb:6 ../app/helpers/application_helper/toolbar/miq_policies_center.rb:6 ../app/helpers/application_helper/toolbar/zone_center.rb:6 ../app/helpers/application_helper/toolbar/security_groups_center.rb:8 ../app/helpers/application_helper/toolbar/ems_physical_infras_center.rb:6 ../app/helpers/application_helper/toolbar/container_build_center.rb:6 ../app/helpers/application_helper/toolbar/ldap_regions_center.rb:6 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_object_store_containers_center.rb:8 ../app/helpers/application_helper/toolbar/cloud_subnet_center.rb:6 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:6 ../app/helpers/application_helper/toolbar/configuration_job_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_subnets_center.rb:6 ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:6 ../app/helpers/application_helper/toolbar/ems_network_center.rb:11 ../app/helpers/application_helper/toolbar/iso_datastore_center.rb:6 ../app/helpers/application_helper/toolbar/condition_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_object_store_container_center.rb:8 ../app/helpers/application_helper/toolbar/miq_ae_fields_center.rb:6 ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:6 ../app/helpers/application_helper/toolbar/miq_event_center.rb:6 ../app/helpers/application_helper/toolbar/miq_dialogs_center.rb:6 ../app/helpers/application_helper/toolbar/ems_physical_infra_center.rb:11 ../app/helpers/application_helper/toolbar/ems_block_storages_center.rb:6 ../app/helpers/application_helper/toolbar/saved_reports_center.rb:15 ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:6 ../app/helpers/application_helper/toolbar/network_routers_center.rb:8 ../app/helpers/application_helper/toolbar/floating_ips_center.rb:8 ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:6 ../app/helpers/application_helper/toolbar/miq_policy_profiles_center.rb:6 ../app/helpers/application_helper/toolbar/configuration_jobs_center.rb:6 ../app/helpers/application_helper/toolbar/resource_pools_center.rb:6 ../app/helpers/application_helper/toolbar/miq_widget_center.rb:6 ../app/helpers/application_helper/toolbar/time_profiles_center.rb:6 ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:6 ../app/helpers/application_helper/toolbar/auth_key_pair_clouds_center.rb:26 ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:14 ../app/helpers/application_helper/toolbar/configuration_script_center.rb:6 ../app/helpers/application_helper/toolbar/chargeback_center.rb:47 ../app/helpers/application_helper/toolbar/inventory_group_center.rb:6 ../app/helpers/application_helper/toolbar/zones_center.rb:6 ../app/helpers/application_helper/toolbar/ems_container_center.rb:11 ../app/helpers/application_helper/toolbar/cloud_tenant_center.rb:6 ../app/helpers/application_helper/toolbar/custom_button_set_center.rb:6 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:6 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:6 ../app/helpers/application_helper/toolbar/miq_widget_set_center.rb:6 ../app/helpers/application_helper/toolbar/miq_alert_center.rb:6 ../app/helpers/application_helper/toolbar/ems_storage_center.rb:11 ../app/helpers/application_helper/toolbar/iso_image_center.rb:6 ../app/helpers/application_helper/toolbar/host_center.rb:6 ../app/helpers/application_helper/toolbar/miq_report_schedule_center.rb:6 ../app/helpers/application_helper/toolbar/orchestration_stack_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_object_store_objects_center.rb:8 ../app/helpers/application_helper/toolbar/container_image_center.rb:6 ../app/helpers/application_helper/toolbar/miq_action_center.rb:6 ../app/helpers/application_helper/toolbar/x_vm_center.rb:6 ../app/helpers/application_helper/toolbar/chargebacks_center.rb:6 ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:6 ../app/helpers/application_helper/toolbar/catalogitem_button_center.rb:6 ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:6 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:6 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:6 ../app/helpers/application_helper/toolbar/miq_ae_method_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_object_store_object_center.rb:8 ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:6 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:6 ../app/helpers/application_helper/toolbar/vms_center.rb:6 ../app/helpers/application_helper/toolbar/catalogitem_buttons_center.rb:6 ../app/helpers/application_helper/toolbar/pxe_image_types_center.rb:6 ../app/helpers/application_helper/toolbar/automation_manager_providers_center.rb:6 ../app/helpers/application_helper/toolbar/network_router_center.rb:8 ../app/helpers/application_helper/toolbar/scan_profiles_center.rb:6 ../app/helpers/application_helper/toolbar/miq_ae_instances_center.rb:6 ../app/helpers/application_helper/toolbar/ldap_domain_center.rb:6 ../app/helpers/application_helper/toolbar/miq_schedules_center.rb:6 ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:6 ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:11 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:14 ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:6 ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:6 ../app/helpers/application_helper/toolbar/ems_containers_center.rb:6 ../app/helpers/application_helper/toolbar/miq_alert_profile_center.rb:6 ../app/helpers/application_helper/toolbar/miq_groups_center.rb:6 ../app/helpers/application_helper/toolbar/miq_schedule_center.rb:6 ../app/helpers/application_helper/toolbar/miq_ae_namespace_center.rb:6 ../app/helpers/application_helper/toolbar/customization_templates_center.rb:6 ../app/helpers/application_helper/toolbar/miq_policy_center.rb:6 ../app/helpers/application_helper/toolbar/user_role_center.rb:6 ../app/helpers/application_helper/toolbar/tenant_center.rb:6 ../app/helpers/application_helper/toolbar/generic_object_definition.rb:6 ../app/helpers/application_helper/toolbar/miq_widget_sets_center.rb:6 ../app/helpers/application_helper/toolbar/dialog_center.rb:6 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:6 ../app/helpers/application_helper/toolbar/customization_template_center.rb:6 ../app/helpers/application_helper/toolbar/container_images_center.rb:6 ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:91 ../app/helpers/application_helper/toolbar/miq_group_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_volumes_center.rb:6 ../app/helpers/application_helper/toolbar/custom_buttons_center.rb:6 ../app/helpers/application_helper/toolbar/miq_dialog_center.rb:6 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:6 ../app/helpers/application_helper/toolbar/x_configuration_script_center.rb:6 ../app/helpers/application_helper/toolbar/miq_ae_instance_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_volume_center.rb:6 ../app/helpers/application_helper/toolbar/tenants_center.rb:6 ../app/helpers/application_helper/toolbar/template_infras_center.rb:6 ../app/helpers/application_helper/toolbar/miq_widgets_center.rb:13 ../app/helpers/application_helper/toolbar/windows_image_center.rb:6 ../app/helpers/application_helper/toolbar/security_group_center.rb:8 ../app/helpers/application_helper/toolbar/dialogs_center.rb:6 ../app/helpers/application_helper/toolbar/miq_policy_profile_center.rb:6 ../app/helpers/application_helper/toolbar/storages_center.rb:6 ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:6 ../app/helpers/application_helper/toolbar/servicetemplate_center.rb:6 ../app/helpers/application_helper/toolbar/pxe_server_center.rb:6 ../app/helpers/application_helper/toolbar/storage_manager_center.rb:6 ../app/helpers/application_helper/toolbar/miq_alerts_center.rb:6 ../app/helpers/application_helper/toolbar/miq_ae_domain_center.rb:6 ../app/helpers/application_helper/toolbar/service_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_networks_center.rb:8 ../app/helpers/application_helper/toolbar/miq_report_center.rb:14 ../app/helpers/application_helper/toolbar/custom_button_center.rb:6 ../app/helpers/application_helper/toolbar/arbitration_profiles_center.rb:6 ../app/helpers/application_helper/toolbar/service/vmdb_mixin.rb:7 ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:6 ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:6 ../app/helpers/application_helper/toolbar/scan_profile_center.rb:6 ../app/helpers/application_helper/toolbar/miq_ae_class_center.rb:6 ../app/helpers/application_helper/toolbar/automation_manager_provider_center.rb:6 ../app/helpers/application_helper/toolbar/stack_orchestration_template_center.rb:6 ../app/helpers/application_helper/toolbar/hosts_center.rb:6 ../app/helpers/application_helper/toolbar/miq_ae_methods_center.rb:6 ../app/helpers/application_helper/toolbar/resource_pool_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_network_center.rb:8 ../app/helpers/application_helper/toolbar/persistent_volume_center.rb:6 ../app/helpers/application_helper/toolbar/servicetemplatecatalog_center.rb:6 ../app/helpers/application_helper/toolbar/ems_networks_center.rb:6 ../app/helpers/application_helper/toolbar/miq_alert_profiles_center.rb:6 ../app/helpers/application_helper/toolbar/configuration_manager_provider_center.rb:6 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:11 ../app/helpers/application_helper/toolbar/storage_center.rb:6 ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:6 ../app/helpers/application_helper/toolbar/pxe_image_center.rb:6 ../app/helpers/application_helper/toolbar/floating_ip_center.rb:8 ../app/helpers/application_helper/toolbar/saved_report_center.rb:6 ../app/helpers/application_helper/toolbar/users_center.rb:6 ../app/helpers/application_helper/toolbar/miq_ae_domains_center.rb:6 ../app/helpers/application_helper/toolbar/servicetemplatecatalogs_center.rb:6 ../app/helpers/application_helper/toolbar/conditions_center.rb:6 ../app/helpers/application_helper/toolbar/catalogitem_button_set_center.rb:6 ../app/helpers/application_helper/toolbar/miq_reports_center.rb:6 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:6 ../app/helpers/application_helper/toolbar/orchestration_template_center.rb:6 ../app/helpers/application_helper/toolbar/miq_report_schedules_center.rb:6 ../app/helpers/application_helper/toolbar/ems_storages_center.rb:6 ../app/helpers/application_helper/toolbar/auth_key_pair_cloud_center.rb:6 ../app/helpers/application_helper/toolbar/container_builds_center.rb:6 ../app/helpers/container_image_helper/textual_summary.rb:25 ../app/helpers/host_helper/textual_summary.rb:32 ../app/helpers/vm_cloud_helper/textual_summary.rb:37 ../app/helpers/resource_pool_helper/textual_summary.rb:25 ../app/helpers/ems_cluster_helper/textual_summary.rb:35 ../app/helpers/vm_helper/textual_summary.rb:69 ../app/controllers/ops_controller.rb:832 ../app/controllers/ems_cluster_controller.rb:71 ../app/controllers/configuration_controller.rb:611 ../app/views/layouts/listnav/_host.html.haml:184 ../app/views/layouts/listnav/_ems_cluster.html.haml:19 ../app/views/ems_container/_deploy.html.haml:28 msgid "Configuration" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:102 +#: ../app/helpers/host_helper/textual_summary.rb:109 msgid "Configuration (%{number})" msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:107 ../app/helpers/provider_foreman_helper.rb:188 ../app/controllers/application_controller/miq_request_methods.rb:309 +#: ../app/helpers/provider_foreman_helper.rb:109 ../app/helpers/provider_foreman_helper.rb:192 ../app/controllers/application_controller/miq_request_methods.rb:309 msgid "Configuration Location" msgstr "" -#: ../app/views/configuration/_ui_2.html.haml:210 +#: ../app/views/configuration/_ui_2.html.haml:211 msgid "Configuration Management Configured Systems" msgstr "" -#: ../app/views/configuration/_ui_2.html.haml:210 +#: ../app/views/configuration/_ui_2.html.haml:211 msgid "Configuration Management Providers" msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:113 ../app/helpers/provider_foreman_helper.rb:194 ../app/controllers/application_controller/miq_request_methods.rb:310 +#: ../app/helpers/provider_foreman_helper.rb:116 ../app/helpers/provider_foreman_helper.rb:199 ../app/controllers/application_controller/miq_request_methods.rb:310 msgid "Configuration Organization" msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:35 +#: ../app/helpers/provider_foreman_helper.rb:33 msgid "Configuration Profile Description" msgstr "" -#: ../app/presenters/tree_node_builder.rb:80 +#: ../app/presenters/tree_node/configuration_profile.rb:4 msgid "Configuration Profile: %{name}" msgstr "" -#: ../app/controllers/ops_controller/settings/common.rb:474 +#: ../app/controllers/ops_controller/settings/common.rb:432 msgid "Configuration changes saved" msgstr "" -#: ../app/controllers/host_controller.rb:165 +#: ../app/controllers/host_controller.rb:117 msgid "Configuration files of nova service" msgstr "" -#: ../app/controllers/ops_controller/settings/common.rb:514 +#: ../app/controllers/ops_controller/settings/common.rb:472 msgid "Configuration settings saved" msgstr "" -#: ../app/controllers/ops_controller/settings/common.rb:508 ../app/controllers/ops_controller/settings/common.rb:556 +#: ../app/controllers/ops_controller/settings/common.rb:466 ../app/controllers/ops_controller/settings/common.rb:514 msgid "Configuration settings saved for %{product} Server \"%{name} [%{server_id}]\" in Zone \"%{zone}\"" msgstr "" -#: ../app/controllers/configuration_job_controller.rb:30 +#: ../app/controllers/configuration_job_controller.rb:31 msgid "Configuration_Jobs" msgstr "" @@ -6292,11 +6476,11 @@ msgstr "" msgid "Configure:" msgstr "" -#: ../app/presenters/tree_node_builder.rb:83 +#: ../app/presenters/tree_node/configured_system.rb:4 msgid "Configured System: %{hostname}" msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:522 ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:34 ../app/views/provider_foreman/_configuration_profile.html.haml:7 ../app/views/provider_foreman/_inventory_group.html.haml:7 +#: ../app/controllers/provider_foreman_controller.rb:284 ../app/controllers/automation_manager_controller.rb:262 ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:34 ../app/views/provider_foreman/_inventory_group.html.haml:7 ../app/views/provider_foreman/_configuration_profile.html.haml:7 ../app/views/automation_manager/_inventory_group.html.haml:7 msgid "Configured Systems" msgstr "" @@ -6308,15 +6492,15 @@ msgstr "" msgid "Confirm Client Key" msgstr "" -#: ../app/views/ops/_rbac_user_details.html.haml:116 ../app/views/storage_manager/_form.html.haml:205 ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:7 +#: ../app/views/ops/_rbac_user_details.html.haml:115 ../app/views/storage_manager/_form.html.haml:205 ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:7 msgid "Confirm Password" msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:72 msgid "Confirm Secret Access Key" msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:136 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:155 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:139 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:158 msgid "Confirm Token" msgstr "" @@ -6324,15 +6508,15 @@ msgstr "" msgid "Connect to this VM in its Region" msgstr "" -#: ../app/views/vm_common/console_spice.html.haml:30 -msgid "Connecting (unencrypted) to: %{url}" +#: ../app/assets/javascripts/remote_consoles/spice.js:29 ../app/assets/javascripts/remote_consoles/vnc.js:28 +msgid "Connected" msgstr "" #: ../app/views/ops/_settings_workers_tab.html.haml:144 msgid "Connection Broker" msgstr "" -#: ../app/controllers/ops_controller/diagnostics.rb:589 ../app/controllers/ops_controller/diagnostics.rb:594 +#: ../app/controllers/ops_controller/diagnostics.rb:580 ../app/controllers/ops_controller/diagnostics.rb:585 msgid "Connection Broker cache cleared successfully" msgstr "" @@ -6344,11 +6528,11 @@ msgstr "" msgid "Connection failed." msgstr "" -#: ../app/controllers/vm_common.rb:1143 ../app/controllers/vm_common.rb:1164 +#: ../app/controllers/vm_remote.rb:87 ../app/controllers/vm_remote.rb:110 msgid "Console access failed: %{message}" msgstr "" -#: ../app/controllers/vm_common.rb:1150 +#: ../app/controllers/vm_remote.rb:95 msgid "Console access failed: Task start failed: ID [%{id}]" msgstr "" @@ -6356,19 +6540,15 @@ msgstr "" msgid "Consolidating records will not show detail records in the report." msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:329 +#: ../app/controllers/report_controller/reports/editor.rb:334 msgid "Consolidation" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1701 +#: ../app/controllers/report_controller/reports/editor.rb:1716 msgid "Consolidation tab is not available until at least 1 field has been selected" msgstr "" -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:78 ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:57 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:85 -msgid "Consumable Blocks" -msgstr "" - -#: ../app/presenters/menu/default_menu.rb:32 +#: ../app/presenters/menu/default_menu.rb:33 msgid "Consumption" msgstr "" @@ -6376,25 +6556,21 @@ msgstr "" msgid "Consumption Tab is coming" msgstr "" -#: ../app/controllers/vm_common.rb:1632 ../app/helpers/vm_helper/textual_summary.rb:124 +#: ../app/controllers/vm_common.rb:1440 ../app/helpers/vm_helper/textual_summary.rb:164 msgid "Container" msgid_plural "Container" msgstr[0] "" msgstr[1] "" -#: ../app/presenters/menu/default_menu.rb:106 ../app/controllers/ems_common.rb:83 +#: ../app/presenters/menu/default_menu.rb:109 msgid "Container Builds" msgstr "" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:10 -msgid "Container Entity" -msgstr "" - -#: ../app/controllers/ops_controller/settings/schedules.rb:623 +#: ../app/controllers/ops_controller/settings/schedules.rb:618 msgid "Container Image Analysis" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:634 +#: ../app/controllers/ops_controller/settings/schedules.rb:629 msgid "Container Image Compliance Check" msgstr "" @@ -6402,7 +6578,7 @@ msgstr "" msgid "Container Image Compliance Policies" msgstr "" -#: ../app/presenters/tree_builder_condition.rb:25 +#: ../app/presenters/tree_builder_condition.rb:28 msgid "Container Image Conditions" msgstr "" @@ -6410,23 +6586,15 @@ msgstr "" msgid "Container Image Control Policies" msgstr "" -#: ../app/controllers/ems_common.rb:85 -msgid "Container Image Registries" -msgstr "" - -#: ../app/presenters/menu/default_menu.rb:108 ../app/controllers/ems_common.rb:81 +#: ../app/presenters/menu/default_menu.rb:111 msgid "Container Images" msgstr "" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:12 -msgid "Container Label" -msgstr "" - #: ../app/presenters/tree_builder_policy.rb:22 ../app/views/miq_policy/_policy_folders.html.haml:2 msgid "Container Node Compliance Policies" msgstr "" -#: ../app/presenters/tree_builder_condition.rb:24 +#: ../app/presenters/tree_builder_condition.rb:27 msgid "Container Node Conditions" msgstr "" @@ -6434,47 +6602,27 @@ msgstr "" msgid "Container Node Control Policies" msgstr "" -#: ../app/presenters/menu/default_menu.rb:104 ../app/controllers/ems_common.rb:78 +#: ../app/presenters/menu/default_menu.rb:107 msgid "Container Nodes" msgstr "" -#: ../app/controllers/ems_common.rb:84 -msgid "Container Projects" -msgstr "" - -#: ../app/presenters/tree_builder_condition.rb:26 -msgid "Container Provider Conditions" -msgstr "" - -#: ../app/controllers/ems_common.rb:77 -msgid "Container Replicators" -msgstr "" - -#: ../app/controllers/ems_common.rb:82 -msgid "Container Routes" -msgstr "" - -#: ../app/presenters/menu/default_menu.rb:100 ../app/controllers/ems_common.rb:80 +#: ../app/presenters/menu/default_menu.rb:103 msgid "Container Services" msgstr "" -#: ../app/views/container_group/_main.html.haml:33 +#: ../app/helpers/container_group_helper/textual_summary.rb:125 msgid "Container Statuses Summary" msgstr "" -#: ../app/presenters/menu/default_menu.rb:109 ../app/controllers/ems_common.rb:86 +#: ../app/presenters/menu/default_menu.rb:112 msgid "Container Templates" msgstr "" -#: ../app/views/ops/_label_tag_mapping_form.html.haml:12 -msgid "Container entity and label" -msgstr "" - -#: ../app/presenters/menu/default_menu.rb:95 ../app/controllers/ems_common.rb:76 ../app/views/container_topology/show.html.haml:63 ../app/views/configuration/_ui_2.html.haml:74 ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:19 +#: ../app/presenters/menu/default_menu.rb:98 ../app/presenters/menu/default_menu.rb:106 ../app/controllers/container_controller.rb:108 ../app/views/configuration/_ui_1.html.haml:145 ../app/views/configuration/_ui_2.html.haml:75 ../app/views/container_topology/show.html.haml:63 ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:19 msgid "Containers" msgstr "" -#: ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:77 ../app/views/miq_ae_customization/_old_dialogs_details.html.haml:53 ../app/views/storage/_main.html.haml:19 ../app/views/layouts/listnav/_storage.html.haml:83 +#: ../app/helpers/storage_helper/textual_summary.rb:27 ../app/views/layouts/listnav/_storage.html.haml:44 ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:77 ../app/views/miq_ae_customization/_old_dialogs_details.html.haml:53 msgid "Content" msgstr "" @@ -6486,11 +6634,11 @@ msgstr "" msgid "Content generation for this Widget has been initiated" msgstr "" -#: ../app/views/layouts/_item.html.haml:127 +#: ../app/views/layouts/_item.html.haml:69 msgid "Contents" msgstr "" -#: ../app/views/miq_request/_prov_form_buttons.html.haml:21 ../app/views/miq_request/_prov_form_buttons.html.haml:39 ../app/views/layouts/_x_dialog_buttons.html.haml:32 ../app/views/layouts/_x_dialog_buttons.html.haml:65 ../app/views/layouts/_x_edit_buttons.html.haml:78 ../app/views/layouts/_x_edit_buttons.html.haml:151 ../app/views/layouts/_edit_form_buttons.html.haml:36 ../app/views/layouts/_edit_form_buttons.html.haml:36 ../app/views/layouts/_edit_form_buttons.html.haml:66 ../app/views/layouts/_edit_form_buttons.html.haml:145 +#: ../app/views/miq_request/_prov_form_buttons.html.haml:21 ../app/views/miq_request/_prov_form_buttons.html.haml:39 ../app/views/layouts/_edit_form_buttons.html.haml:36 ../app/views/layouts/_edit_form_buttons.html.haml:36 ../app/views/layouts/_edit_form_buttons.html.haml:66 ../app/views/layouts/_edit_form_buttons.html.haml:145 ../app/views/layouts/_x_dialog_buttons.html.haml:32 ../app/views/layouts/_x_dialog_buttons.html.haml:65 ../app/views/layouts/_x_edit_buttons.html.haml:78 ../app/views/layouts/_x_edit_buttons.html.haml:151 msgid "Continue" msgstr "" @@ -6498,11 +6646,11 @@ msgstr "" msgid "Continue this provisioning request" msgstr "" -#: ../app/presenters/menu/default_menu.rb:214 +#: ../app/presenters/menu/default_menu.rb:212 msgid "Control" msgstr "" -#: ../app/presenters/tree_builder_policy.rb:51 ../app/views/miq_policy/_policy_folders.html.haml:2 +#: ../app/presenters/tree_builder_policy.rb:72 ../app/views/miq_policy/_policy_folders.html.haml:2 msgid "Control Policies" msgstr "" @@ -6510,7 +6658,7 @@ msgstr "" msgid "Copy" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:451 +#: ../app/controllers/miq_ae_customization_controller.rb:465 msgid "Copy " msgstr "" @@ -6526,7 +6674,7 @@ msgstr "" msgid "Copy Selected Customization Templates" msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:180 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:183 msgid "Copy and paste the contents of your Service Account JSON file above." msgstr "" @@ -6538,27 +6686,27 @@ msgstr "" msgid "Copy object details for use in a Button" msgstr "" -#: ../app/controllers/miq_request_controller.rb:249 ../app/controllers/configuration_controller.rb:369 +#: ../app/controllers/miq_request_controller.rb:246 ../app/controllers/configuration_controller.rb:352 msgid "Copy of %{description}" msgstr "" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:126 +#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:116 msgid "Copy of %{label}" msgstr "" -#: ../app/controllers/catalog_controller.rb:670 +#: ../app/controllers/catalog_controller.rb:677 msgid "Copy of %{name}" msgstr "" -#: ../app/controllers/miq_request_controller.rb:251 +#: ../app/controllers/miq_request_controller.rb:248 msgid "Copy of %{typ} Request" msgstr "" -#: ../app/controllers/catalog_controller.rb:1020 +#: ../app/controllers/catalog_controller.rb:1033 msgid "Copy of Orchestration Template \"%{name}\" was cancelled by the user" msgstr "" -#: ../app/controllers/orchestration_stack_controller.rb:225 +#: ../app/controllers/orchestration_stack_controller.rb:229 msgid "Copy of Orchestration Template was cancelled by the user" msgstr "" @@ -6586,7 +6734,7 @@ msgstr "" msgid "Copy selected Orchestration Template" msgstr "" -#: ../app/helpers/application_helper/toolbar/time_profiles_center.rb:27 +#: ../app/helpers/application_helper/toolbar/time_profiles_center.rb:28 msgid "Copy selected Time Profile" msgstr "" @@ -6598,7 +6746,7 @@ msgstr "" msgid "Copy the selected Chargeback Rate to a new Chargeback Rate" msgstr "" -#: ../app/helpers/application_helper/toolbar/dialogs_center.rb:27 ../app/helpers/application_helper/toolbar/miq_dialogs_center.rb:26 +#: ../app/helpers/application_helper/toolbar/miq_dialogs_center.rb:27 ../app/helpers/application_helper/toolbar/dialogs_center.rb:27 msgid "Copy the selected Dialog to a new Dialog" msgstr "" @@ -6622,7 +6770,7 @@ msgstr "" msgid "Copy this Chargeback Rate" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_ae_fields_center.rb:18 ../app/helpers/application_helper/toolbar/miq_ae_methods_center.rb:18 ../app/helpers/application_helper/toolbar/miq_ae_instances_center.rb:18 ../app/helpers/application_helper/toolbar/miq_ae_class_center.rb:18 +#: ../app/helpers/application_helper/toolbar/miq_ae_fields_center.rb:18 ../app/helpers/application_helper/toolbar/miq_ae_instances_center.rb:18 ../app/helpers/application_helper/toolbar/miq_ae_class_center.rb:18 ../app/helpers/application_helper/toolbar/miq_ae_methods_center.rb:18 msgid "Copy this Class" msgstr "" @@ -6666,7 +6814,7 @@ msgstr "" msgid "Copy this Report" msgstr "" -#: ../app/helpers/application_helper/toolbar/user_role_center.rb:17 +#: ../app/helpers/application_helper/toolbar/user_role_center.rb:18 msgid "Copy this Role to a new Role" msgstr "" @@ -6678,7 +6826,7 @@ msgstr "" msgid "Copy this Widget" msgstr "" -#: ../app/helpers/application_helper/toolbar/scan_profile_center.rb:17 +#: ../app/helpers/application_helper/toolbar/scan_profile_center.rb:18 msgid "Copy this selected Analysis Profile" msgstr "" @@ -6686,11 +6834,11 @@ msgstr "" msgid "Copy to same path" msgstr "" -#: ../app/controllers/catalog_controller.rb:669 +#: ../app/controllers/catalog_controller.rb:676 msgid "Copying %{record_name}" msgstr "" -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:38 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:46 +#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:38 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:63 msgid "Cores" msgstr "" @@ -6702,7 +6850,7 @@ msgstr "" msgid "Could not find %{model}[id=%{id}]" msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:174 ../app/controllers/cloud_volume_controller.rb:397 ../app/controllers/cloud_volume_controller.rb:403 +#: ../app/controllers/cloud_volume_controller.rb:463 ../app/controllers/cloud_volume_controller.rb:469 ../app/controllers/auth_key_pair_cloud_controller.rb:189 msgid "Couldn't initiate deletion of %{model} \"%{name}\": %{details}" msgstr "" @@ -6710,19 +6858,27 @@ msgstr "" msgid "Couldn't initiate deletion of Network \"%{name}\": %{details}" msgstr "" +#: ../app/controllers/security_group_controller.rb:135 +msgid "Couldn't initiate deletion of Security Group \"%{name}\": %{details}" +msgstr "" + #: ../app/controllers/cloud_network_controller.rb:204 msgid "Couldn't initiate update of Network \"%{name}\": %{details}" msgstr "" -#: ../app/views/ops/_settings_workers_tab.html.haml:22 ../app/views/ops/_settings_workers_tab.html.haml:73 ../app/views/ops/_settings_workers_tab.html.haml:183 ../app/views/ops/_settings_workers_tab.html.haml:224 ../app/views/ops/_settings_workers_tab.html.haml:274 ../app/views/ops/_settings_workers_tab.html.haml:327 ../app/views/ops/_settings_workers_tab.html.haml:377 ../app/views/ops/_settings_workers_tab.html.haml:457 ../app/views/ops/_settings_workers_tab.html.haml:507 ../app/views/ops/_diagnostics_savedreports.html.haml:20 +#: ../app/controllers/security_group_controller.rb:203 +msgid "Couldn't initiate update of Security Group \"%{name}\": %{details}" +msgstr "" + +#: ../app/views/ops/_diagnostics_savedreports.html.haml:20 ../app/views/ops/_settings_workers_tab.html.haml:22 ../app/views/ops/_settings_workers_tab.html.haml:73 ../app/views/ops/_settings_workers_tab.html.haml:183 ../app/views/ops/_settings_workers_tab.html.haml:224 ../app/views/ops/_settings_workers_tab.html.haml:274 ../app/views/ops/_settings_workers_tab.html.haml:327 ../app/views/ops/_settings_workers_tab.html.haml:377 ../app/views/ops/_settings_workers_tab.html.haml:457 ../app/views/ops/_settings_workers_tab.html.haml:507 msgid "Count" msgstr "" -#: ../app/helpers/ui_constants.rb:528 +#: ../app/helpers/ui_constants.rb:495 msgid "Count of" msgstr "" -#: ../app/views/report/_form_chart.html.haml:43 ../app/views/report/_form_chart.html.haml:54 ../app/views/report/_form_sort.html.haml:78 +#: ../app/views/report/_form_sort.html.haml:78 ../app/views/report/_form_chart.html.haml:43 ../app/views/report/_form_chart.html.haml:54 msgid "Counts" msgstr "" @@ -6734,7 +6890,7 @@ msgstr "" msgid "Create" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:434 +#: ../app/controllers/cloud_volume_controller.rb:500 msgid "Create Backup for %{model} \"%{name}\"" msgstr "" @@ -6742,7 +6898,7 @@ msgstr "" msgid "Create Cloud Tenant" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:28 ../app/views/ems_container/_deploy.html.haml:4 +#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:29 ../app/views/ems_container/_deploy.html.haml:4 msgid "Create Containers Provider" msgstr "" @@ -6750,23 +6906,11 @@ msgstr "" msgid "Create Datasource" msgstr "" -#: ../app/helpers/application_helper/toolbar/ontap_file_share_center.rb:13 -msgid "Create Datastore" -msgstr "" - -#: ../app/controllers/ontap_file_share_controller.rb:84 -msgid "Create Datastore was cancelled by the user" -msgstr "" - -#: ../app/helpers/application_helper/toolbar/ontap_storage_system_center.rb:13 -msgid "Create Logical Disk" -msgstr "" - -#: ../app/controllers/ontap_storage_system_controller.rb:91 -msgid "Create Logical Disk was cancelled by the user" +#: ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:404 +msgid "Create New" msgstr "" -#: ../app/controllers/host_aggregate_controller.rb:173 +#: ../app/controllers/host_aggregate_controller.rb:162 msgid "Create New %{model}" msgstr "" @@ -6774,15 +6918,15 @@ msgstr "" msgid "Create Service Dialog from Orchestration Template" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_configuration_script_center.rb:12 ../app/helpers/application_helper/toolbar/configuration_script_center.rb:12 +#: ../app/helpers/application_helper/toolbar/configuration_script_center.rb:12 ../app/helpers/application_helper/toolbar/x_configuration_script_center.rb:12 msgid "Create Service Dialog from this Job Template" msgstr "" -#: ../app/controllers/vm_common.rb:609 +#: ../app/controllers/vm_common.rb:463 msgid "Create Snapshot for %{model} \"%{name}\" was started" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:569 +#: ../app/controllers/cloud_volume_controller.rb:635 msgid "Create Snapshot for Cloud Volume \"%{name}\"" msgstr "" @@ -6790,14 +6934,6 @@ msgstr "" msgid "Create a Backup of this Cloud Volume" msgstr "" -#: ../app/helpers/application_helper/toolbar/ontap_file_share_center.rb:12 -msgid "Create a Datastore based on this File Share" -msgstr "" - -#: ../app/helpers/application_helper/toolbar/ontap_storage_system_center.rb:12 -msgid "Create a Logical Disk (NetApp Flexible Volume) on this Filer" -msgstr "" - #: ../app/helpers/application_helper/toolbar/cloud_volume_center.rb:30 msgid "Create a Snapshot of this Cloud Volume" msgstr "" @@ -6806,15 +6942,15 @@ msgstr "" msgid "Create a new Condition assigned to this Policy" msgstr "" -#: ../app/helpers/application_helper/toolbar/generic_object_definition.rb:12 ../app/views/generic_object/explorer.html.haml:98 +#: ../app/helpers/application_helper/toolbar/generic_object_definition.rb:12 ../app/views/generic_object/explorer.html.haml:101 msgid "Create a new Generic Object Definition" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:127 ../app/helpers/application_helper/toolbar/miq_template_center.rb:123 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:130 msgid "Create a new snapshot for this Template" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:274 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:286 msgid "Create a new snapshot for this VM" msgstr "" @@ -6830,55 +6966,51 @@ msgstr "" msgid "Create snapshot" msgstr "" -#: ../app/views/miq_policy/_policy_details.html.haml:76 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:72 +#: ../app/views/miq_policy/_policy_details.html.haml:76 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:99 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:115 msgid "Created" msgstr "" -#: ../app/helpers/service_helper/textual_summary.rb:120 ../app/views/miq_request/_request.html.haml:113 ../app/views/miq_ae_customization/_dialog_info.html.haml:44 ../app/views/vm_common/_snapshots_desc.html.haml:50 ../app/views/miq_ae_class/_method_inputs.html.haml:80 ../app/views/miq_ae_class/_method_form.html.haml:88 ../app/views/catalog/_ot_tree_show.html.haml:63 ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 +#: ../app/helpers/ansible_playbook_helper/textual_summary.rb:15 ../app/helpers/ansible_repository_helper/textual_summary.rb:14 ../app/helpers/ansible_credential_helper/textual_summary.rb:21 ../app/helpers/service_helper/textual_summary.rb:176 ../app/views/vm_common/_snapshots_desc.html.haml:50 ../app/views/miq_request/_request.html.haml:113 ../app/views/miq_ae_class/_method_inputs.html.haml:80 ../app/views/miq_ae_class/_method_form.html.haml:88 ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 ../app/views/miq_ae_customization/_dialog_info.html.haml:44 ../app/views/catalog/_ot_tree_show.html.haml:63 msgid "Created On" msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:117 -msgid "Creating %{model} %{name}" -msgstr "" - -#: ../app/controllers/cloud_volume_controller.rb:267 -msgid "Creating %{volume} \"%{volume_name}\"" -msgstr "" - -#: ../app/controllers/cloud_subnet_controller.rb:77 +#: ../app/controllers/cloud_subnet_controller.rb:98 msgid "Creation of a Cloud Subnet was cancelled by the user" msgstr "" -#: ../app/controllers/catalog_controller.rb:1072 +#: ../app/controllers/catalog_controller.rb:1085 msgid "Creation of a new Orchestration Template was cancelled by the user" msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:1188 ../app/controllers/catalog_controller.rb:1118 +#: ../app/controllers/automation_manager_controller.rb:547 ../app/controllers/catalog_controller.rb:1131 msgid "Creation of a new Service Dialog was cancelled by the user" msgstr "" -#: ../app/controllers/host_aggregate_controller.rb:183 +#: ../app/controllers/host_aggregate_controller.rb:172 msgid "Creation of new %{model} was cancelled by the user" msgstr "" -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:173 ../app/helpers/container_summary_helper.rb:103 +#: ../app/helpers/persistent_volume_helper/textual_summary.rb:181 ../app/helpers/container_summary_helper.rb:107 msgid "Creation timestamp" msgstr "" +#: ../app/helpers/ansible_repository_helper/textual_summary.rb:35 +msgid "Credential" +msgstr "" + #: ../app/controllers/ops_controller/settings/rhn.rb:174 msgid "Credential validation returned: %{message}" msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:235 ../app/controllers/mixins/ems_common_angular.rb:65 ../app/controllers/ems_common.rb:365 +#: ../app/controllers/ems_common.rb:308 ../app/controllers/mixins/manager_controller_mixin.rb:76 ../app/controllers/mixins/ems_common_angular.rb:65 msgid "Credential validation was not successful: %{details}" msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:237 ../app/controllers/host_controller.rb:297 ../app/controllers/host_controller.rb:420 ../app/controllers/ops_controller/settings/ldap.rb:148 ../app/controllers/ops_controller/settings/rhn.rb:177 ../app/controllers/storage_manager_controller.rb:111 ../app/controllers/storage_manager_controller.rb:198 ../app/controllers/mixins/ems_common_angular.rb:63 ../app/controllers/ems_common.rb:363 +#: ../app/controllers/ems_common.rb:306 ../app/controllers/storage_manager_controller.rb:112 ../app/controllers/storage_manager_controller.rb:199 ../app/controllers/host_controller.rb:249 ../app/controllers/host_controller.rb:372 ../app/controllers/mixins/manager_controller_mixin.rb:78 ../app/controllers/mixins/ems_common_angular.rb:63 ../app/controllers/ops_controller/settings/rhn.rb:177 ../app/controllers/ops_controller/settings/ldap.rb:141 msgid "Credential validation was successful" msgstr "" -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:42 ../app/views/miq_request/_prov_host_dialog.html.haml:74 ../app/views/shared/views/ems_common/angular/_form.html.haml:401 ../app/views/shared/views/_prov_dialog.html.haml:365 ../app/views/provider_foreman/_form.html.haml:157 ../app/views/ems_cloud/discover.html.haml:34 ../app/views/ems_cloud/discover.html.haml:41 ../app/views/storage_manager/_form.html.haml:147 ../app/views/ems_infra/_form.html.haml:168 ../app/views/layouts/_container_auth.html.haml:2 +#: ../app/presenters/menu/default_menu.rb:237 ../app/helpers/service_helper/textual_summary.rb:25 ../app/helpers/service_helper/textual_summary.rb:45 ../app/views/ems_cloud/discover.html.haml:34 ../app/views/ems_cloud/discover.html.haml:41 ../app/views/miq_request/_prov_host_dialog.html.haml:74 ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:42 ../app/views/storage_manager/_form.html.haml:147 ../app/views/shared/views/_prov_dialog.html.haml:365 ../app/views/shared/views/ems_common/angular/_form.html.haml:401 ../app/views/ems_infra/_form.html.haml:168 ../app/views/layouts/_container_auth.html.haml:2 ../app/views/provider_foreman/_form.html.haml:160 ../app/views/automation_manager/_form.html.haml:124 msgid "Credentials" msgstr "" @@ -6886,11 +7018,11 @@ msgstr "" msgid "Credentials - Windows Domain" msgstr "" -#: ../app/controllers/host_controller.rb:312 +#: ../app/controllers/host_controller.rb:264 msgid "Credentials/Settings" msgstr "" -#: ../app/controllers/host_controller.rb:384 +#: ../app/controllers/host_controller.rb:336 msgid "Credentials/Settings saved successfully" msgstr "" @@ -6918,52 +7050,56 @@ msgstr "" msgid "Current Status" msgstr "" -#: ../app/views/configuration/_timeprofile_form.html.haml:56 +#: ../app/views/configuration/_timeprofile_form.html.haml:58 msgid "Current User" msgstr "" -#: ../app/helpers/container_replicator_helper/textual_summary.rb:29 +#: ../app/helpers/container_replicator_helper/textual_summary.rb:32 msgid "Current pods" msgstr "" +#: ../app/helpers/application_helper/button/vm_snapshot_add.rb:4 +msgid "Current user lacks permissions to create a new snapshot for this VM" +msgstr "" + #: ../app/views/layouts/_user_options.html.haml:40 msgid "Currently Selected Group" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:59 +#: ../app/views/miq_policy/_action_options.html.haml:58 msgid "Custom Attribute Settings" msgstr "" -#: ../app/views/container_node/_main.html.haml:15 ../app/views/ems_container/_main.html.haml:18 ../app/views/vm_common/_main.html.haml:20 ../app/views/service/_svcs_show.html.haml:13 ../app/views/vm_cloud/_main.html.haml:19 ../app/views/host/_main.html.haml:27 +#: ../app/helpers/host_helper/textual_summary.rb:45 ../app/helpers/vm_cloud_helper/textual_summary.rb:54 ../app/helpers/ems_container_helper/textual_summary.rb:124 ../app/helpers/service_helper/textual_summary.rb:73 ../app/helpers/container_summary_helper.rb:77 ../app/helpers/vm_helper/textual_summary.rb:100 msgid "Custom Attributes" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:267 ../app/views/miq_policy/_action_details.html.haml:110 +#: ../app/views/miq_policy/_action_options.html.haml:259 ../app/views/miq_policy/_action_details.html.haml:110 msgid "Custom Automation" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:128 ../app/helpers/vm_helper/textual_summary.rb:120 ../app/helpers/vm_cloud_helper/textual_summary.rb:75 ../app/views/vm_common/_form.html.haml:18 ../app/views/host/_form.html.haml:97 +#: ../app/helpers/host_helper/textual_summary.rb:135 ../app/helpers/vm_cloud_helper/textual_summary.rb:86 ../app/helpers/vm_helper/textual_summary.rb:160 ../app/views/vm_common/_form.html.haml:18 ../app/views/host/_form.html.haml:97 msgid "Custom Identifier" msgstr "" -#: ../app/views/catalog/_sandt_tree_show.html.haml:166 +#: ../app/views/catalog/_sandt_tree_show.html.haml:182 msgid "Custom Image" msgstr "" -#: ../app/controllers/catalog_controller.rb:403 +#: ../app/controllers/catalog_controller.rb:410 msgid "Custom Image file \"%{name}\" successfully uploaded" msgstr "" -#: ../app/controllers/catalog_controller.rb:396 +#: ../app/controllers/catalog_controller.rb:399 msgid "Custom Image must be a .png or .jpg file" msgstr "" -#: ../app/controllers/catalog_controller.rb:390 +#: ../app/controllers/catalog_controller.rb:393 msgid "Custom Image successfully removed" msgstr "" #: ../app/views/ops/_settings_custom_logos_tab.html.haml:55 -msgid "Custom Login Background Image" +msgid "Custom Login & 'About' Screen Background Image" msgstr "" #: ../app/views/ops/_settings_custom_logos_tab.html.haml:121 @@ -6982,7 +7118,7 @@ msgstr "" msgid "Custom Logos" msgstr "" -#: ../app/presenters/tree_builder_report_export.rb:25 ../app/views/report/_export_custom_reports.html.haml:7 +#: ../app/presenters/tree_builder_report_export.rb:29 ../app/views/report/_export_custom_reports.html.haml:7 msgid "Custom Reports" msgstr "" @@ -6990,11 +7126,11 @@ msgstr "" msgid "Custom Specification" msgstr "" -#: ../app/views/ops/_settings_server_tab.html.haml:652 +#: ../app/views/ops/_settings_server_tab.html.haml:616 msgid "Custom Support URL" msgstr "" -#: ../app/controllers/ops_controller/settings/common.rb:604 +#: ../app/controllers/ops_controller/settings/common.rb:562 msgid "Custom Support URL and Description both must be entered." msgstr "" @@ -7014,7 +7150,7 @@ msgstr "" msgid "Customer Information successfully saved" msgstr "" -#: ../app/presenters/menu/default_menu.rb:231 +#: ../app/presenters/menu/default_menu.rb:252 msgid "Customization" msgstr "" @@ -7022,7 +7158,7 @@ msgstr "" msgid "Customization Directory" msgstr "" -#: ../app/controllers/pxe_controller.rb:69 +#: ../app/controllers/pxe_controller.rb:68 msgid "Customization Templates" msgstr "" @@ -7038,11 +7174,11 @@ msgstr "" msgid "DHCP Server" msgstr "" -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:101 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:230 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:323 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:388 ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:49 ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:35 ../app/views/miq_request/_prov_host_dialog.html.haml:90 ../app/views/shared/views/_prov_dialog.html.haml:347 ../app/views/shared/views/_prov_dialog.html.haml:381 +#: ../app/views/miq_request/_prov_host_dialog.html.haml:90 ../app/views/shared/views/_prov_dialog.html.haml:347 ../app/views/shared/views/_prov_dialog.html.haml:381 ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:49 ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:35 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:101 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:230 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:323 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:388 msgid "DNS" msgstr "" -#: ../app/helpers/container_group_helper/textual_summary.rb:90 +#: ../app/helpers/container_group_helper/textual_summary.rb:100 msgid "DNS Policy" msgstr "" @@ -7054,23 +7190,23 @@ msgstr "" msgid "DNS can only be assigned to Masters or Nodes" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:263 +#: ../app/helpers/ems_cluster_helper/textual_summary.rb:230 msgid "DRS Automation Level" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:257 +#: ../app/helpers/ems_cluster_helper/textual_summary.rb:224 msgid "DRS Enabled" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:269 +#: ../app/helpers/ems_cluster_helper/textual_summary.rb:236 msgid "DRS Migration Threshold" msgstr "" -#: ../app/views/report/_form_columns_performance.html.haml:12 ../app/views/report/_form_columns_performance.html.haml:15 ../app/views/report/_schedule_form_timer.html.haml:20 ../app/views/layouts/_perf_options.html.haml:25 ../app/views/layouts/_perf_options.html.haml:30 ../app/views/layouts/_perf_options.html.haml:40 +#: ../app/views/report/_schedule_form_timer.html.haml:20 ../app/views/report/_form_columns_performance.html.haml:12 ../app/views/report/_form_columns_performance.html.haml:15 ../app/views/layouts/_perf_options.html.haml:25 ../app/views/layouts/_perf_options.html.haml:29 ../app/views/layouts/_perf_options.html.haml:39 msgid "Daily" msgstr "" -#: ../app/presenters/menu/default_menu.rb:21 ../app/presenters/menu/default_menu.rb:33 +#: ../app/presenters/menu/default_menu.rb:22 ../app/presenters/menu/default_menu.rb:34 msgid "Dashboard" msgstr "" @@ -7086,15 +7222,15 @@ msgstr "" msgid "Dashboard Sequence was saved" msgstr "" -#: ../app/helpers/application_helper/toolbar/dashboard_summary_toggle_view.rb:6 +#: ../app/helpers/application_helper/toolbar/dashboard_summary_toggle_view.rb:6 ../app/helpers/configuration_helper/configuration_view_helper.rb:64 ../app/helpers/configuration_helper/configuration_view_helper.rb:69 msgid "Dashboard View" msgstr "" -#: ../app/controllers/report_controller.rb:287 +#: ../app/controllers/report_controller.rb:291 msgid "Dashboard Widgets" msgstr "" -#: ../app/controllers/report_controller.rb:283 +#: ../app/controllers/report_controller.rb:287 msgid "Dashboards" msgstr "" @@ -7110,23 +7246,19 @@ msgstr "" msgid "Data" msgstr "" -#: ../app/helpers/ops_helper/textual_summary.rb:53 +#: ../app/helpers/ops_helper/textual_summary.rb:63 msgid "Data Directory" msgstr "" -#: ../app/helpers/ops_helper/textual_summary.rb:57 +#: ../app/helpers/ops_helper/textual_summary.rb:67 msgid "Data Disk" msgstr "" -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:62 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:69 -msgid "Data Redundancy" -msgstr "" - -#: ../app/views/miq_ae_class/_method_inputs.html.haml:132 ../app/views/miq_ae_class/_inputs.html.haml:18 ../app/views/miq_ae_class/_class_fields.html.haml:79 +#: ../app/views/miq_ae_class/_inputs.html.haml:18 ../app/views/miq_ae_class/_method_inputs.html.haml:132 ../app/views/miq_ae_class/_class_fields.html.haml:79 msgid "Data Type" msgstr "" -#: ../app/views/miq_ae_class/_class_fields.html.haml:35 ../app/views/miq_ae_class/_instance_form.html.haml:114 +#: ../app/views/miq_ae_class/_instance_form.html.haml:114 ../app/views/miq_ae_class/_class_fields.html.haml:35 msgid "Data Type:" msgstr "" @@ -7134,7 +7266,7 @@ msgstr "" msgid "Data column" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1673 +#: ../app/controllers/report_controller/reports/editor.rb:1688 msgid "Data column must be selected when chart mode is set to \"Values\"" msgstr "" @@ -7150,15 +7282,15 @@ msgstr "" msgid "Data:" msgstr "" -#: ../app/helpers/ops_helper.rb:38 ../app/controllers/ops_controller.rb:216 ../app/views/ops/_settings_replication_tab.html.haml:136 ../app/views/ops/_settings_authentication_tab.html.haml:55 ../app/views/ops/_all_tabs.html.haml:236 +#: ../app/helpers/ops_helper.rb:38 ../app/controllers/ops_controller.rb:245 ../app/views/ops/_settings_replication_tab.html.haml:64 ../app/views/ops/_all_tabs.html.haml:236 ../app/views/ops/_settings_authentication_tab.html.haml:55 msgid "Database" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:636 ../app/views/ops/_schedule_show.html.haml:41 +#: ../app/controllers/ops_controller/settings/schedules.rb:631 ../app/views/ops/_schedule_show.html.haml:41 msgid "Database Backup" msgstr "" -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:171 +#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:178 msgid "Database Backup Selection" msgstr "" @@ -7174,63 +7306,59 @@ msgstr "" msgid "Database Garbage Collection successfully initiated" msgstr "" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:51 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:102 +#: ../app/views/ops/_diagnostics_database_tab.html.haml:51 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:103 msgid "Database Name" msgstr "" -#: ../app/controllers/ops_controller.rb:449 +#: ../app/controllers/ops_controller.rb:488 msgid "Database []" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:124 ../app/controllers/vm_common.rb:1332 ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:28 ../app/views/shared/views/_prov_dialog.html.haml:101 +#: ../app/presenters/tree_builder_datacenter.rb:14 ../app/helpers/ems_cluster_helper/textual_summary.rb:135 ../app/controllers/vm_common.rb:1143 ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:28 ../app/views/shared/views/_prov_dialog.html.haml:101 msgid "Datacenter" msgstr "" -#: ../app/presenters/tree_node_builder.rb:366 +#: ../app/presenters/tree_node/ems_folder.rb:6 msgid "Datacenter: %{datacenter_name}" msgstr "" -#: ../app/controllers/application_controller/tree_support.rb:131 -msgid "Datacenter: %{name}" -msgstr "" - -#: ../app/controllers/middleware_server_controller.rb:151 +#: ../app/controllers/middleware_server_controller.rb:138 msgid "Datasource \"%s\" already exists on this server." msgstr "" -#: ../app/controllers/middleware_server_controller.rb:165 +#: ../app/controllers/middleware_server_controller.rb:156 msgid "Datasource \"%s\" installation has started on this server." msgstr "" -#: ../app/views/middleware_server/_choose_datasource.html.haml:15 +#: ../app/views/middleware_server/_choose_datasource.html.haml:34 msgid "Datasource:" msgstr "" -#: ../app/presenters/menu/default_menu.rb:129 ../app/helpers/application_helper/toolbar/middleware_server_center.rb:177 ../app/views/middleware_topology/show.html.haml:70 +#: ../app/presenters/menu/default_menu.rb:132 ../app/helpers/application_helper/toolbar/middleware_server_center.rb:177 ../app/views/middleware_topology/show.html.haml:70 msgid "Datasources" msgstr "" -#: ../app/presenters/tree_builder_ae_class.rb:17 ../app/presenters/tree_builder_automate.rb:25 ../app/controllers/application_controller/ci_processing.rb:2579 ../app/controllers/miq_ae_class_controller.rb:80 ../app/controllers/miq_ae_class_controller.rb:88 ../app/controllers/miq_ae_class_controller.rb:176 ../app/controllers/miq_ae_class_controller.rb:1600 ../app/controllers/miq_ae_class_controller.rb:2557 ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:63 ../app/views/miq_request/_prov_host_dialog.html.haml:65 ../app/views/shared/views/_prov_dialog.html.haml:143 +#: ../app/presenters/tree_builder_automate.rb:23 ../app/presenters/tree_builder_ae_class.rb:18 ../app/controllers/miq_ae_class_controller.rb:80 ../app/controllers/miq_ae_class_controller.rb:88 ../app/controllers/miq_ae_class_controller.rb:176 ../app/controllers/miq_ae_class_controller.rb:1600 ../app/controllers/miq_ae_class_controller.rb:2557 ../app/controllers/application_controller/ci_processing.rb:2611 ../app/views/miq_request/_prov_host_dialog.html.haml:65 ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:64 ../app/views/shared/views/_prov_dialog.html.haml:143 msgid "Datastore" msgstr "" -#: ../app/views/vm_common/_main.html.haml:37 +#: ../app/helpers/vm_helper/textual_summary.rb:83 msgid "Datastore Actual Usage Summary" msgstr "" -#: ../app/views/vm_common/_main.html.haml:35 +#: ../app/helpers/vm_helper/textual_summary.rb:76 msgid "Datastore Allocation Summary" msgstr "" -#: ../app/controllers/storage_controller.rb:420 +#: ../app/controllers/storage_controller.rb:391 msgid "Datastore Clusters" msgstr "" -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:169 +#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:176 msgid "Datastore Selection" msgstr "" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:94 ../app/views/miq_capacity/_planning_options.html.haml:392 +#: ../app/views/miq_capacity/_planning_options.html.haml:392 ../app/views/miq_capacity/_planning_vm_profile.html.haml:94 msgid "Datastore Space" msgstr "" @@ -7247,19 +7375,23 @@ msgid "" "Methods updated/added: %{method_stats}" msgstr "" -#: ../app/controllers/storage_controller.rb:416 ../app/controllers/storage_controller.rb:629 ../app/views/configuration/_ui_2.html.haml:210 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:27 +#: ../app/presenters/tree_builder_region.rb:43 ../app/presenters/menu/default_menu.rb:71 ../app/controllers/storage_controller.rb:387 ../app/controllers/storage_controller.rb:601 ../app/views/configuration/_ui_2.html.haml:211 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:27 msgid "Datastores" msgstr "" -#: ../app/controllers/storage_controller/storage_pod.rb:58 +#: ../app/presenters/tree_builder_region.rb:45 +msgid "Datastores (Click to open)" +msgstr "" + +#: ../app/controllers/storage_controller/storage_pod.rb:51 msgid "Datastores in cluster %{name}" msgstr "" -#: ../app/presenters/menu/default_menu.rb:116 +#: ../app/presenters/menu/default_menu.rb:119 msgid "Datawarehouse" msgstr "" -#: ../app/views/report/_form_filter_chargeback.html.haml:200 ../app/views/layouts/_perf_options.html.haml:82 ../app/assets/javascripts/miq_application.js:88 +#: ../app/views/report/_form_filter_chargeback.html.haml:228 ../app/views/layouts/_perf_options.html.haml:81 ../app/assets/javascripts/miq_application.js:88 msgid "Date" msgstr "" @@ -7271,35 +7403,23 @@ msgstr "" msgid "Date/Time" msgstr "" -#: ../app/helpers/ui_constants.rb:290 ../app/views/report/_form_filter_chargeback.html.haml:254 ../app/assets/javascripts/miq_formatters.js:253 +#: ../app/helpers/ui_constants.rb:287 ../app/views/report/_form_filter_chargeback.html.haml:282 ../app/assets/javascripts/miq_formatters.js:253 msgid "Day" msgstr "" -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:11 ../app/views/configuration/_ui_4.html.haml:16 ../app/views/configuration/_timeprofile_form.html.haml:76 ../app/views/layouts/_tl_options.html.haml:116 +#: ../app/views/configuration/_ui_4.html.haml:16 ../app/views/configuration/_timeprofile_form.html.haml:78 ../app/views/configuration/_timeprofile_days_hours.html.haml:11 ../app/views/layouts/_tl_options.html.haml:116 ../app/assets/javascripts/controllers/live_metrics/util/metrics-config-factory.js:64 msgid "Days" msgstr "" -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:147 -msgid "Dedup Percent Saved" -msgstr "" - -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:151 -msgid "Dedup Size Saved" -msgstr "" - -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:155 -msgid "Dedup Size Shared" -msgstr "" - -#: ../app/helpers/provider_foreman_helper.rb:258 ../app/helpers/textual_summary_helper.rb:167 ../app/views/miq_request/_prov_options.html.haml:129 ../app/views/miq_request/_prov_options.html.haml:163 ../app/views/ops/_settings_co_categories_tab.html.haml:20 ../app/views/ops/_settings_rhn_edit_tab.html.haml:60 ../app/views/ops/_settings_rhn_edit_tab.html.haml:79 ../app/views/report/_widget_show.html.haml:53 ../app/views/report/_form_styling.html.haml:69 ../app/views/report/_form_styling.html.haml:117 ../app/views/miq_task/_tasks_options.html.haml:162 ../app/views/miq_task/_tasks_options.html.haml:195 ../app/views/layouts/_x_edit_buttons.html.haml:123 ../app/views/layouts/_x_edit_buttons.html.haml:165 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:16 ../app/views/layouts/_container_auth.html.haml:14 ../app/views/layouts/listnav/_show_list.html.haml:23 ../app/views/layouts/listnav/_show_list.html.haml:51 ../app/views/layouts/_edit_form_buttons.html.haml:94 ../app/views/layouts/_edit_form_buttons.html.haml:154 ../app/views/layouts/_multi_auth_credentials.html.haml:16 +#: ../app/helpers/provider_foreman_helper.rb:263 ../app/helpers/textual_summary_helper.rb:181 ../app/helpers/automation_manager_helper.rb:99 ../app/views/miq_task/_tasks_options.html.haml:174 ../app/views/miq_task/_tasks_options.html.haml:207 ../app/views/ops/_settings_co_categories_tab.html.haml:20 ../app/views/ops/_settings_rhn_edit_tab.html.haml:60 ../app/views/ops/_settings_rhn_edit_tab.html.haml:79 ../app/views/miq_request/_prov_options.html.haml:129 ../app/views/miq_request/_prov_options.html.haml:163 ../app/views/report/_form_styling.html.haml:69 ../app/views/report/_form_styling.html.haml:117 ../app/views/report/_widget_show.html.haml:53 ../app/views/layouts/listnav/_show_list.html.haml:23 ../app/views/layouts/listnav/_show_list.html.haml:51 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:18 ../app/views/layouts/_edit_form_buttons.html.haml:94 ../app/views/layouts/_edit_form_buttons.html.haml:154 ../app/views/layouts/_container_auth.html.haml:14 ../app/views/layouts/_x_edit_buttons.html.haml:123 ../app/views/layouts/_x_edit_buttons.html.haml:165 ../app/views/layouts/_multi_auth_credentials.html.haml:16 msgid "Default" msgstr "" -#: ../app/controllers/ops_controller/ops_rbac.rb:348 ../app/controllers/ops_controller/settings/analysis_profiles.rb:387 +#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:378 ../app/controllers/ops_controller/ops_rbac.rb:348 msgid "Default %{model} \"%{name}\" can not be deleted" msgstr "" -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:216 +#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:205 msgid "Default %{model} \"%{name}\" can not be edited" msgstr "" @@ -7307,19 +7427,23 @@ msgstr "" msgid "Default %{model} \"%{name}\" cannot be copied" msgstr "" -#: ../app/controllers/ops_controller/ops_rbac.rb:268 ../app/controllers/ops_controller/ops_rbac.rb:580 ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:69 ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:90 ../app/controllers/configuration_controller.rb:321 +#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:69 ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:90 ../app/controllers/configuration_controller.rb:304 ../app/controllers/ops_controller/ops_rbac.rb:268 ../app/controllers/ops_controller/ops_rbac.rb:580 msgid "Default %{model} \"%{name}\" cannot be deleted" msgstr "" -#: ../app/controllers/application_controller.rb:1271 +#: ../app/controllers/application_controller.rb:1278 msgid "Default Adapter" msgstr "" -#: ../app/helpers/textual_summary_helper.rb:163 +#: ../app/helpers/application_helper/button/rbac_user_delete.rb:5 +msgid "Default Administrator can not be deleted" +msgstr "" + +#: ../app/helpers/textual_summary_helper.rb:177 msgid "Default Authentication" msgstr "" -#: ../app/controllers/chargeback_controller.rb:172 +#: ../app/controllers/chargeback_controller.rb:168 msgid "Default Chargeback Rate \"%{name}\" cannot be edited." msgstr "" @@ -7331,15 +7455,15 @@ msgstr "" msgid "Default Chargeback Rate cannot be removed." msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:631 +#: ../app/helpers/application_helper/button/db_delete.rb:3 msgid "Default Dashboard cannot be deleted" msgstr "" -#: ../app/controllers/configuration_controller.rb:503 +#: ../app/controllers/configuration_controller.rb:494 msgid "Default Filters" msgstr "" -#: ../app/controllers/configuration_controller.rb:217 +#: ../app/controllers/configuration_controller.rb:200 msgid "Default Filters saved successfully" msgstr "" @@ -7351,19 +7475,19 @@ msgstr "" msgid "Default Group for Users" msgstr "" -#: ../app/controllers/ems_common.rb:709 +#: ../app/controllers/ems_common.rb:593 msgid "Default Host VNC Port Range End must be numeric" msgstr "" -#: ../app/controllers/ems_common.rb:706 +#: ../app/controllers/ems_common.rb:590 msgid "Default Host VNC Port Range Start must be numeric" msgstr "" -#: ../app/views/configuration/_ui_1.html.haml:111 +#: ../app/views/configuration/_ui_1.html.haml:110 msgid "Default Items Per Page" msgstr "" -#: ../app/helpers/container_project_helper/textual_summary.rb:43 +#: ../app/helpers/container_project_helper/textual_summary.rb:51 msgid "Default Limit" msgstr "" @@ -7371,7 +7495,7 @@ msgstr "" msgid "Default Locale" msgstr "" -#: ../app/controllers/host_controller.rb:607 +#: ../app/controllers/host_controller.rb:570 msgid "Default Password and Verify Password fields do not match" msgstr "" @@ -7379,7 +7503,7 @@ msgstr "" msgid "Default Repository SmartProxy" msgstr "" -#: ../app/helpers/container_project_helper/textual_summary.rb:44 +#: ../app/helpers/container_project_helper/textual_summary.rb:52 msgid "Default Request" msgstr "" @@ -7387,27 +7511,27 @@ msgstr "" msgid "Default Requests can not be edited" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:675 +#: ../app/helpers/application_helper/button/rbac_tenant_delete.rb:5 msgid "Default Tenant can not be deleted" msgstr "" -#: ../app/controllers/host_controller.rb:612 +#: ../app/controllers/host_controller.rb:575 msgid "Default User ID must be entered if a Remote Login or Web Services User ID is entered" msgstr "" -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:36 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:204 ../app/views/miq_ae_class/_method_inputs.html.haml:130 ../app/views/miq_ae_class/_inputs.html.haml:16 ../app/views/miq_ae_class/_class_fields.html.haml:14 ../app/views/miq_ae_class/_class_fields.html.haml:79 +#: ../app/views/miq_ae_class/_inputs.html.haml:16 ../app/views/miq_ae_class/_method_inputs.html.haml:130 ../app/views/miq_ae_class/_class_fields.html.haml:14 ../app/views/miq_ae_class/_class_fields.html.haml:79 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:36 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:204 msgid "Default Value" msgstr "" -#: ../app/controllers/configuration_controller.rb:502 +#: ../app/controllers/configuration_controller.rb:493 msgid "Default Views" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:582 +#: ../app/helpers/application_helper/button/miq_action_edit.rb:6 msgid "Default actions can not be changed." msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:584 +#: ../app/helpers/application_helper/button/miq_action_delete.rb:6 msgid "Default actions can not be deleted." msgstr "" @@ -7419,11 +7543,15 @@ msgstr "" msgid "Default dialogs cannot be removed from the VMDB" msgstr "" -#: ../app/views/catalog/_form_resources_info.html.haml:55 ../app/views/catalog/_sandt_tree_show.html.haml:261 ../app/views/catalog/_sandt_tree_show.html.haml:262 +#: ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:274 ../app/views/catalog/_sandt_tree_show.html.haml:463 ../app/views/catalog/_sandt_tree_show.html.haml:622 +msgid "Default value" +msgstr "" + +#: ../app/views/catalog/_form_resources_info.html.haml:55 ../app/views/catalog/_sandt_tree_show.html.haml:277 ../app/views/catalog/_sandt_tree_show.html.haml:278 msgid "Delay (mins)" msgstr "" -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:95 ../app/helpers/application_helper/toolbar/tasks_center.rb:22 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:277 ../app/helpers/application_helper/tasks.rb:8 ../app/views/chargeback/_cb_rate_edit_table.html.haml:100 ../app/views/chargeback/_tier_row.haml:12 ../app/views/vm_common/_reconfigure.html.haml:368 ../app/views/ops/_settings_replication_tab.html.haml:377 ../app/views/ops/_ap_form_nteventlog.html.haml:220 ../app/views/ops/_ap_form_registry.html.haml:170 ../app/views/ops/_settings_co_categories_tab.html.haml:94 ../app/views/ops/_settings_co_categories_tab.html.haml:106 ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:64 ../app/views/ops/_classification_entry.html.haml:103 ../app/views/ops/_ap_form_file.html.haml:86 ../app/views/layouts/_adv_search_footer.html.haml:36 +#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:95 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:278 ../app/helpers/application_helper/toolbar/tasks_center.rb:22 ../app/helpers/application_helper/tasks.rb:8 ../app/views/vm_common/_reconfigure.html.haml:368 ../app/views/ops/_ap_form_registry.html.haml:170 ../app/views/ops/_ap_form_file.html.haml:86 ../app/views/ops/_settings_co_categories_tab.html.haml:94 ../app/views/ops/_settings_co_categories_tab.html.haml:106 ../app/views/ops/_settings_replication_tab.html.haml:298 ../app/views/ops/_classification_entry.html.haml:103 ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:64 ../app/views/ops/_ap_form_nteventlog.html.haml:214 ../app/views/chargeback/_tier_row.haml:12 ../app/views/chargeback/_cb_rate_edit_table.html.haml:100 ../app/views/layouts/_adv_search_footer.html.haml:37 ../app/views/middleware_server/_add_datasource_step3.html.haml:136 msgid "Delete" msgstr "" @@ -7431,7 +7559,7 @@ msgstr "" msgid "Delete All" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:147 ../app/helpers/application_helper/toolbar/miq_template_center.rb:144 ../app/helpers/application_helper/toolbar/x_vm_center.rb:294 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:150 ../app/helpers/application_helper/toolbar/x_vm_center.rb:309 msgid "Delete All Existing Snapshots" msgstr "" @@ -7443,7 +7571,7 @@ msgstr "" msgid "Delete Cloud Tenant" msgstr "" -#: ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:26 +#: ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:27 msgid "Delete Cloud Tenants" msgstr "" @@ -7451,7 +7579,7 @@ msgstr "" msgid "Delete Cloud Volume Snapshot" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:40 ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:43 +#: ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:40 ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:44 msgid "Delete Host Aggregates" msgstr "" @@ -7459,15 +7587,15 @@ msgstr "" msgid "Delete Older" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:139 ../app/helpers/application_helper/toolbar/miq_template_center.rb:136 ../app/helpers/application_helper/toolbar/x_vm_center.rb:286 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:142 ../app/helpers/application_helper/toolbar/x_vm_center.rb:299 msgid "Delete Selected Snapshot" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:20 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:20 +#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:21 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:21 msgid "Delete Server %{server_name} [%{server_id}]" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:133 ../app/helpers/application_helper/toolbar/miq_template_center.rb:130 ../app/helpers/application_helper/toolbar/x_vm_center.rb:280 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:136 ../app/helpers/application_helper/toolbar/x_vm_center.rb:293 msgid "Delete Snapshots" msgstr "" @@ -7475,7 +7603,7 @@ msgstr "" msgid "Delete Tasks" msgstr "" -#: ../app/controllers/host_aggregate_controller.rb:335 +#: ../app/controllers/host_aggregate_controller.rb:324 msgid "Delete aggregate not supported by %{model} \"%{name}\"" msgstr "" @@ -7483,21 +7611,21 @@ msgstr "" msgid "Delete all finished tasks" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:149 ../app/helpers/application_helper/toolbar/miq_template_center.rb:146 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:152 msgid "Delete all of this Templates existing snapshots?" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:296 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:311 msgid "Delete all of this VMs existing snapshots?" msgstr "" -#: ../app/controllers/miq_task_controller.rb:187 +#: ../app/controllers/miq_task_controller.rb:167 msgid "Delete all older Tasks initiated for %{count} Task from the %{product} Database" msgid_plural "Delete all older Tasks initiated for %{count} Tasks from the %{product} Database" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/application_helper/toolbar/miq_groups_center.rb:28 +#: ../app/helpers/application_helper/toolbar/miq_groups_center.rb:29 msgid "Delete all selected Groups?" msgstr "" @@ -7517,7 +7645,7 @@ msgstr "" msgid "Delete all selected items and all of their children?" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:187 +#: ../app/views/miq_policy/_action_options.html.haml:179 msgid "Delete if Older than" msgstr "" @@ -7525,71 +7653,79 @@ msgstr "" msgid "Delete if older than" msgstr "" -#: ../app/controllers/ems_common.rb:627 -msgid "Delete initiated for %{count_model} from the Database" -msgstr "" - -#: ../app/controllers/application_controller/ci_processing.rb:2738 ../app/controllers/ems_common.rb:1018 ../app/controllers/ems_common.rb:1057 +#: ../app/controllers/ems_common.rb:907 ../app/controllers/ems_common.rb:946 ../app/controllers/application_controller/ci_processing.rb:2770 msgid "Delete initiated for %{count} %{model} from the %{product} Database" msgid_plural "Delete initiated for %{count} %{models} from the %{product} Database" msgstr[0] "" msgstr[1] "" -#: ../app/controllers/provider_foreman_controller.rb:97 +#: ../app/controllers/provider_foreman_controller.rb:78 ../app/controllers/automation_manager_controller.rb:84 msgid "Delete initiated for %{count} Provider" msgid_plural "Delete initiated for %{count} Providers" msgstr[0] "" msgstr[1] "" -#: ../app/controllers/miq_task_controller.rb:138 ../app/controllers/miq_task_controller.rb:163 +#: ../app/controllers/miq_task_controller.rb:118 ../app/controllers/miq_task_controller.rb:143 msgid "Delete initiated for %{count} Task from the %{product} Database" msgid_plural "Delete initiated for %{count} Tasks from the %{product} Database" msgstr[0] "" msgstr[1] "" -#: ../app/controllers/cloud_network_controller.rb:291 +#: ../app/controllers/cloud_network_controller.rb:295 msgid "Delete initiated for %{number} Cloud Network." msgid_plural "Delete initiated for %{number} Cloud Networks." msgstr[0] "" msgstr[1] "" -#: ../app/controllers/cloud_tenant_controller.rb:272 +#: ../app/controllers/cloud_tenant_controller.rb:269 msgid "Delete initiated for %{number} Cloud Tenant." msgid_plural "Delete initiated for %{number} Cloud Tenants." msgstr[0] "" msgstr[1] "" -#: ../app/controllers/cloud_volume_snapshot_controller.rb:83 +#: ../app/controllers/cloud_volume_snapshot_controller.rb:89 msgid "Delete initiated for %{number} Cloud Volume Snapshot." msgid_plural "Delete initiated for %{number} Cloud Volume Snapshots." msgstr[0] "" msgstr[1] "" -#: ../app/controllers/cloud_volume_controller.rb:647 +#: ../app/controllers/cloud_volume_controller.rb:744 msgid "Delete initiated for %{number} Cloud Volume." msgid_plural "Delete initiated for %{number} Cloud Volumes." msgstr[0] "" msgstr[1] "" -#: ../app/controllers/host_aggregate_controller.rb:602 +#: ../app/controllers/floating_ip_controller.rb:268 +msgid "Delete initiated for %{number} Floating IP." +msgid_plural "Delete initiated for %{number} Floating IPs." +msgstr[0] "" +msgstr[1] "" + +#: ../app/controllers/host_aggregate_controller.rb:596 msgid "Delete initiated for %{number} Host Aggregate." msgid_plural "Delete initiated for %{number} Host Aggregates." msgstr[0] "" msgstr[1] "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:211 +#: ../app/controllers/auth_key_pair_cloud_controller.rb:225 msgid "Delete initiated for %{number} Key Pair" msgid_plural "Delete initiated for %{number} Key Pairs" msgstr[0] "" msgstr[1] "" -#: ../app/controllers/network_router_controller.rb:252 +#: ../app/controllers/network_router_controller.rb:449 msgid "Delete initiated for %{number} Network Router." msgid_plural "Delete initiated for %{number} Network Routers." msgstr[0] "" msgstr[1] "" -#: ../app/controllers/application_controller/ci_processing.rb:2590 +#: ../app/controllers/security_group_controller.rb:264 +msgid "Delete initiated for %{number} Security Group." +msgid_plural "Delete initiated for %{number} Security Groups." +msgstr[0] "" +msgstr[1] "" + +#: ../app/controllers/application_controller/ci_processing.rb:2622 msgid "Delete initiated for Datastore from the %{product} Database" msgid_plural "Delete initiated for Datastores from the %{product} Database" msgstr[0] "" @@ -7599,11 +7735,11 @@ msgstr[1] "" msgid "Delete selected %{dialog_resource}" msgstr "" -#: ../app/controllers/report_controller.rb:746 +#: ../app/controllers/report_controller.rb:750 msgid "Delete selected Accordion and its contents" msgstr "" -#: ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:25 +#: ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:26 msgid "Delete selected Cloud Tenants" msgstr "" @@ -7611,11 +7747,11 @@ msgstr "" msgid "Delete selected Cloud Volumes" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_groups_center.rb:26 +#: ../app/helpers/application_helper/toolbar/miq_groups_center.rb:27 msgid "Delete selected Groups" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:39 ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:42 +#: ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:39 ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:43 msgid "Delete selected Host Aggregates" msgstr "" @@ -7627,15 +7763,15 @@ msgstr "" msgid "Delete selected Roles" msgstr "" -#: ../app/helpers/application_helper/toolbar/network_routers_center.rb:30 +#: ../app/helpers/application_helper/toolbar/network_routers_center.rb:47 msgid "Delete selected Routers" msgstr "" -#: ../app/helpers/application_helper/toolbar/saved_reports_center.rb:31 +#: ../app/helpers/application_helper/toolbar/saved_reports_center.rb:32 msgid "Delete selected Saved Reports" msgstr "" -#: ../app/helpers/application_helper/toolbar/time_profiles_center.rb:34 +#: ../app/helpers/application_helper/toolbar/time_profiles_center.rb:35 msgid "Delete selected Time Profiles" msgstr "" @@ -7643,7 +7779,7 @@ msgstr "" msgid "Delete selected Users" msgstr "" -#: ../app/controllers/report_controller.rb:757 ../app/views/report/_menu_form1.html.haml:45 +#: ../app/controllers/report_controller.rb:761 ../app/views/report/_menu_form1.html.haml:45 msgid "Delete selected folder and its contents" msgstr "" @@ -7655,11 +7791,11 @@ msgstr "" msgid "Delete selected tasks" msgstr "" -#: ../app/controllers/miq_task_controller.rb:135 ../app/controllers/miq_task_controller.rb:160 +#: ../app/controllers/miq_task_controller.rb:115 ../app/controllers/miq_task_controller.rb:140 msgid "Delete started for record ids: %{id}" msgstr "" -#: ../app/controllers/miq_task_controller.rb:180 +#: ../app/controllers/miq_task_controller.rb:160 msgid "Delete started for records older than %{date}, conditions: %{conditions}" msgstr "" @@ -7667,11 +7803,11 @@ msgstr "" msgid "Delete tasks older than the selected task" msgstr "" -#: ../app/views/layouts/_adv_search_footer.html.haml:33 +#: ../app/views/layouts/_adv_search_footer.html.haml:34 msgid "Delete the %{model} filter named %{filter}?" msgstr "" -#: ../app/views/layouts/_adv_search_footer.html.haml:36 +#: ../app/views/layouts/_adv_search_footer.html.haml:37 msgid "Delete the filter named %{filter_name}" msgstr "" @@ -7687,11 +7823,11 @@ msgstr "" msgid "Delete the selected Schedules" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:276 +#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:277 msgid "Delete the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:280 +#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:281 msgid "Delete the selected items?" msgstr "" @@ -7715,7 +7851,7 @@ msgstr "" msgid "Delete this Alert Profile" msgstr "" -#: ../app/helpers/application_helper/toolbar/scan_profile_center.rb:23 +#: ../app/helpers/application_helper/toolbar/scan_profile_center.rb:24 msgid "Delete this Analysis Profile" msgstr "" @@ -7735,7 +7871,15 @@ msgstr "" msgid "Delete this Dashboard from the Database" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_group_center.rb:17 +#: ../app/helpers/application_helper/toolbar/floating_ip_center.rb:23 +msgid "Delete this Floating IP" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/generic_object_definition.rb:34 +msgid "Delete this Generic Object Definition" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/miq_group_center.rb:18 msgid "Delete this Group" msgstr "" @@ -7763,15 +7907,15 @@ msgstr "" msgid "Delete this Request" msgstr "" -#: ../app/helpers/application_helper/toolbar/user_role_center.rb:22 +#: ../app/helpers/application_helper/toolbar/user_role_center.rb:23 msgid "Delete this Role" msgstr "" -#: ../app/helpers/application_helper/toolbar/network_router_center.rb:21 +#: ../app/helpers/application_helper/toolbar/network_router_center.rb:39 msgid "Delete this Router" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_report_center.rb:38 ../app/helpers/application_helper/toolbar/saved_report_center.rb:20 +#: ../app/helpers/application_helper/toolbar/miq_report_center.rb:38 ../app/helpers/application_helper/toolbar/saved_report_center.rb:21 msgid "Delete this Saved Report from the Database" msgstr "" @@ -7783,7 +7927,11 @@ msgstr "" msgid "Delete this Schedule from the Database" msgstr "" -#: ../app/helpers/application_helper/toolbar/user_center.rb:22 +#: ../app/helpers/application_helper/toolbar/security_group_center.rb:23 +msgid "Delete this Security Group" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/user_center.rb:23 msgid "Delete this User" msgstr "" @@ -7799,7 +7947,7 @@ msgstr "" msgid "Delete this item" msgstr "" -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:73 +#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:100 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:116 msgid "Deleted" msgstr "" @@ -7807,27 +7955,23 @@ msgstr "" msgid "Deleting the '%{entry_name}' entry will also unassign it from all items, are you sure?" msgstr "" -#: ../app/views/ops/_ldap_server_entry.html.haml:112 +#: ../app/views/ops/_ldap_server_entry.html.haml:111 msgid "Deleting the '%{hostname}' LDAP Server, are you sure?" msgstr "" -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:91 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:98 -msgid "Delta Reservation" -msgstr "" - -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:74 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:81 +#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:75 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:82 msgid "Demote Server" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:69 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:75 +#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:70 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:76 msgid "Demote Server %{server_name} [%{server_id}] to secondary for the %{server_role_description} Role" msgstr "" -#: ../app/helpers/ui_constants.rb:424 +#: ../app/helpers/ui_constants.rb:421 msgid "Denied" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_request_center.rb:44 +#: ../app/helpers/application_helper/toolbar/miq_request_center.rb:45 msgid "Deny this Request" msgstr "" @@ -7835,20 +7979,28 @@ msgstr "" msgid "Dependent" msgstr "" -#: ../app/views/middleware_server/_deploy.html.haml:124 ../app/views/middleware_server/_add_jdbc_driver.html.haml:196 ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:209 +#: ../app/views/middleware_shared/_deploy.html.haml:127 ../app/views/middleware_server/_add_jdbc_driver.html.haml:196 ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:209 msgid "Deploy" msgstr "" -#: ../app/helpers/ui_constants.rb:417 +#: ../app/helpers/ui_constants.rb:414 msgid "Deploy Smartproxy" msgstr "" -#: ../app/controllers/middleware_server_controller.rb:109 -msgid "Deployment \"%s\" already exists on this server." +#: ../app/controllers/mixins/middleware_deployments_mixin.rb:60 +msgid "Deployment \"%{deployment}\" already exists on this server group." msgstr "" -#: ../app/controllers/middleware_server_controller.rb:120 -msgid "Deployment \"%s\" has been initiated on this server." +#: ../app/controllers/mixins/middleware_deployments_mixin.rb:58 +msgid "Deployment \"%{deployment}\" already exists on this server." +msgstr "" + +#: ../app/controllers/mixins/middleware_deployments_mixin.rb:77 +msgid "Deployment \"%{deployment}\" has been initiated on this group." +msgstr "" + +#: ../app/controllers/mixins/middleware_deployments_mixin.rb:75 +msgid "Deployment \"%{deployment}\" has been initiated on this server." msgstr "" #: ../app/views/static/deploy_containers_provider/deploy-provider-review-progress.html.haml:32 @@ -7859,11 +8011,11 @@ msgstr "" msgid "Deployment Details" msgstr "" -#: ../app/helpers/application_helper.rb:1540 ../app/helpers/application_helper.rb:1551 +#: ../app/helpers/application_helper/title.rb:114 ../app/helpers/application_helper.rb:1455 msgid "Deployment Role" msgstr "" -#: ../app/presenters/menu/default_menu.rb:62 ../app/helpers/application_helper.rb:1540 +#: ../app/presenters/menu/default_menu.rb:63 ../app/helpers/application_helper/title.rb:114 msgid "Deployment Roles" msgstr "" @@ -7871,19 +8023,23 @@ msgstr "" msgid "Deployment in Progress" msgstr "" -#: ../app/controllers/middleware_server_controller.rb:51 +#: ../app/controllers/middleware_server_group_controller.rb:29 +msgid "Deployment initiated for selected server group(s)" +msgstr "" + +#: ../app/controllers/middleware_server_controller.rb:53 msgid "Deployment initiated for selected server(s)" msgstr "" -#: ../app/presenters/menu/default_menu.rb:128 ../app/helpers/application_helper/toolbar/middleware_server_center.rb:137 ../app/views/middleware_topology/show.html.haml:51 +#: ../app/presenters/menu/default_menu.rb:131 ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:88 ../app/helpers/application_helper/toolbar/middleware_server_center.rb:137 ../app/views/middleware_topology/show.html.haml:51 msgid "Deployments" msgstr "" -#: ../app/views/layouts/angular-bootstrap/_edit_log_depot_settings_angular_bootstrap.html.haml:8 ../app/views/layouts/angular/_edit_log_depot_settings_angular.html.haml:6 ../app/views/layouts/_edit_log_depot_settings.html.haml:42 +#: ../app/views/layouts/angular/_edit_log_depot_settings_angular.html.haml:6 ../app/views/layouts/_edit_log_depot_settings.html.haml:42 ../app/views/layouts/angular-bootstrap/_edit_log_depot_settings_angular_bootstrap.html.haml:8 msgid "Depot Name" msgstr "" -#: ../app/controllers/application_controller.rb:378 ../app/controllers/ops_controller/settings/schedules.rb:261 +#: ../app/controllers/application_controller.rb:381 ../app/controllers/ops_controller/settings/schedules.rb:255 msgid "Depot Settings successfuly validated" msgstr "" @@ -7891,7 +8047,7 @@ msgstr "" msgid "Depot Type" msgstr "" -#: ../app/controllers/pxe_controller/pxe_servers.rb:295 +#: ../app/controllers/pxe_controller/pxe_servers.rb:288 msgid "Depot Type is required" msgstr "" @@ -7899,23 +8055,23 @@ msgstr "" msgid "Deprecated" msgstr "" -#: ../app/views/layouts/_pagingcontrols.html.haml:22 ../app/views/layouts/_x_pagingcontrols.html.haml:25 +#: ../app/views/layouts/_x_pagingcontrols.html.haml:25 ../app/views/layouts/_pagingcontrols.html.haml:22 msgid "Desc" msgstr "" -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:272 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:370 ../app/views/report/_form_sort.html.haml:56 +#: ../app/views/report/_form_sort.html.haml:56 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:269 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:367 msgid "Descending" msgstr "" -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:46 ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:29 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:53 ../app/helpers/ontap_storage_system_helper/textual_summary.rb:43 ../app/helpers/pxe_helper/textual_summary.rb:52 ../app/helpers/pxe_helper/textual_summary.rb:76 ../app/helpers/pxe_helper/textual_summary.rb:100 ../app/controllers/application_controller/miq_request_methods.rb:324 ../app/controllers/application_controller/miq_request_methods.rb:347 ../app/controllers/application_controller/miq_request_methods.rb:376 ../app/controllers/application_controller/miq_request_methods.rb:391 ../app/views/miq_policy/_condition_details.html.haml:20 ../app/views/miq_policy/_event_details.html.haml:15 ../app/views/miq_policy/_event_details.html.haml:214 ../app/views/miq_policy/_event_details.html.haml:394 ../app/views/miq_policy/_alert_details.html.haml:23 ../app/views/miq_policy/_action_details.html.haml:21 ../app/views/miq_policy/_profile_details.html.haml:22 ../app/views/miq_policy/_alert_profile_details.html.haml:21 ../app/views/miq_policy/_policy_details.html.haml:24 ../app/views/miq_policy/_policy_details.html.haml:225 ../app/views/miq_policy/_policy_details.html.haml:317 ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:32 ../app/views/miq_request/_request.html.haml:87 ../app/views/miq_request/_ae_prov_show.html.haml:16 ../app/views/generic_object/explorer.html.haml:26 ../app/views/generic_object/explorer.html.haml:72 ../app/views/generic_object/explorer.html.haml:122 ../app/views/chargeback/_cb_rate_edit.html.haml:16 ../app/views/chargeback/_cb_rate_edit_table.html.haml:10 ../app/views/chargeback/_cb_rate_show.html.haml:15 ../app/views/chargeback/_cb_rate_show.html.haml:40 ../app/views/pxe/_pxe_server_details.html.haml:61 ../app/views/pxe/_pxe_server_details.html.haml:108 ../app/views/pxe/_template_form.html.haml:34 ../app/views/miq_ae_customization/_dialog_info_form.html.haml:33 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:252 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:350 ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:36 ../app/views/miq_ae_customization/_dialog_group_form.html.haml:32 ../app/views/miq_ae_customization/_old_dialogs_details.html.haml:36 ../app/views/miq_ae_customization/_dialog_tab_form.html.haml:31 ../app/views/miq_ae_customization/_dialog_field_form.html.haml:52 ../app/views/miq_ae_customization/_field_values.html.haml:20 ../app/views/miq_ae_customization/_tag_field_values.html.haml:13 ../app/views/miq_ae_customization/_dialog_info.html.haml:28 ../app/views/configuration/_ui_4.html.haml:16 ../app/views/configuration/_timeprofile_form.html.haml:24 ../app/views/vm_common/_snapshots_desc.html.haml:15 ../app/views/vm_common/_form.html.haml:36 ../app/views/vm_common/_config.html.haml:202 ../app/views/vm_common/_snap.html.haml:30 ../app/views/miq_ae_class/_class_props.html.haml:55 ../app/views/miq_ae_class/_class_form.html.haml:61 ../app/views/miq_ae_class/_ns_list.html.haml:22 ../app/views/miq_ae_class/_ns_list.html.haml:124 ../app/views/miq_ae_class/_class_fields.html.haml:14 ../app/views/miq_ae_class/_class_fields.html.haml:79 ../app/views/miq_ae_class/_instance_form.html.haml:63 ../app/views/catalog/_ot_add.html.haml:34 ../app/views/catalog/_ot_copy.html.haml:41 ../app/views/catalog/_svccat_tree_show.html.haml:44 ../app/views/catalog/_stcat_tree_show.html.haml:27 ../app/views/catalog/_ot_tree_show.html.haml:24 ../app/views/catalog/_sandt_tree_show.html.haml:261 ../app/views/catalog/_stcat_form.html.haml:43 ../app/views/catalog/_ot_edit.html.haml:34 ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 ../app/views/orchestration_stack/_copy_orchestration_template.html.haml:34 ../app/views/service/_service_form.html.haml:52 ../app/views/ops/_settings_evm_servers_tab.html.haml:29 ../app/views/ops/_settings_server_tab.html.haml:678 ../app/views/ops/_settings_details_tab.html.haml:19 ../app/views/ops/_zone_form.html.haml:37 ../app/views/ops/_ap_show.html.haml:32 ../app/views/ops/_settings_co_categories_tab.html.haml:12 ../app/views/ops/_ldap_region_form.html.haml:38 ../app/views/ops/_rbac_tenant_details.html.haml:30 ../app/views/ops/_schedule_form.html.haml:45 ../app/views/ops/_classification_entries.html.haml:15 ../app/views/ops/_ap_form.html.haml:38 ../app/views/ops/_category_form.html.haml:136 ../app/views/ops/_tenant_form.html.haml:42 ../app/views/ops/_ldap_region_show.html.haml:31 ../app/views/ops/_schedule_show.html.haml:9 ../app/views/ops/_tenant_quota_form.html.haml:27 ../app/views/ops/_rbac_group_details.html.haml:23 ../app/views/alert/_rss_list.html.haml:41 ../app/views/report/_schedule_form.html.haml:35 ../app/views/report/_widget_form.html.haml:37 ../app/views/report/_report_info.html.haml:129 ../app/views/report/_report_info.html.haml:248 ../app/views/report/_show_schedule.html.haml:9 ../app/views/report/_db_list.html.haml:51 ../app/views/report/_db_list.html.haml:90 ../app/views/report/_widget_show.html.haml:29 +#: ../app/helpers/pxe_helper/textual_summary.rb:52 ../app/helpers/pxe_helper/textual_summary.rb:76 ../app/helpers/pxe_helper/textual_summary.rb:100 ../app/controllers/application_controller/miq_request_methods.rb:324 ../app/controllers/application_controller/miq_request_methods.rb:347 ../app/controllers/application_controller/miq_request_methods.rb:376 ../app/controllers/application_controller/miq_request_methods.rb:391 ../app/views/miq_policy/_alert_profile_details.html.haml:21 ../app/views/miq_policy/_profile_details.html.haml:22 ../app/views/miq_policy/_alert_details.html.haml:23 ../app/views/miq_policy/_event_details.html.haml:197 ../app/views/miq_policy/_event_details.html.haml:377 ../app/views/miq_policy/_policy_details.html.haml:24 ../app/views/miq_policy/_policy_details.html.haml:225 ../app/views/miq_policy/_policy_details.html.haml:317 ../app/views/miq_policy/_condition_details.html.haml:20 ../app/views/miq_policy/_action_details.html.haml:21 ../app/views/vm_common/_snapshots_desc.html.haml:15 ../app/views/vm_common/_config.html.haml:202 ../app/views/vm_common/_form.html.haml:36 ../app/views/vm_common/_snap.html.haml:30 ../app/views/configuration/_ui_4.html.haml:16 ../app/views/configuration/_timeprofile_form.html.haml:27 ../app/views/ops/_classification_entries.html.haml:15 ../app/views/ops/_rbac_group_details.html.haml:22 ../app/views/ops/_settings_co_categories_tab.html.haml:12 ../app/views/ops/_ldap_region_show.html.haml:31 ../app/views/ops/_category_form.html.haml:136 ../app/views/ops/_zone_form.html.haml:37 ../app/views/ops/_ap_show.html.haml:32 ../app/views/ops/_rbac_tenant_details.html.haml:30 ../app/views/ops/_tenant_form.html.haml:42 ../app/views/ops/_ap_form.html.haml:38 ../app/views/ops/_ldap_region_form.html.haml:38 ../app/views/ops/_schedule_show.html.haml:9 ../app/views/ops/_schedule_form.html.haml:45 ../app/views/ops/_settings_details_tab.html.haml:19 ../app/views/ops/_settings_server_tab.html.haml:642 ../app/views/ops/_settings_evm_servers_tab.html.haml:29 ../app/views/ops/_tenant_quota_form.html.haml:27 ../app/views/miq_request/_request.html.haml:87 ../app/views/miq_request/_ae_prov_show.html.haml:16 ../app/views/alert/_rss_list.html.haml:41 ../app/views/miq_ae_class/_instance_form.html.haml:63 ../app/views/miq_ae_class/_ns_list.html.haml:22 ../app/views/miq_ae_class/_ns_list.html.haml:124 ../app/views/miq_ae_class/_class_props.html.haml:55 ../app/views/miq_ae_class/_class_form.html.haml:61 ../app/views/miq_ae_class/_class_fields.html.haml:14 ../app/views/miq_ae_class/_class_fields.html.haml:79 ../app/views/pxe/_template_form.html.haml:34 ../app/views/pxe/_pxe_server_details.html.haml:33 ../app/views/pxe/_pxe_server_details.html.haml:80 ../app/views/orchestration_stack/_copy_orchestration_template.html.haml:34 ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 ../app/views/report/_show_schedule.html.haml:9 ../app/views/report/_db_list.html.haml:51 ../app/views/report/_db_list.html.haml:90 ../app/views/report/_widget_form.html.haml:37 ../app/views/report/_schedule_form.html.haml:35 ../app/views/report/_widget_show.html.haml:29 ../app/views/report/_report_info.html.haml:129 ../app/views/report/_report_info.html.haml:248 ../app/views/chargeback/_cb_rate_edit.html.haml:16 ../app/views/chargeback/_cb_rate_show.html.haml:15 ../app/views/chargeback/_cb_rate_show.html.haml:40 ../app/views/chargeback/_cb_rate_edit_table.html.haml:10 ../app/views/miq_ae_customization/_dialog_group_form.html.haml:32 ../app/views/miq_ae_customization/_dialog_field_form.html.haml:52 ../app/views/miq_ae_customization/_dialog_info_form.html.haml:33 ../app/views/miq_ae_customization/_tag_field_values.html.haml:13 ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:36 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:249 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:347 ../app/views/miq_ae_customization/_field_values.html.haml:20 ../app/views/miq_ae_customization/_dialog_info.html.haml:28 ../app/views/miq_ae_customization/_old_dialogs_details.html.haml:36 ../app/views/miq_ae_customization/_dialog_tab_form.html.haml:31 ../app/views/service/_service_form.html.haml:52 ../app/views/catalog/_ot_add.html.haml:34 ../app/views/catalog/_ot_edit.html.haml:34 ../app/views/catalog/_sandt_tree_show.html.haml:277 ../app/views/catalog/_st_angular_form.html.haml:44 ../app/views/catalog/_ot_tree_show.html.haml:24 ../app/views/catalog/_ot_copy.html.haml:41 ../app/views/catalog/_stcat_form.html.haml:42 ../app/views/catalog/_svccat_tree_show.html.haml:43 ../app/views/catalog/_stcat_tree_show.html.haml:27 ../app/views/generic_object/explorer.html.haml:26 ../app/views/generic_object/explorer.html.haml:72 ../app/views/generic_object/explorer.html.haml:130 msgid "Description" msgstr "" -#: ../app/controllers/application_controller/buttons.rb:322 ../app/controllers/miq_policy_controller/miq_actions.rb:370 ../app/controllers/ops_controller/settings/tags.rb:58 ../app/controllers/ops_controller/settings/zones.rb:22 ../app/controllers/chargeback_controller.rb:118 +#: ../app/controllers/miq_policy_controller/miq_actions.rb:366 ../app/controllers/chargeback_controller.rb:111 ../app/controllers/application_controller/buttons.rb:322 ../app/controllers/ops_controller/settings/zones.rb:22 ../app/controllers/ops_controller/settings/tags.rb:58 msgid "Description is required" msgstr "" -#: ../app/helpers/container_project_helper/textual_summary.rb:22 +#: ../app/helpers/container_project_helper/textual_summary.rb:29 msgid "Desired" msgstr "" @@ -7927,23 +8083,23 @@ msgstr "" msgid "Detach" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:157 +#: ../app/controllers/cloud_volume_controller.rb:156 msgid "Detach %{model} \"%{name}\"" msgstr "" -#: ../app/controllers/vm_cloud_controller.rb:49 +#: ../app/controllers/vm_cloud_controller.rb:50 msgid "Detach %{volume} from %{instance_model} \"%{instance_name}\"" msgstr "" -#: ../app/controllers/vm_common.rb:1680 +#: ../app/controllers/vm_common.rb:1488 msgid "Detach Cloud Volume from %{model} \"%{name}\"" msgstr "" -#: ../app/views/cloud_volume/detach.html.haml:7 ../app/views/vm_common/_detach.html.haml:7 +#: ../app/views/vm_common/_detach.html.haml:7 ../app/views/cloud_volume/detach.html.haml:7 msgid "Detach Volume" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:54 +#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:56 msgid "Detach a Cloud Volume from this Instance" msgstr "" @@ -7955,27 +8111,31 @@ msgstr "" msgid "Detach this Cloud Volume from an Instance" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:207 +#: ../app/controllers/cloud_volume_controller.rb:225 msgid "Detaching %{model} \"%{name}\" was cancelled by the user" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:218 ../app/controllers/vm_cloud_controller.rb:115 -msgid "Detaching %{volume} \"%{volume_name}\" from %{vm_name}" +#: ../app/controllers/cloud_volume_controller.rb:257 ../app/controllers/vm_cloud_controller.rb:155 +msgid "Detaching Cloud Volume \"%{volume_name}\" from %{vm_name} finished" +msgstr "" + +#: ../app/controllers/cloud_volume_controller.rb:239 ../app/controllers/vm_cloud_controller.rb:137 +msgid "Detaching Cloud volume failed: Task start failed" msgstr "" -#: ../app/controllers/vm_cloud_controller.rb:104 +#: ../app/controllers/vm_cloud_controller.rb:123 msgid "Detaching a %{volume} from %{instance_model} \"%{instance_name}\" was cancelled by the user" msgstr "" -#: ../app/controllers/ops_controller.rb:692 ../app/views/miq_capacity/_utilization_tabs.html.haml:7 ../app/views/miq_policy/import.html.haml:17 ../app/views/catalog/_form.html.haml:7 ../app/views/catalog/_sandt_tree_show.html.haml:12 ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:13 ../app/views/ops/_all_tabs.html.haml:69 +#: ../app/helpers/service_helper/textual_summary.rb:20 ../app/helpers/service_helper/textual_summary.rb:40 ../app/controllers/ops_controller.rb:731 ../app/views/miq_policy/import.html.haml:17 ../app/views/miq_capacity/_utilization_tabs.html.haml:7 ../app/views/ops/_all_tabs.html.haml:69 ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:13 ../app/views/catalog/_sandt_tree_show.html.haml:12 ../app/views/catalog/_form.html.haml:7 msgid "Details" msgstr "" -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:52 ../app/helpers/configuration_helper/configuration_view_helper.rb:57 ../app/helpers/application_helper/toolbar/compare_center.rb:32 ../app/helpers/application_helper/toolbar/drift_center.rb:32 +#: ../app/helpers/application_helper/toolbar/drift_center.rb:32 ../app/helpers/application_helper/toolbar/compare_center.rb:32 ../app/helpers/configuration_helper/configuration_view_helper.rb:54 ../app/helpers/configuration_helper/configuration_view_helper.rb:59 msgid "Details Mode" msgstr "" -#: ../app/views/configuration/_timeprofile_form.html.haml:327 +#: ../app/views/configuration/_timeprofile_form.html.haml:323 msgid "Determine at Run Time" msgstr "" @@ -7983,11 +8143,7 @@ msgstr "" msgid "Development" msgstr "" -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:82 ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:61 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:89 -msgid "Device ID" -msgstr "" - -#: ../app/views/cloud_volume/attach.html.haml:34 ../app/views/vm_common/_attach.html.haml:34 +#: ../app/views/vm_common/_attach.html.haml:34 ../app/views/cloud_volume/attach.html.haml:34 msgid "Device Mountpoint (optional)" msgstr "" @@ -7995,27 +8151,27 @@ msgstr "" msgid "Device Type" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:223 ../app/helpers/vm_helper/textual_summary.rb:828 ../app/views/vm_common/_config.html.haml:12 ../app/views/vm_common/_config.html.haml:143 ../app/views/layouts/listnav/_host.html.haml:41 +#: ../app/helpers/host_helper/textual_summary.rb:230 ../app/helpers/vm_helper/textual_summary.rb:825 ../app/views/vm_common/_config.html.haml:12 ../app/views/vm_common/_config.html.haml:143 ../app/views/layouts/listnav/_host.html.haml:41 msgid "Devices" msgstr "" -#: ../app/controllers/ops_controller.rb:212 ../app/views/vm_common/_main.html.haml:39 ../app/views/vm_cloud/_main.html.haml:34 ../app/views/host/_main.html.haml:23 +#: ../app/helpers/host_helper/textual_summary.rb:37 ../app/helpers/vm_cloud_helper/textual_summary.rb:43 ../app/helpers/vm_helper/textual_summary.rb:89 ../app/controllers/ops_controller.rb:241 msgid "Diagnostics" msgstr "" -#: ../app/controllers/ops_controller/diagnostics.rb:830 ../app/controllers/ops_controller/diagnostics.rb:856 ../app/controllers/ops_controller/diagnostics.rb:924 +#: ../app/controllers/ops_controller/diagnostics.rb:820 ../app/controllers/ops_controller/diagnostics.rb:846 ../app/controllers/ops_controller/diagnostics.rb:914 msgid "Diagnostics %{model} \"%{name}\"" msgstr "" -#: ../app/controllers/ops_controller/diagnostics.rb:826 ../app/controllers/ops_controller/diagnostics.rb:920 +#: ../app/controllers/ops_controller/diagnostics.rb:816 ../app/controllers/ops_controller/diagnostics.rb:910 msgid "Diagnostics %{model} \"%{name}\" (current)" msgstr "" -#: ../app/controllers/ops_controller.rb:446 +#: ../app/controllers/ops_controller.rb:485 msgid "Diagnostics %{text}" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:318 ../app/views/miq_ae_customization/_dialog_edit_tree.html.haml:11 ../app/views/shared/buttons/_ab_show.html.haml:61 ../app/views/shared/buttons/_ab_form.html.haml:100 ../app/views/catalog/_form_basic_info.html.haml:77 ../app/views/catalog/_sandt_tree_show.html.haml:78 +#: ../app/controllers/miq_ae_customization_controller.rb:332 ../app/views/shared/buttons/_ab_show.html.haml:61 ../app/views/shared/buttons/_ab_form.html.haml:100 ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:357 ../app/views/miq_ae_customization/_dialog_edit_tree.html.haml:11 ../app/views/catalog/_sandt_tree_show.html.haml:79 ../app/views/catalog/_sandt_tree_show.html.haml:491 ../app/views/catalog/_sandt_tree_show.html.haml:650 ../app/views/catalog/_form_basic_info.html.haml:77 msgid "Dialog" msgstr "" @@ -8023,7 +8179,7 @@ msgstr "" msgid "Dialog Information" msgstr "" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:678 +#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:668 msgid "Dialog Label is required" msgstr "" @@ -8031,11 +8187,11 @@ msgstr "" msgid "Dialog Options" msgstr "" -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:258 +#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:247 msgid "Dialog Type must be selected" msgstr "" -#: ../app/controllers/catalog_controller.rb:2024 +#: ../app/controllers/catalog_controller.rb:2089 msgid "Dialog has to be set if Display in Catalog is chosen" msgstr "" @@ -8043,27 +8199,23 @@ msgstr "" msgid "Dialog name" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:139 ../app/helpers/resource_pool_helper/textual_summary.rb:89 ../app/views/layouts/listnav/_ems_cluster.html.haml:51 ../app/views/layouts/listnav/_resource_pool.html.haml:42 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:104 ../app/helpers/ems_cluster_helper/textual_summary.rb:150 ../app/controllers/mixins/generic_show_mixin.rb:154 ../app/views/layouts/listnav/_resource_pool.html.haml:42 ../app/views/layouts/listnav/_ems_cluster.html.haml:51 msgid "Direct VMs" msgstr "" -#: ../app/views/security_group/_main.html.haml:20 +#: ../app/helpers/security_group_helper/textual_summary.rb:37 msgid "Direction" msgstr "" -#: ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:46 ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:37 +#: ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:37 ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:46 msgid "Disable" msgstr "" -#: ../app/views/ops/_settings_replication_tab.html.haml:409 -msgid "Disable Central Admin" -msgstr "" - -#: ../app/views/ops/_settings_authentication_tab.html.haml:474 +#: ../app/views/ops/_settings_authentication_tab.html.haml:478 msgid "Disable Local Login" msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:351 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:356 msgid "Disable event monitoring." msgstr "" @@ -8083,7 +8235,7 @@ msgstr "" msgid "Disable this Middleware Deployment" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:193 ../app/helpers/host_helper/textual_summary.rb:197 +#: ../app/helpers/host_helper/textual_summary.rb:200 ../app/helpers/host_helper/textual_summary.rb:204 msgid "Disabled" msgstr "" @@ -8091,35 +8243,35 @@ msgstr "" msgid "Disassociate Floating IP" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:66 +#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:68 msgid "Disassociate a Floating IP from this Instance" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:813 +#: ../app/controllers/application_controller/ci_processing.rb:850 msgid "Disassociating Floating IP %{address} from Instance \"%{name}\"" msgstr "" -#: ../app/controllers/vm_common.rb:1710 +#: ../app/controllers/vm_common.rb:1518 msgid "Disassociating Floating IP from %{model} \"%{name}\"" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:806 +#: ../app/controllers/application_controller/ci_processing.rb:843 msgid "Disassociation of Floating IP from Instance \"%{name}\" was cancelled by the user" msgstr "" -#: ../app/views/ops/_settings_replication_tab.html.haml:245 ../app/views/ops/_settings_replication_tab.html.haml:457 ../app/views/report/_menu_form2.html.haml:183 ../app/views/report/_menu_form1.html.haml:102 +#: ../app/views/ops/_settings_replication_tab.html.haml:173 ../app/views/ops/_settings_replication_tab.html.haml:354 ../app/views/report/_menu_form1.html.haml:102 ../app/views/report/_menu_form2.html.haml:183 msgid "Discard" msgstr "" -#: ../app/controllers/report_controller.rb:749 +#: ../app/controllers/report_controller.rb:753 msgid "Discard Accordion management changes" msgstr "" -#: ../app/views/report/_menu_form1.html.haml:92 ../app/views/layouts/exp_atom/_editor.html.haml:41 +#: ../app/views/report/_menu_form1.html.haml:92 ../app/views/layouts/exp_atom/_editor.html.haml:38 msgid "Discard expression element changes" msgstr "" -#: ../app/controllers/report_controller.rb:760 +#: ../app/controllers/report_controller.rb:764 msgid "Discard folder management changes" msgstr "" @@ -8131,6 +8283,10 @@ msgstr "" msgid "Discard this new %{dialog_type}" msgstr "" +#: ../app/assets/javascripts/remote_consoles/spice.js:24 ../app/assets/javascripts/remote_consoles/vnc.js:31 +msgid "Disconnected" +msgstr "" + #: ../app/views/layouts/_discover.html.haml:10 msgid "Discover" msgstr "" @@ -8139,7 +8295,7 @@ msgstr "" msgid "Discover Cloud Providers" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:21 +#: ../app/helpers/application_helper/toolbar/ems_physical_infras_center.rb:21 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:21 msgid "Discover Infrastructure Providers" msgstr "" @@ -8151,19 +8307,19 @@ msgstr "" msgid "Discover items" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:184 +#: ../app/helpers/vm_helper/textual_summary.rb:224 msgid "Discovered" msgstr "" -#: ../app/helpers/ems_cinder_helper/textual_summary.rb:40 ../app/helpers/ems_infra_helper/textual_summary.rb:37 ../app/helpers/ems_cloud_helper/textual_summary.rb:60 ../app/helpers/ems_storage_helper/textual_summary.rb:40 ../app/helpers/ems_swift_helper/textual_summary.rb:40 ../app/helpers/ems_network_helper/textual_summary.rb:43 +#: ../app/helpers/ems_swift_helper/textual_summary.rb:41 ../app/helpers/ems_network_helper/textual_summary.rb:50 ../app/helpers/ems_cloud_helper/textual_summary.rb:65 ../app/helpers/ems_infra_helper/textual_summary.rb:47 ../app/helpers/ems_cinder_helper/textual_summary.rb:40 ../app/helpers/ems_physical_infra_helper/textual_summary.rb:45 ../app/helpers/ems_storage_helper/textual_summary.rb:43 msgid "Discovered IP Address" msgstr "" -#: ../app/controllers/miq_capacity_controller.rb:768 ../app/views/miq_capacity/_utilization_summary.html.haml:18 ../app/views/miq_capacity/_utilization_report.html.haml:33 +#: ../app/controllers/miq_capacity_controller.rb:768 ../app/views/miq_capacity/_utilization_report.html.haml:33 ../app/views/miq_capacity/_utilization_summary.html.haml:18 msgid "Disk" msgstr "" -#: ../app/helpers/service_helper/textual_summary.rb:47 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:159 +#: ../app/helpers/service_helper/textual_summary.rb:92 msgid "Disk Count" msgstr "" @@ -8175,63 +8331,67 @@ msgstr "" msgid "Disk Over Commit" msgstr "" -#: ../app/controllers/application_controller/miq_request_methods.rb:411 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:168 ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:62 ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:139 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:40 +#: ../app/controllers/application_controller/miq_request_methods.rb:411 ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:62 ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:139 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:168 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:40 msgid "Disk Size" msgstr "" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:43 ../app/views/miq_capacity/_planning_options.html.haml:231 +#: ../app/views/miq_capacity/_planning_options.html.haml:231 ../app/views/miq_capacity/_planning_vm_profile.html.haml:43 msgid "Disk Space" msgstr "" -#: ../app/helpers/service_helper/textual_summary.rb:51 +#: ../app/helpers/service_helper/textual_summary.rb:96 msgid "Disk Space Allocated" msgstr "" -#: ../app/helpers/service_helper/textual_summary.rb:56 +#: ../app/helpers/service_helper/textual_summary.rb:101 msgid "Disk Space Used" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:597 ../app/views/vm_common/_reconfigure.html.haml:176 +#: ../app/helpers/vm_helper/textual_summary.rb:636 ../app/views/vm_common/_reconfigure.html.haml:176 msgid "Disks" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:589 +#: ../app/helpers/vm_helper/textual_summary.rb:628 msgid "Disks Aligned" msgstr "" -#: ../app/views/miq_ae_class/_method_inputs.html.haml:48 ../app/views/miq_ae_class/_class_props.html.haml:42 ../app/views/miq_ae_class/_class_form.html.haml:45 ../app/views/miq_ae_class/_method_form.html.haml:48 ../app/views/miq_ae_class/_class_fields.html.haml:79 ../app/views/miq_ae_class/_instance_form.html.haml:46 +#: ../app/views/shared/views/_show_alerts_overview.html.haml:45 +msgid "Display" +msgstr "" + +#: ../app/views/miq_ae_class/_instance_form.html.haml:46 ../app/views/miq_ae_class/_class_props.html.haml:42 ../app/views/miq_ae_class/_class_form.html.haml:45 ../app/views/miq_ae_class/_method_inputs.html.haml:48 ../app/views/miq_ae_class/_method_form.html.haml:48 ../app/views/miq_ae_class/_class_fields.html.haml:79 msgid "Display Name" msgstr "" -#: ../app/views/shared/_topology_header.html.haml:9 ../app/views/shared/_topology_header_toolbar.html.haml:7 +#: ../app/views/shared/_topology_header_toolbar.html.haml:7 ../app/views/shared/_topology_header.html.haml:9 msgid "Display Names" msgstr "" -#: ../app/views/miq_capacity/_planning_summary.html.haml:7 ../app/views/miq_policy/_rsop_results.html.haml:10 +#: ../app/views/miq_policy/_rsop_results.html.haml:10 ../app/views/miq_capacity/_planning_summary.html.haml:7 msgid "Display Options" msgstr "" -#: ../app/views/configuration/_ui_1.html.haml:143 +#: ../app/views/configuration/_ui_1.html.haml:170 msgid "Display Settings" msgstr "" -#: ../app/views/catalog/_form_basic_info.html.haml:43 ../app/views/catalog/_sandt_tree_show.html.haml:49 +#: ../app/views/catalog/_sandt_tree_show.html.haml:49 ../app/views/catalog/_st_angular_form.html.haml:68 ../app/views/catalog/_form_basic_info.html.haml:43 msgid "Display in Catalog" msgstr "" -#: ../app/views/shared/buttons/_ab_list.html.haml:146 ../app/views/shared/buttons/_ab_show.html.haml:27 ../app/views/shared/buttons/_group_form.html.haml:36 ../app/views/shared/buttons/_ab_form.html.haml:55 +#: ../app/views/shared/buttons/_group_form.html.haml:36 ../app/views/shared/buttons/_ab_show.html.haml:27 ../app/views/shared/buttons/_ab_list.html.haml:146 ../app/views/shared/buttons/_ab_form.html.haml:55 msgid "Display on Button" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:778 +#: ../app/controllers/application_controller/ci_processing.rb:815 msgid "Disssociate Floating IP from Instance '%{name}'" msgstr "" -#: ../app/views/_ldap_domain_form.html.haml:44 ../app/views/ops/_ldap_domain_show.html.haml:54 ../app/views/ops/_ldap_domain_form.html.haml:44 +#: ../app/views/ops/_ldap_domain_show.html.haml:54 ../app/views/ops/_ldap_domain_form.html.haml:44 ../app/views/_ldap_domain_form.html.haml:44 msgid "Distinguished Name (CN=)" msgstr "" -#: ../app/views/_ldap_domain_form.html.haml:44 ../app/views/ops/_ldap_domain_show.html.haml:57 ../app/views/ops/_ldap_domain_form.html.haml:44 +#: ../app/views/ops/_ldap_domain_show.html.haml:57 ../app/views/ops/_ldap_domain_form.html.haml:44 ../app/views/_ldap_domain_form.html.haml:44 msgid "Distinguished Name (UID=)" msgstr "" @@ -8239,11 +8399,11 @@ msgstr "" msgid "Do Nothing" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:24 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:24 +#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:25 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:25 msgid "Do you want to delete Server %{server_name} [%{server_id}]?" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:75 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:82 +#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:76 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:83 msgid "Do you want to demote this Server to secondary? This will leave no primary Server for this Role." msgstr "" @@ -8263,7 +8423,7 @@ msgstr "" msgid "Do you want to enable this deployment ?" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:87 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:96 +#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:88 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:97 msgid "Do you want to promote this Server to primary? This will replace any existing primary Server for this Role." msgstr "" @@ -8276,7 +8436,7 @@ msgid "Do you want to remove these Datasources? Some Applications could be using msgstr "" #: ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:48 -msgid "Do you want to remove this datasource?" +msgid "Do you want to remove this Datasource? Some Applications could be using this Datasource and may malfunction if it is deleted." msgstr "" #: ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:40 @@ -8287,10 +8447,18 @@ msgstr "" msgid "Do you want to restart this deployment ?" msgstr "" +#: ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:32 +msgid "Do you want to restart this server group?" +msgstr "" + #: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:60 msgid "Do you want to restart this server?" msgstr "" +#: ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:63 +msgid "Do you want to resume this server group?" +msgstr "" + #: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:88 msgid "Do you want to resume this server?" msgstr "" @@ -8303,6 +8471,10 @@ msgstr "" msgid "Do you want to trigger a kill of this server?" msgstr "" +#: ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:70 +msgid "Do you want to trigger a reload of this server group?" +msgstr "" + #: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:95 msgid "Do you want to trigger a reload of this server?" msgstr "" @@ -8311,6 +8483,10 @@ msgstr "" msgid "Do you want to trigger a restart of this server?" msgstr "" +#: ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:79 +msgid "Do you want to trigger a start of this server group?" +msgstr "" + #: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:104 msgid "Do you want to trigger a start of this server?" msgstr "" @@ -8327,7 +8503,7 @@ msgstr "" msgid "Do you want to undeploy this deployment ?" msgstr "" -#: ../app/views/container_image/_main.html.haml:43 ../app/views/chargeback/_cb_assignments.html.haml:61 +#: ../app/helpers/container_image_helper/textual_summary.rb:132 ../app/views/chargeback/_cb_assignments.html.haml:61 msgid "Docker Labels" msgstr "" @@ -8335,7 +8511,7 @@ msgstr "" msgid "Documentation" msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:66 ../app/helpers/provider_foreman_helper.rb:147 ../app/views/ops/_settings_server_tab.html.haml:420 +#: ../app/helpers/provider_foreman_helper.rb:66 ../app/helpers/provider_foreman_helper.rb:150 ../app/views/ops/_settings_server_tab.html.haml:384 msgid "Domain" msgstr "" @@ -8359,11 +8535,11 @@ msgstr "" msgid "Domain is Unlocked." msgstr "" -#: ../app/presenters/tree_node_builder.rb:108 +#: ../app/presenters/tree_node/ldap_domain.rb:3 msgid "Domain: %{domain_name}" msgstr "" -#: ../app/presenters/menu/default_menu.rb:126 ../app/controllers/miq_ae_class_controller.rb:2413 ../app/controllers/miq_ae_class_controller.rb:2416 ../app/views/middleware_topology/show.html.haml:126 +#: ../app/presenters/menu/default_menu.rb:129 ../app/controllers/miq_ae_class_controller.rb:2413 ../app/controllers/miq_ae_class_controller.rb:2416 ../app/views/middleware_topology/show.html.haml:126 msgid "Domains" msgstr "" @@ -8379,7 +8555,7 @@ msgstr "" msgid "Double Click on 'New Folder' to edit" msgstr "" -#: ../app/views/ops/_rbac_role_details.html.haml:118 +#: ../app/views/ops/_rbac_role_details.html.haml:117 msgid "Double click a feature to open/close all children." msgstr "" @@ -8387,7 +8563,7 @@ msgstr "" msgid "Down" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_capacity_view.rb:6 ../app/helpers/application_helper/toolbar/drift_view.rb:20 ../app/helpers/application_helper/toolbar/x_gtl_view.rb:32 ../app/helpers/application_helper/toolbar/gtl_view.rb:32 ../app/helpers/application_helper/toolbar/compare_view.rb:22 ../app/helpers/application_helper/toolbar/report_view.rb:32 ../app/helpers/application_helper/toolbar/chargeback_center.rb:6 ../app/views/layouts/_item.html.haml:135 +#: ../app/helpers/application_helper/toolbar/gtl_view.rb:32 ../app/helpers/application_helper/toolbar/compare_view.rb:22 ../app/helpers/application_helper/toolbar/chargeback_center.rb:6 ../app/helpers/application_helper/toolbar/drift_view.rb:22 ../app/helpers/application_helper/toolbar/x_gtl_view.rb:32 ../app/helpers/application_helper/toolbar/report_view.rb:32 ../app/helpers/application_helper/toolbar/miq_capacity_view.rb:6 ../app/views/layouts/_item.html.haml:77 msgid "Download" msgstr "" @@ -8395,27 +8571,27 @@ msgstr "" msgid "Download Report to YAML" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_capacity_view.rb:21 ../app/helpers/application_helper/toolbar/drift_view.rb:33 ../app/helpers/application_helper/toolbar/x_gtl_view.rb:46 ../app/helpers/application_helper/toolbar/gtl_view.rb:46 ../app/helpers/application_helper/toolbar/compare_view.rb:35 ../app/helpers/application_helper/toolbar/report_view.rb:46 ../app/helpers/application_helper/toolbar/chargeback_center.rb:21 +#: ../app/helpers/application_helper/toolbar/gtl_view.rb:46 ../app/helpers/application_helper/toolbar/compare_view.rb:35 ../app/helpers/application_helper/toolbar/chargeback_center.rb:21 ../app/helpers/application_helper/toolbar/drift_view.rb:35 ../app/helpers/application_helper/toolbar/x_gtl_view.rb:46 ../app/helpers/application_helper/toolbar/report_view.rb:47 ../app/helpers/application_helper/toolbar/miq_capacity_view.rb:22 msgid "Download as CSV" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_capacity_view.rb:28 ../app/helpers/application_helper/toolbar/drift_view.rb:39 ../app/helpers/application_helper/toolbar/x_gtl_view.rb:53 ../app/helpers/application_helper/toolbar/gtl_view.rb:53 ../app/helpers/application_helper/toolbar/compare_view.rb:41 ../app/helpers/application_helper/toolbar/report_view.rb:52 ../app/helpers/application_helper/toolbar/chargeback_center.rb:28 +#: ../app/helpers/application_helper/toolbar/gtl_view.rb:53 ../app/helpers/application_helper/toolbar/compare_view.rb:41 ../app/helpers/application_helper/toolbar/chargeback_center.rb:28 ../app/helpers/application_helper/toolbar/drift_view.rb:41 ../app/helpers/application_helper/toolbar/x_gtl_view.rb:53 ../app/helpers/application_helper/toolbar/report_view.rb:54 ../app/helpers/application_helper/toolbar/miq_capacity_view.rb:30 msgid "Download as PDF" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_capacity_view.rb:14 ../app/helpers/application_helper/toolbar/drift_view.rb:27 ../app/helpers/application_helper/toolbar/x_gtl_view.rb:39 ../app/helpers/application_helper/toolbar/gtl_view.rb:39 ../app/helpers/application_helper/toolbar/compare_view.rb:29 ../app/helpers/application_helper/toolbar/report_view.rb:40 ../app/helpers/application_helper/toolbar/chargeback_center.rb:14 +#: ../app/helpers/application_helper/toolbar/gtl_view.rb:39 ../app/helpers/application_helper/toolbar/compare_view.rb:29 ../app/helpers/application_helper/toolbar/chargeback_center.rb:14 ../app/helpers/application_helper/toolbar/drift_view.rb:29 ../app/helpers/application_helper/toolbar/x_gtl_view.rb:39 ../app/helpers/application_helper/toolbar/report_view.rb:40 ../app/helpers/application_helper/toolbar/miq_capacity_view.rb:14 msgid "Download as Text" msgstr "" -#: ../app/helpers/application_helper/toolbar/drift_view.rb:32 ../app/helpers/application_helper/toolbar/compare_view.rb:34 +#: ../app/helpers/application_helper/toolbar/compare_view.rb:34 ../app/helpers/application_helper/toolbar/drift_view.rb:34 msgid "Download comparison report in CSV format" msgstr "" -#: ../app/helpers/application_helper/toolbar/drift_view.rb:38 ../app/helpers/application_helper/toolbar/compare_view.rb:40 +#: ../app/helpers/application_helper/toolbar/compare_view.rb:40 ../app/helpers/application_helper/toolbar/drift_view.rb:40 msgid "Download comparison report in PDF format" msgstr "" -#: ../app/helpers/application_helper/toolbar/drift_view.rb:26 ../app/helpers/application_helper/toolbar/compare_view.rb:28 +#: ../app/helpers/application_helper/toolbar/compare_view.rb:28 ../app/helpers/application_helper/toolbar/drift_view.rb:28 msgid "Download comparison report in text format" msgstr "" @@ -8423,15 +8599,15 @@ msgstr "" msgid "Download summary in PDF format" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:47 ../app/helpers/application_helper/toolbar/logs_center.rb:14 +#: ../app/helpers/application_helper/toolbar/logs_center.rb:14 ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:53 msgid "Download the Entire %{log_type} Log File" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:22 +#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:24 msgid "Download the Entire Audit Log File" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:33 +#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:37 msgid "Download the Entire EVM Log File" msgstr "" @@ -8467,19 +8643,19 @@ msgstr "" msgid "Download this Timeline data in text format" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_capacity_view.rb:20 ../app/helpers/application_helper/toolbar/gtl_view.rb:45 ../app/helpers/application_helper/toolbar/report_view.rb:45 ../app/helpers/application_helper/toolbar/chargeback_center.rb:20 +#: ../app/helpers/application_helper/toolbar/gtl_view.rb:45 ../app/helpers/application_helper/toolbar/chargeback_center.rb:20 ../app/helpers/application_helper/toolbar/report_view.rb:46 ../app/helpers/application_helper/toolbar/miq_capacity_view.rb:21 msgid "Download this report in CSV format" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_capacity_view.rb:27 ../app/helpers/application_helper/toolbar/gtl_view.rb:52 ../app/helpers/application_helper/toolbar/report_view.rb:51 ../app/helpers/application_helper/toolbar/chargeback_center.rb:27 +#: ../app/helpers/application_helper/toolbar/gtl_view.rb:52 ../app/helpers/application_helper/toolbar/chargeback_center.rb:27 ../app/helpers/application_helper/toolbar/report_view.rb:53 ../app/helpers/application_helper/toolbar/miq_capacity_view.rb:29 msgid "Download this report in PDF format" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_capacity_view.rb:13 ../app/helpers/application_helper/toolbar/gtl_view.rb:38 ../app/helpers/application_helper/toolbar/report_view.rb:39 ../app/helpers/application_helper/toolbar/chargeback_center.rb:13 +#: ../app/helpers/application_helper/toolbar/gtl_view.rb:38 ../app/helpers/application_helper/toolbar/chargeback_center.rb:13 ../app/helpers/application_helper/toolbar/report_view.rb:39 ../app/helpers/application_helper/toolbar/miq_capacity_view.rb:13 msgid "Download this report in text format" msgstr "" -#: ../app/views/catalog/_ot_add.html.haml:100 ../app/views/catalog/_ot_copy.html.haml:84 ../app/views/catalog/_ot_tree_show.html.haml:37 ../app/views/catalog/_ot_edit.html.haml:78 ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 ../app/views/orchestration_stack/_copy_orchestration_template.html.haml:51 +#: ../app/views/orchestration_stack/_copy_orchestration_template.html.haml:51 ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 ../app/views/catalog/_ot_add.html.haml:100 ../app/views/catalog/_ot_edit.html.haml:78 ../app/views/catalog/_ot_tree_show.html.haml:37 ../app/views/catalog/_ot_copy.html.haml:84 msgid "Draft" msgstr "" @@ -8499,7 +8675,7 @@ msgstr "" msgid "Drift" msgstr "" -#: ../app/controllers/vm_common.rb:1620 ../app/helpers/ems_cluster_helper/textual_summary.rb:190 ../app/helpers/host_helper/textual_summary.rb:288 ../app/helpers/textual_mixins/textual_drift.rb:4 ../app/controllers/application_controller/compare.rb:753 ../app/views/layouts/listnav/_ems_cluster.html.haml:86 ../app/views/layouts/listnav/_host.html.haml:144 +#: ../app/controllers/vm_common.rb:1428 ../app/helpers/host_helper/textual_summary.rb:295 ../app/helpers/textual_mixins/textual_drift.rb:4 ../app/helpers/ems_cluster_helper/textual_summary.rb:201 ../app/controllers/application_controller/compare.rb:563 ../app/views/layouts/listnav/_host.html.haml:144 ../app/views/layouts/listnav/_ems_cluster.html.haml:86 msgid "Drift History" msgid_plural "Drift History" msgstr[0] "" @@ -8509,15 +8685,15 @@ msgstr[1] "" msgid "Drift Mode" msgstr "" -#: ../app/views/layouts/listnav/_compare_sections.html.haml:153 +#: ../app/views/layouts/listnav/_compare_sections.html.haml:137 msgid "Drift Sections" msgstr "" -#: ../app/controllers/vm_common.rb:1690 +#: ../app/controllers/vm_common.rb:1498 msgid "Drift for %{vm_or_template} \"%{name}\"" msgstr "" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:82 ../app/views/middleware_server/_add_jdbc_driver.html.haml:122 +#: ../app/views/middleware_server/_specify_driver.html.haml:70 ../app/views/middleware_server/_add_jdbc_driver.html.haml:122 msgid "Driver Class" msgstr "" @@ -8529,15 +8705,15 @@ msgstr "" msgid "Driving Event" msgstr "" -#: ../app/helpers/container_helper/textual_summary.rb:78 +#: ../app/helpers/container_helper/textual_summary.rb:90 msgid "Drop Capabilities" msgstr "" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:713 +#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:703 msgid "Dropdown elements require some entries" msgstr "" -#: ../app/helpers/container_build_helper/textual_summary.rb:28 +#: ../app/helpers/container_build_helper/textual_summary.rb:32 msgid "Duration" msgstr "" @@ -8557,7 +8733,7 @@ msgstr "" msgid "E-mail" msgstr "" -#: ../app/views/_ldap_domain_form.html.haml:44 ../app/views/ops/_ldap_domain_show.html.haml:51 ../app/views/ops/_ldap_domain_form.html.haml:44 ../app/views/ops/_rbac_user_details.html.haml:133 +#: ../app/views/ops/_ldap_domain_show.html.haml:51 ../app/views/ops/_rbac_user_details.html.haml:132 ../app/views/ops/_ldap_domain_form.html.haml:44 ../app/views/_ldap_domain_form.html.haml:44 msgid "E-mail Address" msgstr "" @@ -8565,15 +8741,15 @@ msgstr "" msgid "E-mail Options" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:10 ../app/views/miq_policy/_action_details.html.haml:187 +#: ../app/views/miq_policy/_action_options.html.haml:9 ../app/views/miq_policy/_action_details.html.haml:187 msgid "E-mail Settings" msgstr "" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:395 +#: ../app/controllers/miq_policy_controller/miq_actions.rb:391 msgid "E-mail address 'From' is not valid" msgstr "" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:396 +#: ../app/controllers/miq_policy_controller/miq_actions.rb:392 msgid "E-mail address 'To' is not valid" msgstr "" @@ -8585,7 +8761,7 @@ msgstr "" msgid "ESX" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:481 ../app/controllers/application_controller.rb:256 ../app/views/layouts/listnav/_host.html.haml:84 +#: ../app/helpers/host_helper/textual_summary.rb:444 ../app/controllers/application_controller.rb:259 ../app/views/layouts/listnav/_host.html.haml:84 msgid "ESX Logs" msgstr "" @@ -8593,11 +8769,11 @@ msgstr "" msgid "EVM log downloaded" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:79 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:127 ../app/controllers/configuration_controller.rb:298 +#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:128 ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:86 ../app/controllers/configuration_controller.rb:281 msgid "Edit" msgstr "" -#: ../app/controllers/cloud_tenant_controller.rb:131 ../app/controllers/cloud_volume_controller.rb:309 ../app/controllers/host_aggregate_controller.rb:241 +#: ../app/controllers/host_aggregate_controller.rb:230 ../app/controllers/cloud_volume_controller.rb:361 msgid "Edit %{model} \"%{name}\"" msgstr "" @@ -8605,15 +8781,15 @@ msgstr "" msgid "Edit %{model} assignments cancelled by user" msgstr "" -#: ../app/controllers/ems_common.rb:225 +#: ../app/controllers/ems_common.rb:168 msgid "Edit %{object_type} '%{object_name}'" msgstr "" -#: ../app/controllers/vm_common.rb:1732 +#: ../app/controllers/vm_common.rb:1544 msgid "Edit %{product} Server Relationship for %{vm_or_template} \"%{name}\"" msgstr "" -#: ../app/controllers/mixins/ems_common_angular.rb:46 ../app/controllers/ems_common.rb:327 +#: ../app/controllers/ems_common.rb:270 ../app/controllers/mixins/ems_common_angular.rb:46 msgid "Edit %{table} '%{name}'" msgstr "" @@ -8621,7 +8797,7 @@ msgstr "" msgid "Edit %{type}" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_groups_center.rb:53 +#: ../app/helpers/application_helper/toolbar/miq_groups_center.rb:55 msgid "Edit '%{customer_name}' Tags for the selected Groups" msgstr "" @@ -8633,19 +8809,19 @@ msgstr "" msgid "Edit '%{customer_name}' Tags for the selected Users" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_group_center.rb:35 +#: ../app/helpers/application_helper/toolbar/miq_group_center.rb:37 msgid "Edit '%{customer_name}' Tags for this Group" msgstr "" -#: ../app/helpers/application_helper/toolbar/tenant_center.rb:57 +#: ../app/helpers/application_helper/toolbar/tenant_center.rb:58 msgid "Edit '%{customer_name}' Tags for this Tenant" msgstr "" -#: ../app/helpers/application_helper/toolbar/user_center.rb:40 +#: ../app/helpers/application_helper/toolbar/user_center.rb:42 msgid "Edit '%{customer_name}' Tags for this User" msgstr "" -#: ../app/controllers/configuration_controller.rb:420 +#: ../app/controllers/configuration_controller.rb:412 msgid "Edit '%{description}'" msgstr "" @@ -8665,19 +8841,23 @@ msgstr "" msgid "Edit Cloud Tenant" msgstr "" -#: ../app/views/chargeback/_assignments_list.html.haml:9 ../app/views/chargeback/_assignments_list.html.haml:14 -msgid "Edit Compute Rate Assignments" +#: ../app/controllers/cloud_tenant_controller.rb:129 +msgid "Edit Cloud Tenant \"%{name}\"" msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:796 ../app/controllers/provider_foreman_controller.rb:902 -msgid "Edit Configuration Manager Provider" +#: ../app/views/chargeback/_assignments_list.html.haml:9 ../app/views/chargeback/_assignments_list.html.haml:14 +msgid "Edit Compute Rate Assignments" msgstr "" #: ../app/controllers/miq_policy_controller/events.rb:9 msgid "Edit Event cancelled by user" msgstr "" -#: ../app/controllers/host_controller.rb:309 ../app/controllers/host_controller.rb:369 ../app/controllers/host_controller.rb:386 +#: ../app/views/generic_object/explorer.html.haml:106 +msgid "Edit Generic Object Definition" +msgstr "" + +#: ../app/controllers/host_controller.rb:261 ../app/controllers/host_controller.rb:321 ../app/controllers/host_controller.rb:338 msgid "Edit Host '%{name}'" msgstr "" @@ -8689,11 +8869,11 @@ msgstr "" msgid "Edit Log Depot settings was cancelled by the user" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:43 ../app/helpers/application_helper/toolbar/x_vm_center.rb:52 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:44 +#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:46 ../app/helpers/application_helper/toolbar/x_vm_center.rb:52 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:44 msgid "Edit Management Engine Relationship" msgstr "" -#: ../app/controllers/vm_common.rb:758 +#: ../app/controllers/vm_common.rb:612 msgid "Edit Management Engine Relationship was cancelled by the user" msgstr "" @@ -8701,11 +8881,15 @@ msgstr "" msgid "Edit Priority Order of Domains" msgstr "" +#: ../app/controllers/provider_foreman_controller.rb:445 ../app/controllers/automation_manager_controller.rb:459 ../app/controllers/mixins/manager_controller_mixin.rb:343 +msgid "Edit Provider" +msgstr "" + #: ../app/views/ops/_settings_rhn_tab.html.haml:28 msgid "Edit Registration" msgstr "" -#: ../app/controllers/report_controller.rb:291 +#: ../app/controllers/report_controller.rb:295 msgid "Edit Report Menus" msgstr "" @@ -8717,23 +8901,27 @@ msgstr "" msgid "Edit Router" msgstr "" -#: ../app/controllers/network_router_controller.rb:171 +#: ../app/controllers/network_router_controller.rb:175 msgid "Edit Router \"%{name}\"" msgstr "" -#: ../app/helpers/application_helper/toolbar/arbitration_profiles_center.rb:18 +#: ../app/controllers/security_group_controller.rb:162 +msgid "Edit Security Group \"%{name}\"" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/arbitration_profiles_center.rb:19 msgid "Edit Selected Arbitration Profile" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:36 +#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:38 msgid "Edit Selected Cloud Provider" msgstr "" -#: ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:18 +#: ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:19 msgid "Edit Selected Cloud Tenant" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:36 +#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:37 msgid "Edit Selected Containers Provider" msgstr "" @@ -8741,7 +8929,7 @@ msgstr "" msgid "Edit Selected Customization Templates" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:29 +#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:30 msgid "Edit Selected Datawarehouse Providers" msgstr "" @@ -8749,11 +8937,11 @@ msgstr "" msgid "Edit Selected Domains" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:19 +#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:20 msgid "Edit Selected Host Aggregate" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:36 +#: ../app/helpers/application_helper/toolbar/ems_physical_infras_center.rb:36 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:38 msgid "Edit Selected Infrastructure Providers" msgstr "" @@ -8761,7 +8949,7 @@ msgstr "" msgid "Edit Selected Instance" msgstr "" -#: ../app/helpers/application_helper/toolbar/servicetemplatecatalogs_center.rb:18 ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:23 ../app/helpers/application_helper/toolbar/miq_ae_namespace_center.rb:38 +#: ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:25 ../app/helpers/application_helper/toolbar/miq_ae_namespace_center.rb:38 ../app/helpers/application_helper/toolbar/servicetemplatecatalogs_center.rb:19 msgid "Edit Selected Item" msgstr "" @@ -8769,7 +8957,7 @@ msgstr "" msgid "Edit Selected Method" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:29 +#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:30 msgid "Edit Selected Middleware Providers" msgstr "" @@ -8781,39 +8969,39 @@ msgstr "" msgid "Edit Selected Network Provider" msgstr "" -#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:18 +#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:19 msgid "Edit Selected PXE Servers" msgstr "" -#: ../app/helpers/application_helper/toolbar/services_center.rb:15 +#: ../app/helpers/application_helper/toolbar/service/vmdb_mixin.rb:16 msgid "Edit Selected Service" msgstr "" -#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:38 +#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:39 msgid "Edit Selected Storage Manager" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:42 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:33 +#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:33 ../app/helpers/application_helper/toolbar/template_infras_center.rb:42 msgid "Edit Selected Template" msgstr "" -#: ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:21 +#: ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:22 msgid "Edit Selected Volume" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:42 ../app/helpers/application_helper/toolbar/vms_center.rb:33 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:43 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:52 ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:32 +#: ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:32 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:52 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:44 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:42 ../app/helpers/application_helper/toolbar/vms_center.rb:33 ../app/helpers/application_helper/toolbar/automation_manager_providers_center.rb:34 msgid "Edit Selected item" msgstr "" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:86 +#: ../app/helpers/application_helper/toolbar/hosts_center.rb:88 msgid "Edit Selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_widget_sets_center.rb:18 +#: ../app/helpers/application_helper/toolbar/miq_widget_sets_center.rb:19 msgid "Edit Sequence of Dashboards" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_groups_center.rb:35 +#: ../app/helpers/application_helper/toolbar/miq_groups_center.rb:37 msgid "Edit Sequence of User Groups for LDAP Look Up" msgstr "" @@ -8821,7 +9009,7 @@ msgstr "" msgid "Edit Sequence of User Groups was cancelled by the user" msgstr "" -#: ../app/controllers/storage_manager_controller.rb:123 ../app/controllers/storage_manager_controller.rb:174 +#: ../app/controllers/storage_manager_controller.rb:124 ../app/controllers/storage_manager_controller.rb:175 msgid "Edit Storage Manager '%{name}'" msgstr "" @@ -8829,26 +9017,30 @@ msgstr "" msgid "Edit Storage Rate Assignments" msgstr "" -#: ../app/controllers/cloud_subnet_controller.rb:164 +#: ../app/controllers/cloud_subnet_controller.rb:185 msgid "Edit Subnet \"%{name}\"" msgstr "" -#: ../app/helpers/application_helper/toolbar/orchestration_template_center.rb:48 ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:59 ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:47 ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:52 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:130 ../app/helpers/application_helper/toolbar/security_group_center.rb:13 ../app/helpers/application_helper/toolbar/template_infras_center.rb:95 ../app/helpers/application_helper/toolbar/container_center.rb:37 ../app/helpers/application_helper/toolbar/servicetemplate_center.rb:50 ../app/helpers/application_helper/toolbar/host_center.rb:85 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:67 ../app/helpers/application_helper/toolbar/container_replicators_center.rb:15 ../app/helpers/application_helper/toolbar/flavors_center.rb:15 ../app/helpers/application_helper/toolbar/container_image_center.rb:29 ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:59 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:73 ../app/helpers/application_helper/toolbar/vms_center.rb:87 ../app/helpers/application_helper/toolbar/ontap_storage_system_center.rb:28 ../app/helpers/application_helper/toolbar/cloud_subnets_center.rb:54 ../app/helpers/application_helper/toolbar/container_image_registries_center.rb:15 ../app/helpers/application_helper/toolbar/service_center.rb:50 ../app/helpers/application_helper/toolbar/container_replicator_center.rb:39 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:105 ../app/helpers/application_helper/toolbar/container_image_registry_center.rb:13 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:92 ../app/helpers/application_helper/toolbar/container_images_center.rb:34 ../app/helpers/application_helper/toolbar/cloud_subnet_center.rb:42 ../app/helpers/application_helper/toolbar/load_balancer_center.rb:13 ../app/helpers/application_helper/toolbar/load_balancers_center.rb:15 ../app/helpers/application_helper/toolbar/cloud_object_store_containers_center.rb:15 ../app/helpers/application_helper/toolbar/x_ansible_tower_configured_system_center.rb:14 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:62 ../app/helpers/application_helper/toolbar/orchestration_templates_center.rb:57 ../app/helpers/application_helper/toolbar/miq_template_center.rb:68 ../app/helpers/application_helper/toolbar/cloud_volume_snapshot_center.rb:29 ../app/helpers/application_helper/toolbar/network_port_center.rb:13 ../app/helpers/application_helper/toolbar/cloud_networks_center.rb:55 ../app/helpers/application_helper/toolbar/ontap_storage_volume_center.rb:13 ../app/helpers/application_helper/toolbar/configured_system/policy_mixin.rb:14 ../app/helpers/application_helper/toolbar/ems_storage_center.rb:47 ../app/helpers/application_helper/toolbar/x_configuration_script_center.rb:27 ../app/helpers/application_helper/toolbar/cloud_object_store_container_center.rb:13 ../app/helpers/application_helper/toolbar/persistent_volume_center.rb:40 ../app/helpers/application_helper/toolbar/ontap_logical_disks_center.rb:15 ../app/helpers/application_helper/toolbar/availability_zones_center.rb:15 ../app/helpers/application_helper/toolbar/configuration_jobs_center.rb:34 ../app/helpers/application_helper/toolbar/cloud_volume_snapshots_center.rb:15 ../app/helpers/application_helper/toolbar/network_router_center.rb:43 ../app/helpers/application_helper/toolbar/middleware_domain_center.rb:14 ../app/helpers/application_helper/toolbar/x_infra_networking_switch_center.rb:13 ../app/helpers/application_helper/toolbar/auth_key_pair_clouds_center.rb:15 ../app/helpers/application_helper/toolbar/container_node_center.rb:39 ../app/helpers/application_helper/toolbar/containers_center.rb:15 ../app/helpers/application_helper/toolbar/ontap_logical_disk_center.rb:13 ../app/helpers/application_helper/toolbar/flavor_center.rb:13 ../app/helpers/application_helper/toolbar/cloud_volume_backups_center.rb:15 ../app/helpers/application_helper/toolbar/cloud_volume_backup_center.rb:13 ../app/helpers/application_helper/toolbar/ontap_file_shares_center.rb:15 ../app/helpers/application_helper/toolbar/ems_network_center.rb:53 ../app/helpers/application_helper/toolbar/container_template_center.rb:13 ../app/helpers/application_helper/toolbar/x_provider_foreman_foreman_configured_system_center.rb:31 ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:60 ../app/helpers/application_helper/toolbar/container_templates_center.rb:15 ../app/helpers/application_helper/toolbar/ontap_storage_systems_center.rb:15 ../app/helpers/application_helper/toolbar/ems_block_storages_center.rb:52 ../app/helpers/application_helper/toolbar/container_project_center.rb:39 ../app/helpers/application_helper/toolbar/container_groups_center.rb:15 ../app/helpers/application_helper/toolbar/infra_networking_center.rb:13 ../app/helpers/application_helper/toolbar/floating_ip_center.rb:13 ../app/helpers/application_helper/toolbar/cloud_tenant_center.rb:33 ../app/helpers/application_helper/toolbar/x_provider_foreman_ansible_tower_configured_system_center.rb:14 ../app/helpers/application_helper/toolbar/container_builds_center.rb:34 ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:31 ../app/helpers/application_helper/toolbar/cloud_volumes_center.rb:70 ../app/helpers/application_helper/toolbar/middleware_messaging_center.rb:33 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:73 ../app/helpers/application_helper/toolbar/ems_container_center.rb:81 ../app/helpers/application_helper/toolbar/x_foreman_configured_system_center.rb:31 ../app/helpers/application_helper/toolbar/ems_containers_center.rb:65 ../app/helpers/application_helper/toolbar/ontap_storage_volumes_center.rb:15 ../app/helpers/application_helper/toolbar/middleware_servers_center.rb:16 ../app/helpers/application_helper/toolbar/ontap_file_share_center.rb:28 ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:58 ../app/helpers/application_helper/toolbar/cloud_object_store_object_center.rb:13 ../app/helpers/application_helper/toolbar/storages_center.rb:45 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:106 ../app/helpers/application_helper/toolbar/network_routers_center.rb:55 ../app/helpers/application_helper/toolbar/cloud_network_center.rb:42 ../app/helpers/application_helper/toolbar/container_group_center.rb:39 ../app/helpers/application_helper/toolbar/middleware_server_groups_center.rb:15 ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:41 ../app/helpers/application_helper/toolbar/services_center.rb:53 ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:34 ../app/helpers/application_helper/toolbar/security_groups_center.rb:15 ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:16 ../app/helpers/application_helper/toolbar/auth_key_pair_cloud_center.rb:30 ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:59 ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:58 ../app/helpers/application_helper/toolbar/x_vm_center.rb:92 ../app/helpers/application_helper/toolbar/container_build_center.rb:29 ../app/helpers/application_helper/toolbar/infra_networkings_center.rb:15 ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:52 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:122 ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:73 ../app/helpers/application_helper/toolbar/availability_zone_center.rb:13 ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:15 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:86 ../app/helpers/application_helper/toolbar/resource_pools_center.rb:44 ../app/helpers/application_helper/toolbar/ems_networks_center.rb:68 ../app/helpers/application_helper/toolbar/middleware_domains_center.rb:15 ../app/helpers/application_helper/toolbar/resource_pool_center.rb:35 ../app/helpers/application_helper/toolbar/container_route_center.rb:13 ../app/helpers/application_helper/toolbar/middleware_server_center.rb:32 ../app/helpers/application_helper/toolbar/container_projects_center.rb:15 ../app/helpers/application_helper/toolbar/middleware_messagings_center.rb:16 ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:14 ../app/helpers/application_helper/toolbar/container_services_center.rb:15 ../app/helpers/application_helper/toolbar/configuration_job_center.rb:30 ../app/helpers/application_helper/toolbar/orchestration_stack_center.rb:30 ../app/helpers/application_helper/toolbar/middleware_datasources_center.rb:15 ../app/helpers/application_helper/toolbar/cloud_object_store_objects_center.rb:15 ../app/helpers/application_helper/toolbar/hosts_center.rb:124 ../app/helpers/application_helper/toolbar/container_routes_center.rb:15 ../app/helpers/application_helper/toolbar/container_service_center.rb:30 ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:64 ../app/helpers/application_helper/toolbar/configuration_script_center.rb:27 ../app/helpers/application_helper/toolbar/configuration_scripts/policy_mixin.rb:13 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:70 ../app/helpers/application_helper/toolbar/cloud_volume_center.rb:82 ../app/helpers/application_helper/toolbar/floating_ips_center.rb:15 ../app/helpers/application_helper/toolbar/container_nodes_center.rb:15 ../app/helpers/application_helper/toolbar/network_ports_center.rb:15 ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:51 ../app/helpers/application_helper/toolbar/ems_storages_center.rb:52 ../app/helpers/application_helper/toolbar/storage_center.rb:37 ../app/controllers/provider_foreman_controller.rb:755 ../app/controllers/infra_networking_controller.rb:739 +#: ../app/helpers/application_helper/toolbar/container_projects_center.rb:15 ../app/helpers/application_helper/toolbar/cloud_volume_snapshot_center.rb:29 ../app/helpers/application_helper/toolbar/container_replicators_center.rb:15 ../app/helpers/application_helper/toolbar/orchestration_templates_center.rb:57 ../app/helpers/application_helper/toolbar/security_groups_center.rb:54 ../app/helpers/application_helper/toolbar/ems_physical_infras_center.rb:73 ../app/helpers/application_helper/toolbar/container_build_center.rb:29 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:67 ../app/helpers/application_helper/toolbar/cloud_object_store_containers_center.rb:41 ../app/helpers/application_helper/toolbar/cloud_subnet_center.rb:42 ../app/helpers/application_helper/toolbar/network_port_center.rb:13 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:72 ../app/helpers/application_helper/toolbar/container_replicator_center.rb:39 ../app/helpers/application_helper/toolbar/configuration_job_center.rb:30 ../app/helpers/application_helper/toolbar/cloud_subnets_center.rb:54 ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:34 ../app/helpers/application_helper/toolbar/ems_network_center.rb:53 ../app/helpers/application_helper/toolbar/cloud_volume_backups_center.rb:15 ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:15 ../app/helpers/application_helper/toolbar/cloud_object_store_container_center.rb:37 ../app/helpers/application_helper/toolbar/ems_physical_infra_center.rb:52 ../app/helpers/application_helper/toolbar/ems_block_storages_center.rb:52 ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:60 ../app/helpers/application_helper/toolbar/network_routers_center.rb:72 ../app/helpers/application_helper/toolbar/floating_ips_center.rb:55 ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:48 ../app/helpers/application_helper/toolbar/configuration_jobs_center.rb:34 ../app/helpers/application_helper/toolbar/resource_pools_center.rb:44 ../app/helpers/application_helper/toolbar/auth_key_pair_clouds_center.rb:15 ../app/helpers/application_helper/toolbar/configuration_script_center.rb:27 ../app/helpers/application_helper/toolbar/ems_container_center.rb:90 ../app/helpers/application_helper/toolbar/cloud_tenant_center.rb:33 ../app/helpers/application_helper/toolbar/middleware_datasources_center.rb:15 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:122 ../app/helpers/application_helper/toolbar/container_image_registry_center.rb:13 ../app/helpers/application_helper/toolbar/x_provider_foreman_foreman_configured_system_center.rb:31 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:107 ../app/helpers/application_helper/toolbar/ems_storage_center.rb:47 ../app/helpers/application_helper/toolbar/host_center.rb:85 ../app/helpers/application_helper/toolbar/orchestration_stack_center.rb:30 ../app/helpers/application_helper/toolbar/middleware_domain_center.rb:14 ../app/helpers/application_helper/toolbar/cloud_object_store_objects_center.rb:40 ../app/helpers/application_helper/toolbar/container_image_center.rb:31 ../app/helpers/application_helper/toolbar/container_image_registries_center.rb:15 ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:31 ../app/helpers/application_helper/toolbar/x_vm_center.rb:92 ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:60 ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:58 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:94 ../app/helpers/application_helper/toolbar/middleware_messagings_center.rb:16 ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:14 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:131 ../app/helpers/application_helper/toolbar/cloud_object_store_object_center.rb:36 ../app/helpers/application_helper/toolbar/network_ports_center.rb:15 ../app/helpers/application_helper/toolbar/container_node_center.rb:48 ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:41 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:107 ../app/helpers/application_helper/toolbar/vms_center.rb:87 ../app/helpers/application_helper/toolbar/container_project_center.rb:39 ../app/helpers/application_helper/toolbar/network_router_center.rb:61 ../app/helpers/application_helper/toolbar/infra_networkings_center.rb:15 ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:54 ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:60 ../app/helpers/application_helper/toolbar/load_balancers_center.rb:15 ../app/helpers/application_helper/toolbar/container_service_center.rb:30 ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:65 ../app/helpers/application_helper/toolbar/availability_zone_center.rb:13 ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:59 ../app/helpers/application_helper/toolbar/ems_containers_center.rb:66 ../app/helpers/application_helper/toolbar/availability_zones_center.rb:15 ../app/helpers/application_helper/toolbar/cloud_volume_backup_center.rb:13 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:86 ../app/helpers/application_helper/toolbar/container_images_center.rb:35 ../app/helpers/application_helper/toolbar/cloud_volumes_center.rb:70 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:75 ../app/helpers/application_helper/toolbar/container_services_center.rb:15 ../app/helpers/application_helper/toolbar/x_configuration_script_center.rb:27 ../app/helpers/application_helper/toolbar/cloud_volume_center.rb:82 ../app/helpers/application_helper/toolbar/container_group_center.rb:39 ../app/helpers/application_helper/toolbar/template_infras_center.rb:95 ../app/helpers/application_helper/toolbar/flavors_center.rb:15 ../app/helpers/application_helper/toolbar/security_group_center.rb:45 ../app/helpers/application_helper/toolbar/storages_center.rb:45 ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:52 ../app/helpers/application_helper/toolbar/servicetemplate_center.rb:50 ../app/helpers/application_helper/toolbar/configuration_scripts/policy_mixin.rb:13 ../app/helpers/application_helper/toolbar/service_center.rb:50 ../app/helpers/application_helper/toolbar/cloud_networks_center.rb:56 ../app/helpers/application_helper/toolbar/x_foreman_configured_system_center.rb:31 ../app/helpers/application_helper/toolbar/container_center.rb:38 ../app/helpers/application_helper/toolbar/service/policy_mixin.rb:16 ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:59 ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:52 ../app/helpers/application_helper/toolbar/load_balancer_center.rb:13 ../app/helpers/application_helper/toolbar/hosts_center.rb:126 ../app/helpers/application_helper/toolbar/middleware_server_center.rb:32 ../app/helpers/application_helper/toolbar/resource_pool_center.rb:35 ../app/helpers/application_helper/toolbar/cloud_network_center.rb:42 ../app/helpers/application_helper/toolbar/middleware_server_groups_center.rb:15 ../app/helpers/application_helper/toolbar/persistent_volume_center.rb:40 ../app/helpers/application_helper/toolbar/containers_center.rb:15 ../app/helpers/application_helper/toolbar/container_routes_center.rb:15 ../app/helpers/application_helper/toolbar/x_infra_networking_switch_center.rb:13 ../app/helpers/application_helper/toolbar/middleware_servers_center.rb:16 ../app/helpers/application_helper/toolbar/ems_networks_center.rb:68 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:73 ../app/helpers/application_helper/toolbar/container_template_center.rb:13 ../app/helpers/application_helper/toolbar/cloud_volume_snapshots_center.rb:15 ../app/helpers/application_helper/toolbar/storage_center.rb:40 ../app/helpers/application_helper/toolbar/container_nodes_center.rb:15 ../app/helpers/application_helper/toolbar/configured_system/automation_policy_mixin.rb:15 ../app/helpers/application_helper/toolbar/configured_system/policy_mixin.rb:14 ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:75 ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:16 ../app/helpers/application_helper/toolbar/floating_ip_center.rb:47 ../app/helpers/application_helper/toolbar/infra_networking_center.rb:13 ../app/helpers/application_helper/toolbar/container_route_center.rb:13 ../app/helpers/application_helper/toolbar/middleware_messaging_center.rb:33 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:62 ../app/helpers/application_helper/toolbar/flavor_center.rb:13 ../app/helpers/application_helper/toolbar/orchestration_template_center.rb:48 ../app/helpers/application_helper/toolbar/middleware_domains_center.rb:15 ../app/helpers/application_helper/toolbar/container_groups_center.rb:15 ../app/helpers/application_helper/toolbar/ems_storages_center.rb:52 ../app/helpers/application_helper/toolbar/auth_key_pair_cloud_center.rb:30 ../app/helpers/application_helper/toolbar/container_templates_center.rb:15 ../app/helpers/application_helper/toolbar/container_builds_center.rb:34 ../app/controllers/infra_networking_controller.rb:742 ../app/controllers/mixins/manager_controller_mixin.rb:302 msgid "Edit Tags" msgstr "" -#: ../app/controllers/service_controller.rb:228 ../app/controllers/container_controller.rb:202 -msgid "Edit Tags for %{model}" +#: ../app/controllers/vm_common.rb:1610 +msgid "Edit Tags for %{vm_or_template}" msgstr "" -#: ../app/controllers/vm_common.rb:1798 -msgid "Edit Tags for %{vm_or_template}" +#: ../app/controllers/container_controller.rb:184 +msgid "Edit Tags for Container" msgstr "" -#: ../app/controllers/storage_controller.rb:580 +#: ../app/controllers/storage_controller.rb:549 msgid "Edit Tags for Datastore" msgstr "" +#: ../app/controllers/service_controller.rb:269 +msgid "Edit Tags for Service" +msgstr "" + #: ../app/helpers/application_helper/toolbar/containers_center.rb:14 msgid "Edit Tags for selected Containers" msgstr "" @@ -8861,11 +9053,11 @@ msgstr "" msgid "Edit Tags for the selected Block Storage Managers" msgstr "" -#: ../app/helpers/application_helper/toolbar/cloud_networks_center.rb:54 +#: ../app/helpers/application_helper/toolbar/cloud_networks_center.rb:55 msgid "Edit Tags for the selected Cloud Networks" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:72 +#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:74 msgid "Edit Tags for the selected Cloud Providers" msgstr "" @@ -8881,15 +9073,15 @@ msgstr "" msgid "Edit Tags for the selected Flavors" msgstr "" -#: ../app/helpers/application_helper/toolbar/floating_ips_center.rb:14 +#: ../app/helpers/application_helper/toolbar/floating_ips_center.rb:54 msgid "Edit Tags for the selected Floating IPs" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:63 +#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:64 msgid "Edit Tags for the selected Host Aggregates" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:72 +#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:74 msgid "Edit Tags for the selected Infrastructure Providers" msgstr "" @@ -8913,7 +9105,7 @@ msgstr "" msgid "Edit Tags for the selected Network Providers" msgstr "" -#: ../app/helpers/application_helper/toolbar/network_routers_center.rb:54 +#: ../app/helpers/application_helper/toolbar/network_routers_center.rb:71 msgid "Edit Tags for the selected Network Routers" msgstr "" @@ -8925,11 +9117,15 @@ msgstr "" msgid "Edit Tags for the selected Orchestration Stacks" msgstr "" +#: ../app/helpers/application_helper/toolbar/ems_physical_infras_center.rb:72 +msgid "Edit Tags for the selected Physical Infrastructure Providers" +msgstr "" + #: ../app/helpers/application_helper/toolbar/resource_pools_center.rb:43 msgid "Edit Tags for the selected Resource Pools" msgstr "" -#: ../app/helpers/application_helper/toolbar/security_groups_center.rb:14 +#: ../app/helpers/application_helper/toolbar/security_groups_center.rb:53 msgid "Edit Tags for the selected Security Groups" msgstr "" @@ -8937,7 +9133,7 @@ msgstr "" msgid "Edit Tags for the selected Storage Managers" msgstr "" -#: ../app/helpers/application_helper/toolbar/container_images_center.rb:33 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:61 ../app/helpers/application_helper/toolbar/hosts_center.rb:123 +#: ../app/helpers/application_helper/toolbar/container_images_center.rb:34 ../app/helpers/application_helper/toolbar/hosts_center.rb:125 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:61 msgid "Edit Tags for the selected items" msgstr "" @@ -8949,11 +9145,11 @@ msgstr "" msgid "Edit Tags for these Container Templates" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:64 +#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:65 msgid "Edit Tags for these Containers Providers" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:58 +#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:59 msgid "Edit Tags for these Datawarehouse Providers" msgstr "" @@ -8973,7 +9169,7 @@ msgstr "" msgid "Edit Tags for these Middleware Domains" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:57 +#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:58 msgid "Edit Tags for these Middleware Providers" msgstr "" @@ -9021,7 +9217,7 @@ msgstr "" msgid "Edit Tags for this Cloud Network" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:58 +#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:59 msgid "Edit Tags for this Cloud Provider" msgstr "" @@ -9029,11 +9225,11 @@ msgstr "" msgid "Edit Tags for this Cloud Subnet" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_ansible_tower_configured_system_center.rb:13 ../app/helpers/application_helper/toolbar/configured_system/policy_mixin.rb:13 ../app/helpers/application_helper/toolbar/x_provider_foreman_foreman_configured_system_center.rb:30 ../app/helpers/application_helper/toolbar/x_provider_foreman_ansible_tower_configured_system_center.rb:13 ../app/helpers/application_helper/toolbar/x_foreman_configured_system_center.rb:30 +#: ../app/helpers/application_helper/toolbar/x_provider_foreman_foreman_configured_system_center.rb:30 ../app/helpers/application_helper/toolbar/x_foreman_configured_system_center.rb:30 ../app/helpers/application_helper/toolbar/configured_system/automation_policy_mixin.rb:14 ../app/helpers/application_helper/toolbar/configured_system/policy_mixin.rb:13 msgid "Edit Tags for this Configured System" msgstr "" -#: ../app/helpers/application_helper/toolbar/container_center.rb:36 +#: ../app/helpers/application_helper/toolbar/container_center.rb:37 msgid "Edit Tags for this Container" msgstr "" @@ -9045,11 +9241,11 @@ msgstr "" msgid "Edit Tags for this Container Template" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:80 +#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:89 msgid "Edit Tags for this Containers Provider" msgstr "" -#: ../app/helpers/application_helper/toolbar/storage_center.rb:36 +#: ../app/helpers/application_helper/toolbar/storage_center.rb:39 msgid "Edit Tags for this Datastore" msgstr "" @@ -9061,19 +9257,11 @@ msgstr "" msgid "Edit Tags for this Distributed Switch" msgstr "" -#: ../app/helpers/application_helper/toolbar/ontap_file_share_center.rb:27 -msgid "Edit Tags for this File Share" -msgstr "" - -#: ../app/helpers/application_helper/toolbar/ontap_storage_system_center.rb:27 -msgid "Edit Tags for this Filer" -msgstr "" - #: ../app/helpers/application_helper/toolbar/flavor_center.rb:12 msgid "Edit Tags for this Flavor" msgstr "" -#: ../app/helpers/application_helper/toolbar/floating_ip_center.rb:12 +#: ../app/helpers/application_helper/toolbar/floating_ip_center.rb:46 msgid "Edit Tags for this Floating IP" msgstr "" @@ -9081,7 +9269,7 @@ msgstr "" msgid "Edit Tags for this Host Aggregate" msgstr "" -#: ../app/helpers/application_helper/toolbar/container_image_center.rb:28 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:91 +#: ../app/helpers/application_helper/toolbar/container_image_center.rb:30 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:93 msgid "Edit Tags for this Image" msgstr "" @@ -9093,7 +9281,7 @@ msgstr "" msgid "Edit Tags for this Infrastructure Provider" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:104 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:69 +#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:71 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:106 msgid "Edit Tags for this Instance" msgstr "" @@ -9101,7 +9289,7 @@ msgstr "" msgid "Edit Tags for this Job" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_configuration_script_center.rb:26 ../app/helpers/application_helper/toolbar/configuration_script_center.rb:26 ../app/helpers/application_helper/toolbar/configuration_scripts/policy_mixin.rb:12 +#: ../app/helpers/application_helper/toolbar/configuration_script_center.rb:26 ../app/helpers/application_helper/toolbar/x_configuration_script_center.rb:26 ../app/helpers/application_helper/toolbar/configuration_scripts/policy_mixin.rb:12 msgid "Edit Tags for this Job Template" msgstr "" @@ -9109,10 +9297,6 @@ msgstr "" msgid "Edit Tags for this Load Balancer" msgstr "" -#: ../app/helpers/application_helper/toolbar/ontap_logical_disk_center.rb:12 -msgid "Edit Tags for this Logical Disk" -msgstr "" - #: ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:30 msgid "Edit Tags for this Middleware Datasource" msgstr "" @@ -9149,11 +9333,11 @@ msgstr "" msgid "Edit Tags for this Network Provider" msgstr "" -#: ../app/helpers/application_helper/toolbar/network_router_center.rb:42 +#: ../app/helpers/application_helper/toolbar/network_router_center.rb:60 msgid "Edit Tags for this Network Router" msgstr "" -#: ../app/helpers/application_helper/toolbar/container_node_center.rb:38 ../app/helpers/application_helper/toolbar/container_project_center.rb:38 +#: ../app/helpers/application_helper/toolbar/container_node_center.rb:47 ../app/helpers/application_helper/toolbar/container_project_center.rb:38 msgid "Edit Tags for this Node" msgstr "" @@ -9165,6 +9349,10 @@ msgstr "" msgid "Edit Tags for this Orchestration Template" msgstr "" +#: ../app/helpers/application_helper/toolbar/ems_physical_infra_center.rb:51 +msgid "Edit Tags for this Physical Infrastructure Provider" +msgstr "" + #: ../app/helpers/application_helper/toolbar/container_group_center.rb:38 msgid "Edit Tags for this Pod" msgstr "" @@ -9181,11 +9369,11 @@ msgstr "" msgid "Edit Tags for this Route" msgstr "" -#: ../app/helpers/application_helper/toolbar/security_group_center.rb:12 +#: ../app/helpers/application_helper/toolbar/security_group_center.rb:44 msgid "Edit Tags for this Security Group" msgstr "" -#: ../app/helpers/application_helper/toolbar/service_center.rb:49 ../app/helpers/application_helper/toolbar/container_projects_center.rb:14 ../app/helpers/application_helper/toolbar/container_service_center.rb:29 +#: ../app/helpers/application_helper/toolbar/container_projects_center.rb:14 ../app/helpers/application_helper/toolbar/container_service_center.rb:29 ../app/helpers/application_helper/toolbar/service_center.rb:49 msgid "Edit Tags for this Service" msgstr "" @@ -9193,19 +9381,19 @@ msgstr "" msgid "Edit Tags for this Storage Manager" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:66 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:164 ../app/helpers/application_helper/toolbar/miq_template_center.rb:67 ../app/helpers/application_helper/toolbar/miq_template_center.rb:177 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:66 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:167 msgid "Edit Tags for this Template" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:91 ../app/helpers/application_helper/toolbar/x_vm_center.rb:312 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:91 ../app/helpers/application_helper/toolbar/x_vm_center.rb:329 msgid "Edit Tags for this VM" msgstr "" -#: ../app/helpers/application_helper/toolbar/ontap_storage_volume_center.rb:12 ../app/helpers/application_helper/toolbar/persistent_volume_center.rb:39 +#: ../app/helpers/application_helper/toolbar/persistent_volume_center.rb:39 msgid "Edit Tags for this Volume" msgstr "" -#: ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:50 +#: ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:51 msgid "Edit Tags for this Volumes" msgstr "" @@ -9217,7 +9405,7 @@ msgstr "" msgid "Edit User Group Sequence" msgstr "" -#: ../app/controllers/vm_common.rb:889 +#: ../app/controllers/vm_common.rb:743 msgid "Edit VM '%{name}''" msgstr "" @@ -9225,7 +9413,7 @@ msgstr "" msgid "Edit Volume" msgstr "" -#: ../app/controllers/application_controller.rb:617 +#: ../app/controllers/application_controller.rb:620 msgid "Edit aborted! %{product} does not support the browser's back button or access from multiple tabs or windows of the same browser. Please close any duplicate sessions before proceeding." msgstr "" @@ -9233,11 +9421,11 @@ msgstr "" msgid "Edit assignments for this Alert Profile" msgstr "" -#: ../app/controllers/host_aggregate_controller.rb:265 +#: ../app/controllers/host_aggregate_controller.rb:254 msgid "Edit of %{model} \"%{name}\" failed: Task start failed: ID [%{id}]" msgstr "" -#: ../app/controllers/pxe_controller/pxe_servers.rb:46 ../app/controllers/pxe_controller/pxe_servers.rb:191 ../app/controllers/pxe_controller/pxe_servers.rb:242 ../app/controllers/pxe_controller/iso_datastores.rb:171 ../app/controllers/pxe_controller/pxe_image_types.rb:29 ../app/controllers/pxe_controller/pxe_customization_templates.rb:102 ../app/controllers/application_controller/buttons.rb:304 ../app/controllers/application_controller/buttons.rb:426 ../app/controllers/catalog_controller.rb:89 ../app/controllers/catalog_controller.rb:558 ../app/controllers/cloud_tenant_controller.rb:142 ../app/controllers/host_controller.rb:347 ../app/controllers/miq_policy_controller/policy_profiles.rb:13 ../app/controllers/miq_policy_controller/alert_profiles.rb:13 ../app/controllers/miq_policy_controller/conditions.rb:11 ../app/controllers/miq_policy_controller/alerts.rb:13 ../app/controllers/miq_policy_controller/miq_actions.rb:11 ../app/controllers/miq_policy_controller/policies.rb:11 ../app/controllers/miq_ae_class_controller.rb:571 ../app/controllers/miq_ae_class_controller.rb:974 ../app/controllers/miq_ae_class_controller.rb:1061 ../app/controllers/miq_ae_class_controller.rb:1101 ../app/controllers/ops_controller/ops_rbac.rb:111 ../app/controllers/ops_controller/settings/tags.rb:44 ../app/controllers/ops_controller/settings/schedules.rb:50 ../app/controllers/ops_controller/settings/ldap.rb:39 ../app/controllers/ops_controller/settings/ldap.rb:156 ../app/controllers/ops_controller/settings/analysis_profiles.rb:226 ../app/controllers/ops_controller/settings/zones.rb:9 ../app/controllers/ops_controller/settings/label_tag_mapping.rb:12 ../app/controllers/storage_manager_controller.rb:158 ../app/controllers/cloud_volume_controller.rb:320 ../app/controllers/miq_ae_customization_controller/dialogs.rb:194 ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:247 ../app/controllers/host_aggregate_controller.rb:253 ../app/controllers/vm_common.rb:919 ../app/controllers/vm_common.rb:923 ../app/controllers/mixins/ems_common_angular.rb:17 ../app/controllers/ems_common.rb:288 ../app/controllers/report_controller/schedules.rb:227 ../app/controllers/report_controller/widgets.rb:49 ../app/controllers/report_controller/reports/editor.rb:43 ../app/controllers/chargeback_controller.rb:105 ../app/controllers/configuration_controller.rb:398 +#: ../app/controllers/ems_common.rb:231 ../app/controllers/vm_common.rb:773 ../app/controllers/vm_common.rb:777 ../app/controllers/miq_ae_class_controller.rb:571 ../app/controllers/miq_ae_class_controller.rb:974 ../app/controllers/miq_ae_class_controller.rb:1061 ../app/controllers/miq_ae_class_controller.rb:1101 ../app/controllers/miq_policy_controller/alert_profiles.rb:13 ../app/controllers/miq_policy_controller/alerts.rb:13 ../app/controllers/miq_policy_controller/policy_profiles.rb:13 ../app/controllers/miq_policy_controller/miq_actions.rb:11 ../app/controllers/miq_policy_controller/conditions.rb:11 ../app/controllers/miq_policy_controller/policies.rb:11 ../app/controllers/host_aggregate_controller.rb:242 ../app/controllers/cloud_volume_controller.rb:372 ../app/controllers/catalog_controller.rb:89 ../app/controllers/catalog_controller.rb:565 ../app/controllers/chargeback_controller.rb:98 ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:236 ../app/controllers/miq_ae_customization_controller/dialogs.rb:184 ../app/controllers/configuration_controller.rb:381 ../app/controllers/pxe_controller/pxe_image_types.rb:29 ../app/controllers/pxe_controller/iso_datastores.rb:164 ../app/controllers/pxe_controller/pxe_customization_templates.rb:95 ../app/controllers/pxe_controller/pxe_servers.rb:46 ../app/controllers/pxe_controller/pxe_servers.rb:184 ../app/controllers/pxe_controller/pxe_servers.rb:235 ../app/controllers/storage_manager_controller.rb:159 ../app/controllers/host_controller.rb:299 ../app/controllers/report_controller/reports/editor.rb:43 ../app/controllers/report_controller/widgets.rb:49 ../app/controllers/report_controller/schedules.rb:227 ../app/controllers/application_controller/buttons.rb:304 ../app/controllers/application_controller/buttons.rb:426 ../app/controllers/mixins/ems_common_angular.rb:17 ../app/controllers/ops_controller/settings/zones.rb:9 ../app/controllers/ops_controller/settings/analysis_profiles.rb:217 ../app/controllers/ops_controller/settings/tags.rb:44 ../app/controllers/ops_controller/settings/label_tag_mapping.rb:12 ../app/controllers/ops_controller/settings/schedules.rb:44 ../app/controllers/ops_controller/settings/ldap.rb:32 ../app/controllers/ops_controller/settings/ldap.rb:149 ../app/controllers/ops_controller/ops_rbac.rb:111 msgid "Edit of %{model} \"%{name}\" was cancelled by the user" msgstr "" @@ -9249,22 +9437,26 @@ msgstr "" msgid "Edit of %{name} was cancelled by the user" msgstr "" -#: ../app/controllers/application_controller/buttons.rb:607 -msgid "Edit of '%{description}' Button" +#: ../app/controllers/mixins/manager_controller_mixin.rb:62 +msgid "Edit of %{provider} was cancelled by the user" msgstr "" -#: ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:47 -msgid "Edit of Arbitration Profile %s was cancelled by the user" +#: ../app/controllers/application_controller/buttons.rb:607 +msgid "Edit of '%{description}' Button" msgstr "" #: ../app/controllers/application_controller/buttons.rb:440 ../app/controllers/application_controller/buttons.rb:510 ../app/controllers/application_controller/buttons.rb:539 msgid "Edit of Button" msgstr "" -#: ../app/controllers/catalog_controller.rb:298 +#: ../app/controllers/catalog_controller.rb:301 msgid "Edit of Catalog Bundle \"%{name}\" was cancelled by the user" msgstr "" +#: ../app/assets/javascripts/controllers/catalog/catalog_item_form_controller.js:132 +msgid "Edit of Catalog Item %s was cancelled by the user" +msgstr "" + #: ../app/controllers/miq_ae_class_controller.rb:2267 msgid "Edit of Class Schema Sequence '%{name}'" msgstr "" @@ -9277,11 +9469,11 @@ msgstr "" msgid "Edit of Cloud Network \"%{name}\" was cancelled by the user" msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:203 -msgid "Edit of Configuration Manager %{provider} was cancelled by the user" +#: ../app/controllers/cloud_tenant_controller.rb:140 +msgid "Edit of Cloud Tenant \"%{name}\" was cancelled by the user" msgstr "" -#: ../app/controllers/ops_controller/settings/common.rb:597 +#: ../app/controllers/ops_controller/settings/common.rb:555 msgid "Edit of Customer Information was cancelled" msgstr "" @@ -9293,7 +9485,11 @@ msgstr "" msgid "Edit of Dashboard Sequence was cancelled by the user" msgstr "" -#: ../app/controllers/catalog_controller.rb:972 +#: ../app/controllers/floating_ip_controller.rb:196 +msgid "Edit of Floating IP \"%{name}\" was cancelled by the user" +msgstr "" + +#: ../app/controllers/catalog_controller.rb:985 msgid "Edit of Orchestration Template \"%{name}\" was cancelled by the user" msgstr "" @@ -9305,19 +9501,23 @@ msgstr "" msgid "Edit of Report Menu for role \"%{role}\" was cancelled by the user" msgstr "" -#: ../app/controllers/network_router_controller.rb:182 +#: ../app/controllers/network_router_controller.rb:186 msgid "Edit of Router \"%{name}\" was cancelled by the user" msgstr "" -#: ../app/controllers/service_controller.rb:92 +#: ../app/controllers/security_group_controller.rb:188 +msgid "Edit of Security Group \"%{name}\" was cancelled by the user" +msgstr "" + +#: ../app/controllers/service_controller.rb:85 msgid "Edit of Service \"%{name}\" was cancelled by the user" msgstr "" -#: ../app/controllers/cloud_subnet_controller.rb:175 +#: ../app/controllers/cloud_subnet_controller.rb:196 msgid "Edit of Subnet \"%{name}\" was cancelled by the user" msgstr "" -#: ../app/controllers/host_controller.rb:341 +#: ../app/controllers/host_controller.rb:293 msgid "Edit of credentials for selected %{models} was cancelled by the user" msgstr "" @@ -9337,7 +9537,7 @@ msgstr "" msgid "Edit selected Orchestration Template" msgstr "" -#: ../app/helpers/application_helper/toolbar/network_routers_center.rb:21 +#: ../app/helpers/application_helper/toolbar/network_routers_center.rb:22 msgid "Edit selected Router" msgstr "" @@ -9345,7 +9545,7 @@ msgstr "" msgid "Edit selected Schema" msgstr "" -#: ../app/helpers/application_helper/toolbar/time_profiles_center.rb:19 +#: ../app/helpers/application_helper/toolbar/time_profiles_center.rb:20 msgid "Edit selected Time Profile" msgstr "" @@ -9357,39 +9557,23 @@ msgstr "" msgid "Edit sequence of Class Schema" msgstr "" -#: ../app/helpers/application_helper/toolbar/ontap_file_shares_center.rb:14 -msgid "Edit tags for the selected File Shares" -msgstr "" - -#: ../app/helpers/application_helper/toolbar/orchestration_templates_center.rb:56 ../app/helpers/application_helper/toolbar/services_center.rb:52 ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:51 +#: ../app/helpers/application_helper/toolbar/orchestration_templates_center.rb:56 ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:53 ../app/helpers/application_helper/toolbar/service/policy_mixin.rb:15 msgid "Edit tags for the selected Items" msgstr "" -#: ../app/helpers/application_helper/toolbar/ontap_logical_disks_center.rb:14 -msgid "Edit tags for the selected Logical Disks" -msgstr "" - -#: ../app/helpers/application_helper/toolbar/ontap_storage_systems_center.rb:14 -msgid "Edit tags for the selected Systems" -msgstr "" - -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:94 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:85 +#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:85 ../app/helpers/application_helper/toolbar/template_infras_center.rb:94 msgid "Edit tags for the selected Templates" msgstr "" -#: ../app/helpers/application_helper/toolbar/ontap_storage_volumes_center.rb:14 -msgid "Edit tags for the selected Volumes" -msgstr "" - -#: ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:46 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:129 ../app/helpers/application_helper/toolbar/vms_center.rb:86 ../app/helpers/application_helper/toolbar/cloud_object_store_containers_center.rb:14 ../app/helpers/application_helper/toolbar/cloud_volume_snapshots_center.rb:14 ../app/helpers/application_helper/toolbar/auth_key_pair_clouds_center.rb:14 ../app/helpers/application_helper/toolbar/cloud_volume_backups_center.rb:14 ../app/helpers/application_helper/toolbar/cloud_volumes_center.rb:69 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:105 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:121 ../app/helpers/application_helper/toolbar/cloud_object_store_objects_center.rb:14 +#: ../app/helpers/application_helper/toolbar/cloud_object_store_containers_center.rb:40 ../app/helpers/application_helper/toolbar/cloud_volume_backups_center.rb:14 ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:47 ../app/helpers/application_helper/toolbar/auth_key_pair_clouds_center.rb:14 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:121 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:106 ../app/helpers/application_helper/toolbar/cloud_object_store_objects_center.rb:39 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:130 ../app/helpers/application_helper/toolbar/vms_center.rb:86 ../app/helpers/application_helper/toolbar/cloud_volumes_center.rb:69 ../app/helpers/application_helper/toolbar/cloud_volume_snapshots_center.rb:14 msgid "Edit tags for the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/cloud_object_store_object_center.rb:12 +#: ../app/helpers/application_helper/toolbar/cloud_object_store_object_center.rb:35 msgid "Edit tags for this Cloud Object" msgstr "" -#: ../app/helpers/application_helper/toolbar/cloud_object_store_container_center.rb:12 +#: ../app/helpers/application_helper/toolbar/cloud_object_store_container_center.rb:36 msgid "Edit tags for this Cloud Object Store" msgstr "" @@ -9413,11 +9597,11 @@ msgstr "" msgid "Edit tags for this Key Pair" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:78 +#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:85 msgid "Edit the Log Depot settings for the selected Server" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:126 +#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:127 msgid "Edit the Log Depot settings for the selected Zone" msgstr "" @@ -9437,7 +9621,7 @@ msgstr "" msgid "Edit the selected Chargeback Rate" msgstr "" -#: ../app/helpers/application_helper/toolbar/dialogs_center.rb:18 ../app/helpers/application_helper/toolbar/miq_dialogs_center.rb:17 +#: ../app/helpers/application_helper/toolbar/miq_dialogs_center.rb:18 ../app/helpers/application_helper/toolbar/dialogs_center.rb:18 msgid "Edit the selected Dialog" msgstr "" @@ -9457,7 +9641,7 @@ msgstr "" msgid "Edit the selected Schedule" msgstr "" -#: ../app/helpers/application_helper/toolbar/pxe_image_types_center.rb:18 +#: ../app/helpers/application_helper/toolbar/pxe_image_types_center.rb:19 msgid "Edit the selected System Image Type" msgstr "" @@ -9485,15 +9669,11 @@ msgstr "" msgid "Edit this Analysis Profile" msgstr "" -#: ../app/helpers/application_helper/toolbar/arbitration_profile_center.rb:12 -msgid "Edit this Arbitration Profile" -msgstr "" - -#: ../app/helpers/application_helper/toolbar/custom_button_center.rb:12 ../app/helpers/application_helper/toolbar/catalogitem_button_center.rb:12 +#: ../app/helpers/application_helper/toolbar/catalogitem_button_center.rb:12 ../app/helpers/application_helper/toolbar/custom_button_center.rb:12 msgid "Edit this Button" msgstr "" -#: ../app/helpers/application_helper/toolbar/custom_buttons_center.rb:12 ../app/helpers/application_helper/toolbar/catalogitem_buttons_center.rb:12 +#: ../app/helpers/application_helper/toolbar/catalogitem_buttons_center.rb:12 ../app/helpers/application_helper/toolbar/custom_buttons_center.rb:12 msgid "Edit this Button Group" msgstr "" @@ -9501,7 +9681,7 @@ msgstr "" msgid "Edit this Chargeback Rate" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_ae_fields_center.rb:12 ../app/helpers/application_helper/toolbar/miq_ae_methods_center.rb:12 ../app/helpers/application_helper/toolbar/miq_ae_instances_center.rb:12 ../app/helpers/application_helper/toolbar/miq_ae_class_center.rb:12 +#: ../app/helpers/application_helper/toolbar/miq_ae_fields_center.rb:12 ../app/helpers/application_helper/toolbar/miq_ae_instances_center.rb:12 ../app/helpers/application_helper/toolbar/miq_ae_class_center.rb:12 ../app/helpers/application_helper/toolbar/miq_ae_methods_center.rb:12 msgid "Edit this Class" msgstr "" @@ -9553,6 +9733,10 @@ msgstr "" msgid "Edit this Expression" msgstr "" +#: ../app/helpers/application_helper/toolbar/generic_object_definition.rb:22 +msgid "Edit this Generic Object Definition" +msgstr "" + #: ../app/helpers/application_helper/toolbar/miq_group_center.rb:12 msgid "Edit this Group" msgstr "" @@ -9565,11 +9749,11 @@ msgstr "" msgid "Edit this Image" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:31 +#: ../app/helpers/application_helper/toolbar/ems_physical_infra_center.rb:24 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:31 msgid "Edit this Infrastructure Provider" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:26 ../app/helpers/application_helper/toolbar/miq_ae_instance_center.rb:12 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:26 +#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:26 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:26 ../app/helpers/application_helper/toolbar/miq_ae_instance_center.rb:12 msgid "Edit this Instance" msgstr "" @@ -9625,7 +9809,7 @@ msgstr "" msgid "Edit this Policy's Event assignments" msgstr "" -#: ../app/helpers/application_helper/toolbar/inventory_group_center.rb:21 ../app/helpers/application_helper/toolbar/configuration_manager_provider_center.rb:21 +#: ../app/helpers/application_helper/toolbar/inventory_group_center.rb:21 ../app/helpers/application_helper/toolbar/automation_manager_provider_center.rb:22 ../app/helpers/application_helper/toolbar/configuration_manager_provider_center.rb:21 msgid "Edit this Provider" msgstr "" @@ -9645,7 +9829,7 @@ msgstr "" msgid "Edit this Router" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_schedule_center.rb:12 ../app/helpers/application_helper/toolbar/miq_report_schedule_center.rb:12 +#: ../app/helpers/application_helper/toolbar/miq_report_schedule_center.rb:12 ../app/helpers/application_helper/toolbar/miq_schedule_center.rb:12 msgid "Edit this Schedule" msgstr "" @@ -9653,6 +9837,10 @@ msgstr "" msgid "Edit this Scope" msgstr "" +#: ../app/helpers/application_helper/toolbar/security_group_center.rb:14 +msgid "Edit this Security Group" +msgstr "" + #: ../app/helpers/application_helper/toolbar/service_center.rb:13 msgid "Edit this Service" msgstr "" @@ -9665,7 +9853,7 @@ msgstr "" msgid "Edit this System Image Type" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:27 ../app/helpers/application_helper/toolbar/miq_template_center.rb:27 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:27 msgid "Edit this Template" msgstr "" @@ -9701,11 +9889,11 @@ msgstr "" msgid "Edit this item" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:453 +#: ../app/controllers/miq_ae_customization_controller.rb:467 msgid "Editing " msgstr "" -#: ../app/controllers/service_controller.rb:224 ../app/controllers/ops_controller.rb:542 ../app/controllers/ops_controller.rb:552 ../app/controllers/ops_controller.rb:569 ../app/controllers/ops_controller.rb:583 ../app/controllers/ops_controller.rb:594 ../app/controllers/ops_controller.rb:605 ../app/controllers/ops_controller.rb:648 ../app/controllers/container_controller.rb:197 ../app/controllers/catalog_controller.rb:1159 ../app/controllers/catalog_controller.rb:1316 ../app/controllers/miq_ae_class_controller.rb:545 ../app/controllers/miq_ae_class_controller.rb:675 ../app/controllers/miq_ae_class_controller.rb:713 ../app/controllers/miq_ae_class_controller.rb:756 ../app/controllers/miq_ae_class_controller.rb:2391 ../app/controllers/miq_ae_customization_controller.rb:382 ../app/controllers/miq_ae_customization_controller.rb:389 ../app/controllers/miq_ae_customization_controller.rb:410 ../app/controllers/miq_ae_customization_controller.rb:458 ../app/controllers/ops_controller/ops_rbac.rb:698 ../app/controllers/pxe_controller.rb:166 ../app/controllers/miq_policy_controller.rb:562 ../app/controllers/miq_policy_controller.rb:605 ../app/controllers/miq_policy_controller.rb:638 ../app/controllers/miq_policy_controller.rb:644 ../app/controllers/miq_policy_controller.rb:653 ../app/controllers/miq_policy_controller.rb:665 ../app/controllers/report_controller/menus.rb:670 ../app/controllers/report_controller.rb:698 ../app/controllers/report_controller.rb:704 ../app/controllers/report_controller.rb:715 ../app/controllers/report_controller.rb:730 ../app/controllers/report_controller.rb:842 +#: ../app/controllers/report_controller.rb:702 ../app/controllers/report_controller.rb:708 ../app/controllers/report_controller.rb:719 ../app/controllers/report_controller.rb:734 ../app/controllers/report_controller.rb:846 ../app/controllers/ops_controller.rb:581 ../app/controllers/ops_controller.rb:591 ../app/controllers/ops_controller.rb:608 ../app/controllers/ops_controller.rb:622 ../app/controllers/ops_controller.rb:633 ../app/controllers/ops_controller.rb:644 ../app/controllers/ops_controller.rb:687 ../app/controllers/pxe_controller.rb:165 ../app/controllers/miq_policy_controller.rb:562 ../app/controllers/miq_policy_controller.rb:605 ../app/controllers/miq_policy_controller.rb:638 ../app/controllers/miq_policy_controller.rb:644 ../app/controllers/miq_policy_controller.rb:653 ../app/controllers/miq_policy_controller.rb:665 ../app/controllers/miq_ae_class_controller.rb:545 ../app/controllers/miq_ae_class_controller.rb:675 ../app/controllers/miq_ae_class_controller.rb:713 ../app/controllers/miq_ae_class_controller.rb:756 ../app/controllers/miq_ae_class_controller.rb:2391 ../app/controllers/catalog_controller.rb:1172 ../app/controllers/catalog_controller.rb:1330 ../app/controllers/report_controller/menus.rb:670 ../app/controllers/miq_ae_customization_controller.rb:396 ../app/controllers/miq_ae_customization_controller.rb:403 ../app/controllers/miq_ae_customization_controller.rb:424 ../app/controllers/miq_ae_customization_controller.rb:472 ../app/controllers/ops_controller/ops_rbac.rb:698 msgid "Editing %{model} \"%{name}\"" msgstr "" @@ -9713,7 +9901,7 @@ msgstr "" msgid "Editing %{model} Condition \"%{name}\"" msgstr "" -#: ../app/controllers/catalog_controller.rb:2046 +#: ../app/controllers/catalog_controller.rb:2111 msgid "Editing %{model} Tags for \"%{name}\"" msgstr "" @@ -9721,31 +9909,31 @@ msgstr "" msgid "Editing %{model} for \"%{name}\"" msgstr "" -#: ../app/controllers/catalog_controller.rb:663 ../app/controllers/catalog_controller.rb:1014 +#: ../app/controllers/catalog_controller.rb:670 ../app/controllers/catalog_controller.rb:1027 msgid "Editing %{record_name}" msgstr "" -#: ../app/controllers/vm_common.rb:1727 +#: ../app/controllers/vm_common.rb:1535 msgid "Editing %{vm_or_template} \"%{name}\"" msgstr "" -#: ../app/controllers/catalog_controller.rb:1851 +#: ../app/controllers/catalog_controller.rb:1907 msgid "Editing Button \"%{name}\"" msgstr "" -#: ../app/controllers/catalog_controller.rb:1857 +#: ../app/controllers/catalog_controller.rb:1913 msgid "Editing Button Group \"%{name}\"" msgstr "" -#: ../app/controllers/catalog_controller.rb:1367 +#: ../app/controllers/catalog_controller.rb:1381 msgid "Editing Catalog Bundle \"%{name}\"" msgstr "" -#: ../app/controllers/report_controller.rb:685 +#: ../app/controllers/report_controller.rb:689 msgid "Editing Dashboard \"%{name}\"" msgstr "" -#: ../app/controllers/report_controller.rb:682 +#: ../app/controllers/report_controller.rb:686 msgid "Editing Dashboard sequence for \"%{name}\"" msgstr "" @@ -9753,7 +9941,7 @@ msgstr "" msgid "Editing Log Depot Settings for %{class}: %{display}" msgstr "" -#: ../app/controllers/ops_controller.rb:523 +#: ../app/controllers/ops_controller.rb:562 msgid "Editing Log Depot settings" msgstr "" @@ -9761,11 +9949,19 @@ msgstr "" msgid "Editing Sequence of User Groups" msgstr "" -#: ../app/controllers/ops_controller.rb:560 +#: ../app/controllers/service_controller.rb:265 +msgid "Editing Service \"%{name}\"" +msgstr "" + +#: ../app/controllers/ops_controller.rb:599 msgid "Editing tag mapping from label \"%{name}\"" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:324 +#: ../app/helpers/service_helper/textual_summary.rb:198 ../app/helpers/service_helper/textual_summary.rb:267 +msgid "Elapsed" +msgstr "" + +#: ../app/controllers/miq_ae_customization_controller.rb:338 msgid "Element" msgstr "" @@ -9773,23 +9969,19 @@ msgstr "" msgid "Element Information" msgstr "" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:693 +#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:683 msgid "Element Label is required" msgstr "" -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:31 ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:34 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:41 ../app/helpers/ontap_storage_system_helper/textual_summary.rb:31 -msgid "Element Name" -msgstr "" - -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:701 +#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:691 msgid "Element Name must be alphanumeric characters and underscores without spaces" msgstr "" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:705 +#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:695 msgid "Element Name must not be 'action' or 'controller'" msgstr "" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:709 +#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:699 msgid "Element Type is required" msgstr "" @@ -9805,7 +9997,7 @@ msgstr "" msgid "Email:" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:732 ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:56 ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:44 ../app/helpers/vm_cloud_helper/textual_summary.rb:251 +#: ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:44 ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:56 ../app/helpers/vm_cloud_helper/textual_summary.rb:262 ../app/helpers/vm_helper/textual_summary.rb:723 msgid "Enable" msgstr "" @@ -9813,14 +10005,6 @@ msgstr "" msgid "Enable CDN Channel" msgstr "" -#: ../app/views/ops/_settings_replication_tab.html.haml:401 -msgid "Enable Central Admin" -msgstr "" - -#: ../app/controllers/ops_controller/settings/common.rb:265 -msgid "Enable Central Admin has been successfully initiated" -msgstr "" - #: ../app/views/ops/_settings_cu_collection_tab.html.haml:53 msgid "Enable Collection by %{clusters}" msgstr "" @@ -9833,7 +10017,7 @@ msgstr "" msgid "Enable DHCP" msgstr "" -#: ../app/views/middleware_server/_deploy.html.haml:62 +#: ../app/views/middleware_shared/_deploy.html.haml:65 msgid "Enable Deployment" msgstr "" @@ -9845,7 +10029,7 @@ msgstr "" msgid "Enable Single Sign-On" msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:346 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:351 msgid "Enable event monitoring. Used to automatically resync state when changes are performed on VMware vCloud Director directly." msgstr "" @@ -9865,12 +10049,12 @@ msgstr "" msgid "Enable this Middleware Deployment" msgstr "" -#: ../app/helpers/middleware_datasource_helper/textual_summary.rb:31 ../app/helpers/host_helper/textual_summary.rb:193 ../app/helpers/host_helper/textual_summary.rb:197 ../app/views/miq_ae_class/_ns_list.html.haml:24 ../app/views/miq_ae_class/_ns_list.html.haml:143 ../app/views/report/_report_info.html.haml:253 +#: ../app/helpers/middleware_datasource_helper/textual_summary.rb:31 ../app/helpers/host_helper/textual_summary.rb:200 ../app/helpers/host_helper/textual_summary.rb:204 ../app/views/miq_ae_class/_ns_list.html.haml:24 ../app/views/miq_ae_class/_ns_list.html.haml:143 ../app/views/report/_report_info.html.haml:253 msgid "Enabled" msgstr "" -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:58 ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:41 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:65 -msgid "Enabled State" +#: ../app/views/cloud_volume/new.html.haml:205 +msgid "Encryption" msgstr "" #: ../app/views/ops/_diagnostics_cu_repair_tab.html.haml:59 @@ -9881,19 +10065,19 @@ msgstr "" msgid "End Date cannot be greater than Start Date" msgstr "" -#: ../app/views/security_group/_main.html.haml:20 +#: ../app/helpers/security_group_helper/textual_summary.rb:37 msgid "End Port" msgstr "" -#: ../app/views/ems_container/_main.html.haml:10 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:2 ../app/views/layouts/_multi_auth_credentials.html.haml:3 +#: ../app/helpers/ems_container_helper/textual_summary.rb:109 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:2 ../app/views/layouts/_multi_auth_credentials.html.haml:3 msgid "Endpoints" msgstr "" -#: ../app/helpers/container_project_helper/textual_summary.rb:22 ../app/views/ops/_tenant_quota_form.html.haml:22 +#: ../app/helpers/container_project_helper/textual_summary.rb:29 ../app/views/ops/_tenant_quota_form.html.haml:22 msgid "Enforced" msgstr "" -#: ../app/views/miq_ae_tools/_results_xml.html.haml:10 ../app/views/miq_ae_tools/_results_uri.html.haml:53 ../app/views/miq_ae_tools/_results_tree.html.haml:10 +#: ../app/views/miq_ae_tools/_results_uri.html.haml:53 ../app/views/miq_ae_tools/_results_xml.html.haml:10 ../app/views/miq_ae_tools/_results_tree.html.haml:10 msgid "Enter Automation Simulation options on the left and press Submit." msgstr "" @@ -9901,15 +10085,15 @@ msgstr "" msgid "Enter Datasource name" msgstr "" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:91 ../app/views/middleware_server/_add_jdbc_driver.html.haml:131 +#: ../app/views/middleware_server/_specify_driver.html.haml:79 ../app/views/middleware_server/_add_jdbc_driver.html.haml:131 msgid "Enter JDBC Driver Class" msgstr "" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:24 ../app/views/middleware_server/_add_jdbc_driver.html.haml:72 +#: ../app/views/middleware_server/_specify_driver.html.haml:14 ../app/views/middleware_server/_add_jdbc_driver.html.haml:72 msgid "Enter JDBC Driver name" msgstr "" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:57 ../app/views/middleware_server/_add_jdbc_driver.html.haml:101 +#: ../app/views/middleware_server/_specify_driver.html.haml:46 ../app/views/middleware_server/_add_jdbc_driver.html.haml:101 msgid "Enter JDBC Module name" msgstr "" @@ -9917,7 +10101,7 @@ msgstr "" msgid "Enter JNDI name" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:151 ../app/controllers/application_controller/ci_processing.rb:2526 +#: ../app/helpers/application_helper/toolbar/host_center.rb:156 ../app/controllers/application_controller/ci_processing.rb:2558 msgid "Enter Maintenance Mode" msgstr "" @@ -9929,19 +10113,19 @@ msgstr "" msgid "Enter Minor Version" msgstr "" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:81 +#: ../app/views/middleware_server/_add_datasource_step3.html.haml:80 msgid "Enter Password" msgstr "" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:98 +#: ../app/views/middleware_server/_add_datasource_step3.html.haml:96 msgid "Enter Security Domain" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:169 ../app/helpers/application_helper/toolbar/hosts_center.rb:180 +#: ../app/helpers/application_helper/toolbar/host_center.rb:174 ../app/helpers/application_helper/toolbar/hosts_center.rb:183 msgid "Enter Standby Mode" msgstr "" -#: ../app/assets/javascripts/miq_application.js:1559 +#: ../app/assets/javascripts/miq_application.js:1566 msgid "Enter Support Case:" msgstr "" @@ -9949,10 +10133,14 @@ msgstr "" msgid "Enter URL Manually" msgstr "" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:55 +#: ../app/views/middleware_server/_add_datasource_step3.html.haml:54 msgid "Enter Username" msgstr "" +#: ../app/views/miq_policy/_action_options.html.haml:666 ../app/views/miq_policy/_action_options.html.haml:671 ../app/views/miq_policy/_action_options.html.haml:685 +msgid "Enter a comma separated list of IP or DNS names" +msgstr "" + #: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:324 msgid "Enter a name or IP address" msgstr "" @@ -9981,7 +10169,7 @@ msgstr "" msgid "Entries" msgstr "" -#: ../app/views/catalog/_sandt_tree_show.html.haml:152 +#: ../app/views/catalog/_sandt_tree_show.html.haml:168 msgid "Entry Point" msgstr "" @@ -9989,27 +10177,31 @@ msgstr "" msgid "Entry Point (NS/Cls/Inst)" msgstr "" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:697 +#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:687 msgid "Entry Point must be given." msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:62 ../app/helpers/provider_foreman_helper.rb:143 ../app/views/provider_foreman/_main_configuration_profile.html.haml:9 ../app/views/provider_foreman/_main.html.haml:9 +#: ../app/helpers/provider_foreman_helper.rb:56 ../app/helpers/provider_foreman_helper.rb:62 ../app/helpers/provider_foreman_helper.rb:146 ../app/views/provider_foreman/_main_configuration_profile.html.haml:9 msgid "Environment" msgstr "" -#: ../app/views/container_image/_main.html.haml:37 ../app/views/container/_container_show.html.haml:24 +#: ../app/helpers/container_image_helper/textual_summary.rb:118 ../app/helpers/container_helper/textual_summary.rb:133 msgid "Environment variables" msgstr "" -#: ../app/helpers/ems_container_helper/textual_summary.rb:28 ../app/views/miq_task/_tasks_options.html.haml:120 +#: ../app/helpers/ems_container_helper/textual_summary.rb:31 ../app/views/miq_task/_tasks_options.html.haml:128 ../app/assets/javascripts/services/alerts_center_service.js:52 msgid "Error" msgstr "" -#: ../app/presenters/tree_node_builder.rb:513 +#: ../app/assets/javascripts/controllers/alerts/alerts_overview_controller.js:75 +msgid "Error Count" +msgstr "" + +#: ../app/presenters/tree_node/miq_report_result.rb:10 msgid "Error Generating Report" msgstr "" -#: ../app/presenters/tree_node_builder.rb:514 +#: ../app/presenters/tree_node/miq_report_result.rb:11 msgid "Error Generating Report for %{report_name}" msgstr "" @@ -10017,7 +10209,7 @@ msgstr "" msgid "Error building timeline %{error_message}" msgstr "" -#: ../app/controllers/application_controller/timelines.rb:232 ../app/controllers/miq_capacity_controller.rb:724 +#: ../app/controllers/miq_capacity_controller.rb:724 ../app/controllers/application_controller/timelines.rb:236 msgid "Error building timeline %{error_message}" msgstr "" @@ -10025,7 +10217,7 @@ msgstr "" msgid "Error details: %{message}" msgstr "" -#: ../app/controllers/vm_common.rb:954 +#: ../app/controllers/vm_common.rb:808 msgid "Error during '%{name} update': %{message}" msgstr "" @@ -10033,23 +10225,23 @@ msgstr "" msgid "Error during '%{record} copy': %{error_message}" msgstr "" -#: ../app/controllers/storage_manager_controller.rb:420 +#: ../app/controllers/storage_manager_controller.rb:423 msgid "Error during '%{task} ': %{message}" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1926 +#: ../app/controllers/application_controller/ci_processing.rb:1953 msgid "Error during '%{task}': %{error_message}" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1964 ../app/controllers/storage_manager_controller.rb:417 +#: ../app/controllers/storage_manager_controller.rb:420 ../app/controllers/application_controller/ci_processing.rb:1997 msgid "Error during '%{task}': %{message}" msgstr "" -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:264 +#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:255 msgid "Error during '%{title}': %{message}" msgstr "" -#: ../app/controllers/vm_common.rb:851 +#: ../app/controllers/vm_common.rb:705 msgid "Error during 'Add VM to service': %{message}" msgstr "" @@ -10065,15 +10257,15 @@ msgstr "" msgid "Error during 'C & U Gap Collection': %{message}" msgstr "" -#: ../app/controllers/catalog_controller.rb:576 +#: ../app/controllers/catalog_controller.rb:583 msgid "Error during 'Catalog Edit': %{error_message}" msgstr "" -#: ../app/controllers/ops_controller/diagnostics.rb:586 +#: ../app/controllers/ops_controller/diagnostics.rb:577 msgid "Error during 'Clear Connection Broker cache': %{message}" msgstr "" -#: ../app/controllers/vm_common.rb:605 +#: ../app/controllers/vm_common.rb:459 msgid "Error during 'Create Snapshot': %{message}" msgstr "" @@ -10085,19 +10277,19 @@ msgstr "" msgid "Error during 'LDAP Group Look Up': %{message}" msgstr "" -#: ../app/controllers/catalog_controller.rb:1051 ../app/controllers/orchestration_stack_controller.rb:255 +#: ../app/controllers/orchestration_stack_controller.rb:259 ../app/controllers/catalog_controller.rb:1064 msgid "Error during 'Orchestration Template Copy': %{error_message}" msgstr "" -#: ../app/controllers/catalog_controller.rb:721 +#: ../app/controllers/catalog_controller.rb:728 msgid "Error during 'Orchestration Template Deletion': %{error_message}" msgstr "" -#: ../app/controllers/catalog_controller.rb:998 +#: ../app/controllers/catalog_controller.rb:1011 msgid "Error during 'Orchestration Template Edit': %{error_message}" msgstr "" -#: ../app/controllers/catalog_controller.rb:1097 +#: ../app/controllers/catalog_controller.rb:1110 msgid "Error during 'Orchestration Template creation': %{error_message}" msgstr "" @@ -10113,11 +10305,11 @@ msgstr "" msgid "Error during 'Provisioning': %{error_message}" msgstr "" -#: ../app/controllers/chargeback_controller.rb:306 +#: ../app/controllers/chargeback_controller.rb:302 msgid "Error during 'Rate assignments': %{error_message}" msgstr "" -#: ../app/controllers/vm_common.rb:864 +#: ../app/controllers/vm_common.rb:718 msgid "Error during 'Remove VM from service': %{message}" msgstr "" @@ -10125,7 +10317,7 @@ msgstr "" msgid "Error during 'Reset/synchronization process': %{message}" msgstr "" -#: ../app/controllers/catalog_controller.rb:1271 +#: ../app/controllers/catalog_controller.rb:1285 msgid "Error during 'Resource Add': %{error_message}" msgstr "" @@ -10137,19 +10329,19 @@ msgstr "" msgid "Error during 'Save': %{message}" msgstr "" -#: ../app/controllers/service_controller.rb:101 +#: ../app/controllers/service_controller.rb:94 msgid "Error during 'Service Edit': %{message}" msgstr "" -#: ../app/controllers/application_controller.rb:382 +#: ../app/controllers/application_controller.rb:385 msgid "Error during 'Validate': %{error_message}" msgstr "" -#: ../app/controllers/ops_controller/diagnostics.rb:140 ../app/controllers/ops_controller/settings/schedules.rb:259 +#: ../app/controllers/ops_controller/diagnostics.rb:140 ../app/controllers/ops_controller/settings/schedules.rb:253 msgid "Error during 'Validate': %{message}" msgstr "" -#: ../app/controllers/application_controller/buttons.rb:489 ../app/controllers/miq_ae_class_controller.rb:1184 ../app/controllers/miq_ae_class_controller.rb:1222 +#: ../app/controllers/miq_ae_class_controller.rb:1184 ../app/controllers/miq_ae_class_controller.rb:1222 ../app/controllers/application_controller/buttons.rb:489 msgid "Error during 'add': %{error_message}" msgstr "" @@ -10157,7 +10349,7 @@ msgstr "" msgid "Error during 'add': %{field_name} %{error_name}" msgstr "" -#: ../app/controllers/miq_ae_class_controller.rb:641 ../app/controllers/ops_controller/settings/tags.rb:76 ../app/controllers/ops_controller/settings/label_tag_mapping.rb:153 +#: ../app/controllers/miq_ae_class_controller.rb:641 ../app/controllers/ops_controller/settings/tags.rb:76 ../app/controllers/ops_controller/settings/label_tag_mapping.rb:163 msgid "Error during 'add': %{message}" msgstr "" @@ -10173,11 +10365,11 @@ msgstr "" msgid "Error during 'save': %{error_message}" msgstr "" -#: ../app/controllers/miq_ae_class_controller.rb:1070 ../app/controllers/ops_controller/settings/label_tag_mapping.rb:171 +#: ../app/controllers/miq_ae_class_controller.rb:1070 ../app/controllers/ops_controller/settings/label_tag_mapping.rb:181 msgid "Error during 'save': %{message}" msgstr "" -#: ../app/controllers/ops_controller/settings/upload.rb:77 ../app/controllers/miq_ae_tools_controller.rb:287 ../app/controllers/report_controller.rb:75 +#: ../app/controllers/report_controller.rb:75 ../app/controllers/miq_ae_tools_controller.rb:287 ../app/controllers/ops_controller/settings/upload.rb:77 msgid "Error during 'upload': %{message}" msgstr "" @@ -10185,15 +10377,11 @@ msgstr "" msgid "Error during 'workers restart': %{message}" msgstr "" -#: ../app/assets/javascripts/services/post_service.js:40 -msgid "Error during Add: [%s - %s]" -msgstr "" - -#: ../app/controllers/ops_controller/settings/common.rb:693 +#: ../app/controllers/ops_controller/settings/common.rb:640 msgid "Error during Analysis Affinity save: %{message}" msgstr "" -#: ../app/controllers/catalog_controller.rb:1084 +#: ../app/controllers/catalog_controller.rb:1097 msgid "Error during Orchestration Template creation: new template content cannot be empty" msgstr "" @@ -10201,11 +10389,7 @@ msgstr "" msgid "Error during Orphaned Records delete for user %{id}: %{message}" msgstr "" -#: ../app/assets/javascripts/services/post_service.js:18 -msgid "Error during Save: [%s - %s]" -msgstr "" - -#: ../app/controllers/application_controller.rb:1399 +#: ../app/controllers/application_controller.rb:1406 msgid "Error during Saved Report delete from the %{product} Database" msgid_plural "Error during Saved Reports delete from the %{product} Database" msgstr[0] "" @@ -10223,7 +10407,7 @@ msgstr "" msgid "Error during export: %{error_message}" msgstr "" -#: ../app/controllers/ops_controller/settings/common.rb:212 ../app/controllers/ops_controller/settings/common.rb:221 +#: ../app/controllers/ops_controller/settings/common.rb:206 ../app/controllers/ops_controller/settings/common.rb:215 msgid "Error during replication configuration save: %{message}" msgstr "" @@ -10239,7 +10423,7 @@ msgstr "" msgid "Error during reset: Status [%{status}] Message [%{message}]" msgstr "" -#: ../app/controllers/ops_controller/settings/common.rb:377 +#: ../app/controllers/ops_controller/settings/common.rb:335 msgid "Error during sending test email: %{class_name}, %{error_message}" msgstr "" @@ -10247,15 +10431,15 @@ msgstr "" msgid "Error during upload: %{messages}" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:53 +#: ../app/controllers/miq_ae_customization_controller.rb:54 msgid "Error during upload: incorrect Dialog format, only service dialogs can be imported" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:55 +#: ../app/controllers/miq_ae_customization_controller.rb:56 msgid "Error during upload: one of the DialogField types is not supported" msgstr "" -#: ../app/controllers/ems_infra_controller.rb:154 +#: ../app/controllers/ems_infra_controller.rb:155 msgid "Error executing register and configure workflows: %{message}" msgstr "" @@ -10271,15 +10455,15 @@ msgstr "" msgid "Error on line %{line_num}: %{err_txt}" msgstr "" -#: ../app/assets/javascripts/miq_application.js:744 ../app/assets/javascripts/miq_application.js:1063 ../app/assets/javascripts/miq_application.js:1197 +#: ../app/assets/javascripts/miq_application.js:744 ../app/assets/javascripts/miq_application.js:1063 ../app/assets/javascripts/miq_application.js:1204 msgid "Error requesting data from server" msgstr "" -#: ../app/controllers/miq_request_controller.rb:321 +#: ../app/controllers/miq_request_controller.rb:318 msgid "Error retrieving LDAP info: %{error_message}" msgstr "" -#: ../app/controllers/ops_controller/settings/common.rb:228 +#: ../app/controllers/ops_controller/settings/common.rb:222 msgid "Error saving the excluded tables list: %{message}" msgstr "" @@ -10287,7 +10471,7 @@ msgstr "" msgid "Error text:" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:76 +#: ../app/controllers/ops_controller/settings/schedules.rb:70 msgid "Error when adding a new schedule: %{message}" msgstr "" @@ -10295,15 +10479,15 @@ msgstr "" msgid "Error when adding a new tenant: %{message}" msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:1201 +#: ../app/controllers/automation_manager_controller.rb:560 msgid "Error when creating Service Dialog: %{error_message}" msgstr "" -#: ../app/controllers/catalog_controller.rb:1131 +#: ../app/controllers/catalog_controller.rb:1144 msgid "Error when creating a Service Dialog from Orchestration Template: %{error_message}" msgstr "" -#: ../app/controllers/ops_controller/settings/common.rb:498 +#: ../app/controllers/ops_controller/settings/common.rb:456 msgid "Error when saving new server name: %{message}" msgstr "" @@ -10311,7 +10495,7 @@ msgstr "" msgid "Error when saving tenant quota: %{message}" msgstr "" -#: ../app/controllers/application_controller/performance.rb:1102 +#: ../app/controllers/application_controller/performance.rb:954 msgid "Error while generating report: %{error_message}" msgstr "" @@ -10327,7 +10511,7 @@ msgstr "" msgid "Error: Datastore import was not successful" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:77 +#: ../app/controllers/miq_ae_customization_controller.rb:78 msgid "Error: ImportFileUpload expired" msgstr "" @@ -10347,11 +10531,11 @@ msgstr "" msgid "Error: New password is the same as existing password" msgstr "" -#: ../app/helpers/application_helper.rb:1190 ../app/controllers/provider_foreman_controller.rb:399 ../app/controllers/storage_controller.rb:357 ../app/controllers/ops_controller/settings/analysis_profiles.rb:24 ../app/controllers/vm_common.rb:1051 ../app/controllers/mixins/vm_show_mixin.rb:100 ../app/controllers/infra_networking_controller.rb:170 ../app/controllers/report_controller/schedules.rb:6 ../app/controllers/chargeback_controller.rb:200 +#: ../app/helpers/application_helper.rb:1127 ../app/controllers/provider_foreman_controller.rb:240 ../app/controllers/vm_common.rb:904 ../app/controllers/automation_manager_controller.rb:207 ../app/controllers/chargeback_controller.rb:196 ../app/controllers/storage_controller.rb:328 ../app/controllers/infra_networking_controller.rb:171 ../app/controllers/report_controller/schedules.rb:6 ../app/controllers/mixins/vm_show_mixin.rb:100 ../app/controllers/ops_controller/settings/analysis_profiles.rb:15 msgid "Error: Record no longer exists in the database" msgstr "" -#: ../app/controllers/report_controller.rb:245 +#: ../app/controllers/report_controller.rb:249 msgid "Error: Widget import file upload expired" msgstr "" @@ -10363,11 +10547,11 @@ msgstr "" msgid "Error: import processing failed: %{message}" msgstr "" -#: ../app/controllers/report_controller.rb:230 +#: ../app/controllers/report_controller.rb:234 msgid "Error: the file uploaded contains no widgets" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:51 ../app/controllers/report_controller.rb:227 +#: ../app/controllers/report_controller.rb:231 ../app/controllers/miq_ae_customization_controller.rb:52 msgid "Error: the file uploaded is not of the supported format" msgstr "" @@ -10375,7 +10559,7 @@ msgstr "" msgid "Errors in Management Engine can be caused by:" msgstr "" -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:108 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:240 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:348 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:411 ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:56 ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:42 +#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:56 ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:42 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:108 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:240 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:348 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:411 msgid "Etcd" msgstr "" @@ -10391,31 +10575,31 @@ msgstr "" msgid "Evacuate Host" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:144 +#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:148 msgid "Evacuate Instance" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:553 +#: ../app/controllers/application_controller/ci_processing.rb:589 msgid "Evacuate Instance '%{name}'" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:164 +#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:166 msgid "Evacuate selected Instance" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:607 +#: ../app/controllers/application_controller/ci_processing.rb:644 msgid "Evacuating %{instance} \"%{name}\"" msgstr "" -#: ../app/controllers/vm_common.rb:1700 +#: ../app/controllers/vm_common.rb:1508 msgid "Evacuating %{model} \"%{name}\"" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:589 +#: ../app/controllers/application_controller/ci_processing.rb:625 msgid "Evacuation of %{model} \"%{name}\" was cancelled by the user" msgstr "" -#: ../app/views/miq_policy/_event_details.html.haml:30 +#: ../app/views/miq_policy/_event_details.html.haml:13 msgid "Event Group" msgstr "" @@ -10423,7 +10607,7 @@ msgstr "" msgid "Event Groups" msgstr "" -#: ../app/controllers/vm_common.rb:1622 ../app/views/ops/_ap_form.html.haml:76 ../app/views/ops/_ap_form.html.haml:89 +#: ../app/controllers/vm_common.rb:1430 ../app/views/ops/_ap_form.html.haml:76 ../app/views/ops/_ap_form.html.haml:89 msgid "Event Log" msgid_plural "Event Logs" msgstr[0] "" @@ -10437,7 +10621,7 @@ msgstr "" msgid "Event Log Items" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:673 ../app/helpers/vm_cloud_helper/textual_summary.rb:240 ../app/controllers/application_controller.rb:256 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:251 ../app/helpers/vm_helper/textual_summary.rb:712 ../app/controllers/application_controller.rb:259 msgid "Event Logs" msgstr "" @@ -10449,11 +10633,11 @@ msgstr "" msgid "Event Name" msgstr "" -#: ../app/views/miq_policy/_policy_details.html.haml:286 ../app/views/miq_policy/_rsop_form.html.haml:15 +#: ../app/views/miq_policy/_rsop_form.html.haml:15 ../app/views/miq_policy/_policy_details.html.haml:286 msgid "Event Selection" msgstr "" -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:674 +#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:665 msgid "Event log name is required" msgstr "" @@ -10473,15 +10657,15 @@ msgstr "" msgid "Event:" msgstr "" -#: ../app/controllers/miq_policy_controller.rb:1104 ../app/views/miq_policy/_policy_details.html.haml:303 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:27 ../app/assets/javascripts/services/event_notifications_service.js:54 +#: ../app/controllers/miq_policy_controller.rb:1107 ../app/views/miq_policy/_policy_details.html.haml:303 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:29 ../app/assets/javascripts/services/event_notifications_service.js:54 msgid "Events" msgstr "" -#: ../app/presenters/tree_builder_pxe_customization_templates.rb:28 ../app/presenters/tree_builder_pxe_customization_templates.rb:30 ../app/controllers/pxe_controller/pxe_customization_templates.rb:263 +#: ../app/presenters/tree_builder_pxe_customization_templates.rb:30 ../app/presenters/tree_builder_pxe_customization_templates.rb:32 ../app/controllers/pxe_controller/pxe_customization_templates.rb:253 msgid "Examples (read only)" msgstr "" -#: ../app/views/ops/_settings_replication_tab.html.haml:473 +#: ../app/views/ops/_settings_replication_tab.html.haml:370 msgid "Excluded Tables" msgstr "" @@ -10489,31 +10673,39 @@ msgstr "" msgid "Execute Methods" msgstr "" -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:53 ../app/helpers/configuration_helper/configuration_view_helper.rb:58 ../app/helpers/application_helper/toolbar/compare_center.rb:39 ../app/helpers/application_helper/toolbar/drift_center.rb:39 +#: ../app/views/middleware_server/_add_datasource_step2.html.haml:20 +msgid "Existing Driver" +msgstr "" + +#: ../app/views/middleware_server/_existing_driver.html.haml:5 +msgid "Existing JDBC Driver:" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/drift_center.rb:39 ../app/helpers/application_helper/toolbar/compare_center.rb:39 ../app/helpers/configuration_helper/configuration_view_helper.rb:55 ../app/helpers/configuration_helper/configuration_view_helper.rb:60 msgid "Exists Mode" msgstr "" -#: ../app/helpers/container_helper/textual_summary.rb:42 +#: ../app/helpers/container_helper/textual_summary.rb:51 msgid "Exit Code" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:160 ../app/controllers/application_controller/ci_processing.rb:2527 +#: ../app/helpers/application_helper/toolbar/host_center.rb:165 ../app/controllers/application_controller/ci_processing.rb:2559 msgid "Exit Maintenance Mode" msgstr "" -#: ../app/views/miq_policy/_rsop_results.html.haml:86 ../app/views/configuration/_ui_3.html.haml:17 ../app/views/shared/views/_compliance_history.html.haml:5 ../app/views/vm_common/_policies.html.haml:15 ../app/assets/javascripts/miq_tree.js:414 +#: ../app/views/miq_policy/_rsop_results.html.haml:86 ../app/views/vm_common/_policies.html.haml:15 ../app/views/configuration/_ui_3.html.haml:17 ../app/views/shared/views/_compliance_history.html.haml:5 ../app/assets/javascripts/miq_tree.js:406 msgid "Expand All" msgstr "" -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:42 ../app/helpers/configuration_helper/configuration_view_helper.rb:47 ../app/helpers/application_helper/toolbar/drift_view.rb:6 ../app/helpers/application_helper/toolbar/compare_view.rb:6 +#: ../app/helpers/application_helper/toolbar/compare_view.rb:6 ../app/helpers/application_helper/toolbar/drift_view.rb:6 ../app/helpers/configuration_helper/configuration_view_helper.rb:44 ../app/helpers/configuration_helper/configuration_view_helper.rb:49 msgid "Expanded View" msgstr "" -#: ../app/presenters/menu/default_menu.rb:215 ../app/presenters/menu/default_menu.rb:229 ../app/controllers/miq_ae_class_controller.rb:73 +#: ../app/presenters/menu/default_menu.rb:213 ../app/presenters/menu/default_menu.rb:230 ../app/presenters/menu/default_menu.rb:250 ../app/controllers/miq_ae_class_controller.rb:73 msgid "Explorer" msgstr "" -#: ../app/views/miq_policy/_export.html.haml:84 ../app/views/miq_policy/_export.html.haml:149 ../app/views/miq_ae_customization/_dialog_import_export.html.haml:100 ../app/views/miq_ae_customization/_dialog_import_export.html.haml:106 ../app/views/miq_ae_tools/_import_export.html.haml:138 ../app/views/report/_export_widgets.html.haml:112 ../app/views/report/_export_widgets.html.haml:139 ../app/views/report/_export_custom_reports.html.haml:63 ../app/views/layouts/_x_edit_buttons.html.haml:63 ../app/views/layouts/_x_edit_buttons.html.haml:201 +#: ../app/views/miq_policy/_export.html.haml:84 ../app/views/miq_policy/_export.html.haml:149 ../app/views/report/_export_widgets.html.haml:112 ../app/views/report/_export_widgets.html.haml:139 ../app/views/report/_export_custom_reports.html.haml:63 ../app/views/layouts/_x_edit_buttons.html.haml:63 ../app/views/layouts/_x_edit_buttons.html.haml:201 ../app/views/miq_ae_customization/_dialog_import_export.html.haml:100 ../app/views/miq_ae_customization/_dialog_import_export.html.haml:106 ../app/views/miq_ae_tools/_import_export.html.haml:138 msgid "Export" msgstr "" @@ -10537,15 +10729,15 @@ msgstr "" msgid "Export:" msgstr "" -#: ../app/helpers/container_image_helper/textual_summary.rb:84 +#: ../app/helpers/container_image_helper/textual_summary.rb:98 msgid "Exposed Ports" msgstr "" -#: ../app/views/miq_policy/_condition_details.html.haml:70 ../app/views/miq_policy/_alert_details.html.haml:128 ../app/views/miq_policy/_alert_details.html.haml:239 ../app/views/miq_policy/_policy_details.html.haml:268 +#: ../app/presenters/tree_builder_policy_simulation_results.rb:112 ../app/presenters/tree_builder_policy_simulation.rb:121 ../app/views/miq_policy/_alert_details.html.haml:128 ../app/views/miq_policy/_alert_details.html.haml:239 ../app/views/miq_policy/_policy_details.html.haml:268 ../app/views/miq_policy/_condition_details.html.haml:70 msgid "Expression" msgstr "" -#: ../app/views/miq_policy/_form_expression.html.haml:3 ../app/views/miq_policy/_alert_details.html.haml:215 +#: ../app/views/miq_policy/_alert_details.html.haml:215 ../app/views/miq_policy/_form_expression.html.haml:3 msgid "Expression (Choose an element of the expression to edit)" msgstr "" @@ -10557,15 +10749,7 @@ msgstr "" msgid "Expression (Press the \"Edit\" button to edit the expression)" msgstr "" -#: ../app/presenters/tree_builder_policy_simulation.rb:121 -msgid "Expression: " -msgstr "" - -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:87 ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:66 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:94 -msgid "Extent Status" -msgstr "" - -#: ../app/views/report/_widget_show.html.haml:164 ../app/views/report/_widget_form_rss.html.haml:20 +#: ../app/views/report/_widget_form_rss.html.haml:20 ../app/views/report/_widget_show.html.haml:164 msgid "External" msgstr "" @@ -10581,11 +10765,19 @@ msgstr "" msgid "External Authentication (httpd) Settings" msgstr "" -#: ../app/controllers/ops_controller/diagnostics.rb:946 +#: ../app/controllers/ops_controller/diagnostics.rb:936 msgid "External Database" msgstr "" -#: ../app/views/report/_widget_show.html.haml:204 ../app/views/report/_widget_form_rss.html.haml:59 +#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:72 ../app/helpers/application_helper/toolbar/container_node_center.rb:30 +msgid "External Logging" +msgstr "" + +#: ../app/views/floating_ip/new.html.haml:37 +msgid "External Network" +msgstr "" + +#: ../app/views/report/_widget_form_rss.html.haml:59 ../app/views/report/_widget_show.html.haml:204 msgid "External RSS Feed/URL" msgstr "" @@ -10593,7 +10785,7 @@ msgstr "" msgid "External Router" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:27 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:34 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:34 ../app/helpers/application_helper/toolbar/x_vm_center.rb:27 msgid "Extract Running Processes" msgstr "" @@ -10613,11 +10805,11 @@ msgstr "" msgid "Extract Running Processes for this VM?" msgstr "" -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:143 ../app/helpers/container_group_helper/textual_summary.rb:49 +#: ../app/helpers/container_group_helper/textual_summary.rb:59 ../app/helpers/persistent_volume_helper/textual_summary.rb:151 msgid "FS Type" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:747 ../app/helpers/vm_cloud_helper/textual_summary.rb:266 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:277 ../app/helpers/vm_helper/textual_summary.rb:738 msgid "Fail Open" msgstr "" @@ -10625,7 +10817,7 @@ msgstr "" msgid "Failed" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:59 ../app/helpers/host_helper/textual_summary.rb:86 +#: ../app/helpers/host_helper/textual_summary.rb:93 ../app/helpers/ems_cluster_helper/textual_summary.rb:70 msgid "Failed (%{number})" msgstr "" @@ -10633,7 +10825,7 @@ msgstr "" msgid "Failed Events" msgstr "" -#: ../app/controllers/host_controller.rb:200 +#: ../app/controllers/host_controller.rb:152 msgid "Failed system services of %{name}" msgstr "" @@ -10641,7 +10833,7 @@ msgstr "" msgid "Failed to deploy %{name}. Error:" msgstr "" -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:188 ../app/views/catalog/_ot_tree_show.html.haml:42 ../app/views/catalog/_ot_tree_show.html.haml:55 ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:37 ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:40 ../app/views/report/_show_schedule.html.haml:35 +#: ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:37 ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:40 ../app/views/report/_show_schedule.html.haml:35 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:188 ../app/views/catalog/_ot_tree_show.html.haml:42 ../app/views/catalog/_ot_tree_show.html.haml:55 msgid "False" msgstr "" @@ -10653,11 +10845,11 @@ msgstr "" msgid "Fetch settings from a schedule" msgstr "" -#: ../app/helpers/ui_constants.rb:531 ../app/views/layouts/exp_atom/_editor.html.haml:66 ../app/views/layouts/exp_atom/_editor.html.haml:69 +#: ../app/helpers/ui_constants.rb:498 ../app/views/layouts/exp_atom/_editor.html.haml:63 ../app/views/layouts/exp_atom/_editor.html.haml:66 msgid "Field" msgstr "" -#: ../app/controllers/application_controller/filter.rb:782 ../app/controllers/application_controller/filter.rb:803 +#: ../app/controllers/application_controller/filter.rb:780 ../app/controllers/application_controller/filter.rb:801 msgid "Field Value Error: %{msg}" msgstr "" @@ -10665,11 +10857,11 @@ msgstr "" msgid "Fields" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:798 +#: ../app/controllers/report_controller/reports/editor.rb:806 msgid "Fields not added: Adding the selected %{count} fields will exceed the maximum of %{max} fields" msgstr "" -#: ../app/views/ops/_ap_form.html.haml:73 ../app/views/ops/_ap_form.html.haml:83 ../app/views/ops/_settings_import_tab.html.haml:42 +#: ../app/views/ops/_settings_import_tab.html.haml:42 ../app/views/ops/_ap_form.html.haml:73 ../app/views/ops/_ap_form.html.haml:83 msgid "File" msgstr "" @@ -10677,7 +10869,7 @@ msgstr "" msgid "File Entry" msgstr "" -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:582 +#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:573 msgid "File Entry is required" msgstr "" @@ -10685,35 +10877,35 @@ msgstr "" msgid "File Items" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:553 ../app/helpers/vm_cloud_helper/textual_summary.rb:197 ../app/controllers/vm_common.rb:496 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:208 ../app/helpers/vm_helper/textual_summary.rb:592 ../app/controllers/vm_common.rb:350 msgid "File System Drivers" msgstr "" -#: ../app/helpers/pxe_helper/textual_summary.rb:40 ../app/views/pxe/_pxe_server_details.html.haml:33 ../app/views/pxe/_pxe_form.html.haml:156 +#: ../app/helpers/pxe_helper/textual_summary.rb:40 ../app/views/pxe/_pxe_form.html.haml:156 msgid "Filename" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:459 ../app/helpers/textual_mixins/textual_filesystems.rb:4 ../app/controllers/host_controller.rb:160 ../app/controllers/vm_common.rb:501 ../app/views/layouts/listnav/_host.html.haml:230 +#: ../app/helpers/host_helper/textual_summary.rb:422 ../app/helpers/textual_mixins/textual_filesystems.rb:4 ../app/controllers/vm_common.rb:355 ../app/controllers/host_controller.rb:112 ../app/views/layouts/listnav/_host.html.haml:199 msgid "Files" msgstr "" -#: ../app/controllers/vm_common.rb:1626 +#: ../app/controllers/vm_common.rb:1434 msgid "Filesystem" msgid_plural "Filesystems" msgstr[0] "" msgstr[1] "" -#: ../app/controllers/vm_common.rb:1624 +#: ../app/controllers/vm_common.rb:1432 msgid "Filesystem Driver" msgid_plural "Filesystem Drivers" msgstr[0] "" msgstr[1] "" -#: ../app/controllers/report_controller/reports/editor.rb:316 ../app/controllers/report_controller/reports/editor.rb:323 ../app/controllers/report_controller/reports/editor.rb:332 ../app/views/miq_capacity/_planning_options.html.haml:296 ../app/views/ops/_schedule_form_filter.html.haml:14 ../app/views/ops/_schedule_show.html.haml:55 ../app/views/report/_widget_form_report.html.haml:15 ../app/views/report/_widget_form_chart.html.haml:15 ../app/views/report/_schedule_form_filter.html.haml:16 ../app/views/report/_schedule_form_filter.html.haml:81 ../app/views/report/_widget_show.html.haml:147 +#: ../app/controllers/report_controller/reports/editor.rb:321 ../app/controllers/report_controller/reports/editor.rb:328 ../app/controllers/report_controller/reports/editor.rb:337 ../app/views/miq_capacity/_planning_options.html.haml:296 ../app/views/ops/_schedule_form_filter.html.haml:14 ../app/views/ops/_schedule_show.html.haml:55 ../app/views/report/_widget_form_chart.html.haml:15 ../app/views/report/_schedule_form_filter.html.haml:16 ../app/views/report/_schedule_form_filter.html.haml:81 ../app/views/report/_widget_form_report.html.haml:15 ../app/views/report/_widget_show.html.haml:147 msgid "Filter" msgstr "" -#: ../app/views/miq_request/_prov_options.html.haml:8 ../app/views/miq_task/_tasks_options.html.haml:6 +#: ../app/views/miq_task/_tasks_options.html.haml:6 ../app/views/miq_request/_prov_options.html.haml:8 msgid "Filter By" msgstr "" @@ -10721,83 +10913,119 @@ msgstr "" msgid "Filter Message" msgstr "" -#: ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:89 +#: ../app/assets/javascripts/controllers/live_metrics/util/metrics-utils-factory.js:31 msgid "Filter by %s..." msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:447 +#: ../app/assets/javascripts/services/alerts_center_service.js:113 +msgid "Filter by Acknowledged" +msgstr "" + +#: ../app/assets/javascripts/services/alerts_center_service.js:82 +msgid "Filter by Host Name" +msgstr "" + +#: ../app/assets/javascripts/services/alerts_center_service.js:101 +msgid "Filter by Message Text" +msgstr "" + +#: ../app/assets/javascripts/controllers/alerts/alerts_overview_controller.js:55 +msgid "Filter by Name" +msgstr "" + +#: ../app/assets/javascripts/services/alerts_center_service.js:107 +msgid "Filter by Owner" +msgstr "" + +#: ../app/assets/javascripts/services/alerts_center_service.js:88 +msgid "Filter by Provider Name" +msgstr "" + +#: ../app/assets/javascripts/services/alerts_center_service.js:94 +msgid "Filter by Provider Type" +msgstr "" + +#: ../app/assets/javascripts/services/alerts_center_service.js:75 ../app/assets/javascripts/controllers/alerts/alerts_overview_controller.js:48 +msgid "Filter by Severity" +msgstr "" + +#: ../app/assets/javascripts/controllers/alerts/alerts_overview_controller.js:61 +msgid "Filter by Type" +msgstr "" + +#: ../app/controllers/ops_controller/settings/schedules.rb:442 msgid "Filter must be selected" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1713 +#: ../app/controllers/report_controller/reports/editor.rb:1728 msgid "Filter tab is not available until Trending Target Limit has been configured" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1710 +#: ../app/controllers/report_controller/reports/editor.rb:1725 msgid "Filter tab is not available until Trending for field has been selected" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1719 +#: ../app/controllers/report_controller/reports/editor.rb:1734 msgid "Filter tab is not available until at least 1 field has been selected" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:451 +#: ../app/controllers/ops_controller/settings/schedules.rb:446 msgid "Filter value must be selected" msgstr "" -#: ../app/presenters/tree_node_builder.rb:154 +#: ../app/presenters/tree_node/miq_search.rb:4 msgid "Filter: %{filter_description}" msgstr "" -#: ../app/controllers/container_controller.rb:154 ../app/views/configuration/_ui_3.html.haml:10 ../app/views/layouts/listnav/_show_list.html.haml:11 +#: ../app/controllers/container_controller.rb:113 ../app/views/configuration/_ui_3.html.haml:10 ../app/views/layouts/listnav/_show_list.html.haml:11 msgid "Filters" msgstr "" -#: ../app/helpers/ui_constants.rb:529 +#: ../app/helpers/ui_constants.rb:496 msgid "Find" msgstr "" -#: ../app/controllers/application_controller/filter.rb:860 +#: ../app/controllers/application_controller/filter.rb:858 msgid "Find Value Error: %{msg}" msgstr "" -#: ../app/views/chargeback/_cb_rate_edit_table.html.haml:27 ../app/views/chargeback/_cb_rate_show.html.haml:53 ../app/views/middleware_server/_add_datasource_step3.html.haml:123 +#: ../app/views/chargeback/_cb_rate_show.html.haml:53 ../app/views/chargeback/_cb_rate_edit_table.html.haml:27 ../app/views/middleware_server/_add_datasource_step3.html.haml:193 msgid "Finish" msgstr "" -#: ../app/helpers/ui_constants.rb:414 ../app/helpers/ui_constants.rb:419 +#: ../app/helpers/ui_constants.rb:411 ../app/helpers/ui_constants.rb:416 ../app/helpers/service_helper/textual_summary.rb:194 ../app/helpers/service_helper/textual_summary.rb:267 msgid "Finished" msgstr "" -#: ../app/helpers/container_helper/textual_summary.rb:38 +#: ../app/helpers/container_helper/textual_summary.rb:47 msgid "Finished At" msgstr "" -#: ../app/controllers/miq_task_controller.rb:116 +#: ../app/controllers/miq_task_controller.rb:96 msgid "Finished Task cannot be cancelled" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:409 ../app/controllers/host_controller.rb:237 ../app/views/security_group/_main.html.haml:20 ../app/views/layouts/listnav/_host.html.haml:207 +#: ../app/helpers/security_group_helper/textual_summary.rb:35 ../app/helpers/host_helper/textual_summary.rb:372 ../app/controllers/host_controller.rb:189 ../app/views/layouts/listnav/_host.html.haml:176 msgid "Firewall Rules" msgstr "" -#: ../app/views/report/_form_tl_settings.html.haml:52 ../app/views/layouts/_pagingcontrols.html.haml:73 ../app/views/layouts/_pagingcontrols.html.haml:74 ../app/views/layouts/_pagingcontrols.html.haml:92 ../app/views/layouts/_pagingcontrols.html.haml:93 ../app/views/layouts/_pagingcontrols.html.haml:109 ../app/views/layouts/_pagingcontrols.html.haml:110 ../app/views/layouts/_x_pagingcontrols.html.haml:67 ../app/views/layouts/_x_pagingcontrols.html.haml:68 ../app/views/layouts/_saved_report_paging_bar.html.haml:28 ../app/views/layouts/_saved_report_paging_bar.html.haml:29 +#: ../app/views/report/_form_tl_settings.html.haml:52 ../app/views/layouts/_pagingcontrols.html.haml:73 ../app/views/layouts/_pagingcontrols.html.haml:74 ../app/views/layouts/_pagingcontrols.html.haml:92 ../app/views/layouts/_pagingcontrols.html.haml:93 ../app/views/layouts/_pagingcontrols.html.haml:109 ../app/views/layouts/_pagingcontrols.html.haml:110 ../app/views/layouts/_paging_bar.html.haml:11 ../app/views/layouts/_paging_bar.html.haml:12 msgid "First" msgstr "" -#: ../app/views/report/_form_sort.html.haml:206 +#: ../app/views/report/_form_sort.html.haml:184 msgid "First %{number}" msgstr "" -#: ../app/helpers/chargeback_helper.rb:6 ../app/views/chargeback/_cb_rate_edit_table.html.haml:29 ../app/views/chargeback/_cb_rate_show.html.haml:55 +#: ../app/helpers/chargeback_helper.rb:6 ../app/views/chargeback/_cb_rate_show.html.haml:55 ../app/views/chargeback/_cb_rate_edit_table.html.haml:29 msgid "Fixed" msgstr "" -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:103 -msgid "Flavor" +#: ../app/views/floating_ip/new.html.haml:106 +msgid "Fixed IP Address" msgstr "" -#: ../app/presenters/menu/default_menu.rb:52 ../app/controllers/ems_common.rb:97 ../app/views/configuration/_ui_2.html.haml:175 +#: ../app/presenters/menu/default_menu.rb:53 ../app/views/configuration/_ui_2.html.haml:176 msgid "Flavors" msgstr "" @@ -10805,11 +11033,35 @@ msgstr "" msgid "Floating IP" msgstr "" -#: ../app/presenters/menu/default_menu.rb:143 ../app/helpers/ems_network_helper/textual_summary.rb:67 ../app/controllers/vm_common.rb:509 ../app/controllers/ems_common.rb:99 +#: ../app/controllers/floating_ip_controller.rb:82 +msgid "Floating IP \"%{name}\" created" +msgstr "" + +#: ../app/controllers/floating_ip_controller.rb:220 +msgid "Floating IP \"%{name}\" updated" +msgstr "" + +#: ../app/views/floating_ip/new.html.haml:89 +msgid "Floating IP Address (optional)" +msgstr "" + +#: ../app/controllers/floating_ip_controller.rb:66 +msgid "Floating IP creation failed: Task start failed: ID [%{id}]" +msgstr "" + +#: ../app/controllers/floating_ip_controller.rb:113 +msgid "Floating IP no longer exists." +msgstr "" + +#: ../app/controllers/floating_ip_controller.rb:203 +msgid "Floating IP update failed: Task start failed: ID [%{id}]" +msgstr "" + +#: ../app/presenters/menu/default_menu.rb:146 ../app/helpers/ems_network_helper/textual_summary.rb:74 ../app/controllers/vm_common.rb:363 msgid "Floating IPs" msgstr "" -#: ../app/views/network_topology/show.html.haml:90 +#: ../app/views/network_topology/show.html.haml:109 msgid "Floating Ips" msgstr "" @@ -10825,19 +11077,15 @@ msgstr "" msgid "Folder name is required" msgstr "" -#: ../app/presenters/tree_node_builder.rb:226 +#: ../app/presenters/tree_node/ems_folder.rb:10 msgid "Folder: %{folder_name}" msgstr "" -#: ../app/controllers/application_controller/tree_support.rb:189 -msgid "Folder: %{name}" -msgstr "" - -#: ../app/views/_ldap_domain_form.html.haml:135 ../app/views/ops/_ldap_domain_show.html.haml:177 ../app/views/ops/_settings_authentication_tab.html.haml:324 ../app/views/ops/_ldap_domain_form.html.haml:135 +#: ../app/views/ops/_ldap_domain_show.html.haml:177 ../app/views/ops/_ldap_domain_form.html.haml:135 ../app/views/ops/_settings_authentication_tab.html.haml:324 ../app/views/_ldap_domain_form.html.haml:135 msgid "Follow Referrals" msgstr "" -#: ../app/helpers/application_helper.rb:20 +#: ../app/helpers/application_helper.rb:31 msgid "For more information, visit the %{subject} documentation." msgstr "" @@ -10849,7 +11097,7 @@ msgstr "" msgid "Forgot your login or password? Look it up at" msgstr "" -#: ../app/controllers/application_controller.rb:1336 ../app/views/report/_form_formatting.html.haml:58 +#: ../app/controllers/application_controller.rb:1343 ../app/views/report/_form_formatting.html.haml:58 msgid "Format" msgstr "" @@ -10857,27 +11105,27 @@ msgstr "" msgid "Format on Summary Row" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:322 ../app/controllers/report_controller/reports/editor.rb:330 +#: ../app/controllers/report_controller/reports/editor.rb:327 ../app/controllers/report_controller/reports/editor.rb:335 msgid "Formatting" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1705 +#: ../app/controllers/report_controller/reports/editor.rb:1720 msgid "Formatting tab is not available until at least 1 field has been selected" msgstr "" -#: ../app/helpers/ops_helper/textual_summary.rb:96 +#: ../app/helpers/ops_helper/textual_summary.rb:106 msgid "Free Index Nodes" msgstr "" -#: ../app/helpers/storage_helper/textual_summary.rb:42 ../app/controllers/application_controller/miq_request_methods.rb:359 +#: ../app/helpers/storage_helper/textual_summary.rb:41 ../app/controllers/application_controller/miq_request_methods.rb:359 msgid "Free Space" msgstr "" -#: ../app/helpers/ops_helper/textual_summary.rb:76 +#: ../app/helpers/ops_helper/textual_summary.rb:86 msgid "Free Space on Volume" msgstr "" -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 +#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 msgid "Friday" msgstr "" @@ -10885,7 +11133,7 @@ msgstr "" msgid "From" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:663 ../app/helpers/vm_cloud_helper/textual_summary.rb:229 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:240 ../app/helpers/vm_helper/textual_summary.rb:702 msgid "From %{time} Ago" msgstr "" @@ -10901,27 +11149,23 @@ msgstr "" msgid "From E-mail" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:19 ../app/views/miq_policy/_action_details.html.haml:196 ../app/views/ops/_settings_server_tab.html.haml:532 +#: ../app/views/miq_policy/_action_options.html.haml:18 ../app/views/miq_policy/_action_details.html.haml:196 ../app/views/ops/_settings_server_tab.html.haml:496 msgid "From E-mail Address" msgstr "" -#: ../app/views/configuration/_ui_1.html.haml:60 +#: ../app/views/configuration/_ui_1.html.haml:59 msgid "Front (...1234)" msgstr "" -#: ../app/helpers/container_image_helper/textual_summary.rb:41 ../app/views/ops/_rbac_user_details.html.haml:26 +#: ../app/helpers/container_image_helper/textual_summary.rb:54 ../app/views/ops/_rbac_user_details.html.haml:25 msgid "Full Name" msgstr "" -#: ../app/views/vm_common/console_vmrc.html.haml:451 -msgid "Full Screen" -msgstr "" - -#: ../app/views/miq_capacity/_planning_options.html.haml:251 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:47 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:55 +#: ../app/views/miq_capacity/_planning_options.html.haml:251 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:47 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:73 msgid "GB" msgstr "" -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:61 ../app/helpers/container_group_helper/textual_summary.rb:34 +#: ../app/helpers/container_group_helper/textual_summary.rb:44 ../app/helpers/persistent_volume_helper/textual_summary.rb:67 msgid "GCE PD Resource" msgstr "" @@ -10929,13 +11173,13 @@ msgstr "" msgid "Gateway" msgstr "" -#: ../app/controllers/vm_common.rb:1656 ../app/helpers/vm_helper/textual_summary.rb:469 +#: ../app/controllers/vm_common.rb:1464 ../app/helpers/vm_helper/textual_summary.rb:508 msgid "Genealogy" msgid_plural "Genealogy" msgstr[0] "" msgstr[1] "" -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:5 ../app/views/configuration/_ui_2.html.haml:19 +#: ../app/views/configuration/_ui_2.html.haml:19 ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:5 msgid "General" msgstr "" @@ -10951,11 +11195,11 @@ msgstr "" msgid "Generate Widget content now" msgstr "" -#: ../app/presenters/tree_node_builder.rb:507 +#: ../app/presenters/tree_node/miq_report_result.rb:7 msgid "Generating Report" msgstr "" -#: ../app/presenters/tree_node_builder.rb:509 +#: ../app/presenters/tree_node/miq_report_result.rb:8 msgid "Generating Report for - %{report_name}" msgstr "" @@ -10963,15 +11207,23 @@ msgstr "" msgid "Generating utilization data..." msgstr "" -#: ../app/controllers/generic_object_controller.rb:11 +#: ../app/controllers/generic_object_controller.rb:10 msgid "Generic Object Definition created successfully" msgstr "" -#: ../app/presenters/menu/default_menu.rb:224 ../app/controllers/generic_object_controller.rb:51 ../app/views/generic_object/explorer.html.haml:9 +#: ../app/controllers/generic_object_controller.rb:26 +msgid "Generic Object Definition deleted" +msgstr "" + +#: ../app/controllers/generic_object_controller.rb:18 +msgid "Generic Object Definition saved successfully" +msgstr "" + +#: ../app/presenters/menu/default_menu.rb:245 ../app/controllers/generic_object_controller.rb:74 ../app/views/generic_object/explorer.html.haml:9 msgid "Generic Objects" msgstr "" -#: ../app/controllers/application_controller.rb:1244 +#: ../app/controllers/application_controller.rb:1251 msgid "Generic SCSI (%{location})" msgstr "" @@ -10979,7 +11231,7 @@ msgstr "" msgid "Generic Workers" msgstr "" -#: ../app/views/_ldap_domain_form.html.haml:120 ../app/views/ops/_ldap_domain_show.html.haml:161 ../app/views/ops/_settings_authentication_tab.html.haml:309 ../app/views/ops/_ldap_domain_form.html.haml:120 +#: ../app/views/ops/_ldap_domain_show.html.haml:161 ../app/views/ops/_ldap_domain_form.html.haml:120 ../app/views/ops/_settings_authentication_tab.html.haml:309 ../app/views/_ldap_domain_form.html.haml:120 msgid "Get Roles from Home Forest" msgstr "" @@ -10987,19 +11239,19 @@ msgstr "" msgid "Get User Groups from Amazon" msgstr "" -#: ../app/views/ops/_settings_authentication_tab.html.haml:501 +#: ../app/views/ops/_settings_authentication_tab.html.haml:503 msgid "Get User Groups from External Authentication (httpd)" msgstr "" -#: ../app/views/_ldap_domain_form.html.haml:105 ../app/views/ops/_ldap_domain_show.html.haml:145 ../app/views/ops/_settings_authentication_tab.html.haml:265 ../app/views/ops/_ldap_domain_form.html.haml:105 +#: ../app/views/ops/_ldap_domain_show.html.haml:145 ../app/views/ops/_ldap_domain_form.html.haml:105 ../app/views/ops/_settings_authentication_tab.html.haml:265 ../app/views/_ldap_domain_form.html.haml:105 msgid "Get User Groups from LDAP" msgstr "" -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:67 ../app/helpers/container_group_helper/textual_summary.rb:35 +#: ../app/helpers/container_group_helper/textual_summary.rb:45 ../app/helpers/persistent_volume_helper/textual_summary.rb:73 msgid "Git Repository" msgstr "" -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:73 ../app/helpers/container_group_helper/textual_summary.rb:36 +#: ../app/helpers/container_group_helper/textual_summary.rb:46 ../app/helpers/persistent_volume_helper/textual_summary.rb:79 msgid "Git Revision" msgstr "" @@ -11015,23 +11267,23 @@ msgstr "" msgid "GitHub" msgstr "" -#: ../app/views/configuration/_ui_1.html.haml:146 +#: ../app/views/configuration/_ui_1.html.haml:173 msgid "Global Default" msgstr "" -#: ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:33 ../app/presenters/tree_builder_storage.rb:20 ../app/presenters/tree_builder_vms_filter.rb:21 ../app/presenters/tree_builder_containers_filter.rb:24 ../app/controllers/ops_controller/settings/schedules.rb:649 ../app/controllers/ops_controller/settings/schedules.rb:659 ../app/controllers/ops_controller/settings/schedules.rb:668 ../app/controllers/ops_controller/settings/schedules.rb:683 ../app/controllers/ops_controller/settings/schedules.rb:692 +#: ../app/presenters/tree_builder_automation_manager_configured_systems.rb:31 ../app/presenters/tree_builder_storage.rb:23 ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:31 ../app/presenters/tree_builder_vms_filter.rb:24 ../app/presenters/tree_builder_containers_filter.rb:27 ../app/controllers/ops_controller/settings/schedules.rb:644 ../app/controllers/ops_controller/settings/schedules.rb:654 ../app/controllers/ops_controller/settings/schedules.rb:663 ../app/controllers/ops_controller/settings/schedules.rb:678 ../app/controllers/ops_controller/settings/schedules.rb:687 msgid "Global Filters" msgstr "" -#: ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:35 ../app/presenters/tree_builder_storage.rb:20 ../app/presenters/tree_builder_vms_filter.rb:21 ../app/presenters/tree_builder_containers_filter.rb:26 +#: ../app/presenters/tree_builder_automation_manager_configured_systems.rb:33 ../app/presenters/tree_builder_storage.rb:23 ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:33 ../app/presenters/tree_builder_vms_filter.rb:24 ../app/presenters/tree_builder_containers_filter.rb:29 msgid "Global Shared Filters" msgstr "" -#: ../app/controllers/configuration_controller.rb:299 +#: ../app/controllers/configuration_controller.rb:282 msgid "Global Time Profile cannot be edited" msgstr "" -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:72 +#: ../app/views/ems_infra/_show_dashboard.html.haml:72 msgid "Global Utilization" msgstr "" @@ -11039,7 +11291,7 @@ msgstr "" msgid "Global search:" msgstr "" -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:103 ../app/helpers/container_group_helper/textual_summary.rb:41 +#: ../app/helpers/container_group_helper/textual_summary.rb:51 ../app/helpers/persistent_volume_helper/textual_summary.rb:109 msgid "Glusterfs Endpoint Name" msgstr "" @@ -11047,6 +11299,10 @@ msgstr "" msgid "Go to my start page" msgstr "" +#: ../app/assets/javascripts/controllers/physical_infra_topology/physical_infra_topology_controller.js:113 +msgid "Go to summary page" +msgstr "" + #: ../app/helpers/application_helper/toolbar/x_history.rb:13 msgid "Go to this item" msgstr "" @@ -11087,21 +11343,25 @@ msgstr "" msgid "Green Text" msgstr "" -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:72 ../app/helpers/configuration_helper/configuration_view_helper.rb:78 ../app/helpers/configuration_helper/configuration_view_helper.rb:84 ../app/helpers/application_helper/toolbar/x_gtl_view.rb:6 ../app/helpers/application_helper/toolbar/gtl_view.rb:6 ../app/views/configuration/_ui_1.html.haml:114 +#: ../app/helpers/application_helper/toolbar/gtl_view.rb:6 ../app/helpers/application_helper/toolbar/x_gtl_view.rb:6 ../app/helpers/configuration_helper/configuration_view_helper.rb:84 ../app/helpers/configuration_helper/configuration_view_helper.rb:90 ../app/helpers/configuration_helper/configuration_view_helper.rb:96 ../app/views/configuration/_ui_1.html.haml:113 msgid "Grid View" msgstr "" -#: ../app/views/configuration/_ui_1.html.haml:20 +#: ../app/views/configuration/_ui_1.html.haml:19 msgid "Grid/Tile Icons" msgstr "" -#: ../app/controllers/vm_common.rb:1628 ../app/helpers/vm_helper/textual_summary.rb:215 ../app/views/chargeback/_cb_rate_edit_table.html.haml:8 ../app/views/chargeback/_cb_rate_show.html.haml:38 ../app/views/ops/_rbac_user_details.html.haml:158 +#: ../app/controllers/vm_common.rb:1436 ../app/helpers/vm_helper/textual_summary.rb:255 ../app/views/ops/_rbac_user_details.html.haml:157 ../app/views/chargeback/_cb_rate_show.html.haml:38 ../app/views/chargeback/_cb_rate_edit_table.html.haml:8 msgid "Group" msgid_plural "Groups" msgstr[0] "" msgstr[1] "" -#: ../app/views/ops/_rbac_group_details.html.haml:11 +#: ../app/views/shared/views/_show_alerts_overview.html.haml:35 +msgid "Group By" +msgstr "" + +#: ../app/views/ops/_rbac_group_details.html.haml:10 msgid "Group Information" msgstr "" @@ -11109,19 +11369,19 @@ msgstr "" msgid "Group Records by up to 3 Columns" msgstr "" -#: ../app/views/report/_form_filter_chargeback.html.haml:195 ../app/views/layouts/_perf_options.html.haml:121 +#: ../app/views/report/_form_filter_chargeback.html.haml:223 ../app/views/layouts/_perf_options.html.haml:120 msgid "Group by" msgstr "" -#: ../app/views/report/_form_filter_chargeback.html.haml:219 +#: ../app/views/report/_form_filter_chargeback.html.haml:247 msgid "Group by Tag" msgstr "" -#: ../app/controllers/application_controller/timelines.rb:65 +#: ../app/controllers/application_controller/timelines.rb:67 msgid "Group: %{name}" msgstr "" -#: ../app/presenters/tree_builder_ops_rbac.rb:34 ../app/helpers/host_helper/textual_summary.rb:397 ../app/helpers/vm_helper/textual_summary.rb:497 ../app/helpers/vm_cloud_helper/textual_summary.rb:132 ../app/controllers/ops_controller.rb:671 ../app/controllers/ops_controller.rb:685 ../app/views/layouts/_role_visibility.html.haml:71 ../app/views/layouts/listnav/_host.html.haml:192 ../app/views/layouts/_item.html.haml:97 +#: ../app/presenters/tree_builder_ops_rbac.rb:38 ../app/helpers/host_helper/textual_summary.rb:360 ../app/helpers/vm_cloud_helper/textual_summary.rb:143 ../app/helpers/vm_helper/textual_summary.rb:536 ../app/controllers/ops_controller.rb:710 ../app/controllers/ops_controller.rb:724 ../app/views/layouts/listnav/_host.html.haml:161 ../app/views/layouts/_item.html.haml:39 ../app/views/layouts/_role_visibility.html.haml:71 msgid "Groups" msgstr "" @@ -11129,7 +11389,7 @@ msgstr "" msgid "Groups (%{groups_count})" msgstr "" -#: ../app/views/ops/_rbac_role_details.html.haml:79 +#: ../app/views/ops/_rbac_role_details.html.haml:78 msgid "Groups Using this Role" msgstr "" @@ -11137,17 +11397,17 @@ msgstr "" msgid "Groups in this %{type}" msgstr "" -#: ../app/controllers/vm_common.rb:1630 +#: ../app/controllers/vm_common.rb:1438 msgid "Guest Application" msgid_plural "Guest Applications" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:251 +#: ../app/helpers/ems_cluster_helper/textual_summary.rb:218 msgid "HA Admit Control" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:245 +#: ../app/helpers/ems_cluster_helper/textual_summary.rb:212 msgid "HA Enabled" msgstr "" @@ -11167,27 +11427,27 @@ msgstr "" msgid "HTTP Proxy:" msgstr "" -#: ../app/helpers/flavor_helper/textual_summary.rb:54 +#: ../app/helpers/flavor_helper/textual_summary.rb:50 msgid "HVM (Hardware Virtual Machine)" msgstr "" -#: ../app/controllers/application_controller.rb:1197 ../app/controllers/application_controller.rb:1215 +#: ../app/controllers/application_controller.rb:1204 ../app/controllers/application_controller.rb:1222 msgid "Hard Disk (IDE %{location})" msgstr "" -#: ../app/controllers/application_controller.rb:1199 ../app/controllers/application_controller.rb:1229 +#: ../app/controllers/application_controller.rb:1206 ../app/controllers/application_controller.rb:1236 msgid "Hard Disk (SCSI %{location})" msgstr "" -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:87 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:266 +#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:87 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:268 msgid "Hard Reboot" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:265 +#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:267 msgid "Hard Reboot the Guest OS on the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:269 +#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:271 msgid "Hard Reboot the Guest OS on the selected items?" msgstr "" @@ -11207,19 +11467,19 @@ msgstr "" msgid "Hardware Attribute" msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:38 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:40 msgid "Hawkular" msgstr "" -#: ../app/helpers/ems_container_helper/textual_summary.rb:106 +#: ../app/helpers/ems_container_helper/textual_summary.rb:116 msgid "Hawkular API Port" msgstr "" -#: ../app/helpers/ems_container_helper/textual_summary.rb:104 +#: ../app/helpers/ems_container_helper/textual_summary.rb:112 msgid "Hawkular Host Name" msgstr "" -#: ../app/views/report/_form_sort.html.haml:241 ../app/views/report/_form_formatting.html.haml:53 +#: ../app/views/report/_form_sort.html.haml:219 ../app/views/report/_form_formatting.html.haml:53 msgid "Header" msgstr "" @@ -11231,15 +11491,11 @@ msgstr "" msgid "Headers:" msgstr "" -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:54 ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:37 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:61 ../app/helpers/ontap_storage_system_helper/textual_summary.rb:51 -msgid "Health State" -msgstr "" - -#: ../app/helpers/ems_container_helper/textual_summary.rb:28 +#: ../app/helpers/ems_container_helper/textual_summary.rb:31 msgid "Healthy" msgstr "" -#: ../app/presenters/tree_builder_orchestration_templates.rb:27 ../app/presenters/tree_builder_orchestration_templates.rb:29 +#: ../app/presenters/tree_builder_orchestration_templates.rb:30 ../app/presenters/tree_builder_orchestration_templates.rb:32 msgid "Heat Templates" msgstr "" @@ -11259,61 +11515,61 @@ msgstr "" msgid "Hide deprecated" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:789 ../app/helpers/vm_helper/textual_summary.rb:798 ../app/helpers/vm_helper/textual_summary.rb:808 ../app/helpers/vm_helper/textual_summary.rb:819 ../app/helpers/container_image_helper/textual_summary.rb:80 ../app/views/vm_common/_right_size.html.haml:25 +#: ../app/helpers/container_image_helper/textual_summary.rb:93 ../app/helpers/vm_helper/textual_summary.rb:786 ../app/helpers/vm_helper/textual_summary.rb:795 ../app/helpers/vm_helper/textual_summary.rb:805 ../app/helpers/vm_helper/textual_summary.rb:816 ../app/views/vm_common/_right_size.html.haml:25 msgid "High" msgstr "" -#: ../app/views/vm_common/console_vmrc.html.haml:74 ../app/views/vm_common/console_vmrc.html.haml:99 +#: ../app/views/vm_common/console_vmrc.html.haml:77 ../app/views/vm_common/console_vmrc.html.haml:102 msgid "Hint: Press Ctrl-Alt to release the cursor from the guest" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_history.rb:6 ../app/helpers/compliance_summary_helper.rb:34 +#: ../app/helpers/application_helper/toolbar/x_history.rb:6 ../app/helpers/compliance_summary_helper.rb:34 ../app/views/shared/views/_alerts_list.html.haml:139 msgid "History" msgstr "" -#: ../app/controllers/infra_networking_controller.rb:579 ../app/helpers/application_helper.rb:1523 ../app/helpers/application_helper.rb:1547 ../app/controllers/application_controller/ci_processing.rb:2311 ../app/views/host_aggregate/add_host_select.html.haml:16 ../app/views/host_aggregate/remove_host_select.html.haml:16 ../app/views/configuration/_ui_1.html.haml:25 ../app/views/ops/_settings_replication_tab.html.haml:138 ../app/views/ops/_settings_server_tab.html.haml:386 ../app/views/host/_form.html.haml:166 +#: ../app/controllers/infra_networking_controller.rb:583 ../app/presenters/tree_builder_datacenter.rb:11 ../app/helpers/application_helper/title.rb:97 ../app/helpers/application_helper.rb:1451 ../app/controllers/application_controller/ci_processing.rb:2343 ../app/views/configuration/_ui_1.html.haml:24 ../app/views/host_aggregate/add_host_select.html.haml:16 ../app/views/host_aggregate/remove_host_select.html.haml:16 ../app/views/ops/_settings_replication_tab.html.haml:66 ../app/views/ops/_settings_server_tab.html.haml:350 ../app/views/host/_form.html.haml:166 msgid "Host" msgid_plural "Hosts" msgstr[0] "" msgstr[1] "" -#: ../app/controllers/host_aggregate_controller.rb:444 +#: ../app/controllers/host_aggregate_controller.rb:433 msgid "Host \"%{hostname}\" added to %{model} \"%{name}\"" msgstr "" -#: ../app/controllers/host_aggregate_controller.rb:546 +#: ../app/controllers/host_aggregate_controller.rb:535 msgid "Host \"%{hostname}\" removed from %{model} \"%{name}\"" msgstr "" -#: ../app/helpers/application_helper.rb:1527 +#: ../app/helpers/application_helper/title.rb:101 msgid "Host / Node" msgstr "" -#: ../app/controllers/host_aggregate_controller.rb:608 -msgid "Host Aggregate" +#: ../app/presenters/tree_node/host.rb:3 +msgid "Host / Node: %{name}" msgstr "" #: ../app/views/host_aggregate/edit.html.haml:16 ../app/views/host_aggregate/new.html.haml:16 msgid "Host Aggregate Name" msgstr "" -#: ../app/controllers/host_aggregate_controller.rb:195 +#: ../app/controllers/host_aggregate_controller.rb:184 msgid "Host Aggregate creation failed: Task start failed: ID [%{id}]" msgstr "" -#: ../app/presenters/menu/default_menu.rb:50 ../app/controllers/host_aggregate_controller.rb:20 ../app/controllers/ems_common.rb:88 ../app/views/configuration/_ui_2.html.haml:175 +#: ../app/presenters/menu/default_menu.rb:51 ../app/controllers/host_aggregate_controller.rb:21 ../app/views/configuration/_ui_2.html.haml:176 msgid "Host Aggregates" msgstr "" -#: ../app/controllers/host_aggregate_controller.rb:205 +#: ../app/controllers/host_aggregate_controller.rb:194 msgid "Host Aggregates not supported by chosen provider" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:622 +#: ../app/controllers/ops_controller/settings/schedules.rb:617 msgid "Host Analysis" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:631 +#: ../app/controllers/ops_controller/settings/schedules.rb:626 msgid "Host Compliance Check" msgstr "" @@ -11321,7 +11577,7 @@ msgstr "" msgid "Host Compliance Policies" msgstr "" -#: ../app/presenters/tree_builder_condition.rb:20 +#: ../app/presenters/tree_builder_condition.rb:23 msgid "Host Conditions" msgstr "" @@ -11341,15 +11597,19 @@ msgstr "" msgid "Host Default VNC Start Port" msgstr "" -#: ../app/views/security_group/_main.html.haml:20 +#: ../app/assets/javascripts/services/alerts_center_service.js:81 ../app/assets/javascripts/services/alerts_center_service.js:257 +msgid "Host Name" +msgstr "" + +#: ../app/helpers/security_group_helper/textual_summary.rb:37 msgid "Host Protocol" msgstr "" -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:163 +#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:170 msgid "Host Selection" msgstr "" -#: ../app/controllers/ontap_file_share_controller.rb:101 ../app/controllers/miq_policy_controller.rb:995 +#: ../app/controllers/miq_policy_controller.rb:998 msgid "Host is required" msgstr "" @@ -11357,7 +11617,7 @@ msgstr "" msgid "Host platform" msgstr "" -#: ../app/presenters/tree_builder_storage_adapters.rb:23 ../app/presenters/tree_builder_network.rb:32 ../app/presenters/tree_builder_clusters.rb:75 ../app/controllers/application_controller/tree_support.rb:226 +#: ../app/presenters/tree_builder_clusters.rb:75 ../app/presenters/tree_builder_storage_adapters.rb:25 ../app/presenters/tree_builder_network.rb:33 msgid "Host: %{name}" msgstr "" @@ -11369,49 +11629,49 @@ msgstr "" msgid "Hosted Domain:" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:95 ../app/helpers/provider_foreman_helper.rb:15 ../app/helpers/storage_manager_helper/textual_summary.rb:15 ../app/helpers/provider_configuration_manager_helper.rb:14 ../app/controllers/application_controller/miq_request_methods.rb:308 ../app/views/ops/_server_desc.html.haml:9 ../app/views/ops/_ldap_domain_show.html.haml:255 ../app/views/ops/_selected_by_servers.html.haml:22 ../app/views/ops/_settings_server_tab.html.haml:16 ../app/views/ops/_ldap_server_entries.html.haml:17 ../app/views/ops/_diagnostics_database_tab.html.haml:35 ../app/views/storage_manager/_form.html.haml:65 ../app/views/host/_config.html.haml:47 +#: ../app/helpers/vm_helper/textual_summary.rb:135 ../app/helpers/storage_manager_helper/textual_summary.rb:15 ../app/helpers/provider_foreman_helper.rb:13 ../app/helpers/provider_configuration_manager_helper.rb:14 ../app/helpers/automation_manager_helper.rb:12 ../app/controllers/application_controller/miq_request_methods.rb:308 ../app/views/ops/_ldap_server_entries.html.haml:17 ../app/views/ops/_server_desc.html.haml:9 ../app/views/ops/_diagnostics_database_tab.html.haml:35 ../app/views/ops/_ldap_domain_show.html.haml:255 ../app/views/ops/_selected_by_servers.html.haml:22 ../app/views/ops/_settings_server_tab.html.haml:16 ../app/views/storage_manager/_form.html.haml:65 ../app/views/host/_config.html.haml:47 msgid "Hostname" msgid_plural "Hostnames" msgstr[0] "" msgstr[1] "" -#: ../app/views/host/_form.html.haml:50 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:12 +#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:12 ../app/views/host/_form.html.haml:50 msgid "Hostname (or IPv4 or IPv6 address)" msgstr "" -#: ../app/controllers/ops_controller/settings/ldap.rb:206 +#: ../app/controllers/ops_controller/settings/ldap.rb:199 msgid "Hostname is required" msgstr "" -#: ../app/views/ems_container/_form_fields.html.haml:6 ../app/views/ems_datawarehouse/_form_fields.html.haml:6 ../app/views/ems_middleware/_form_fields.html.haml:6 ../app/views/ems_infra/_form_fields.html.haml:6 +#: ../app/views/ems_infra/_form_fields.html.haml:6 ../app/views/ems_datawarehouse/_form_fields.html.haml:6 ../app/views/ems_container/_form_fields.html.haml:6 ../app/views/ems_middleware/_form_fields.html.haml:6 msgid "Hostname or IP address" msgstr "" -#: ../app/views/ems_container/_form_fields.html.haml:11 ../app/views/ems_datawarehouse/_form_fields.html.haml:11 ../app/views/ems_middleware/_form_fields.html.haml:11 ../app/views/ems_infra/_form_fields.html.haml:11 +#: ../app/views/ems_infra/_form_fields.html.haml:11 ../app/views/ems_datawarehouse/_form_fields.html.haml:11 ../app/views/ems_container/_form_fields.html.haml:11 ../app/views/ems_middleware/_form_fields.html.haml:11 msgid "Hostname or IPv4/IPv6 address" msgstr "" -#: ../app/presenters/menu/default_menu.rb:61 ../app/helpers/application_helper.rb:1523 ../app/helpers/ui_constants.rb:359 ../app/controllers/application_controller/miq_request_methods.rb:617 ../app/controllers/host_controller.rb:31 ../app/controllers/host_controller.rb:686 ../app/views/container_topology/show.html.haml:158 ../app/views/configuration/_ui_2.html.haml:210 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:19 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:56 +#: ../app/presenters/menu/default_menu.rb:62 ../app/helpers/application_helper/title.rb:97 ../app/helpers/ui_constants.rb:356 ../app/helpers/service_helper/textual_summary.rb:216 ../app/controllers/host_controller.rb:38 ../app/controllers/host_controller.rb:649 ../app/controllers/application_controller/miq_request_methods.rb:620 ../app/views/configuration/_ui_2.html.haml:211 ../app/views/container_topology/show.html.haml:158 ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:171 ../app/views/catalog/_sandt_tree_show.html.haml:428 ../app/views/catalog/_sandt_tree_show.html.haml:587 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:19 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:56 msgid "Hosts" msgstr "" -#: ../app/presenters/menu/default_menu.rb:61 ../app/helpers/application_helper.rb:1527 ../app/controllers/application_controller/ci_processing.rb:1460 +#: ../app/presenters/menu/default_menu.rb:62 ../app/helpers/application_helper/title.rb:101 ../app/controllers/application_controller/ci_processing.rb:1436 msgid "Hosts / Nodes" msgstr "" -#: ../app/controllers/ems_cluster_controller.rb:227 ../app/controllers/infra_networking_controller.rb:244 +#: ../app/controllers/ems_cluster_controller.rb:197 ../app/controllers/infra_networking_controller.rb:250 msgid "Hosts with failed %{name}" msgstr "" -#: ../app/controllers/ems_cluster_controller.rb:224 ../app/controllers/infra_networking_controller.rb:241 +#: ../app/controllers/ems_cluster_controller.rb:194 ../app/controllers/infra_networking_controller.rb:247 msgid "Hosts with running %{name}" msgstr "" -#: ../app/helpers/ui_constants.rb:298 ../app/assets/javascripts/miq_formatters.js:253 +#: ../app/helpers/ui_constants.rb:295 ../app/assets/javascripts/miq_formatters.js:253 msgid "Hour" msgstr "" -#: ../app/views/report/_form_columns_performance.html.haml:15 ../app/views/report/_schedule_form_timer.html.haml:20 ../app/views/layouts/_perf_options.html.haml:25 ../app/views/layouts/_perf_options.html.haml:30 ../app/views/layouts/_perf_options.html.haml:40 +#: ../app/views/report/_schedule_form_timer.html.haml:20 ../app/views/report/_form_columns_performance.html.haml:15 ../app/views/layouts/_perf_options.html.haml:25 ../app/views/layouts/_perf_options.html.haml:29 ../app/views/layouts/_perf_options.html.haml:39 msgid "Hourly" msgstr "" @@ -11419,7 +11679,7 @@ msgstr "" msgid "Hourly Timer" msgstr "" -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:58 ../app/views/configuration/_ui_4.html.haml:16 ../app/views/configuration/_timeprofile_form.html.haml:154 +#: ../app/views/configuration/_ui_4.html.haml:16 ../app/views/configuration/_timeprofile_form.html.haml:155 ../app/views/configuration/_timeprofile_days_hours.html.haml:58 ../app/assets/javascripts/controllers/live_metrics/util/metrics-config-factory.js:63 msgid "Hours" msgstr "" @@ -11439,7 +11699,7 @@ msgstr "" msgid "ID" msgstr "" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:322 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:333 msgid "ID within Provider" msgstr "" @@ -11447,21 +11707,25 @@ msgstr "" msgid "ID:" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:100 ../app/helpers/provider_foreman_helper.rb:26 ../app/helpers/host_helper/textual_summary.rb:119 ../app/helpers/ops_helper/textual_summary.rb:41 ../app/helpers/storage_manager_helper/textual_summary.rb:19 ../app/helpers/provider_configuration_manager_helper.rb:25 ../app/helpers/vm_cloud_helper/textual_summary.rb:64 ../app/helpers/container_group_helper/textual_summary.rb:94 ../app/views/vm_common/_config.html.haml:202 ../app/views/ops/_server_desc.html.haml:19 ../app/views/ops/_selected_by_servers.html.haml:35 ../app/views/ops/_settings_server_tab.html.haml:32 ../app/views/storage_manager/_form.html.haml:82 ../app/views/host/_config.html.haml:63 +#: ../app/views/cloud_volume/new.html.haml:180 +msgid "IOPS" +msgstr "" + +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:75 ../app/helpers/storage_manager_helper/textual_summary.rb:19 ../app/helpers/container_group_helper/textual_summary.rb:104 ../app/helpers/host_helper/textual_summary.rb:126 ../app/helpers/provider_foreman_helper.rb:24 ../app/helpers/provider_configuration_manager_helper.rb:25 ../app/helpers/automation_manager_helper.rb:22 ../app/helpers/vm_helper/textual_summary.rb:140 ../app/helpers/ops_helper/textual_summary.rb:51 ../app/views/vm_common/_config.html.haml:202 ../app/views/ops/_server_desc.html.haml:19 ../app/views/ops/_selected_by_servers.html.haml:35 ../app/views/ops/_settings_server_tab.html.haml:32 ../app/views/storage_manager/_form.html.haml:82 ../app/views/host/_config.html.haml:63 msgid "IP Address" msgid_plural "IP Addresses" msgstr[0] "" msgstr[1] "" -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:50 ../app/views/miq_request/_prov_host_dialog.html.haml:82 ../app/views/shared/views/_prov_dialog.html.haml:339 ../app/views/shared/views/_prov_dialog.html.haml:373 +#: ../app/views/miq_request/_prov_host_dialog.html.haml:82 ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:50 ../app/views/shared/views/_prov_dialog.html.haml:339 ../app/views/shared/views/_prov_dialog.html.haml:373 msgid "IP Address Information" msgstr "" -#: ../app/views/cloud_subnet/edit.html.haml:16 ../app/views/cloud_subnet/new.html.haml:67 +#: ../app/views/cloud_subnet/edit.html.haml:16 ../app/views/cloud_subnet/new.html.haml:75 msgid "IP Version" msgstr "" -#: ../app/helpers/application_helper/discover.rb:9 ../app/helpers/textual_summary_helper.rb:170 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:48 ../app/views/layouts/_multi_auth_credentials.html.haml:39 +#: ../app/helpers/application_helper/discover.rb:9 ../app/helpers/textual_summary_helper.rb:184 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:50 ../app/views/layouts/_multi_auth_credentials.html.haml:39 msgid "IPMI" msgstr "" @@ -11469,19 +11733,19 @@ msgstr "" msgid "IPMI Credentials" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:123 ../app/views/host/_form.html.haml:114 +#: ../app/helpers/host_helper/textual_summary.rb:130 ../app/views/host/_form.html.haml:114 msgid "IPMI IP Address" msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:493 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:498 msgid "IPMI IP Address, Username and matching password fields are needed to perform verification of credentials" msgstr "" -#: ../app/controllers/host_controller.rb:627 +#: ../app/controllers/host_controller.rb:590 msgid "IPMI Password and Verify Password fields do not match" msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:22 ../app/helpers/provider_configuration_manager_helper.rb:21 +#: ../app/helpers/provider_foreman_helper.rb:20 ../app/helpers/provider_configuration_manager_helper.rb:21 ../app/helpers/automation_manager_helper.rb:18 msgid "IPMI Present" msgstr "" @@ -11489,15 +11753,15 @@ msgstr "" msgid "IPv6 Address" msgstr "" -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:97 ../app/helpers/container_group_helper/textual_summary.rb:40 +#: ../app/helpers/container_group_helper/textual_summary.rb:50 ../app/helpers/persistent_volume_helper/textual_summary.rb:103 msgid "ISCSI Target Lun Number" msgstr "" -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:85 ../app/helpers/container_group_helper/textual_summary.rb:38 +#: ../app/helpers/container_group_helper/textual_summary.rb:48 ../app/helpers/persistent_volume_helper/textual_summary.rb:91 msgid "ISCSI Target Portal" msgstr "" -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:91 ../app/helpers/container_group_helper/textual_summary.rb:39 +#: ../app/helpers/container_group_helper/textual_summary.rb:49 ../app/helpers/persistent_volume_helper/textual_summary.rb:97 msgid "ISCSI Target Qualified Name" msgstr "" @@ -11505,11 +11769,11 @@ msgstr "" msgid "ISO" msgstr "" -#: ../app/controllers/pxe_controller.rb:79 +#: ../app/controllers/pxe_controller.rb:78 msgid "ISO Datastores" msgstr "" -#: ../app/presenters/tree_builder_iso_datastores.rb:35 ../app/presenters/tree_builder_iso_datastores.rb:37 ../app/views/pxe/_iso_datastore_details.html.haml:16 +#: ../app/presenters/tree_builder_iso_datastores.rb:38 ../app/presenters/tree_builder_iso_datastores.rb:40 ../app/views/pxe/_iso_datastore_details.html.haml:16 msgid "ISO Images" msgstr "" @@ -11529,14 +11793,18 @@ msgstr "" msgid "If you choose to close this wizard, deployment status can be monitored under requests." msgstr "" -#: ../app/views/shared/buttons/_ab_list.html.haml:167 ../app/views/shared/buttons/_ab_show.html.haml:48 +#: ../app/controllers/application_controller.rb:904 ../app/views/miq_request/_pre_prov.html.haml:59 ../app/views/shared/buttons/_ab_show.html.haml:48 ../app/views/shared/buttons/_ab_list.html.haml:167 msgid "Image" msgstr "" -#: ../app/helpers/container_image_helper/textual_summary.rb:37 +#: ../app/helpers/container_image_helper/textual_summary.rb:50 msgid "Image Id" msgstr "" +#: ../app/presenters/menu/default_menu.rb:110 +msgid "Image Registries" +msgstr "" + #: ../app/helpers/pxe_helper/textual_summary.rb:104 ../app/views/pxe/_template_form.html.haml:49 msgid "Image Type" msgstr "" @@ -11545,23 +11813,23 @@ msgstr "" msgid "Image shown at 25% of actual size" msgstr "" -#: ../app/controllers/vm_common.rb:1246 ../app/controllers/ems_common.rb:61 ../app/controllers/vm_cloud_controller.rb:165 ../app/views/configuration/_ui_2.html.haml:175 ../app/views/layouts/listnav/_cloud_tenant.html.haml:42 ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:59 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:87 +#: ../app/controllers/vm_common.rb:1057 ../app/controllers/vm_cloud_controller.rb:213 ../app/views/configuration/_ui_2.html.haml:176 ../app/views/layouts/listnav/_cloud_tenant.html.haml:42 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:131 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:145 ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:59 msgid "Images" msgstr "" -#: ../app/presenters/tree_builder_images.rb:23 ../app/controllers/vm_common.rb:1248 ../app/controllers/vm_cloud_controller.rb:155 +#: ../app/presenters/tree_builder_images.rb:24 ../app/controllers/vm_common.rb:1059 ../app/controllers/vm_cloud_controller.rb:203 msgid "Images by Provider" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:752 ../app/helpers/vm_cloud_helper/textual_summary.rb:271 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:282 ../app/helpers/vm_helper/textual_summary.rb:743 msgid "Immutable VM" msgstr "" -#: ../app/views/miq_policy/_export.html.haml:8 ../app/views/miq_ae_customization/_dialog_import_export.html.haml:74 ../app/views/ops/_ldap_server_entry.html.haml:7 ../app/views/ops/_ldap_server_entry.html.haml:44 ../app/views/report/_export_widgets.html.haml:80 ../app/views/report/_export_custom_reports.html.haml:12 +#: ../app/views/miq_policy/_export.html.haml:8 ../app/views/ops/_ldap_server_entry.html.haml:7 ../app/views/ops/_ldap_server_entry.html.haml:44 ../app/views/report/_export_widgets.html.haml:80 ../app/views/report/_export_custom_reports.html.haml:12 ../app/views/miq_ae_customization/_dialog_import_export.html.haml:74 msgid "Import" msgstr "" -#: ../app/presenters/menu/default_menu.rb:217 ../app/presenters/menu/default_menu.rb:233 ../app/presenters/tree_builder_report_export.rb:18 ../app/controllers/miq_ae_tools_controller.rb:87 ../app/controllers/miq_policy_controller.rb:21 ../app/controllers/miq_policy_controller.rb:171 ../app/controllers/report_controller.rb:371 ../app/controllers/report_controller.rb:424 ../app/controllers/report_controller.rb:692 +#: ../app/presenters/tree_builder_report_export.rb:19 ../app/presenters/menu/default_menu.rb:215 ../app/presenters/menu/default_menu.rb:254 ../app/controllers/report_controller.rb:375 ../app/controllers/report_controller.rb:428 ../app/controllers/report_controller.rb:696 ../app/controllers/miq_policy_controller.rb:21 ../app/controllers/miq_policy_controller.rb:171 ../app/controllers/miq_ae_tools_controller.rb:87 msgid "Import / Export" msgstr "" @@ -11601,7 +11869,7 @@ msgstr "" msgid "Import file cannot be empty" msgstr "" -#: ../app/controllers/miq_ae_tools_controller.rb:187 ../app/controllers/miq_policy_controller.rb:180 ../app/controllers/report_controller.rb:224 +#: ../app/controllers/report_controller.rb:228 ../app/controllers/miq_policy_controller.rb:180 ../app/controllers/miq_ae_tools_controller.rb:187 msgid "Import file was uploaded successfully" msgstr "" @@ -11613,7 +11881,7 @@ msgstr "" msgid "Import validation complete: %{good_record}, %{bad_record}" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:186 ../app/controllers/report_controller.rb:295 +#: ../app/controllers/report_controller.rb:299 ../app/controllers/miq_ae_customization_controller.rb:200 msgid "Import/Export" msgstr "" @@ -11621,14 +11889,18 @@ msgstr "" msgid "Imported from git" msgstr "" -#: ../app/helpers/ops_helper/textual_summary.rb:139 +#: ../app/helpers/ops_helper/textual_summary.rb:149 msgid "In Use" msgstr "" -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:48 +#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:197 msgid "In use by %s reports, cannot be disabled" msgstr "" +#: ../app/views/report/_form_filter_chargeback.html.haml:14 +msgid "Include Capacity & Utilization Metrics" +msgstr "" + #: ../app/views/layouts/_ae_tree_select.html.haml:52 msgid "Include Domain prefix in the path" msgstr "" @@ -11641,15 +11913,15 @@ msgstr "" msgid "Incremental?" msgstr "" -#: ../app/helpers/pxe_helper/textual_summary.rb:88 ../app/views/pxe/_pxe_server_details.html.haml:112 ../app/views/ops/_db_info.html.haml:6 +#: ../app/helpers/pxe_helper/textual_summary.rb:88 ../app/views/ops/_db_info.html.haml:6 ../app/views/pxe/_pxe_server_details.html.haml:84 msgid "Index" msgstr "" -#: ../app/presenters/tree_builder_ops_vmdb.rb:52 ../app/presenters/tree_builder_ops_vmdb.rb:54 ../app/views/ops/_db_info.html.haml:200 ../app/views/ops/_all_tabs.html.haml:285 +#: ../app/presenters/tree_builder_ops_vmdb.rb:56 ../app/presenters/tree_builder_ops_vmdb.rb:58 ../app/views/ops/_all_tabs.html.haml:285 ../app/views/ops/_db_info.html.haml:200 msgid "Indexes" msgstr "" -#: ../app/controllers/ops_controller/db.rb:135 +#: ../app/controllers/ops_controller/db.rb:127 msgid "Indexes for %{model} \"%{name}\"" msgstr "" @@ -11657,34 +11929,38 @@ msgstr "" msgid "Infinity" msgstr "" -#: ../app/views/miq_policy/_alert_details.html.haml:13 ../app/views/miq_ae_class/_ns_list.html.haml:81 ../app/views/ops/_ap_show.html.haml:7 ../app/views/resource_pool/_config.html.haml:11 +#: ../app/views/miq_policy/_alert_details.html.haml:13 ../app/views/resource_pool/_config.html.haml:11 ../app/views/ops/_ap_show.html.haml:7 ../app/views/miq_ae_class/_ns_list.html.haml:81 msgid "Info" msgstr "" -#: ../app/controllers/host_controller.rb:310 +#: ../app/controllers/host_controller.rb:262 msgid "Info/Settings" msgstr "" -#: ../app/views/storage/_main.html.haml:9 +#: ../app/assets/javascripts/services/alerts_center_service.js:40 +msgid "Information" +msgstr "" + +#: ../app/assets/javascripts/controllers/alerts/alerts_overview_controller.js:85 +msgid "Information Count" +msgstr "" + +#: ../app/helpers/storage_helper/textual_summary.rb:11 msgid "Information for Registered VMs" msgstr "" -#: ../app/presenters/menu/default_menu.rb:64 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:115 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:250 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:358 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:434 ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:69 ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:49 ../app/views/configuration/_ui_2.html.haml:207 +#: ../app/presenters/menu/default_menu.rb:65 ../app/views/configuration/_ui_2.html.haml:208 ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:69 ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:49 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:115 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:250 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:358 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:434 msgid "Infrastructure" msgstr "" -#: ../app/helpers/container_node_helper/textual_summary.rb:70 +#: ../app/helpers/container_node_helper/textual_summary.rb:83 msgid "Infrastructure Machine ID" msgstr "" -#: ../app/views/configuration/_ui_2.html.haml:210 +#: ../app/views/configuration/_ui_2.html.haml:211 msgid "Infrastructure Providers" msgstr "" -#: ../app/views/ontap_storage_system/_main.html.haml:16 ../app/views/ontap_storage_volume/_main.html.haml:16 ../app/views/ontap_file_share/_main.html.haml:16 ../app/views/ontap_logical_disk/_main.html.haml:11 ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:58 ../app/views/layouts/listnav/_ontap_file_share.html.haml:53 ../app/views/layouts/listnav/_ontap_storage_system.html.haml:56 ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:37 -msgid "Infrastructure Relationships" -msgstr "" - #: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:144 msgid "Infrastructure can only be assigned to Nodes" msgstr "" @@ -11697,17 +11973,17 @@ msgstr "" msgid "Inherit Tags" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:538 +#: ../app/views/miq_policy/_action_options.html.haml:530 msgid "Inherit Tags Settings" msgstr "" -#: ../app/controllers/vm_common.rb:1636 +#: ../app/controllers/vm_common.rb:1444 msgid "Init Process" msgid_plural "Init Processes" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/textual_mixins/textual_init_processes.rb:7 ../app/controllers/vm_common.rb:481 +#: ../app/helpers/textual_mixins/textual_init_processes.rb:7 ../app/controllers/vm_common.rb:335 msgid "Init Processes" msgstr "" @@ -11715,31 +11991,31 @@ msgstr "" msgid "Initialization in progress..." msgstr "" -#: ../app/helpers/ui_constants.rb:418 +#: ../app/helpers/ui_constants.rb:415 msgid "Initialized" msgstr "" -#: ../app/helpers/ui_constants.rb:413 +#: ../app/helpers/ui_constants.rb:410 msgid "Initializing" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:105 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:96 +#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:96 ../app/helpers/application_helper/toolbar/template_infras_center.rb:105 msgid "Initiate Check Compliance of the last known configuration for the selected Templates?" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:140 ../app/helpers/application_helper/toolbar/container_replicators_center.rb:33 ../app/helpers/application_helper/toolbar/vms_center.rb:97 ../app/helpers/application_helper/toolbar/container_images_center.rb:52 ../app/helpers/application_helper/toolbar/container_groups_center.rb:33 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:83 ../app/helpers/application_helper/toolbar/ems_containers_center.rb:83 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:116 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:132 ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:83 ../app/helpers/application_helper/toolbar/hosts_center.rb:134 ../app/helpers/application_helper/toolbar/container_nodes_center.rb:33 +#: ../app/helpers/application_helper/toolbar/container_replicators_center.rb:33 ../app/helpers/application_helper/toolbar/ems_physical_infras_center.rb:83 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:132 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:117 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:141 ../app/helpers/application_helper/toolbar/vms_center.rb:97 ../app/helpers/application_helper/toolbar/ems_containers_center.rb:84 ../app/helpers/application_helper/toolbar/container_images_center.rb:53 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:85 ../app/helpers/application_helper/toolbar/hosts_center.rb:136 ../app/helpers/application_helper/toolbar/container_nodes_center.rb:33 ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:85 ../app/helpers/application_helper/toolbar/container_groups_center.rb:33 msgid "Initiate Check Compliance of the last known configuration for the selected items?" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:98 +#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:100 msgid "Initiate Check Compliance of the last known configuration for this Image?" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:111 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:76 +#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:78 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:113 msgid "Initiate Check Compliance of the last known configuration for this Instance?" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:73 ../app/helpers/application_helper/toolbar/miq_template_center.rb:74 ../app/helpers/application_helper/toolbar/miq_template_center.rb:169 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:73 msgid "Initiate Check Compliance of the last known configuration for this Template?" msgstr "" @@ -11747,15 +12023,15 @@ msgstr "" msgid "Initiate Check Compliance of the last known configuration for this VM?" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:65 ../app/helpers/application_helper/toolbar/host_center.rb:91 ../app/helpers/application_helper/toolbar/container_image_center.rb:40 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:79 ../app/helpers/application_helper/toolbar/container_replicator_center.rb:50 ../app/helpers/application_helper/toolbar/container_node_center.rb:50 ../app/helpers/application_helper/toolbar/ems_container_center.rb:92 ../app/helpers/application_helper/toolbar/container_group_center.rb:50 +#: ../app/helpers/application_helper/toolbar/container_replicator_center.rb:50 ../app/helpers/application_helper/toolbar/ems_physical_infra_center.rb:58 ../app/helpers/application_helper/toolbar/ems_container_center.rb:101 ../app/helpers/application_helper/toolbar/host_center.rb:91 ../app/helpers/application_helper/toolbar/container_image_center.rb:42 ../app/helpers/application_helper/toolbar/container_node_center.rb:59 ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:66 ../app/helpers/application_helper/toolbar/container_group_center.rb:50 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:79 msgid "Initiate Check Compliance of the last known configuration for this item?" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_performance.rb:6 ../app/helpers/application_helper/toolbar/x_vm_performance.rb:6 +#: ../app/helpers/application_helper/toolbar/x_vm_performance.rb:6 ../app/helpers/application_helper/toolbar/vm_performance.rb:6 msgid "Initiate refresh of recent C&U data" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_performance.rb:8 ../app/helpers/application_helper/toolbar/x_vm_performance.rb:8 +#: ../app/helpers/application_helper/toolbar/x_vm_performance.rb:8 ../app/helpers/application_helper/toolbar/vm_performance.rb:8 msgid "Initiate refresh of recent C&U data?" msgstr "" @@ -11775,7 +12051,7 @@ msgstr "" msgid "Insecure:" msgstr "" -#: ../app/helpers/container_node_helper/textual_summary.rb:78 ../app/helpers/container_group_helper/textual_summary.rb:101 ../app/views/cloud_volume/attach.html.haml:16 ../app/views/cloud_volume/detach.html.haml:16 +#: ../app/helpers/container_group_helper/textual_summary.rb:111 ../app/helpers/container_node_helper/textual_summary.rb:91 ../app/views/cloud_volume/attach.html.haml:16 ../app/views/cloud_volume/detach.html.haml:16 msgid "Instance" msgstr "" @@ -11783,10 +12059,6 @@ msgstr "" msgid "Instance \"%{name}\" does not have any associated Floating IPs" msgstr "" -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:47 -msgid "Instance ID" -msgstr "" - #: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:7 msgid "Instance Power Functions" msgstr "" @@ -11795,11 +12067,15 @@ msgstr "" msgid "Instance Type:" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:722 +#: ../app/helpers/application_helper/button/instance_retire.rb:5 msgid "Instance is already retired" msgstr "" -#: ../app/presenters/menu/default_menu.rb:53 ../app/controllers/vm_common.rb:1250 ../app/controllers/ems_common.rb:60 ../app/controllers/vm_cloud_controller.rb:160 ../app/views/configuration/_ui_2.html.haml:175 ../app/views/miq_ae_class/_class_props.html.haml:68 ../app/views/miq_ae_class/_class_instances.html.haml:5 ../app/views/miq_ae_class/_all_tabs.html.haml:8 ../app/views/miq_ae_class/_all_tabs.html.haml:35 ../app/views/layouts/listnav/_host_aggregate.html.haml:28 ../app/views/layouts/listnav/_network_router.html.haml:25 ../app/views/layouts/listnav/_cloud_network.html.haml:25 ../app/views/layouts/listnav/_load_balancer.html.haml:25 ../app/views/layouts/listnav/_security_group.html.haml:25 ../app/views/layouts/listnav/_cloud_tenant.html.haml:35 ../app/views/layouts/listnav/_cloud_subnet.html.haml:25 ../app/views/layouts/listnav/_availability_zone.html.haml:28 ../app/views/layouts/listnav/_flavor.html.haml:31 ../app/views/layouts/listnav/_orchestration_stack.html.haml:38 +#: ../app/controllers/application_controller/ci_processing.rb:535 +msgid "Instance live migration task failed." +msgstr "" + +#: ../app/presenters/menu/default_menu.rb:54 ../app/controllers/vm_common.rb:1061 ../app/controllers/vm_cloud_controller.rb:208 ../app/views/configuration/_ui_2.html.haml:176 ../app/views/miq_ae_class/_class_props.html.haml:68 ../app/views/miq_ae_class/_class_instances.html.haml:5 ../app/views/miq_ae_class/_all_tabs.html.haml:8 ../app/views/miq_ae_class/_all_tabs.html.haml:35 ../app/views/layouts/listnav/_cloud_subnet.html.haml:25 ../app/views/layouts/listnav/_cloud_tenant.html.haml:35 ../app/views/layouts/listnav/_flavor.html.haml:31 ../app/views/layouts/listnav/_cloud_network.html.haml:25 ../app/views/layouts/listnav/_load_balancer.html.haml:25 ../app/views/layouts/listnav/_network_router.html.haml:25 ../app/views/layouts/listnav/_host_aggregate.html.haml:28 ../app/views/layouts/listnav/_orchestration_stack.html.haml:38 ../app/views/layouts/listnav/_availability_zone.html.haml:28 ../app/views/layouts/listnav/_security_group.html.haml:25 msgid "Instances" msgstr "" @@ -11807,11 +12083,11 @@ msgstr "" msgid "Instances (%{count})" msgstr "" -#: ../app/presenters/tree_builder_instances.rb:25 ../app/controllers/vm_common.rb:1252 ../app/controllers/vm_cloud_controller.rb:150 +#: ../app/presenters/tree_builder_instances.rb:26 ../app/controllers/vm_common.rb:1063 ../app/controllers/vm_cloud_controller.rb:198 msgid "Instances by Provider" msgstr "" -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:76 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:231 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:329 ../app/assets/javascripts/miq_application.js:90 ../app/assets/javascripts/miq_application.js:91 ../app/assets/javascripts/miq_application.js:94 +#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:76 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:228 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:326 ../app/assets/javascripts/miq_application.js:90 ../app/assets/javascripts/miq_application.js:91 ../app/assets/javascripts/miq_application.js:94 msgid "Integer" msgstr "" @@ -11819,15 +12095,15 @@ msgstr "" msgid "Integrated NFS Server (POC only)" msgstr "" -#: ../app/views/report/_widget_show.html.haml:164 ../app/views/report/_widget_form_rss.html.haml:20 +#: ../app/views/report/_widget_form_rss.html.haml:20 ../app/views/report/_widget_show.html.haml:164 msgid "Internal" msgstr "" -#: ../app/controllers/ops_controller/diagnostics.rb:944 +#: ../app/controllers/ops_controller/diagnostics.rb:934 msgid "Internal Database" msgstr "" -#: ../app/views/report/_widget_show.html.haml:183 ../app/views/report/_widget_form_rss.html.haml:37 +#: ../app/views/report/_widget_form_rss.html.haml:37 ../app/views/report/_widget_show.html.haml:183 msgid "Internal RSS Feed" msgstr "" @@ -11835,7 +12111,7 @@ msgstr "" msgid "Interval" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2512 +#: ../app/controllers/application_controller/ci_processing.rb:2544 msgid "Introspect" msgstr "" @@ -11863,7 +12139,7 @@ msgstr "" msgid "Introspect this item?" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:515 +#: ../app/helpers/host_helper/textual_summary.rb:478 msgid "Introspected" msgstr "" @@ -11871,48 +12147,40 @@ msgstr "" msgid "Invalid Single Sign-On credentials" msgstr "" +#: ../app/helpers/service_helper/textual_summary.rb:149 +msgid "Invalid Stack" +msgstr "" + #: ../app/views/dashboard/_widget_chart.html.haml:27 msgid "Invalid chart data. Try regenerating the widgets." msgstr "" -#: ../lib/report_formatter/chart_common.rb:560 +#: ../lib/report_formatter/chart_common.rb:534 msgid "Invalid chart definition" msgstr "" -#: ../app/controllers/ops_controller/settings/common.rb:277 -msgid "Invalid data for disabling Central Admin" -msgstr "" - -#: ../app/controllers/ops_controller/settings/common.rb:259 -msgid "Invalid data for enabling Central Admin" -msgstr "" - -#: ../app/controllers/provider_foreman_controller.rb:1155 ../app/controllers/storage_controller.rb:337 ../app/controllers/application_controller.rb:2208 ../app/controllers/infra_networking_controller.rb:723 +#: ../app/controllers/storage_controller.rb:308 ../app/controllers/application_controller.rb:2214 ../app/controllers/infra_networking_controller.rb:726 ../app/controllers/mixins/manager_controller_mixin.rb:452 msgid "Invalid input" msgstr "" -#: ../app/controllers/application_controller.rb:204 +#: ../app/controllers/application_controller.rb:207 msgid "Invalid input for \"wait_for_task\"." msgstr "" -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:146 ../app/views/shared/views/ems_common/angular/_form.html.haml:172 ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:59 +#: ../app/views/shared/views/ems_common/angular/_form.html.haml:146 ../app/views/shared/views/ems_common/angular/_form.html.haml:172 ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:61 msgid "Invalid input format, please enter a GUID" msgstr "" -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:171 -msgid "Is Compression Enabled" -msgstr "" - -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:175 -msgid "Is Inconsistent" +#: ../app/controllers/application_controller/ci_processing.rb:131 +msgid "Invalid items passed" msgstr "" -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:179 -msgid "Is Invalid" +#: ../app/controllers/application_controller/ci_processing.rb:173 +msgid "Invalid items selected." msgstr "" -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:183 -msgid "Is Unrecoverable" +#: ../app/views/miq_policy/_action_options.html.haml:643 +msgid "Inventory" msgstr "" #: ../app/views/miq_ae_class/_copy_objects_form.html.haml:132 ../app/controllers/miq_capacity_controller.rb:321 @@ -11921,19 +12189,23 @@ msgid_plural "Items" msgstr[0] "" msgstr[1] "" -#: ../app/presenters/tree_builder_policy_simulation.rb:56 +#: ../app/views/catalog/_sandt_tree_show.html.haml:93 ../app/views/catalog/_form_basic_info.html.haml:103 +msgid "Item Type" +msgstr "" + +#: ../app/presenters/tree_builder_policy_simulation.rb:60 msgid "Items out of scope" msgstr "" -#: ../app/views/layouts/_saved_report_paging_bar.html.haml:98 +#: ../app/views/layouts/_saved_report_paging_bar.html.haml:19 msgid "Items per page:" msgstr "" -#: ../app/controllers/middleware_server_controller.rb:140 +#: ../app/controllers/middleware_server_controller.rb:115 msgid "JDBC Driver \"%s\" has been installed on this server." msgstr "" -#: ../app/controllers/middleware_server_controller.rb:56 +#: ../app/controllers/middleware_server_controller.rb:58 msgid "JDBC Driver installation" msgstr "" @@ -11945,19 +12217,23 @@ msgstr "" msgid "JNDI Name" msgstr "" -#: ../app/controllers/ems_infra_controller.rb:136 +#: ../app/controllers/ems_infra_controller.rb:137 msgid "JSON file format is incorrect, missing 'nodes'." msgstr "" -#: ../app/helpers/service_helper/textual_summary.rb:103 ../app/controllers/configuration_job_controller.rb:87 +#: ../app/helpers/service_helper/textual_summary.rb:159 ../app/controllers/configuration_job_controller.rb:85 msgid "Job" msgstr "" -#: ../app/presenters/menu/default_menu.rb:15 +#: ../app/controllers/automation_manager_controller.rb:266 +msgid "Job Templates" +msgstr "" + +#: ../app/presenters/menu/default_menu.rb:231 msgid "Jobs" msgstr "" -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:65 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:66 ../app/assets/javascripts/miq_application.js:95 +#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:83 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:84 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:91 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:92 ../app/assets/javascripts/miq_application.js:95 msgid "KBps" msgstr "" @@ -11965,25 +12241,29 @@ msgstr "" msgid "KVM" msgstr "" -#: ../app/helpers/pxe_helper/textual_summary.rb:60 ../app/views/pxe/_pxe_server_details.html.haml:63 +#: ../app/helpers/pxe_helper/textual_summary.rb:60 ../app/views/pxe/_pxe_server_details.html.haml:35 msgid "Kernel" msgstr "" -#: ../app/controllers/vm_common.rb:1634 +#: ../app/controllers/vm_common.rb:1442 msgid "Kernel Driver" msgid_plural "Kernel Drivers" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/vm_helper/textual_summary.rb:539 ../app/helpers/vm_cloud_helper/textual_summary.rb:182 ../app/controllers/vm_common.rb:491 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:193 ../app/helpers/vm_helper/textual_summary.rb:578 ../app/controllers/vm_common.rb:345 msgid "Kernel Drivers" msgstr "" -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:56 -msgid "Key Pair" +#: ../app/controllers/auth_key_pair_cloud_controller.rb:150 +msgid "Key Pair \"%{name}\" created" +msgstr "" + +#: ../app/controllers/auth_key_pair_cloud_controller.rb:120 +msgid "Key Pair creation failed: Task start failed" msgstr "" -#: ../app/presenters/menu/default_menu.rb:55 ../app/helpers/vm_cloud_helper/textual_summary.rb:143 ../app/views/configuration/_ui_2.html.haml:175 +#: ../app/presenters/menu/default_menu.rb:56 ../app/helpers/vm_cloud_helper/textual_summary.rb:154 ../app/views/configuration/_ui_2.html.haml:176 msgid "Key Pairs" msgstr "" @@ -11991,7 +12271,7 @@ msgstr "" msgid "Key:" msgstr "" -#: ../app/helpers/ems_cloud_helper/textual_summary.rb:50 ../app/views/shared/views/ems_common/angular/_form.html.haml:239 +#: ../app/helpers/ems_cloud_helper/textual_summary.rb:55 ../app/views/shared/views/ems_common/angular/_form.html.haml:239 msgid "Keystone V3 Domain ID" msgstr "" @@ -11999,7 +12279,7 @@ msgstr "" msgid "Kickstart" msgstr "" -#: ../app/controllers/middleware_server_controller.rb:86 +#: ../app/controllers/middleware_server_controller.rb:88 msgid "Kill" msgstr "" @@ -12011,15 +12291,15 @@ msgstr "" msgid "Kill this server" msgstr "" -#: ../app/helpers/container_template_helper/textual_summary.rb:20 +#: ../app/helpers/container_template_helper/textual_summary.rb:21 msgid "Kind" msgstr "" -#: ../app/presenters/tree_builder_ops_settings.rb:31 ../app/helpers/ops_helper.rb:30 ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:31 ../app/views/ops/_ldap_domain_show.html.haml:279 ../app/views/ops/_settings_authentication_tab.html.haml:55 ../app/views/ops/_ldap_server_entry.html.haml:25 ../app/views/ops/_ldap_server_entry.html.haml:66 ../app/views/ops/_ldap_server_entry.html.haml:125 +#: ../app/presenters/tree_builder_ops_settings.rb:35 ../app/helpers/ops_helper.rb:30 ../app/views/ops/_ldap_domain_show.html.haml:279 ../app/views/ops/_ldap_server_entry.html.haml:25 ../app/views/ops/_ldap_server_entry.html.haml:65 ../app/views/ops/_ldap_server_entry.html.haml:124 ../app/views/ops/_settings_authentication_tab.html.haml:55 ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:31 msgid "LDAP" msgstr "" -#: ../app/presenters/tree_node_builder.rb:110 +#: ../app/presenters/tree_node/ldap_domain.rb:4 msgid "LDAP Domain: %{ldap_domain_name}" msgstr "" @@ -12027,11 +12307,11 @@ msgstr "" msgid "LDAP Domains" msgstr "" -#: ../app/views/ops/_rbac_group_details.html.haml:148 +#: ../app/views/ops/_rbac_group_details.html.haml:147 msgid "LDAP Group Look Up" msgstr "" -#: ../app/views/miq_request/_prov_field.html.haml:166 ../app/views/ops/_rbac_group_details.html.haml:172 ../app/views/ops/_rbac_group_details.html.haml:244 +#: ../app/views/ops/_rbac_group_details.html.haml:171 ../app/views/ops/_rbac_group_details.html.haml:243 ../app/views/miq_request/_prov_field.html.haml:166 msgid "LDAP Group Lookup" msgstr "" @@ -12059,11 +12339,11 @@ msgstr "" msgid "LDAP Hostname and Port fields are needed to perform verification of LDAP Settings" msgstr "" -#: ../app/views/ops/_ldap_forest_entries.html.haml:22 ../app/views/ops/_settings_authentication_tab.html.haml:113 +#: ../app/views/ops/_settings_authentication_tab.html.haml:113 ../app/views/ops/_ldap_forest_entries.html.haml:22 msgid "LDAP Port" msgstr "" -#: ../app/presenters/tree_node_builder.rb:113 +#: ../app/presenters/tree_node/ldap_region.rb:4 msgid "LDAP Region: %{ldap_region_name}" msgstr "" @@ -12071,27 +12351,27 @@ msgstr "" msgid "LDAP Regions" msgstr "" -#: ../app/views/ops/_ldap_domain_show.html.haml:242 ../app/views/ops/_ldap_server_entries.html.haml:7 +#: ../app/views/ops/_ldap_server_entries.html.haml:7 ../app/views/ops/_ldap_domain_show.html.haml:242 msgid "LDAP Servers" msgstr "" -#: ../app/views/_ldap_domain_form.html.haml:33 ../app/views/ops/_ldap_domain_show.html.haml:33 ../app/views/ops/_settings_authentication_tab.html.haml:72 ../app/views/ops/_ldap_domain_form.html.haml:33 +#: ../app/views/ops/_ldap_domain_show.html.haml:33 ../app/views/ops/_ldap_domain_form.html.haml:33 ../app/views/ops/_settings_authentication_tab.html.haml:72 ../app/views/_ldap_domain_form.html.haml:33 msgid "LDAP Settings" msgstr "" -#: ../app/controllers/ops_controller/settings/common.rb:342 +#: ../app/controllers/ops_controller/settings/common.rb:300 msgid "LDAP Settings validation was successful" msgstr "" -#: ../app/helpers/ops_helper.rb:32 ../app/views/ops/_ldap_domain_show.html.haml:279 ../app/views/ops/_settings_authentication_tab.html.haml:55 ../app/views/ops/_ldap_server_entry.html.haml:25 ../app/views/ops/_ldap_server_entry.html.haml:66 ../app/views/ops/_ldap_server_entry.html.haml:125 +#: ../app/helpers/ops_helper.rb:32 ../app/views/ops/_ldap_domain_show.html.haml:279 ../app/views/ops/_ldap_server_entry.html.haml:25 ../app/views/ops/_ldap_server_entry.html.haml:65 ../app/views/ops/_ldap_server_entry.html.haml:124 ../app/views/ops/_settings_authentication_tab.html.haml:55 msgid "LDAPS" msgstr "" -#: ../app/presenters/tree_node_builder.rb:124 +#: ../app/presenters/tree_node/miq_scsi_lun.rb:4 msgid "LUN: %{name}" msgstr "" -#: ../app/views/miq_ae_customization/_dialog_info_form.html.haml:14 ../app/views/miq_ae_customization/_dialog_group_form.html.haml:13 ../app/views/miq_ae_customization/_dialog_tab_form.html.haml:13 ../app/views/miq_ae_customization/_dialog_field_form.html.haml:15 ../app/views/miq_ae_customization/_dialog_info.html.haml:15 ../app/views/ops/_label_tag_mapping_form.html.haml:43 +#: ../app/views/ops/_label_tag_mapping_form.html.haml:43 ../app/views/miq_ae_customization/_dialog_group_form.html.haml:13 ../app/views/miq_ae_customization/_dialog_field_form.html.haml:15 ../app/views/miq_ae_customization/_dialog_info_form.html.haml:14 ../app/views/miq_ae_customization/_dialog_info.html.haml:15 ../app/views/miq_ae_customization/_dialog_tab_form.html.haml:13 msgid "Label" msgstr "" @@ -12099,30 +12379,30 @@ msgstr "" msgid "Label is required" msgstr "" -#: ../app/views/report/_form_sort.html.haml:138 -msgid "Label on Summary Row" -msgstr "" - -#: ../app/helpers/ui_constants.rb:522 -msgid "Labeled %{tables}" +#: ../app/helpers/ui_constants.rb:491 +msgid "Labeled Container Images" msgstr "" -#: ../app/views/container_build/_main.html.haml:10 ../app/views/container_project/_main.html.haml:15 ../app/views/container_image/_main.html.haml:10 ../app/views/container_node/_main.html.haml:9 ../app/views/container_group/_main.html.haml:9 ../app/views/container_service/_main.html.haml:11 ../app/views/container_route/_main.html.haml:11 ../app/views/container_template/_main.html.haml:22 ../app/views/container_replicator/_main.html.haml:9 +#: ../app/helpers/container_summary_helper.rb:73 ../app/helpers/vm_helper/textual_summary.rb:108 msgid "Labels" msgstr "" -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:62 ../app/helpers/configuration_helper/configuration_view_helper.rb:67 +#: ../app/helpers/configuration_helper/configuration_view_helper.rb:74 ../app/helpers/configuration_helper/configuration_view_helper.rb:79 msgid "Large Trees" msgstr "" -#: ../app/helpers/ops_helper/textual_summary.rb:108 ../app/views/ops/_db_summary.html.haml:14 +#: ../app/helpers/ops_helper/textual_summary.rb:21 ../app/helpers/ops_helper/textual_summary.rb:118 msgid "Largest Tables" msgstr "" -#: ../app/views/report/_form_tl_settings.html.haml:52 ../app/views/layouts/_pagingcontrols.html.haml:163 ../app/views/layouts/_pagingcontrols.html.haml:164 ../app/views/layouts/_pagingcontrols.html.haml:180 ../app/views/layouts/_pagingcontrols.html.haml:181 ../app/views/layouts/_pagingcontrols.html.haml:197 ../app/views/layouts/_pagingcontrols.html.haml:198 ../app/views/layouts/_x_pagingcontrols.html.haml:122 ../app/views/layouts/_x_pagingcontrols.html.haml:123 ../app/views/layouts/_saved_report_paging_bar.html.haml:83 ../app/views/layouts/_saved_report_paging_bar.html.haml:84 +#: ../app/views/report/_form_tl_settings.html.haml:52 ../app/views/layouts/_pagingcontrols.html.haml:163 ../app/views/layouts/_pagingcontrols.html.haml:164 ../app/views/layouts/_pagingcontrols.html.haml:180 ../app/views/layouts/_pagingcontrols.html.haml:181 ../app/views/layouts/_pagingcontrols.html.haml:197 ../app/views/layouts/_pagingcontrols.html.haml:198 ../app/views/layouts/_paging_bar.html.haml:64 ../app/views/layouts/_paging_bar.html.haml:65 msgid "Last" msgstr "" +#: ../app/assets/javascripts/controllers/container_dashboard/container_dashboard_controller.js:128 ../app/assets/javascripts/controllers/container_dashboard/container_dashboard_controller.js:129 ../app/assets/javascripts/controllers/container_dashboard/container_dashboard_controller.js:164 +msgid "Last 10 minutes" +msgstr "" + #: ../app/views/ops/_log_viewer.html.haml:4 msgid "Last 1000 lines from server %{name} [%{id}] in zone %{zone}" msgstr "" @@ -12135,23 +12415,31 @@ msgstr "" msgid "Last 1000 lines from the Automation log" msgstr "" -#: ../app/helpers/ui_constants.rb:427 +#: ../app/helpers/ui_constants.rb:424 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:90 msgid "Last 24 Hours" msgstr "" -#: ../app/helpers/ui_constants.rb:429 ../app/views/shared/views/_show_containers_dashboard.html.haml:128 ../app/views/shared/views/_show_containers_dashboard.html.haml:146 ../app/views/shared/views/_show_containers_dashboard.html.haml:195 ../app/views/shared/views/_show_containers_dashboard.html.haml:239 ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:95 ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:113 ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:151 ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:173 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:40 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:49 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:48 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:57 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:64 +#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:114 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:144 ../app/assets/javascripts/controllers/container_dashboard/container_dashboard_controller.js:125 ../app/assets/javascripts/controllers/container_dashboard/container_dashboard_controller.js:126 +msgid "Last 24 hours" +msgstr "" + +#: ../app/helpers/ui_constants.rb:426 ../app/views/ems_infra/_show_dashboard.html.haml:95 ../app/views/ems_infra/_show_dashboard.html.haml:113 ../app/views/ems_infra/_show_dashboard.html.haml:151 ../app/views/ems_infra/_show_dashboard.html.haml:173 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:40 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:49 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:62 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:65 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:72 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:75 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:82 msgid "Last 30 Days" msgstr "" -#: ../app/helpers/ui_constants.rb:428 +#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:98 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:130 +msgid "Last 30 days" +msgstr "" + +#: ../app/helpers/ui_constants.rb:425 msgid "Last 7 Days" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:188 +#: ../app/helpers/vm_helper/textual_summary.rb:228 msgid "Last Analyzed" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:779 ../app/helpers/vm_cloud_helper/textual_summary.rb:299 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:310 ../app/helpers/vm_helper/textual_summary.rb:776 msgid "Last Boot Time" msgstr "" @@ -12159,11 +12447,11 @@ msgstr "" msgid "Last Checked for updates" msgstr "" -#: ../app/helpers/ops_helper/textual_summary.rb:66 +#: ../app/helpers/ops_helper/textual_summary.rb:76 msgid "Last Collection" msgstr "" -#: ../app/helpers/ui_constants.rb:554 +#: ../app/helpers/ui_constants.rb:521 msgid "Last Hour" msgstr "" @@ -12171,7 +12459,7 @@ msgstr "" msgid "Last Log Collection" msgstr "" -#: ../app/views/miq_request/_request.html.haml:100 ../app/views/miq_request/_request_details.html.haml:108 ../app/views/ops/_logs_selected.html.haml:35 ../app/views/ops/rhn/_server_table.html.haml:101 +#: ../app/views/ops/rhn/_server_table.html.haml:101 ../app/views/ops/_logs_selected.html.haml:35 ../app/views/miq_request/_request.html.haml:100 ../app/views/miq_request/_request_details.html.haml:108 msgid "Last Message" msgstr "" @@ -12179,11 +12467,11 @@ msgstr "" msgid "Last Metrics Collection" msgstr "" -#: ../app/helpers/ui_constants.rb:598 +#: ../app/helpers/ui_constants.rb:565 msgid "Last Month" msgstr "" -#: ../app/helpers/ui_constants.rb:606 +#: ../app/helpers/ui_constants.rb:573 msgid "Last Quarter" msgstr "" @@ -12195,19 +12483,19 @@ msgstr "" msgid "Last Refreshed On" msgstr "" -#: ../app/views/ops/_schedule_show.html.haml:201 ../app/views/report/_report_info.html.haml:144 ../app/views/report/_show_schedule.html.haml:92 ../app/views/report/_widget_show.html.haml:87 +#: ../app/views/ops/_schedule_show.html.haml:201 ../app/views/report/_show_schedule.html.haml:92 ../app/views/report/_widget_show.html.haml:87 ../app/views/report/_report_info.html.haml:144 msgid "Last Run Time" msgstr "" -#: ../app/helpers/ops_helper/textual_summary.rb:61 +#: ../app/helpers/ops_helper/textual_summary.rb:71 msgid "Last Start Time" msgstr "" -#: ../app/helpers/container_helper/textual_summary.rb:54 +#: ../app/helpers/container_helper/textual_summary.rb:63 msgid "Last State" msgstr "" -#: ../app/helpers/container_node_helper/textual_summary.rb:17 +#: ../app/helpers/container_node_helper/textual_summary.rb:31 msgid "Last Transition Time" msgstr "" @@ -12215,7 +12503,7 @@ msgstr "" msgid "Last Update" msgstr "" -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:55 ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:107 ../app/helpers/storage_manager_helper/textual_summary.rb:35 ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:74 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:114 ../app/helpers/ontap_storage_system_helper/textual_summary.rb:59 +#: ../app/helpers/storage_manager_helper/textual_summary.rb:35 msgid "Last Update Status" msgstr "" @@ -12223,19 +12511,19 @@ msgstr "" msgid "Last Updated" msgstr "" -#: ../app/helpers/ui_constants.rb:591 ../app/views/report/_form_filter_chargeback.html.haml:278 +#: ../app/helpers/ui_constants.rb:558 ../app/views/report/_form_filter_chargeback.html.haml:306 msgid "Last Week" msgstr "" -#: ../app/helpers/ui_constants.rb:613 +#: ../app/helpers/ui_constants.rb:580 msgid "Last Year" msgstr "" -#: ../app/controllers/application_controller/explorer.rb:253 +#: ../app/controllers/application_controller/explorer.rb:254 msgid "Last selected %{record_name} no longer exists" msgstr "" -#: ../app/controllers/vm_common.rb:440 +#: ../app/controllers/vm_common.rb:294 msgid "Last selected Snapshot no longer exists" msgstr "" @@ -12247,7 +12535,7 @@ msgstr "" msgid "Level" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:87 ../app/helpers/application_helper/toolbar/template_infras_center.rb:115 ../app/helpers/application_helper/toolbar/host_center.rb:105 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:81 ../app/helpers/application_helper/toolbar/vms_center.rb:107 ../app/helpers/application_helper/toolbar/service_center.rb:59 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:119 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:58 ../app/helpers/application_helper/toolbar/miq_template_center.rb:82 ../app/helpers/application_helper/toolbar/configured_system/lifecycle_mixin.rb:7 ../app/helpers/application_helper/toolbar/x_provider_foreman_foreman_configured_system_center.rb:6 ../app/helpers/application_helper/toolbar/x_foreman_configured_system_center.rb:6 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:126 ../app/helpers/application_helper/toolbar/services_center.rb:64 ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:45 ../app/helpers/application_helper/toolbar/x_vm_center.rb:106 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:142 ../app/helpers/application_helper/toolbar/orchestration_stack_center.rb:38 ../app/helpers/application_helper/toolbar/hosts_center.rb:153 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:84 ../app/views/vm_common/_main.html.haml:9 ../app/views/orchestration_stack/_main.html.haml:9 ../app/views/service/_svcs_show.html.haml:9 ../app/views/vm_cloud/_main.html.haml:9 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:82 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:87 ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:45 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:143 ../app/helpers/application_helper/toolbar/x_provider_foreman_foreman_configured_system_center.rb:6 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:128 ../app/helpers/application_helper/toolbar/host_center.rb:107 ../app/helpers/application_helper/toolbar/orchestration_stack_center.rb:38 ../app/helpers/application_helper/toolbar/x_vm_center.rb:107 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:60 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:87 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:122 ../app/helpers/application_helper/toolbar/vms_center.rb:108 ../app/helpers/application_helper/toolbar/template_infras_center.rb:115 ../app/helpers/application_helper/toolbar/service_center.rb:59 ../app/helpers/application_helper/toolbar/x_foreman_configured_system_center.rb:6 ../app/helpers/application_helper/toolbar/service/lifecycle_mixin.rb:7 ../app/helpers/application_helper/toolbar/hosts_center.rb:155 ../app/helpers/application_helper/toolbar/configured_system/lifecycle_mixin.rb:7 ../app/helpers/orchestration_stack_helper/textual_summary.rb:15 ../app/helpers/service_helper/textual_summary.rb:65 ../app/helpers/vm_helper/textual_summary.rb:33 msgid "Lifecycle" msgstr "" @@ -12267,47 +12555,47 @@ msgstr "" msgid "Limit Chart to" msgstr "" -#: ../app/views/container_project/_main.html.haml:12 +#: ../app/helpers/container_project_helper/textual_summary.rb:50 msgid "Limit Ranges" msgstr "" -#: ../app/helpers/container_project_helper/textual_summary.rb:44 +#: ../app/helpers/container_project_helper/textual_summary.rb:52 msgid "Limit Request Ratio" msgstr "" -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:74 ../app/helpers/configuration_helper/configuration_view_helper.rb:80 ../app/helpers/configuration_helper/configuration_view_helper.rb:86 ../app/helpers/application_helper/toolbar/x_gtl_view.rb:22 ../app/helpers/application_helper/toolbar/gtl_view.rb:22 ../app/views/configuration/_ui_1.html.haml:114 +#: ../app/helpers/application_helper/toolbar/gtl_view.rb:22 ../app/helpers/application_helper/toolbar/x_gtl_view.rb:22 ../app/helpers/configuration_helper/configuration_view_helper.rb:86 ../app/helpers/configuration_helper/configuration_view_helper.rb:92 ../app/helpers/configuration_helper/configuration_view_helper.rb:98 ../app/views/configuration/_ui_1.html.haml:113 msgid "List View" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:464 +#: ../app/controllers/application_controller/ci_processing.rb:483 msgid "Live Migrate Instance '%{name}'" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:521 -msgid "Live Migrating %{instance} \"%{name}\"" -msgstr "" - -#: ../app/controllers/vm_common.rb:1696 +#: ../app/controllers/vm_common.rb:1504 msgid "Live Migrating %{model} \"%{name}\"" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:503 +#: ../app/controllers/application_controller/ci_processing.rb:522 msgid "Live Migration of %{model} \"%{name}\" was cancelled by the user" msgstr "" -#: ../app/views/layouts/_adv_search_footer.html.haml:65 ../app/views/layouts/_adv_search_footer.html.haml:71 +#: ../app/controllers/application_controller/ci_processing.rb:565 +msgid "Live migration of Instance \"%{name}\" complete." +msgstr "" + +#: ../app/views/layouts/_adv_search_footer.html.haml:7 ../app/views/layouts/_adv_search_footer.html.haml:13 ../app/views/layouts/_adv_search_footer.html.haml:72 ../app/views/layouts/_adv_search_footer.html.haml:78 msgid "Load" msgstr "" -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:94 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:220 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:333 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:365 ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:38 ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:28 ../app/views/network_topology/show.html.haml:185 +#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:38 ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:28 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:94 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:220 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:333 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:365 ../app/views/network_topology/show.html.haml:204 msgid "Load Balancer" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:111 +#: ../app/helpers/vm_helper/textual_summary.rb:151 msgid "Load Balancer Status" msgstr "" -#: ../app/presenters/menu/default_menu.rb:145 ../app/helpers/ems_network_helper/textual_summary.rb:79 ../app/controllers/vm_common.rb:533 ../app/controllers/ems_common.rb:104 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:338 ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:43 +#: ../app/presenters/menu/default_menu.rb:148 ../app/helpers/ems_network_helper/textual_summary.rb:86 ../app/controllers/vm_common.rb:387 ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:43 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:338 msgid "Load Balancers" msgstr "" @@ -12315,7 +12603,7 @@ msgstr "" msgid "Load Values on Init" msgstr "" -#: ../app/views/layouts/_adv_search_footer.html.haml:15 +#: ../app/views/layouts/_adv_search_footer.html.haml:13 msgid "Load a filter" msgstr "" @@ -12323,19 +12611,11 @@ msgstr "" msgid "Load balancers can only be assigned to Masters or Nodes" msgstr "" -#: ../app/views/layouts/_adv_search_footer.html.haml:71 +#: ../app/views/layouts/_adv_search_footer.html.haml:78 msgid "Load the filter shown above" msgstr "" -#: ../app/views/layouts/_adv_search_footer.html.haml:9 ../app/views/layouts/_adv_search_footer.html.haml:15 -msgid "Load..." -msgstr "" - -#: ../app/views/vm_common/console_vnc.html.haml:30 -msgid "Loading ..." -msgstr "" - -#: ../app/views/ems_container/_show_ad_hoc_metrics.html.haml:145 +#: ../app/views/ems_container/ad_hoc/_list_view_blank.html.haml:19 msgid "Loading available tags" msgstr "" @@ -12343,11 +12623,15 @@ msgstr "" msgid "Loading summary..." msgstr "" -#: ../app/views/configuration/_ui_1.html.haml:146 +#: ../app/views/configuration/_ui_1.html.haml:173 msgid "Locale" msgstr "" -#: ../app/controllers/ops_controller/settings/common.rb:1163 ../app/controllers/ops_controller/settings/upload.rb:46 +#: ../app/views/miq_policy/_action_options.html.haml:653 +msgid "Localhost" +msgstr "" + +#: ../app/controllers/ops_controller/settings/common.rb:1111 ../app/controllers/ops_controller/settings/upload.rb:46 msgid "Locate and upload a file to start the import process" msgstr "" @@ -12359,7 +12643,7 @@ msgstr "" msgid "Lock this Domain" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:193 +#: ../app/helpers/host_helper/textual_summary.rb:200 msgid "Lockdown Mode" msgstr "" @@ -12367,15 +12651,15 @@ msgstr "" msgid "Locked" msgstr "" -#: ../app/controllers/application_controller.rb:1313 +#: ../app/controllers/application_controller.rb:1320 msgid "Lockout Duration" msgstr "" -#: ../app/controllers/application_controller.rb:1311 +#: ../app/controllers/application_controller.rb:1318 msgid "Lockout Threshold" msgstr "" -#: ../app/presenters/menu/default_menu.rb:218 ../app/presenters/menu/default_menu.rb:234 ../app/controllers/miq_ae_tools_controller.rb:39 ../app/controllers/miq_policy_controller.rb:293 ../app/views/ops/_all_tabs.html.haml:184 +#: ../app/presenters/menu/default_menu.rb:216 ../app/presenters/menu/default_menu.rb:255 ../app/controllers/miq_policy_controller.rb:293 ../app/controllers/miq_ae_tools_controller.rb:39 ../app/views/ops/_all_tabs.html.haml:184 msgid "Log" msgstr "" @@ -12391,35 +12675,35 @@ msgstr "" msgid "Log Depot URI" msgstr "" -#: ../app/views/ops/_settings_server_tab.html.haml:632 +#: ../app/views/ops/_settings_server_tab.html.haml:596 msgid "Log Level" msgstr "" -#: ../app/controllers/host_controller.rb:636 +#: ../app/controllers/host_controller.rb:599 msgid "Log Wrap Size must be numeric and greater than zero" msgstr "" -#: ../app/controllers/ops_controller/diagnostics.rb:616 +#: ../app/controllers/ops_controller/diagnostics.rb:607 msgid "Log collection error returned: %{error_message}" msgstr "" -#: ../app/controllers/ops_controller/diagnostics.rb:618 +#: ../app/controllers/ops_controller/diagnostics.rb:609 msgid "Log collection for %{product} %{object_type} %{name} has been initiated" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:773 +#: ../app/helpers/application_helper/button/zone_collect_logs.rb:11 msgid "Log collection is already in progress for one or more %{servers} in this Zone" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:619 +#: ../app/helpers/application_helper/button/collect_logs.rb:9 msgid "Log collection is already in progress for this %{server}" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:623 +#: ../app/helpers/application_helper/button/collect_logs.rb:12 msgid "Log collection requires the Log Depot settings to be configured" msgstr "" -#: ../app/views/ops/_settings_server_tab.html.haml:623 +#: ../app/views/ops/_settings_server_tab.html.haml:587 msgid "Logging" msgstr "" @@ -12427,7 +12711,7 @@ msgstr "" msgid "Logging into" msgstr "" -#: ../app/views/dashboard/login.html.haml:53 ../app/views/dashboard/login.html.haml:151 ../app/views/dashboard/login.html.haml:151 ../app/views/dashboard/login.html.haml:151 ../app/views/layouts/_auth_credentials2.html.haml:10 +#: ../app/views/layouts/_auth_credentials2.html.haml:10 ../app/views/dashboard/login.html.haml:53 ../app/views/dashboard/login.html.haml:151 ../app/views/dashboard/login.html.haml:151 ../app/views/dashboard/login.html.haml:151 msgid "Login" msgstr "" @@ -12451,11 +12735,11 @@ msgstr "" msgid "Logout" msgstr "" -#: ../app/controllers/ops_controller/diagnostics.rb:186 ../app/controllers/ops_controller/diagnostics.rb:198 ../app/controllers/ops_controller/diagnostics.rb:210 ../app/controllers/ops_controller/diagnostics.rb:864 ../app/controllers/ops_controller/diagnostics.rb:870 ../app/controllers/ops_controller/diagnostics.rb:876 ../app/controllers/miq_ae_tools_controller.rb:34 ../app/controllers/miq_ae_tools_controller.rb:46 ../app/controllers/miq_policy_controller.rb:285 ../app/controllers/miq_policy_controller.rb:300 +#: ../app/controllers/miq_policy_controller.rb:285 ../app/controllers/miq_policy_controller.rb:300 ../app/controllers/miq_ae_tools_controller.rb:34 ../app/controllers/miq_ae_tools_controller.rb:46 ../app/controllers/ops_controller/diagnostics.rb:186 ../app/controllers/ops_controller/diagnostics.rb:198 ../app/controllers/ops_controller/diagnostics.rb:210 ../app/controllers/ops_controller/diagnostics.rb:854 ../app/controllers/ops_controller/diagnostics.rb:860 ../app/controllers/ops_controller/diagnostics.rb:866 msgid "Logs for this %{product} Server are not available for viewing" msgstr "" -#: ../app/views/catalog/_form_details_info.html.haml:4 ../app/views/catalog/_svccat_tree_show.html.haml:60 ../app/views/catalog/_sandt_tree_show.html.haml:234 ../app/views/ops/_category_form.html.haml:43 ../app/views/ops/_category_form.html.haml:159 ../app/views/ops/_settings_co_tags_tab.html.haml:35 +#: ../app/views/ops/_category_form.html.haml:43 ../app/views/ops/_category_form.html.haml:159 ../app/views/ops/_settings_co_tags_tab.html.haml:35 ../app/views/catalog/_sandt_tree_show.html.haml:250 ../app/views/catalog/_svccat_tree_show.html.haml:59 ../app/views/catalog/_form_details_info.html.haml:4 msgid "Long Description" msgstr "" @@ -12467,11 +12751,11 @@ msgstr "" msgid "Lookup" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:789 ../app/helpers/vm_helper/textual_summary.rb:798 ../app/helpers/vm_helper/textual_summary.rb:808 ../app/helpers/vm_helper/textual_summary.rb:819 ../app/helpers/container_image_helper/textual_summary.rb:70 ../app/views/vm_common/_right_size.html.haml:35 +#: ../app/helpers/container_image_helper/textual_summary.rb:83 ../app/helpers/vm_helper/textual_summary.rb:786 ../app/helpers/vm_helper/textual_summary.rb:795 ../app/helpers/vm_helper/textual_summary.rb:805 ../app/helpers/vm_helper/textual_summary.rb:816 ../app/views/vm_common/_right_size.html.haml:35 msgid "Low" msgstr "" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:70 ../app/controllers/application_controller/miq_request_methods.rb:438 ../app/views/host/_form.html.haml:139 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:81 ../app/controllers/application_controller/miq_request_methods.rb:441 ../app/views/host/_form.html.haml:139 msgid "MAC Address" msgid_plural "MAC Addresses" msgstr[0] "" @@ -12485,7 +12769,7 @@ msgstr "" msgid "MHz" msgstr "" -#: ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:226 ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:248 +#: ../app/assets/javascripts/controllers/live_metrics/util/metrics-config-factory.js:41 ../app/assets/javascripts/controllers/live_metrics/util/metrics-config-factory.js:76 msgid "MM/DD/YYYY HH:mm" msgstr "" @@ -12493,15 +12777,27 @@ msgstr "" msgid "MS vCenter" msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:30 ../app/helpers/provider_configuration_manager_helper.rb:29 +#: ../app/helpers/provider_foreman_helper.rb:28 ../app/helpers/provider_configuration_manager_helper.rb:29 ../app/helpers/automation_manager_helper.rb:26 msgid "Mac address" msgstr "" -#: ../app/helpers/container_node_helper/textual_summary.rb:65 +#: ../app/helpers/service_helper/textual_summary.rb:222 +msgid "Machine" +msgstr "" + +#: ../app/views/catalog/_sandt_tree_show.html.haml:389 ../app/views/catalog/_sandt_tree_show.html.haml:548 +msgid "Machine Credential" +msgstr "" + +#: ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:66 +msgid "Machine Credentials" +msgstr "" + +#: ../app/helpers/container_node_helper/textual_summary.rb:78 msgid "Machine ID" msgstr "" -#: ../app/views/miq_ae_class/_method_inputs.html.haml:7 ../app/views/miq_ae_class/_method_form.html.haml:6 ../app/views/miq_ae_class/_instance_form.html.haml:5 +#: ../app/views/miq_ae_class/_instance_form.html.haml:5 ../app/views/miq_ae_class/_method_inputs.html.haml:7 ../app/views/miq_ae_class/_method_form.html.haml:6 msgid "Main Info" msgstr "" @@ -12509,7 +12805,7 @@ msgstr "" msgid "Maintenance" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:197 +#: ../app/helpers/host_helper/textual_summary.rb:204 msgid "Maintenance Mode" msgstr "" @@ -12521,7 +12817,7 @@ msgstr "" msgid "Major Version" msgstr "" -#: ../app/controllers/application_controller/compare.rb:1475 ../app/views/shared/_compare_header_expanded.html.haml:11 +#: ../app/controllers/application_controller/compare.rb:1368 ../app/views/shared/_compare_header_expanded.html.haml:11 msgid "Make %{name} the base" msgstr "" @@ -12529,7 +12825,7 @@ msgstr "" msgid "Make the Orchestration Template orderable" msgstr "" -#: ../app/controllers/report_controller.rb:741 ../app/views/report/_menu_form1.html.haml:9 +#: ../app/controllers/report_controller.rb:745 ../app/views/report/_menu_form1.html.haml:9 msgid "Manage Accordions" msgstr "" @@ -12537,11 +12833,11 @@ msgstr "" msgid "Manage Accordions & Folders" msgstr "" -#: ../app/controllers/report_controller.rb:752 +#: ../app/controllers/report_controller.rb:756 msgid "Manage Folders" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:54 ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:44 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:114 ../app/helpers/application_helper/toolbar/template_infras_center.rb:79 ../app/helpers/application_helper/toolbar/host_center.rb:79 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:55 ../app/helpers/application_helper/toolbar/container_replicators_center.rb:23 ../app/helpers/application_helper/toolbar/container_image_center.rb:34 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:68 ../app/helpers/application_helper/toolbar/vms_center.rb:71 ../app/helpers/application_helper/toolbar/container_replicator_center.rb:44 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:95 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:82 ../app/helpers/application_helper/toolbar/container_images_center.rb:42 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:54 ../app/helpers/application_helper/toolbar/miq_template_center.rb:56 ../app/helpers/application_helper/toolbar/ems_storage_center.rb:42 ../app/helpers/application_helper/toolbar/container_node_center.rb:44 ../app/helpers/application_helper/toolbar/ems_network_center.rb:48 ../app/helpers/application_helper/toolbar/ems_block_storages_center.rb:44 ../app/helpers/application_helper/toolbar/container_groups_center.rb:23 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:65 ../app/helpers/application_helper/toolbar/ems_container_center.rb:86 ../app/helpers/application_helper/toolbar/ems_containers_center.rb:73 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:90 ../app/helpers/application_helper/toolbar/container_group_center.rb:44 ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:36 ../app/helpers/application_helper/toolbar/x_vm_center.rb:80 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:106 ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:65 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:70 ../app/helpers/application_helper/toolbar/resource_pools_center.rb:36 ../app/helpers/application_helper/toolbar/ems_networks_center.rb:60 ../app/helpers/application_helper/toolbar/resource_pool_center.rb:30 ../app/helpers/application_helper/toolbar/hosts_center.rb:116 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:60 ../app/helpers/application_helper/toolbar/container_nodes_center.rb:23 ../app/helpers/application_helper/toolbar/ems_storages_center.rb:44 +#: ../app/helpers/application_helper/toolbar/container_replicators_center.rb:23 ../app/helpers/application_helper/toolbar/ems_physical_infras_center.rb:65 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:55 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:62 ../app/helpers/application_helper/toolbar/container_replicator_center.rb:44 ../app/helpers/application_helper/toolbar/ems_network_center.rb:48 ../app/helpers/application_helper/toolbar/ems_physical_infra_center.rb:47 ../app/helpers/application_helper/toolbar/ems_block_storages_center.rb:44 ../app/helpers/application_helper/toolbar/resource_pools_center.rb:36 ../app/helpers/application_helper/toolbar/ems_container_center.rb:95 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:106 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:91 ../app/helpers/application_helper/toolbar/ems_storage_center.rb:42 ../app/helpers/application_helper/toolbar/host_center.rb:79 ../app/helpers/application_helper/toolbar/container_image_center.rb:36 ../app/helpers/application_helper/toolbar/x_vm_center.rb:80 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:84 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:115 ../app/helpers/application_helper/toolbar/container_node_center.rb:53 ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:36 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:97 ../app/helpers/application_helper/toolbar/vms_center.rb:71 ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:55 ../app/helpers/application_helper/toolbar/ems_containers_center.rb:74 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:70 ../app/helpers/application_helper/toolbar/container_images_center.rb:43 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:67 ../app/helpers/application_helper/toolbar/container_group_center.rb:44 ../app/helpers/application_helper/toolbar/template_infras_center.rb:79 ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:44 ../app/helpers/application_helper/toolbar/hosts_center.rb:118 ../app/helpers/application_helper/toolbar/resource_pool_center.rb:30 ../app/helpers/application_helper/toolbar/ems_networks_center.rb:60 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:68 ../app/helpers/application_helper/toolbar/container_nodes_center.rb:23 ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:67 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:54 ../app/helpers/application_helper/toolbar/container_groups_center.rb:23 ../app/helpers/application_helper/toolbar/ems_storages_center.rb:44 msgid "Manage Policies" msgstr "" @@ -12549,11 +12845,11 @@ msgstr "" msgid "Manage Policies for the selected Block Storage Managers" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:64 +#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:66 msgid "Manage Policies for the selected Cloud Providers" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:64 +#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:66 msgid "Manage Policies for the selected Infrastructure Providers" msgstr "" @@ -12565,6 +12861,10 @@ msgstr "" msgid "Manage Policies for the selected Object Storage Managers" msgstr "" +#: ../app/helpers/application_helper/toolbar/ems_physical_infras_center.rb:64 +msgid "Manage Policies for the selected Physical Infrastructure Providers" +msgstr "" + #: ../app/helpers/application_helper/toolbar/resource_pools_center.rb:35 msgid "Manage Policies for the selected Resource Pools" msgstr "" @@ -12573,15 +12873,15 @@ msgstr "" msgid "Manage Policies for the selected Storage Managers" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:78 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:69 +#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:69 ../app/helpers/application_helper/toolbar/template_infras_center.rb:78 msgid "Manage Policies for the selected Templates" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:113 ../app/helpers/application_helper/toolbar/vms_center.rb:70 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:53 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:89 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:105 ../app/helpers/application_helper/toolbar/hosts_center.rb:115 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:105 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:90 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:114 ../app/helpers/application_helper/toolbar/vms_center.rb:70 ../app/helpers/application_helper/toolbar/hosts_center.rb:117 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:53 msgid "Manage Policies for the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:72 +#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:73 msgid "Manage Policies for these Containers Providers" msgstr "" @@ -12597,19 +12897,19 @@ msgstr "" msgid "Manage Policies for these Replicators" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:53 +#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:54 msgid "Manage Policies for this Cloud Provider" msgstr "" -#: ../app/helpers/application_helper/toolbar/container_images_center.rb:41 +#: ../app/helpers/application_helper/toolbar/container_images_center.rb:42 msgid "Manage Policies for this Container Image" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:85 +#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:94 msgid "Manage Policies for this Containers Provider" msgstr "" -#: ../app/helpers/application_helper/toolbar/container_image_center.rb:33 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:81 +#: ../app/helpers/application_helper/toolbar/container_image_center.rb:35 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:83 msgid "Manage Policies for this Image" msgstr "" @@ -12617,7 +12917,7 @@ msgstr "" msgid "Manage Policies for this Infrastructure Provider" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:94 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:59 +#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:61 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:96 msgid "Manage Policies for this Instance" msgstr "" @@ -12625,10 +12925,14 @@ msgstr "" msgid "Manage Policies for this Network Provider" msgstr "" -#: ../app/helpers/application_helper/toolbar/container_node_center.rb:43 +#: ../app/helpers/application_helper/toolbar/container_node_center.rb:52 msgid "Manage Policies for this Node" msgstr "" +#: ../app/helpers/application_helper/toolbar/ems_physical_infra_center.rb:46 +msgid "Manage Policies for this Physical Infrastructure Provider" +msgstr "" + #: ../app/helpers/application_helper/toolbar/container_group_center.rb:43 msgid "Manage Policies for this Pod" msgstr "" @@ -12645,7 +12949,7 @@ msgstr "" msgid "Manage Policies for this Storage Manager" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:54 ../app/helpers/application_helper/toolbar/miq_template_center.rb:55 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:54 msgid "Manage Policies for this Template" msgstr "" @@ -12669,7 +12973,7 @@ msgstr "" msgid "Manage Reports" msgstr "" -#: ../app/controllers/ops_controller.rb:656 +#: ../app/controllers/ops_controller.rb:695 msgid "Manage quotas for %{model} \"%{name}\"" msgstr "" @@ -12677,59 +12981,63 @@ msgstr "" msgid "Manage quotas for %{model} \"%{name}\" was cancelled by the user" msgstr "" -#: ../app/controllers/ops_controller/diagnostics.rb:865 +#: ../app/helpers/application_helper/toolbar/floating_ip_center.rb:14 +msgid "Manage the port association of this Floating" +msgstr "" + +#: ../app/controllers/ops_controller/diagnostics.rb:855 msgid "ManageIQ" msgstr "" +#: ../app/views/layouts/remote_console.html.haml:9 +msgid "ManageIQ HTML5 Remote Console" +msgstr "" + #: ../app/helpers/ui_constants.rb:104 msgid "ManageIQ-Blue" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2506 +#: ../app/controllers/application_controller/ci_processing.rb:2538 msgid "Manageable" msgstr "" -#: ../app/helpers/storage_helper/textual_summary.rb:97 +#: ../app/helpers/storage_helper/textual_summary.rb:96 msgid "Managed %{tables}" msgstr "" -#: ../app/controllers/ems_common.rb:105 -msgid "Managed Datastores" -msgstr "" - -#: ../app/controllers/ems_common.rb:108 +#: ../app/controllers/ems_common.rb:77 msgid "Managed Hosts" msgstr "" -#: ../app/helpers/cloud_subnet_helper/textual_summary.rb:84 +#: ../app/helpers/cloud_subnet_helper/textual_summary.rb:97 msgid "Managed Subnets" msgstr "" -#: ../app/helpers/storage_helper/textual_summary.rb:86 +#: ../app/helpers/storage_helper/textual_summary.rb:85 msgid "Managed VMs" msgstr "" -#: ../app/helpers/ems_cinder_helper/textual_summary.rb:72 ../app/helpers/ems_infra_helper/textual_summary.rb:172 ../app/helpers/ems_cloud_helper/textual_summary.rb:162 ../app/helpers/ems_storage_helper/textual_summary.rb:60 ../app/helpers/ems_swift_helper/textual_summary.rb:68 ../app/helpers/ems_container_helper/textual_summary.rb:80 ../app/helpers/ems_network_helper/textual_summary.rb:97 +#: ../app/helpers/ems_swift_helper/textual_summary.rb:69 ../app/helpers/ems_network_helper/textual_summary.rb:105 ../app/helpers/ems_cloud_helper/textual_summary.rb:153 ../app/helpers/ems_infra_helper/textual_summary.rb:167 ../app/helpers/ems_cinder_helper/textual_summary.rb:72 ../app/helpers/ems_physical_infra_helper/textual_summary.rb:84 ../app/helpers/ems_storage_helper/textual_summary.rb:63 ../app/helpers/ems_container_helper/textual_summary.rb:84 msgid "Managed by Zone" msgstr "" -#: ../app/helpers/storage_helper/textual_summary.rb:108 +#: ../app/helpers/storage_helper/textual_summary.rb:107 msgid "Managed/Registered VMs" msgstr "" -#: ../app/helpers/storage_helper/textual_summary.rb:112 +#: ../app/helpers/storage_helper/textual_summary.rb:111 msgid "Managed/Unregistered VMs" msgstr "" -#: ../app/presenters/menu/default_menu.rb:14 +#: ../app/presenters/menu/default_menu.rb:16 msgid "Management" msgstr "" -#: ../app/helpers/ems_cinder_helper/textual_summary.rb:52 ../app/helpers/service_helper/textual_summary.rb:35 ../app/helpers/ems_infra_helper/textual_summary.rb:67 ../app/helpers/ems_cloud_helper/textual_summary.rb:72 ../app/helpers/host_helper/textual_summary.rb:256 ../app/helpers/vm_helper/textual_summary.rb:175 ../app/helpers/ems_storage_helper/textual_summary.rb:52 ../app/helpers/ems_swift_helper/textual_summary.rb:52 ../app/helpers/vm_cloud_helper/textual_summary.rb:116 ../app/helpers/ems_network_helper/textual_summary.rb:55 +#: ../app/helpers/ems_swift_helper/textual_summary.rb:53 ../app/helpers/ems_network_helper/textual_summary.rb:62 ../app/helpers/ems_cloud_helper/textual_summary.rb:77 ../app/helpers/ems_infra_helper/textual_summary.rb:78 ../app/helpers/ems_cinder_helper/textual_summary.rb:52 ../app/helpers/host_helper/textual_summary.rb:263 ../app/helpers/vm_cloud_helper/textual_summary.rb:127 ../app/helpers/ems_physical_infra_helper/textual_summary.rb:66 ../app/helpers/ems_storage_helper/textual_summary.rb:55 ../app/helpers/service_helper/textual_summary.rb:80 ../app/helpers/vm_helper/textual_summary.rb:215 msgid "Management Engine GUID" msgstr "" -#: ../app/controllers/vm_common.rb:770 +#: ../app/controllers/vm_common.rb:624 msgid "Management Engine Relationship saved" msgstr "" @@ -12741,19 +13049,19 @@ msgstr "" msgid "Management Events" msgstr "" -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:19 ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:18 ../app/views/miq_request/_prov_host_dialog.html.haml:18 ../app/views/shared/views/_prov_dialog.html.haml:19 +#: ../app/views/miq_request/_prov_host_dialog.html.haml:18 ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:19 ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:18 ../app/views/shared/views/_prov_dialog.html.haml:19 msgid "Manager" msgstr "" -#: ../app/presenters/menu/default_menu.rb:161 ../app/presenters/menu/default_menu.rb:186 +#: ../app/presenters/menu/default_menu.rb:163 ../app/presenters/menu/default_menu.rb:188 msgid "Managers" msgstr "" -#: ../app/helpers/ui_constants.rb:400 +#: ../app/helpers/ui_constants.rb:397 msgid "Manual Input" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:148 +#: ../app/helpers/host_helper/textual_summary.rb:155 msgid "Manufacturer / Model" msgstr "" @@ -12761,7 +13069,7 @@ msgstr "" msgid "Map Tags" msgstr "" -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:137 +#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:147 msgid "Mapping for %{entity}, %{label} already exists" msgstr "" @@ -12769,15 +13077,15 @@ msgstr "" msgid "Mark All Read" msgstr "" -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:73 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:190 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:283 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:378 ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:7 ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:7 +#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:7 ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:7 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:73 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:190 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:283 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:378 msgid "Master" msgstr "" -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:5 ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:9 +#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:9 ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:5 msgid "Master configuration" msgstr "" -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:288 ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:12 +#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:12 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:288 msgid "Masters" msgstr "" @@ -12789,7 +13097,7 @@ msgstr "" msgid "Masters Base Name:" msgstr "" -#: ../app/helpers/container_project_helper/textual_summary.rb:43 ../app/helpers/provider_foreman_helper.rb:258 ../app/helpers/vm_helper/textual_summary.rb:789 ../app/helpers/vm_helper/textual_summary.rb:798 ../app/helpers/vm_helper/textual_summary.rb:808 ../app/helpers/vm_helper/textual_summary.rb:819 ../app/views/vm_common/_right_size.html.haml:20 +#: ../app/helpers/container_project_helper/textual_summary.rb:51 ../app/helpers/provider_foreman_helper.rb:263 ../app/helpers/automation_manager_helper.rb:99 ../app/helpers/vm_helper/textual_summary.rb:786 ../app/helpers/vm_helper/textual_summary.rb:795 ../app/helpers/vm_helper/textual_summary.rb:805 ../app/helpers/vm_helper/textual_summary.rb:816 ../app/views/vm_common/_right_size.html.haml:20 msgid "Max" msgstr "" @@ -12801,11 +13109,11 @@ msgstr "" msgid "Max Concurrent" msgstr "" -#: ../app/controllers/application_controller.rb:1301 +#: ../app/controllers/application_controller.rb:1308 msgid "Max Password Age" msgstr "" -#: ../app/helpers/container_node_helper/textual_summary.rb:55 +#: ../app/helpers/container_node_helper/textual_summary.rb:68 msgid "Max Pods Capacity" msgstr "" @@ -12825,15 +13133,15 @@ msgstr "" msgid "Max active VM Scans" msgstr "" -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:38 ../app/views/middleware_server/_add_datasource_step2.html.haml:37 +#: ../app/views/middleware_server/_specify_driver.html.haml:27 ../app/views/middleware_server/_add_datasource_step1.html.haml:38 msgid "Maximum length is 100" msgstr "" -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:71 ../app/views/middleware_server/_add_datasource_step2.html.haml:71 ../app/views/middleware_server/_add_datasource_step2.html.haml:105 +#: ../app/views/middleware_server/_specify_driver.html.haml:60 ../app/views/middleware_server/_specify_driver.html.haml:93 ../app/views/middleware_server/_add_datasource_step1.html.haml:71 msgid "Maximum length is 256" msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:94 ../app/helpers/provider_foreman_helper.rb:175 ../app/helpers/provider_foreman_helper.rb:221 ../app/helpers/container_image_helper/textual_summary.rb:75 +#: ../app/helpers/container_image_helper/textual_summary.rb:88 ../app/helpers/provider_foreman_helper.rb:96 ../app/helpers/provider_foreman_helper.rb:178 ../app/helpers/provider_foreman_helper.rb:226 ../app/helpers/automation_manager_helper.rb:62 msgid "Medium" msgstr "" @@ -12841,39 +13149,39 @@ msgstr "" msgid "Member VMs (%{count})" msgstr "" -#: ../app/helpers/service_helper/textual_summary.rb:43 ../app/helpers/chargeback_helper.rb:7 ../app/helpers/container_node_helper/textual_summary.rb:51 ../app/helpers/host_helper/textual_summary.rb:247 ../app/helpers/vm_helper/textual_summary.rb:605 ../app/helpers/vm_helper/textual_summary.rb:807 ../app/controllers/application_controller/miq_request_methods.rb:410 ../app/controllers/application_controller.rb:1163 ../app/controllers/miq_capacity_controller.rb:767 ../app/views/miq_capacity/_utilization_summary.html.haml:18 ../app/views/miq_capacity/_utilization_report.html.haml:33 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:163 ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:48 ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:125 ../app/views/miq_request/_reconfigure_show.html.haml:17 ../app/views/vm_common/_reconfigure.html.haml:15 ../app/views/vm_common/_right_size.html.haml:114 ../app/views/vm_common/_right_size.html.haml:241 ../app/views/vm_common/_right_size.html.haml:325 ../app/views/vm_common/_right_size.html.haml:408 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:35 ../app/assets/javascripts/controllers/ems_infra_dashboard/ems_infra_dashboard_controller.js:28 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:46 ../app/assets/javascripts/controllers/container_dashboard/container_dashboard_controller.js:31 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:54 +#: ../app/helpers/host_helper/textual_summary.rb:254 ../app/helpers/service_helper/textual_summary.rb:88 ../app/helpers/container_node_helper/textual_summary.rb:64 ../app/helpers/vm_helper/textual_summary.rb:644 ../app/helpers/vm_helper/textual_summary.rb:804 ../app/helpers/chargeback_helper.rb:7 ../app/controllers/miq_capacity_controller.rb:767 ../app/controllers/application_controller.rb:1170 ../app/controllers/application_controller/miq_request_methods.rb:410 ../app/views/vm_common/_reconfigure.html.haml:15 ../app/views/vm_common/_right_size.html.haml:114 ../app/views/vm_common/_right_size.html.haml:241 ../app/views/vm_common/_right_size.html.haml:325 ../app/views/vm_common/_right_size.html.haml:408 ../app/views/miq_capacity/_utilization_report.html.haml:33 ../app/views/miq_capacity/_utilization_summary.html.haml:18 ../app/views/miq_request/_reconfigure_show.html.haml:17 ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:48 ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:125 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:163 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:46 ../app/assets/javascripts/controllers/ems_infra_dashboard/ems_infra_dashboard_controller.js:27 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:71 ../app/assets/javascripts/controllers/container_dashboard/container_dashboard_controller.js:30 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:35 msgid "Memory" msgstr "" -#: ../app/helpers/resource_pool_helper.rb:13 ../app/helpers/resource_pool_helper/textual_summary.rb:133 ../app/views/vm_common/_config.html.haml:236 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:158 ../app/helpers/resource_pool_helper.rb:13 ../app/views/vm_common/_config.html.haml:236 msgid "Memory Limit" msgstr "" -#: ../app/helpers/resource_pool_helper.rb:6 ../app/helpers/resource_pool_helper/textual_summary.rb:121 ../app/views/vm_common/_config.html.haml:236 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:146 ../app/helpers/resource_pool_helper.rb:6 ../app/views/vm_common/_config.html.haml:236 msgid "Memory Reserve" msgstr "" -#: ../app/helpers/resource_pool_helper.rb:8 ../app/helpers/resource_pool_helper/textual_summary.rb:127 ../app/views/vm_common/_config.html.haml:236 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:152 ../app/helpers/resource_pool_helper.rb:8 ../app/views/vm_common/_config.html.haml:236 msgid "Memory Reserve Expand" msgstr "" -#: ../app/helpers/resource_pool_helper.rb:16 ../app/helpers/resource_pool_helper/textual_summary.rb:139 ../app/views/vm_common/_config.html.haml:236 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:164 ../app/helpers/resource_pool_helper.rb:16 ../app/views/vm_common/_config.html.haml:236 msgid "Memory Shares" msgstr "" -#: ../app/helpers/resource_pool_helper.rb:18 ../app/helpers/resource_pool_helper/textual_summary.rb:145 ../app/views/vm_common/_config.html.haml:236 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:170 ../app/helpers/resource_pool_helper.rb:18 ../app/views/vm_common/_config.html.haml:236 msgid "Memory Shares Level" msgstr "" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:34 ../app/views/miq_capacity/_planning_vm_profile.html.haml:85 ../app/views/miq_capacity/_planning_options.html.haml:202 ../app/views/miq_capacity/_planning_options.html.haml:368 ../app/views/miq_policy/_action_options.html.haml:217 ../app/views/miq_policy/_action_details.html.haml:294 ../app/views/ops/_selected_by_roles.html.haml:150 ../app/views/ops/_server_desc.html.haml:63 ../app/views/ops/_selected_by_servers.html.haml:102 +#: ../app/views/miq_policy/_action_options.html.haml:209 ../app/views/miq_policy/_action_details.html.haml:294 ../app/views/miq_capacity/_planning_options.html.haml:202 ../app/views/miq_capacity/_planning_options.html.haml:368 ../app/views/miq_capacity/_planning_vm_profile.html.haml:34 ../app/views/miq_capacity/_planning_vm_profile.html.haml:85 ../app/views/ops/_selected_by_roles.html.haml:150 ../app/views/ops/_server_desc.html.haml:63 ../app/views/ops/_selected_by_servers.html.haml:102 msgid "Memory Size" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:818 ../app/views/vm_common/_right_size.html.haml:149 ../app/views/ops/_selected_by_roles.html.haml:137 ../app/views/ops/_server_desc.html.haml:53 ../app/views/ops/_selected_by_servers.html.haml:89 +#: ../app/helpers/vm_helper/textual_summary.rb:815 ../app/views/vm_common/_right_size.html.haml:149 ../app/views/ops/_selected_by_roles.html.haml:137 ../app/views/ops/_server_desc.html.haml:53 ../app/views/ops/_selected_by_servers.html.haml:89 msgid "Memory Usage" msgstr "" -#: ../app/helpers/service_helper/textual_summary.rb:61 +#: ../app/helpers/service_helper/textual_summary.rb:106 msgid "Memory on Disk" msgstr "" @@ -12881,7 +13189,7 @@ msgstr "" msgid "Memory threshold" msgstr "" -#: ../app/helpers/ui_constants.rb:631 +#: ../app/helpers/ui_constants.rb:598 msgid "Menu" msgstr "" @@ -12889,15 +13197,15 @@ msgstr "" msgid "Menu Name" msgstr "" -#: ../app/views/report/_widget_form_menu.html.haml:4 ../app/views/report/_widget_show.html.haml:116 +#: ../app/views/report/_widget_show.html.haml:116 ../app/views/report/_widget_form_menu.html.haml:4 msgid "Menu Shortcuts" msgstr "" -#: ../app/helpers/ui_constants.rb:624 +#: ../app/helpers/ui_constants.rb:591 msgid "Menus" msgstr "" -#: ../app/helpers/container_build_helper/textual_summary.rb:24 ../app/helpers/container_helper/textual_summary.rb:50 ../app/views/miq_policy/import.html.haml:19 ../app/views/miq_request/_ae_prov_show.html.haml:20 ../app/views/shared/buttons/_ab_show.html.haml:111 ../app/views/miq_ae_class/_instance_fields.html.haml:31 ../app/views/miq_ae_class/_class_fields.html.haml:14 ../app/views/miq_ae_class/_class_fields.html.haml:79 ../app/views/ops/_schedule_show.html.haml:101 ../app/views/report/_widget_show.html.haml:97 ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:29 ../app/views/layouts/_ae_resolve_options.html.haml:42 +#: ../app/helpers/container_helper/textual_summary.rb:59 ../app/helpers/container_build_helper/textual_summary.rb:28 ../app/views/miq_policy/import.html.haml:19 ../app/views/ops/_schedule_show.html.haml:101 ../app/views/miq_request/_ae_prov_show.html.haml:20 ../app/views/shared/buttons/_ab_show.html.haml:111 ../app/views/miq_ae_class/_instance_fields.html.haml:31 ../app/views/miq_ae_class/_class_fields.html.haml:14 ../app/views/miq_ae_class/_class_fields.html.haml:79 ../app/views/report/_widget_show.html.haml:97 ../app/views/static/edit_alert_dialog.html.haml:24 ../app/views/layouts/_ae_resolve_options.html.haml:42 ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:29 msgid "Message" msgstr "" @@ -12905,7 +13213,11 @@ msgstr "" msgid "Message Filter" msgstr "" -#: ../app/views/ops/_settings_import_tags_tab.html.haml:6 ../app/views/ops/_settings_import_tab.html.haml:3 +#: ../app/assets/javascripts/services/alerts_center_service.js:100 +msgid "Message Text" +msgstr "" + +#: ../app/views/ops/_settings_import_tab.html.haml:3 ../app/views/ops/_settings_import_tags_tab.html.haml:6 msgid "Messages" msgstr "" @@ -12913,7 +13225,7 @@ msgstr "" msgid "Messaging" msgstr "" -#: ../app/presenters/menu/default_menu.rb:130 +#: ../app/presenters/menu/default_menu.rb:133 msgid "Messagings" msgstr "" @@ -12921,11 +13233,11 @@ msgstr "" msgid "Method Inputs" msgstr "" -#: ../app/views/miq_ae_class/_class_methods.html.haml:5 ../app/views/miq_ae_class/_all_tabs.html.haml:11 +#: ../app/views/miq_ae_class/_all_tabs.html.haml:11 ../app/views/miq_ae_class/_class_methods.html.haml:5 msgid "Methods" msgstr "" -#: ../app/views/ems_container/_show_ad_hoc_metrics.html.haml:140 ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:87 ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:165 ../app/views/ops/_db_info.html.haml:34 +#: ../app/views/ops/_db_info.html.haml:34 ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:87 ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:165 ../app/views/ems_container/ad_hoc/_list_view_blank.html.haml:14 msgid "Metrics" msgstr "" @@ -12933,86 +13245,94 @@ msgstr "" msgid "Microsoft System Center VMM" msgstr "" -#: ../app/views/configuration/_ui_1.html.haml:60 +#: ../app/views/configuration/_ui_1.html.haml:59 msgid "Middle (AB...34)" msgstr "" -#: ../app/presenters/menu/default_menu.rb:124 ../app/views/configuration/_ui_2.html.haml:143 +#: ../app/presenters/menu/default_menu.rb:127 ../app/views/configuration/_ui_2.html.haml:144 msgid "Middleware" msgstr "" -#: ../app/controllers/ems_common.rb:91 ../app/views/configuration/_ui_2.html.haml:146 +#: ../app/views/configuration/_ui_2.html.haml:147 msgid "Middleware Datasources" msgstr "" -#: ../app/controllers/ems_common.rb:90 ../app/views/configuration/_ui_2.html.haml:146 +#: ../app/views/configuration/_ui_2.html.haml:147 msgid "Middleware Deployments" msgstr "" -#: ../app/controllers/ems_common.rb:92 ../app/views/configuration/_ui_2.html.haml:146 +#: ../app/views/configuration/_ui_2.html.haml:147 msgid "Middleware Domains" msgstr "" -#: ../app/views/configuration/_ui_2.html.haml:146 +#: ../app/views/configuration/_ui_2.html.haml:147 msgid "Middleware Messaging" msgstr "" -#: ../app/controllers/ems_common.rb:94 -msgid "Middleware Messagings" -msgstr "" - -#: ../app/views/configuration/_ui_2.html.haml:146 +#: ../app/views/configuration/_ui_2.html.haml:147 msgid "Middleware Providers" msgstr "" -#: ../app/controllers/ems_common.rb:93 ../app/views/configuration/_ui_2.html.haml:146 +#: ../app/views/configuration/_ui_2.html.haml:147 msgid "Middleware Server Groups" msgstr "" -#: ../app/controllers/ems_common.rb:89 ../app/views/configuration/_ui_2.html.haml:146 +#: ../app/views/configuration/_ui_2.html.haml:147 msgid "Middleware Servers" msgstr "" -#: ../app/controllers/vm_common.rb:1717 +#: ../app/controllers/vm_common.rb:1525 msgid "Migrate %{vm_or_template}" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:136 ../app/views/vm_common/_live_migrate.html.haml:7 +#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:140 ../app/views/vm_common/_live_migrate.html.haml:7 msgid "Migrate Instance" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:156 +#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:158 msgid "Migrate selected Instance" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:174 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:175 msgid "Migrate selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:173 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:174 msgid "Migrate selected items to another Host/Datastore" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:127 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:128 msgid "Migrate this VM" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:126 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:127 msgid "Migrate this VM to another Host/Datastore" msgstr "" -#: ../app/helpers/container_project_helper/textual_summary.rb:43 ../app/helpers/provider_foreman_helper.rb:258 +#: ../app/helpers/container_project_helper/textual_summary.rb:51 ../app/helpers/provider_foreman_helper.rb:263 ../app/helpers/automation_manager_helper.rb:99 msgid "Min" msgstr "" -#: ../app/controllers/application_controller.rb:1303 +#: ../app/controllers/application_controller.rb:1310 msgid "Min Password Age" msgstr "" -#: ../app/controllers/application_controller.rb:1305 +#: ../app/controllers/application_controller.rb:1312 msgid "Min Password Length" msgstr "" +#: ../app/assets/javascripts/controllers/live_metrics/util/metrics-config-factory.js:70 +msgid "Min interval 1 Minute" +msgstr "" + +#: ../app/assets/javascripts/controllers/live_metrics/util/metrics-config-factory.js:72 +msgid "Min interval 20 Minutes" +msgstr "" + +#: ../app/assets/javascripts/controllers/live_metrics/util/metrics-config-factory.js:71 +msgid "Min interval 5 Minutes" +msgstr "" + #: ../app/views/middleware_server/_add_jdbc_driver.html.haml:170 msgid "Minor Version" msgstr "" @@ -13025,23 +13345,27 @@ msgstr "" msgid "MiqGroup no longer exists" msgstr "" -#: ../app/views/vm_common/_reconfigure.html.haml:205 ../app/views/vm_common/_disks.html.haml:11 ../app/views/ops/_ldap_domain_show.html.haml:257 ../app/views/ops/_settings_server_tab.html.haml:584 ../app/views/ops/_ldap_forest_entries.html.haml:20 ../app/views/ops/_ldap_server_entries.html.haml:19 ../app/views/ops/_settings_authentication_tab.html.haml:50 +#: ../app/views/vm_common/_disks.html.haml:11 ../app/views/vm_common/_reconfigure.html.haml:205 ../app/views/ops/_ldap_server_entries.html.haml:19 ../app/views/ops/_ldap_domain_show.html.haml:257 ../app/views/ops/_settings_authentication_tab.html.haml:50 ../app/views/ops/_ldap_forest_entries.html.haml:20 ../app/views/ops/_settings_server_tab.html.haml:548 msgid "Mode" msgstr "" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:48 ../app/views/middleware_server/_add_jdbc_driver.html.haml:92 +#: ../app/views/middleware_server/_specify_driver.html.haml:37 ../app/views/middleware_server/_add_jdbc_driver.html.haml:92 msgid "Module Name" msgstr "" -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 +#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 msgid "Monday" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:73 ../app/helpers/application_helper/toolbar/container_center.rb:6 ../app/helpers/application_helper/toolbar/host_center.rb:120 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:105 ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:36 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:87 ../app/helpers/application_helper/toolbar/ontap_storage_system_center.rb:36 ../app/helpers/application_helper/toolbar/container_replicator_center.rb:6 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:156 ../app/helpers/application_helper/toolbar/miq_template_center.rb:99 ../app/helpers/application_helper/toolbar/ontap_storage_volume_center.rb:21 ../app/helpers/application_helper/toolbar/ems_storage_center.rb:55 ../app/helpers/application_helper/toolbar/container_node_center.rb:6 ../app/helpers/application_helper/toolbar/ontap_logical_disk_center.rb:21 ../app/helpers/application_helper/toolbar/ems_network_center.rb:61 ../app/helpers/application_helper/toolbar/container_project_center.rb:6 ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:6 ../app/helpers/application_helper/toolbar/middleware_messaging_center.rb:7 ../app/helpers/application_helper/toolbar/ems_container_center.rb:40 ../app/helpers/application_helper/toolbar/ontap_file_share_center.rb:36 ../app/helpers/application_helper/toolbar/container_group_center.rb:6 ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:49 ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:35 ../app/helpers/application_helper/toolbar/x_vm_center.rb:150 ../app/helpers/application_helper/toolbar/availability_zone_center.rb:21 ../app/helpers/application_helper/toolbar/middleware_server_center.rb:7 ../app/helpers/application_helper/toolbar/container_service_center.rb:6 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:105 ../app/helpers/application_helper/toolbar/storage_center.rb:45 +#: ../app/presenters/menu/default_menu.rb:278 ../app/views/shared/views/_show_alerts_most_recent.html.haml:11 ../app/views/shared/views/_show_alerts_list.html.haml:11 ../app/views/shared/views/_show_alerts_overview.html.haml:9 +msgid "Monitor" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:106 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:109 ../app/helpers/application_helper/toolbar/container_replicator_center.rb:6 ../app/helpers/application_helper/toolbar/ems_network_center.rb:61 ../app/helpers/application_helper/toolbar/ems_physical_infra_center.rb:66 ../app/helpers/application_helper/toolbar/ems_container_center.rb:40 ../app/helpers/application_helper/toolbar/ems_storage_center.rb:55 ../app/helpers/application_helper/toolbar/host_center.rb:123 ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:6 ../app/helpers/application_helper/toolbar/x_vm_center.rb:151 ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:35 ../app/helpers/application_helper/toolbar/container_node_center.rb:6 ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:49 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:160 ../app/helpers/application_helper/toolbar/container_project_center.rb:6 ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:74 ../app/helpers/application_helper/toolbar/container_service_center.rb:6 ../app/helpers/application_helper/toolbar/availability_zone_center.rb:21 ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:36 ../app/helpers/application_helper/toolbar/container_group_center.rb:6 ../app/helpers/application_helper/toolbar/container_center.rb:6 ../app/helpers/application_helper/toolbar/middleware_server_center.rb:7 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:87 ../app/helpers/application_helper/toolbar/storage_center.rb:48 ../app/helpers/application_helper/toolbar/middleware_messaging_center.rb:7 msgid "Monitoring" msgstr "" -#: ../app/helpers/ui_constants.rb:313 ../app/views/report/_form_filter_chargeback.html.haml:254 +#: ../app/helpers/ui_constants.rb:310 ../app/views/report/_form_filter_chargeback.html.haml:282 msgid "Month" msgstr "" @@ -13049,15 +13373,19 @@ msgstr "" msgid "Monthly" msgstr "" -#: ../app/views/layouts/_tl_options.html.haml:116 +#: ../app/views/layouts/_tl_options.html.haml:116 ../app/assets/javascripts/controllers/live_metrics/util/metrics-config-factory.js:66 msgid "Months" msgstr "" -#: ../app/views/ems_container/_show_ad_hoc_metrics.html.haml:56 +#: ../app/views/ems_container/ad_hoc/_list_view.html.haml:33 msgid "Most Recent" msgstr "" -#: ../app/views/layouts/_perf_options.html.haml:30 +#: ../app/presenters/menu/default_menu.rb:272 ../app/views/shared/views/_show_alerts_most_recent.html.haml:23 +msgid "Most Recent Alerts" +msgstr "" + +#: ../app/views/layouts/_perf_options.html.haml:29 msgid "Most Recent Hour" msgstr "" @@ -13073,35 +13401,35 @@ msgstr "" msgid "Move all VMs to right" msgstr "" -#: ../app/controllers/report_controller.rb:744 +#: ../app/controllers/report_controller.rb:748 msgid "Move selected Accordion down" msgstr "" -#: ../app/controllers/report_controller.rb:747 +#: ../app/controllers/report_controller.rb:751 msgid "Move selected Accordion to bottom" msgstr "" -#: ../app/controllers/report_controller.rb:742 +#: ../app/controllers/report_controller.rb:746 msgid "Move selected Accordion to top" msgstr "" -#: ../app/controllers/report_controller.rb:743 +#: ../app/controllers/report_controller.rb:747 msgid "Move selected Accordion up" msgstr "" -#: ../app/views/miq_policy/_event_details.html.haml:166 +#: ../app/views/miq_policy/_event_details.html.haml:149 msgid "Move selected Action down" msgstr "" -#: ../app/views/miq_policy/_event_details.html.haml:156 +#: ../app/views/miq_policy/_event_details.html.haml:139 msgid "Move selected Action up" msgstr "" -#: ../app/views/miq_policy/_event_details.html.haml:111 +#: ../app/views/miq_policy/_event_details.html.haml:94 msgid "Move selected Actions into this Event" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:325 +#: ../app/views/miq_policy/_action_options.html.haml:317 msgid "Move selected Alerts into this Action" msgstr "" @@ -13137,7 +13465,7 @@ msgstr "" msgid "Move selected fields %{where}" msgstr "" -#: ../app/views/shared/buttons/_group_order_form.html.haml:57 ../app/views/shared/buttons/_column_lists.html.haml:115 ../app/views/miq_ae_class/_fields_seq_form.html.haml:39 ../app/views/miq_ae_class/_domains_priority_form.html.haml:32 ../app/views/ops/_ldap_seq_form.html.haml:57 ../app/views/ops/_ldap_seq_form.html.haml:57 ../app/views/report/_db_seq_form.html.haml:47 +#: ../app/views/ops/_ldap_seq_form.html.haml:57 ../app/views/ops/_ldap_seq_form.html.haml:57 ../app/views/shared/buttons/_column_lists.html.haml:115 ../app/views/shared/buttons/_group_order_form.html.haml:57 ../app/views/miq_ae_class/_domains_priority_form.html.haml:32 ../app/views/miq_ae_class/_fields_seq_form.html.haml:39 ../app/views/report/_db_seq_form.html.haml:47 msgid "Move selected fields down" msgstr "" @@ -13157,19 +13485,19 @@ msgstr "" msgid "Move selected fields to top" msgstr "" -#: ../app/views/shared/buttons/_group_order_form.html.haml:41 ../app/views/shared/buttons/_column_lists.html.haml:99 ../app/views/miq_ae_class/_fields_seq_form.html.haml:27 ../app/views/miq_ae_class/_domains_priority_form.html.haml:25 ../app/views/ops/_ldap_seq_form.html.haml:46 ../app/views/ops/_ldap_seq_form.html.haml:46 ../app/views/report/_db_seq_form.html.haml:35 +#: ../app/views/ops/_ldap_seq_form.html.haml:46 ../app/views/ops/_ldap_seq_form.html.haml:46 ../app/views/shared/buttons/_column_lists.html.haml:99 ../app/views/shared/buttons/_group_order_form.html.haml:41 ../app/views/miq_ae_class/_domains_priority_form.html.haml:25 ../app/views/miq_ae_class/_fields_seq_form.html.haml:27 ../app/views/report/_db_seq_form.html.haml:35 msgid "Move selected fields up" msgstr "" -#: ../app/controllers/report_controller.rb:755 ../app/views/report/_menu_form1.html.haml:45 +#: ../app/controllers/report_controller.rb:759 ../app/views/report/_menu_form1.html.haml:45 msgid "Move selected folder down" msgstr "" -#: ../app/controllers/report_controller.rb:758 ../app/views/report/_menu_form1.html.haml:45 +#: ../app/controllers/report_controller.rb:762 ../app/views/report/_menu_form1.html.haml:45 msgid "Move selected folder to bottom" msgstr "" -#: ../app/controllers/report_controller.rb:753 +#: ../app/controllers/report_controller.rb:757 msgid "Move selected folder to top" msgstr "" @@ -13177,7 +13505,7 @@ msgstr "" msgid "Move selected folder top" msgstr "" -#: ../app/controllers/report_controller.rb:754 ../app/views/report/_menu_form1.html.haml:45 +#: ../app/controllers/report_controller.rb:758 ../app/views/report/_menu_form1.html.haml:45 msgid "Move selected folder up" msgstr "" @@ -13205,7 +13533,11 @@ msgstr "" msgid "Move selected reports up" msgstr "" -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:78 +#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:149 +msgid "Multiselect" +msgstr "" + +#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:79 msgid "Must be a number (greater than 0)" msgstr "" @@ -13214,54 +13546,54 @@ msgid "Must start with 'jdbc:'" msgstr "" #: ../app/presenters/tree_builder_report_roles.rb:21 -msgid "My %{models}" +msgid "My EVM Groups" msgstr "" -#: ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:38 ../app/presenters/tree_builder_storage.rb:21 ../app/presenters/tree_builder_vms_filter.rb:22 ../app/controllers/ops_controller/settings/schedules.rb:650 ../app/controllers/ops_controller/settings/schedules.rb:660 ../app/controllers/ops_controller/settings/schedules.rb:669 ../app/controllers/ops_controller/settings/schedules.rb:684 ../app/controllers/ops_controller/settings/schedules.rb:693 ../app/views/layouts/listnav/_show_list.html.haml:38 +#: ../app/presenters/tree_builder_automation_manager_configured_systems.rb:36 ../app/presenters/tree_builder_storage.rb:24 ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:36 ../app/presenters/tree_builder_vms_filter.rb:25 ../app/controllers/ops_controller/settings/schedules.rb:645 ../app/controllers/ops_controller/settings/schedules.rb:655 ../app/controllers/ops_controller/settings/schedules.rb:664 ../app/controllers/ops_controller/settings/schedules.rb:679 ../app/controllers/ops_controller/settings/schedules.rb:688 ../app/views/layouts/listnav/_show_list.html.haml:38 msgid "My Filters" msgstr "" -#: ../app/controllers/miq_task_controller.rb:37 ../app/controllers/miq_task_controller.rb:90 +#: ../app/controllers/miq_task_controller.rb:37 msgid "My Other UI Tasks" msgstr "" -#: ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:40 ../app/presenters/tree_builder_storage.rb:21 ../app/presenters/tree_builder_vms_filter.rb:22 +#: ../app/presenters/tree_builder_automation_manager_configured_systems.rb:38 ../app/presenters/tree_builder_storage.rb:24 ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:38 ../app/presenters/tree_builder_vms_filter.rb:25 msgid "My Personal Filters" msgstr "" -#: ../app/presenters/menu/default_menu.rb:39 ../app/controllers/service_controller.rb:362 ../app/views/configuration/_ui_2.html.haml:49 +#: ../app/presenters/menu/default_menu.rb:40 ../app/controllers/service_controller.rb:403 ../app/views/configuration/_ui_2.html.haml:50 msgid "My Services" msgstr "" -#: ../app/presenters/menu/default_menu.rb:249 +#: ../app/presenters/menu/default_menu.rb:284 msgid "My Settings" msgstr "" -#: ../app/controllers/miq_task_controller.rb:34 ../app/controllers/miq_task_controller.rb:84 +#: ../app/controllers/miq_task_controller.rb:34 msgid "My VM and Container Analysis Tasks" msgstr "" -#: ../app/helpers/ems_infra_helper/textual_summary.rb:74 ../app/helpers/ems_infra_helper/textual_summary.rb:86 ../app/helpers/container_node_helper/textual_summary.rb:41 ../app/helpers/container_node_helper/textual_summary.rb:49 ../app/helpers/container_node_helper/textual_summary.rb:56 ../app/helpers/container_node_helper/textual_summary.rb:61 ../app/helpers/container_node_helper/textual_summary.rb:66 ../app/helpers/container_node_helper/textual_summary.rb:71 ../app/helpers/container_node_helper/textual_summary.rb:92 ../app/helpers/container_node_helper/textual_summary.rb:96 ../app/helpers/container_node_helper/textual_summary.rb:100 ../app/helpers/container_node_helper/textual_summary.rb:105 ../app/helpers/container_node_helper/textual_summary.rb:113 ../app/helpers/host_helper/textual_summary.rb:152 ../app/helpers/host_helper/textual_summary.rb:214 ../app/helpers/host_helper/textual_summary.rb:234 ../app/helpers/host_helper/textual_summary.rb:238 ../app/helpers/host_helper/textual_summary.rb:243 ../app/helpers/host_helper/textual_summary.rb:249 ../app/helpers/vm_helper/textual_summary.rb:147 ../app/helpers/vm_helper/textual_summary.rb:151 ../app/helpers/vm_helper/textual_summary.rb:599 ../app/helpers/vm_helper/textual_summary.rb:600 ../app/helpers/vm_helper/textual_summary.rb:607 ../app/helpers/vm_helper/textual_summary.rb:608 ../app/helpers/vm_helper/textual_summary.rb:629 ../app/helpers/vm_helper/textual_summary.rb:630 ../app/helpers/vm_helper/textual_summary.rb:637 ../app/helpers/vm_helper/textual_summary.rb:638 ../app/helpers/vm_helper/textual_summary.rb:645 ../app/helpers/vm_helper/textual_summary.rb:647 ../app/helpers/vm_helper/textual_summary.rb:779 ../app/helpers/vm_helper/textual_summary.rb:784 ../app/helpers/vm_cloud_helper/textual_summary.rb:89 ../app/helpers/vm_cloud_helper/textual_summary.rb:145 ../app/helpers/vm_cloud_helper/textual_summary.rb:299 ../app/helpers/vm_cloud_helper/textual_summary.rb:305 ../app/views/miq_policy/_policy_details.html.haml:82 ../app/views/miq_policy/_policy_details.html.haml:97 +#: ../app/helpers/ems_infra_helper/textual_summary.rb:85 ../app/helpers/ems_infra_helper/textual_summary.rb:97 ../app/helpers/host_helper/textual_summary.rb:159 ../app/helpers/host_helper/textual_summary.rb:221 ../app/helpers/host_helper/textual_summary.rb:241 ../app/helpers/host_helper/textual_summary.rb:245 ../app/helpers/host_helper/textual_summary.rb:250 ../app/helpers/host_helper/textual_summary.rb:256 ../app/helpers/vm_cloud_helper/textual_summary.rb:100 ../app/helpers/vm_cloud_helper/textual_summary.rb:156 ../app/helpers/vm_cloud_helper/textual_summary.rb:310 ../app/helpers/vm_cloud_helper/textual_summary.rb:316 ../app/helpers/container_node_helper/textual_summary.rb:55 ../app/helpers/container_node_helper/textual_summary.rb:62 ../app/helpers/container_node_helper/textual_summary.rb:69 ../app/helpers/container_node_helper/textual_summary.rb:74 ../app/helpers/container_node_helper/textual_summary.rb:79 ../app/helpers/container_node_helper/textual_summary.rb:84 ../app/helpers/container_node_helper/textual_summary.rb:105 ../app/helpers/container_node_helper/textual_summary.rb:109 ../app/helpers/container_node_helper/textual_summary.rb:113 ../app/helpers/container_node_helper/textual_summary.rb:118 ../app/helpers/container_node_helper/textual_summary.rb:126 ../app/helpers/vm_helper/textual_summary.rb:187 ../app/helpers/vm_helper/textual_summary.rb:191 ../app/helpers/vm_helper/textual_summary.rb:638 ../app/helpers/vm_helper/textual_summary.rb:639 ../app/helpers/vm_helper/textual_summary.rb:646 ../app/helpers/vm_helper/textual_summary.rb:647 ../app/helpers/vm_helper/textual_summary.rb:668 ../app/helpers/vm_helper/textual_summary.rb:669 ../app/helpers/vm_helper/textual_summary.rb:676 ../app/helpers/vm_helper/textual_summary.rb:677 ../app/helpers/vm_helper/textual_summary.rb:684 ../app/helpers/vm_helper/textual_summary.rb:686 ../app/helpers/vm_helper/textual_summary.rb:776 ../app/helpers/vm_helper/textual_summary.rb:781 ../app/views/miq_policy/_policy_details.html.haml:82 ../app/views/miq_policy/_policy_details.html.haml:97 msgid "N/A" msgstr "" -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:79 ../app/helpers/container_group_helper/textual_summary.rb:37 +#: ../app/helpers/container_group_helper/textual_summary.rb:47 ../app/helpers/persistent_volume_helper/textual_summary.rb:85 msgid "NFS Server" msgstr "" -#: ../app/views/layouts/exp_atom/_editor.html.haml:57 +#: ../app/views/layouts/exp_atom/_editor.html.haml:54 msgid "NOT" msgstr "" -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:61 ../app/views/ops/_settings_server_tab.html.haml:329 ../app/views/ops/_zone_form.html.haml:78 +#: ../app/views/ops/_zone_form.html.haml:78 ../app/views/ops/_settings_server_tab.html.haml:293 ../app/views/ops/_settings_evm_servers_tab.html.haml:61 msgid "NTP Servers" msgstr "" -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:27 ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:30 ../app/helpers/container_build_helper/textual_summary.rb:23 ../app/helpers/persistent_volume_helper/textual_summary.rb:168 ../app/helpers/container_project_helper/textual_summary.rb:22 ../app/helpers/container_project_helper/textual_summary.rb:43 ../app/helpers/container_node_helper/textual_summary.rb:17 ../app/helpers/provider_foreman_helper.rb:125 ../app/helpers/provider_foreman_helper.rb:205 ../app/helpers/provider_foreman_helper.rb:234 ../app/helpers/provider_foreman_helper.rb:280 ../app/helpers/container_helper/textual_summary.rb:121 ../app/helpers/ops_helper/textual_summary.rb:37 ../app/helpers/ops_helper/textual_summary.rb:101 ../app/helpers/ops_helper/textual_summary.rb:109 ../app/helpers/ops_helper/textual_summary.rb:117 ../app/helpers/ops_helper/textual_summary.rb:139 ../app/helpers/container_template_helper/textual_summary.rb:20 ../app/helpers/container_template_helper/textual_summary.rb:26 ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:17 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:37 ../app/helpers/container_image_helper/textual_summary.rb:105 ../app/helpers/container_service_helper/textual_summary.rb:18 ../app/helpers/ontap_storage_system_helper/textual_summary.rb:27 ../app/helpers/pxe_helper/textual_summary.rb:48 ../app/helpers/pxe_helper/textual_summary.rb:72 ../app/helpers/pxe_helper/textual_summary.rb:96 ../app/helpers/pxe_helper/textual_summary.rb:116 ../app/helpers/pxe_helper/textual_summary.rb:140 ../app/helpers/ems_container_helper/textual_summary.rb:28 ../app/helpers/container_group_helper/textual_summary.rb:16 ../app/helpers/container_group_helper/textual_summary.rb:57 ../app/controllers/application_controller/miq_request_methods.rb:323 ../app/controllers/application_controller/miq_request_methods.rb:335 ../app/controllers/application_controller/miq_request_methods.rb:346 ../app/controllers/application_controller/miq_request_methods.rb:358 ../app/controllers/application_controller/miq_request_methods.rb:375 ../app/controllers/application_controller/miq_request_methods.rb:390 ../app/controllers/application_controller/miq_request_methods.rb:406 ../app/controllers/application_controller/miq_request_methods.rb:437 ../app/controllers/application_controller/miq_request_methods.rb:443 ../app/views/miq_capacity/_planning_summary.html.haml:49 ../app/views/ontap_storage_system/_create_logical_disk.html.haml:12 ../app/views/ems_container/_form.html.haml:13 ../app/views/miq_policy/_action_details.html.haml:76 ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:7 ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:63 ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:9 ../app/views/auth_key_pair_cloud/_form.html.haml:24 ../app/views/generic_object/explorer.html.haml:21 ../app/views/generic_object/explorer.html.haml:52 ../app/views/generic_object/explorer.html.haml:108 ../app/views/chargeback/_reports_list.html.haml:52 ../app/views/chargeback/_cb_assignments.html.haml:94 ../app/views/chargeback/_cb_assignments.html.haml:155 ../app/views/chargeback/_cb_assignments.html.haml:192 ../app/views/chargeback/_cb_assignments.html.haml:229 ../app/views/pxe/_pxe_server_details.html.haml:59 ../app/views/pxe/_pxe_server_details.html.haml:106 ../app/views/pxe/_template_form.html.haml:15 ../app/views/pxe/_pxe_image_type_form.html.haml:17 ../app/views/pxe/_pxe_form.html.haml:17 ../app/views/pxe/_iso_datastore_details.html.haml:24 ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:17 ../app/views/miq_ae_customization/_old_dialogs_details.html.haml:20 ../app/views/miq_ae_customization/_dialog_field_form.html.haml:35 ../app/views/configuration/_timeprofile_form.html.haml:384 ../app/views/_ldap_domain_form.html.haml:16 ../app/views/shared/views/ems_common/_form.html.haml:18 ../app/views/shared/views/ems_common/angular/_form.html.haml:13 ../app/views/vm_common/_reconfigure.html.haml:201 ../app/views/vm_common/_snap.html.haml:17 ../app/views/miq_ae_class/_method_inputs.html.haml:32 ../app/views/miq_ae_class/_class_props.html.haml:29 ../app/views/miq_ae_class/_class_form.html.haml:27 ../app/views/miq_ae_class/_method_form.html.haml:31 ../app/views/miq_ae_class/_ns_list.html.haml:20 ../app/views/miq_ae_class/_ns_list.html.haml:104 ../app/views/miq_ae_class/_instance_fields.html.haml:15 ../app/views/miq_ae_class/_inputs.html.haml:14 ../app/views/miq_ae_class/_class_fields.html.haml:14 ../app/views/miq_ae_class/_class_fields.html.haml:79 ../app/views/miq_ae_class/_instance_form.html.haml:27 ../app/views/miq_ae_class/_instance_form.html.haml:87 ../app/views/ems_datawarehouse/_form.html.haml:13 ../app/views/catalog/_ot_add.html.haml:14 ../app/views/catalog/_form_resources_info.html.haml:55 ../app/views/catalog/_ot_copy.html.haml:21 ../app/views/catalog/_svccat_tree_show.html.haml:28 ../app/views/catalog/_stcat_tree_show.html.haml:11 ../app/views/catalog/_ot_tree_show.html.haml:11 ../app/views/catalog/_sandt_tree_show.html.haml:261 ../app/views/catalog/_stcat_form.html.haml:20 ../app/views/catalog/_ot_edit.html.haml:14 ../app/views/provider_foreman/_form.html.haml:18 ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 ../app/views/orchestration_stack/_copy_orchestration_template.html.haml:16 ../app/views/ontap_file_share/_create_datastore.html.haml:18 ../app/views/service/_service_form.html.haml:27 ../app/views/ops/_ap_form_nteventlog.html.haml:12 ../app/views/ops/_ldap_domain_show.html.haml:16 ../app/views/ops/_settings_evm_servers_tab.html.haml:13 ../app/views/ops/_zone_form.html.haml:16 ../app/views/ops/_ap_show.html.haml:16 ../app/views/ops/_ap_show.html.haml:94 ../app/views/ops/_settings_co_categories_tab.html.haml:10 ../app/views/ops/_ldap_region_form.html.haml:19 ../app/views/ops/_rbac_role_details.html.haml:23 ../app/views/ops/_rbac_tenant_details.html.haml:17 ../app/views/ops/_rbac_tenant_details.html.haml:93 ../app/views/ops/_rbac_tenant_details.html.haml:119 ../app/views/ops/_db_info.html.haml:15 ../app/views/ops/_db_info.html.haml:118 ../app/views/ops/_db_info.html.haml:213 ../app/views/ops/_schedule_form.html.haml:19 ../app/views/ops/_classification_entries.html.haml:13 ../app/views/ops/_ap_form.html.haml:18 ../app/views/ops/_category_form.html.haml:118 ../app/views/ops/_tenant_form.html.haml:17 ../app/views/ops/_ldap_domain_form.html.haml:16 ../app/views/ops/_ap_form_file.html.haml:12 ../app/views/ops/_ldap_region_show.html.haml:18 ../app/views/ops/_ldap_region_show.html.haml:71 ../app/views/ems_middleware/_form.html.haml:13 ../app/views/middleware_server/_add_datasource_step1.html.haml:15 ../app/views/middleware_server/_add_datasource_step2.html.haml:15 ../app/views/storage_manager/_form.html.haml:23 ../app/views/report/_db_form.html.haml:20 ../app/views/report/_schedule_form.html.haml:17 ../app/views/report/_report_info.html.haml:124 ../app/views/report/_db_show.html.haml:12 ../app/views/report/_report_list.html.haml:49 ../app/views/report/_report_list.html.haml:82 ../app/views/report/_report_list.html.haml:112 ../app/views/ems_infra/_form.html.haml:13 ../app/views/host/_form.html.haml:25 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:238 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:20 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-no-provider-controller.js:89 +#: ../app/helpers/container_image_helper/textual_summary.rb:120 ../app/helpers/container_group_helper/textual_summary.rb:25 ../app/helpers/container_group_helper/textual_summary.rb:67 ../app/helpers/container_helper/textual_summary.rb:135 ../app/helpers/container_template_helper/textual_summary.rb:21 ../app/helpers/container_template_helper/textual_summary.rb:27 ../app/helpers/container_service_helper/textual_summary.rb:14 ../app/helpers/container_build_helper/textual_summary.rb:27 ../app/helpers/container_project_helper/textual_summary.rb:29 ../app/helpers/container_project_helper/textual_summary.rb:51 ../app/helpers/provider_foreman_helper.rb:128 ../app/helpers/provider_foreman_helper.rb:210 ../app/helpers/provider_foreman_helper.rb:239 ../app/helpers/provider_foreman_helper.rb:285 ../app/helpers/persistent_volume_helper/textual_summary.rb:176 ../app/helpers/automation_manager_helper.rb:46 ../app/helpers/automation_manager_helper.rb:75 ../app/helpers/automation_manager_helper.rb:121 ../app/helpers/ems_container_helper/textual_summary.rb:31 ../app/helpers/pxe_helper/textual_summary.rb:48 ../app/helpers/pxe_helper/textual_summary.rb:72 ../app/helpers/pxe_helper/textual_summary.rb:96 ../app/helpers/pxe_helper/textual_summary.rb:116 ../app/helpers/pxe_helper/textual_summary.rb:140 ../app/helpers/service_helper/textual_summary.rb:267 ../app/helpers/container_node_helper/textual_summary.rb:31 ../app/helpers/ops_helper/textual_summary.rb:47 ../app/helpers/ops_helper/textual_summary.rb:111 ../app/helpers/ops_helper/textual_summary.rb:119 ../app/helpers/ops_helper/textual_summary.rb:127 ../app/helpers/ops_helper/textual_summary.rb:149 ../app/controllers/application_controller/miq_request_methods.rb:323 ../app/controllers/application_controller/miq_request_methods.rb:335 ../app/controllers/application_controller/miq_request_methods.rb:346 ../app/controllers/application_controller/miq_request_methods.rb:358 ../app/controllers/application_controller/miq_request_methods.rb:375 ../app/controllers/application_controller/miq_request_methods.rb:390 ../app/controllers/application_controller/miq_request_methods.rb:406 ../app/controllers/application_controller/miq_request_methods.rb:440 ../app/controllers/application_controller/miq_request_methods.rb:446 ../app/views/miq_policy/_action_details.html.haml:76 ../app/views/vm_common/_reconfigure.html.haml:201 ../app/views/vm_common/_snap.html.haml:17 ../app/views/configuration/_timeprofile_form.html.haml:379 ../app/views/miq_capacity/_planning_summary.html.haml:49 ../app/views/ops/_ap_form_file.html.haml:12 ../app/views/ops/_classification_entries.html.haml:13 ../app/views/ops/_settings_co_categories_tab.html.haml:10 ../app/views/ops/_ldap_region_show.html.haml:18 ../app/views/ops/_ldap_region_show.html.haml:71 ../app/views/ops/_rbac_role_details.html.haml:22 ../app/views/ops/_category_form.html.haml:118 ../app/views/ops/_zone_form.html.haml:16 ../app/views/ops/_ap_show.html.haml:16 ../app/views/ops/_ap_show.html.haml:94 ../app/views/ops/_rbac_tenant_details.html.haml:17 ../app/views/ops/_rbac_tenant_details.html.haml:93 ../app/views/ops/_rbac_tenant_details.html.haml:119 ../app/views/ops/_tenant_form.html.haml:17 ../app/views/ops/_ldap_domain_show.html.haml:16 ../app/views/ops/_ap_form.html.haml:18 ../app/views/ops/_ldap_region_form.html.haml:19 ../app/views/ops/_ldap_domain_form.html.haml:16 ../app/views/ops/_schedule_form.html.haml:19 ../app/views/ops/_db_info.html.haml:15 ../app/views/ops/_db_info.html.haml:118 ../app/views/ops/_db_info.html.haml:213 ../app/views/ops/_ap_form_nteventlog.html.haml:12 ../app/views/ops/_settings_evm_servers_tab.html.haml:13 ../app/views/storage_manager/_form.html.haml:23 ../app/views/shared/views/ems_common/angular/_form.html.haml:13 ../app/views/shared/views/ems_common/_form.html.haml:18 ../app/views/miq_ae_class/_instance_fields.html.haml:15 ../app/views/miq_ae_class/_instance_form.html.haml:27 ../app/views/miq_ae_class/_instance_form.html.haml:87 ../app/views/miq_ae_class/_ns_list.html.haml:20 ../app/views/miq_ae_class/_ns_list.html.haml:104 ../app/views/miq_ae_class/_inputs.html.haml:14 ../app/views/miq_ae_class/_class_props.html.haml:29 ../app/views/miq_ae_class/_class_form.html.haml:27 ../app/views/miq_ae_class/_method_inputs.html.haml:32 ../app/views/miq_ae_class/_method_form.html.haml:31 ../app/views/miq_ae_class/_class_fields.html.haml:14 ../app/views/miq_ae_class/_class_fields.html.haml:79 ../app/views/pxe/_template_form.html.haml:15 ../app/views/pxe/_pxe_form.html.haml:17 ../app/views/pxe/_iso_datastore_details.html.haml:24 ../app/views/pxe/_pxe_image_type_form.html.haml:17 ../app/views/pxe/_pxe_server_details.html.haml:31 ../app/views/pxe/_pxe_server_details.html.haml:78 ../app/views/orchestration_stack/_copy_orchestration_template.html.haml:16 ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 ../app/views/report/_db_form.html.haml:20 ../app/views/report/_db_show.html.haml:12 ../app/views/report/_report_list.html.haml:49 ../app/views/report/_report_list.html.haml:82 ../app/views/report/_report_list.html.haml:112 ../app/views/report/_schedule_form.html.haml:17 ../app/views/report/_report_info.html.haml:124 ../app/views/chargeback/_cb_assignments.html.haml:94 ../app/views/chargeback/_cb_assignments.html.haml:155 ../app/views/chargeback/_cb_assignments.html.haml:192 ../app/views/chargeback/_cb_assignments.html.haml:229 ../app/views/chargeback/_reports_list.html.haml:52 ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:63 ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:9 ../app/views/ems_infra/_form.html.haml:13 ../app/views/ems_physical_infra/_form.html.haml:13 ../app/views/ems_datawarehouse/_form.html.haml:13 ../app/views/provider_foreman/_form.html.haml:21 ../app/views/auth_key_pair_cloud/_form.html.haml:24 ../app/views/host/_form.html.haml:25 ../app/views/miq_ae_customization/_dialog_field_form.html.haml:35 ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:17 ../app/views/miq_ae_customization/_old_dialogs_details.html.haml:20 ../app/views/middleware_server/_specify_driver.html.haml:5 ../app/views/middleware_server/_add_datasource_step3.html.haml:150 ../app/views/middleware_server/_add_datasource_step1.html.haml:15 ../app/views/service/_service_form.html.haml:27 ../app/views/ems_container/_form.html.haml:13 ../app/views/ems_middleware/_form.html.haml:13 ../app/views/automation_manager/_form.html.haml:18 ../app/views/_ldap_domain_form.html.haml:16 ../app/views/catalog/_ot_add.html.haml:14 ../app/views/catalog/_ot_edit.html.haml:14 ../app/views/catalog/_form_resources_info.html.haml:55 ../app/views/catalog/_sandt_tree_show.html.haml:277 ../app/views/catalog/_st_angular_form.html.haml:19 ../app/views/catalog/_ot_tree_show.html.haml:11 ../app/views/catalog/_ot_copy.html.haml:21 ../app/views/catalog/_stcat_form.html.haml:19 ../app/views/catalog/_svccat_tree_show.html.haml:27 ../app/views/catalog/_stcat_tree_show.html.haml:11 ../app/views/generic_object/explorer.html.haml:21 ../app/views/generic_object/explorer.html.haml:52 ../app/views/generic_object/explorer.html.haml:116 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:238 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-no-provider-controller.js:89 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:20 ../app/assets/javascripts/controllers/alerts/alerts_overview_controller.js:54 msgid "Name" msgstr "" -#: ../app/views/catalog/_form_basic_info.html.haml:15 ../app/views/catalog/_sandt_tree_show.html.haml:36 +#: ../app/views/catalog/_sandt_tree_show.html.haml:36 ../app/views/catalog/_form_basic_info.html.haml:15 msgid "Name / Description" msgstr "" @@ -13269,7 +13601,7 @@ msgstr "" msgid "Name cannot contain \"|\"" msgstr "" -#: ../app/controllers/pxe_controller/pxe_servers.rb:292 ../app/controllers/pxe_controller/pxe_image_types.rb:164 ../app/controllers/pxe_controller/pxe_customization_templates.rb:115 ../app/controllers/application_controller/buttons.rb:318 ../app/controllers/catalog_controller.rb:310 ../app/controllers/catalog_controller.rb:854 ../app/controllers/miq_ae_class_controller.rb:576 ../app/controllers/miq_ae_class_controller.rb:624 ../app/controllers/miq_ae_class_controller.rb:2079 ../app/controllers/ops_controller/settings/tags.rb:55 ../app/controllers/ops_controller/settings/ldap.rb:50 ../app/controllers/ops_controller/settings/ldap.rb:167 ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:255 ../app/controllers/ontap_file_share_controller.rb:100 ../app/controllers/ontap_storage_system_controller.rb:108 +#: ../app/controllers/miq_ae_class_controller.rb:576 ../app/controllers/miq_ae_class_controller.rb:624 ../app/controllers/miq_ae_class_controller.rb:2079 ../app/controllers/catalog_controller.rb:313 ../app/controllers/catalog_controller.rb:867 ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:244 ../app/controllers/pxe_controller/pxe_image_types.rb:157 ../app/controllers/pxe_controller/pxe_customization_templates.rb:108 ../app/controllers/pxe_controller/pxe_servers.rb:285 ../app/controllers/application_controller/buttons.rb:318 ../app/controllers/ops_controller/settings/tags.rb:55 ../app/controllers/ops_controller/settings/ldap.rb:43 ../app/controllers/ops_controller/settings/ldap.rb:160 msgid "Name is required" msgstr "" @@ -13281,15 +13613,15 @@ msgstr "" msgid "Name: " msgstr "" -#: ../app/helpers/quadicon_helper.rb:722 +#: ../app/helpers/quadicon_helper.rb:703 msgid "Name: %{name} | Datastore Type: %{storage_type}" msgstr "" -#: ../app/helpers/quadicon_helper.rb:492 +#: ../app/helpers/quadicon_helper.rb:488 msgid "Name: %{name} | Hostname: %{hostname}" msgstr "" -#: ../app/helpers/quadicon_helper.rb:525 +#: ../app/helpers/quadicon_helper.rb:519 msgid "Name: %{name} | Hostname: %{hostname} | Refresh Status: %{status}" msgstr "" @@ -13309,11 +13641,11 @@ msgstr "" msgid "Naming" msgstr "" -#: ../app/presenters/menu/default_menu.rb:204 +#: ../app/presenters/menu/default_menu.rb:206 msgid "NetApp" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:214 ../app/views/network_router/new.html.haml:63 ../app/views/cloud_subnet/new.html.haml:44 ../app/views/layouts/listnav/_host.html.haml:47 +#: ../app/helpers/host_helper/textual_summary.rb:221 ../app/helpers/service_helper/textual_summary.rb:228 ../app/views/cloud_subnet/new.html.haml:45 ../app/views/layouts/listnav/_host.html.haml:47 ../app/views/network_router/new.html.haml:63 msgid "Network" msgstr "" @@ -13325,6 +13657,14 @@ msgstr "" msgid "Network Adapter Information" msgstr "" +#: ../app/views/catalog/_sandt_tree_show.html.haml:402 ../app/views/catalog/_sandt_tree_show.html.haml:561 +msgid "Network Credential" +msgstr "" + +#: ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:92 +msgid "Network Credentials" +msgstr "" + #: ../app/helpers/chargeback_helper.rb:8 msgid "Network I/O" msgstr "" @@ -13333,11 +13673,11 @@ msgstr "" msgid "Network Information" msgstr "" -#: ../app/views/cloud_network/new.html.haml:7 +#: ../app/views/floating_ip/new.html.haml:7 ../app/views/security_group/new.html.haml:7 ../app/views/cloud_network/new.html.haml:7 msgid "Network Management Provider" msgstr "" -#: ../app/views/network_router/new.html.haml:16 ../app/views/cloud_subnet/new.html.haml:16 ../app/views/cloud_network/new.html.haml:16 +#: ../app/views/floating_ip/new.html.haml:16 ../app/views/cloud_subnet/new.html.haml:16 ../app/views/security_group/new.html.haml:16 ../app/views/cloud_network/new.html.haml:16 ../app/views/network_router/new.html.haml:16 msgid "Network Manager" msgstr "" @@ -13345,15 +13685,15 @@ msgstr "" msgid "Network Name" msgstr "" -#: ../app/presenters/menu/default_menu.rb:144 ../app/helpers/ems_network_helper/textual_summary.rb:75 ../app/controllers/ems_common.rb:101 +#: ../app/presenters/menu/default_menu.rb:147 ../app/helpers/ems_network_helper/textual_summary.rb:82 msgid "Network Ports" msgstr "" -#: ../app/views/security_group/_main.html.haml:20 +#: ../app/helpers/security_group_helper/textual_summary.rb:37 msgid "Network Protocol" msgstr "" -#: ../app/views/network_router/new.html.haml:7 ../app/views/cloud_subnet/new.html.haml:7 +#: ../app/views/cloud_subnet/new.html.haml:7 ../app/views/network_router/new.html.haml:7 msgid "Network Provider" msgstr "" @@ -13361,11 +13701,11 @@ msgstr "" msgid "Network Provider Information" msgstr "" -#: ../app/controllers/network_router_controller.rb:89 +#: ../app/controllers/network_router_controller.rb:93 msgid "Network Router creation failed: Task start failed: ID [%{id}]" msgstr "" -#: ../app/presenters/menu/default_menu.rb:141 ../app/helpers/ems_network_helper/textual_summary.rb:71 ../app/controllers/ems_common.rb:100 ../app/views/network_topology/show.html.haml:128 +#: ../app/presenters/menu/default_menu.rb:144 ../app/helpers/ems_network_helper/textual_summary.rb:78 ../app/views/network_topology/show.html.haml:147 msgid "Network Routers" msgstr "" @@ -13373,19 +13713,19 @@ msgstr "" msgid "Network Type" msgstr "" -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:63 +#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:81 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:89 msgid "Network Utilization Trend" msgstr "" -#: ../app/presenters/menu/default_menu.rb:72 ../app/controllers/infra_networking_controller.rb:751 +#: ../app/presenters/menu/default_menu.rb:73 ../app/controllers/infra_networking_controller.rb:754 msgid "Networking" msgstr "" -#: ../app/presenters/menu/default_menu.rb:137 ../app/presenters/menu/default_menu.rb:139 ../app/controllers/vm_common.rb:517 +#: ../app/presenters/menu/default_menu.rb:140 ../app/presenters/menu/default_menu.rb:142 ../app/controllers/vm_common.rb:371 msgid "Networks" msgstr "" -#: ../app/helpers/service_helper/textual_summary.rb:68 ../app/helpers/textual_mixins/textual_authentications_status.rb:7 ../app/helpers/vm_helper/textual_summary.rb:190 ../app/helpers/vm_helper/textual_summary.rb:197 ../app/helpers/orchestration_stack_helper/textual_summary.rb:40 ../app/views/ops/_logs_selected.html.haml:4 ../app/views/dashboard/_widget_footer.html.haml:13 +#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:46 ../app/helpers/textual_mixins/textual_authentications_status.rb:7 ../app/helpers/service_helper/textual_summary.rb:113 ../app/helpers/vm_helper/textual_summary.rb:230 ../app/helpers/vm_helper/textual_summary.rb:237 ../app/views/ops/_logs_selected.html.haml:4 ../app/views/dashboard/_widget_footer.html.haml:13 msgid "Never" msgstr "" @@ -13405,11 +13745,11 @@ msgstr "" msgid "New Field" msgstr "" -#: ../app/assets/javascripts/miq_tree.js:360 +#: ../app/assets/javascripts/miq_tree.js:352 msgid "New Folder" msgstr "" -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:86 +#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:129 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:143 msgid "New Image Usage Trend" msgstr "" @@ -13417,7 +13757,7 @@ msgstr "" msgid "New Name" msgstr "" -#: ../app/views/catalog/_ot_copy.html.haml:10 ../app/views/orchestration_stack/_copy_orchestration_template.html.haml:7 +#: ../app/views/orchestration_stack/_copy_orchestration_template.html.haml:7 ../app/views/catalog/_ot_copy.html.haml:10 msgid "New Orchestration Template Information" msgstr "" @@ -13433,14 +13773,18 @@ msgstr "" msgid "New VM Settings" msgstr "" -#: ../app/controllers/middleware_server_controller.rb:62 +#: ../app/controllers/middleware_server_controller.rb:64 msgid "New datasource initiated for selected server(s)" msgstr "" -#: ../app/assets/javascripts/miq_tree.js:336 +#: ../app/assets/javascripts/miq_tree.js:328 msgid "New name?" msgstr "" +#: ../app/helpers/application_helper/import_export_helper.rb:8 +msgid "New object" +msgstr "" + #: ../app/views/shared/views/_retire.html.haml:80 msgid "New setting will affect Orchestration Stack" msgid_plural "New setting will affect Orchestration Stacks" @@ -13459,23 +13803,23 @@ msgid_plural "New setting will affect VMs" msgstr[0] "" msgstr[1] "" -#: ../app/controllers/catalog_controller.rb:984 +#: ../app/controllers/catalog_controller.rb:997 msgid "New template content cannot be empty" msgstr "" -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:96 ../app/views/middleware_server/_add_datasource_step2.html.haml:131 ../app/views/middleware_server/_choose_datasource.html.haml:50 ../app/views/dashboard/_widget_footer.html.haml:17 ../app/views/layouts/_pagingcontrols.html.haml:153 ../app/views/layouts/_pagingcontrols.html.haml:154 ../app/views/layouts/_pagingcontrols.html.haml:172 ../app/views/layouts/_pagingcontrols.html.haml:173 ../app/views/layouts/_pagingcontrols.html.haml:189 ../app/views/layouts/_pagingcontrols.html.haml:190 ../app/views/layouts/_x_pagingcontrols.html.haml:111 ../app/views/layouts/_x_pagingcontrols.html.haml:112 ../app/views/layouts/_saved_report_paging_bar.html.haml:72 ../app/views/layouts/_saved_report_paging_bar.html.haml:73 +#: ../app/views/layouts/_pagingcontrols.html.haml:153 ../app/views/layouts/_pagingcontrols.html.haml:154 ../app/views/layouts/_pagingcontrols.html.haml:172 ../app/views/layouts/_pagingcontrols.html.haml:173 ../app/views/layouts/_pagingcontrols.html.haml:189 ../app/views/layouts/_pagingcontrols.html.haml:190 ../app/views/layouts/_paging_bar.html.haml:53 ../app/views/layouts/_paging_bar.html.haml:54 ../app/views/middleware_server/_choose_datasource.html.haml:69 ../app/views/middleware_server/_add_datasource_step2.html.haml:57 ../app/views/middleware_server/_add_datasource_step1.html.haml:96 ../app/views/dashboard/_widget_footer.html.haml:17 msgid "Next" msgstr "" -#: ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:23 ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:213 ../app/assets/javascripts/controllers/container_deployment/wizard/wizard-directive.js:52 +#: ../app/assets/javascripts/controllers/container_deployment/wizard/wizard-directive.js:52 ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:23 ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:213 msgid "Next >" msgstr "" -#: ../app/views/ops/_schedule_show.html.haml:215 ../app/views/report/_report_info.html.haml:149 ../app/views/report/_show_schedule.html.haml:106 ../app/views/report/_widget_show.html.haml:296 +#: ../app/views/ops/_schedule_show.html.haml:215 ../app/views/report/_show_schedule.html.haml:106 ../app/views/report/_widget_show.html.haml:296 ../app/views/report/_report_info.html.haml:149 msgid "Next Run Time" msgstr "" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:84 ../app/views/cloud_subnet/_common_new_edit.haml:49 ../app/views/miq_policy/_alert_details.html.haml:57 ../app/views/miq_policy/_policy_details.html.haml:70 ../app/views/configuration/_ui_1.html.haml:41 ../app/views/configuration/_ui_2.html.haml:120 ../app/views/ops/_settings_server_tab.html.haml:442 ../app/views/ops/_settings_cu_collection_tab.html.haml:30 ../app/views/ops/_settings_cu_collection_tab.html.haml:89 ../app/views/ops/_category_form.html.haml:78 ../app/views/ops/_category_form.html.haml:97 ../app/views/ops/_category_form.html.haml:182 ../app/views/ops/_category_form.html.haml:200 ../app/views/ops/_category_form.html.haml:219 ../app/views/ops/_settings_custom_logos_tab.html.haml:150 ../app/views/middleware_server/_deploy.html.haml:70 ../app/views/middleware_server/_deploy.html.haml:105 ../app/views/cloud_network/_common_new_edit.html.haml:36 ../app/views/cloud_network/_common_new_edit.html.haml:74 ../app/views/report/_report_list.html.haml:162 ../app/views/report/_form_sort.html.haml:78 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:95 ../app/views/miq_policy/_alert_details.html.haml:57 ../app/views/miq_policy/_policy_details.html.haml:70 ../app/views/configuration/_ui_1.html.haml:40 ../app/views/configuration/_ui_2.html.haml:121 ../app/views/ops/_category_form.html.haml:78 ../app/views/ops/_category_form.html.haml:97 ../app/views/ops/_category_form.html.haml:182 ../app/views/ops/_category_form.html.haml:200 ../app/views/ops/_category_form.html.haml:219 ../app/views/ops/_settings_custom_logos_tab.html.haml:150 ../app/views/ops/_settings_cu_collection_tab.html.haml:30 ../app/views/ops/_settings_cu_collection_tab.html.haml:89 ../app/views/ops/_settings_server_tab.html.haml:406 ../app/views/middleware_shared/_deploy.html.haml:73 ../app/views/middleware_shared/_deploy.html.haml:108 ../app/views/cloud_subnet/_common_new_edit.haml:49 ../app/views/cloud_volume/new.html.haml:211 ../app/views/report/_form_sort.html.haml:78 ../app/views/report/_form_filter_chargeback.html.haml:19 ../app/views/report/_report_list.html.haml:162 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:215 ../app/views/middleware_server/_choose_datasource.html.haml:23 ../app/views/cloud_network/_common_new_edit.html.haml:36 ../app/views/cloud_network/_common_new_edit.html.haml:74 msgid "No" msgstr "" @@ -13495,43 +13839,43 @@ msgstr "" msgid "No %{item_type} selected" msgstr "" -#: ../app/helpers/catalog_helper/textual_summary.rb:23 ../app/helpers/textual_summary_helper.rb:48 ../app/helpers/container_summary_helper.rb:191 +#: ../app/helpers/textual_summary_helper.rb:57 ../app/helpers/catalog_helper/textual_summary.rb:23 msgid "No %{label} have been assigned" msgstr "" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:186 ../app/controllers/miq_policy_controller/miq_actions.rb:208 ../app/controllers/miq_policy_controller.rb:751 +#: ../app/controllers/miq_policy_controller.rb:754 ../app/controllers/miq_policy_controller/miq_actions.rb:205 ../app/controllers/miq_policy_controller/miq_actions.rb:227 msgid "No %{members} were selected to move left" msgstr "" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:197 +#: ../app/controllers/miq_policy_controller/miq_actions.rb:216 msgid "No %{members} were selected to move right" msgstr "" -#: ../app/controllers/miq_policy_controller.rb:864 +#: ../app/controllers/miq_policy_controller.rb:867 msgid "No %{member} selected to set to Asynchronous" msgstr "" -#: ../app/controllers/miq_policy_controller.rb:845 +#: ../app/controllers/miq_policy_controller.rb:848 msgid "No %{member} selected to set to Synchronous" msgstr "" -#: ../app/controllers/miq_policy_controller.rb:793 +#: ../app/controllers/miq_policy_controller.rb:796 msgid "No %{member} were selected to move left" msgstr "" -#: ../app/controllers/miq_policy_controller.rb:773 +#: ../app/controllers/miq_policy_controller.rb:776 msgid "No %{member} were selected to move right" msgstr "" -#: ../app/controllers/cloud_tenant_controller.rb:205 ../app/controllers/cloud_volume_controller.rb:376 ../app/controllers/host_aggregate_controller.rb:324 +#: ../app/controllers/host_aggregate_controller.rb:313 ../app/controllers/cloud_volume_controller.rb:442 msgid "No %{models} were selected for deletion." msgstr "" -#: ../app/views/miq_policy/_policy_list.html.haml:10 +#: ../app/views/miq_policy/_policy_list.html.haml:12 msgid "No %{model} %{mode} Policies are defined that match the entered search string." msgstr "" -#: ../app/views/miq_policy/_policy_list.html.haml:8 +#: ../app/views/miq_policy/_policy_list.html.haml:10 msgid "No %{model} %{mode} Policies are defined." msgstr "" @@ -13543,39 +13887,43 @@ msgstr "" msgid "No %{model} Conditions are defined." msgstr "" -#: ../app/controllers/application_controller/performance.rb:291 +#: ../app/controllers/application_controller/performance.rb:220 msgid "No %{model} were %{state} %{time}" msgstr "" -#: ../app/controllers/application_controller/performance.rb:512 +#: ../app/controllers/application_controller/performance.rb:438 msgid "No %{model} were running %{time}" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1855 ../app/controllers/application_controller/ci_processing.rb:2251 ../app/controllers/application_controller/ci_processing.rb:2542 ../app/controllers/application_controller/ci_processing.rb:2630 ../app/controllers/application_controller/ci_processing.rb:2698 ../app/controllers/provider_foreman_controller.rb:84 ../app/controllers/ops_controller/settings/analysis_profiles.rb:380 ../app/controllers/miq_ae_customization_controller/dialogs.rb:1357 ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:62 ../app/controllers/mixins/containers_common_mixin.rb:179 +#: ../app/controllers/provider_foreman_controller.rb:65 ../app/controllers/automation_manager_controller.rb:71 ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:62 ../app/controllers/miq_ae_customization_controller/dialogs.rb:1373 ../app/controllers/application_controller/ci_processing.rb:1827 ../app/controllers/application_controller/ci_processing.rb:1885 ../app/controllers/application_controller/ci_processing.rb:2283 ../app/controllers/application_controller/ci_processing.rb:2574 ../app/controllers/application_controller/ci_processing.rb:2662 ../app/controllers/application_controller/ci_processing.rb:2730 ../app/controllers/mixins/containers_common_mixin.rb:56 ../app/controllers/ops_controller/settings/analysis_profiles.rb:371 msgid "No %{model} were selected for %{task}" msgstr "" -#: ../app/controllers/mixins/containers_common_mixin.rb:163 +#: ../app/controllers/mixins/containers_common_mixin.rb:40 msgid "No %{model} were selected for Analysis" msgstr "" -#: ../app/controllers/miq_task_controller.rb:112 +#: ../app/controllers/ems_common.rb:520 +msgid "No %{model} were selected for Compliance Check" +msgstr "" + +#: ../app/controllers/miq_task_controller.rb:92 msgid "No %{model} were selected for cancellation" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2734 ../app/controllers/service_controller.rb:168 ../app/controllers/catalog_controller.rb:280 ../app/controllers/catalog_controller.rb:1195 ../app/controllers/ops_controller/settings/schedules.rb:197 ../app/controllers/ops_controller/settings/ldap.rb:111 ../app/controllers/miq_request_controller.rb:525 ../app/controllers/miq_task_controller.rb:130 ../app/controllers/miq_task_controller.rb:155 +#: ../app/controllers/miq_request_controller.rb:522 ../app/controllers/catalog_controller.rb:283 ../app/controllers/catalog_controller.rb:1208 ../app/controllers/miq_task_controller.rb:110 ../app/controllers/miq_task_controller.rb:135 ../app/controllers/application_controller/ci_processing.rb:2766 ../app/controllers/ops_controller/settings/schedules.rb:191 ../app/controllers/ops_controller/settings/ldap.rb:104 msgid "No %{model} were selected for deletion" msgstr "" -#: ../app/controllers/ems_common.rb:1128 +#: ../app/controllers/ems_common.rb:1017 msgid "No %{model} were selected for refresh" msgstr "" -#: ../app/controllers/ems_common.rb:1087 +#: ../app/controllers/ems_common.rb:976 msgid "No %{model} were selected for scanning" msgstr "" -#: ../app/controllers/pxe_controller/pxe_servers.rb:124 ../app/controllers/pxe_controller/iso_datastores.rb:104 ../app/controllers/pxe_controller/pxe_image_types.rb:97 ../app/controllers/pxe_controller/pxe_customization_templates.rb:214 ../app/controllers/storage_manager_controller.rb:382 +#: ../app/controllers/pxe_controller/pxe_image_types.rb:97 ../app/controllers/pxe_controller/iso_datastores.rb:104 ../app/controllers/pxe_controller/pxe_customization_templates.rb:207 ../app/controllers/pxe_controller/pxe_servers.rb:124 ../app/controllers/storage_manager_controller.rb:385 msgid "No %{model} were selected to %{button}" msgstr "" @@ -13599,19 +13947,15 @@ msgstr "" msgid "No %{name} were selected to move up" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:505 +#: ../app/helpers/application_helper/button/iso_datastore_new.rb:4 msgid "No %{providers} are available to create an ISO Datastore on" msgstr "" -#: ../app/controllers/chargeback_controller.rb:212 ../app/controllers/configuration_controller.rb:314 +#: ../app/controllers/chargeback_controller.rb:208 ../app/controllers/configuration_controller.rb:297 msgid "No %{records} were selected for deletion" msgstr "" -#: ../app/controllers/ems_common.rb:576 -msgid "No %{record} were selected for %{task}" -msgstr "" - -#: ../app/controllers/ems_common.rb:638 ../app/controllers/ems_common.rb:1054 +#: ../app/controllers/ems_common.rb:943 msgid "No %{record} were selected for deletion" msgstr "" @@ -13623,15 +13967,15 @@ msgstr "" msgid "No %{schedules} were selected to be enabled" msgstr "" -#: ../app/controllers/application_controller/performance.rb:271 +#: ../app/controllers/application_controller/performance.rb:200 msgid "No %{tag} %{model} were running %{time}" msgstr "" -#: ../app/views/layouts/_tag_edit_assignments.html.haml:31 ../app/views/layouts/_classify_table.html.haml:24 +#: ../app/views/layouts/_classify_table.html.haml:24 ../app/views/layouts/_tag_edit_assignments.html.haml:31 msgid "No %{tenant_name} Tags are assigned" msgstr "" -#: ../app/views/layouts/_tag_edit_assignments.html.haml:34 ../app/views/layouts/_classify_table.html.haml:27 +#: ../app/views/layouts/_classify_table.html.haml:27 ../app/views/layouts/_tag_edit_assignments.html.haml:34 msgid "No %{tenant_name} Tags are common to all of the items below" msgstr "" @@ -13691,35 +14035,31 @@ msgstr "" msgid "No Buttons found." msgstr "" -#: ../app/views/layouts/_perf_charts.html.haml:32 ../app/views/layouts/_perf_charts.html.haml:105 ../app/views/layouts/_perf_charts.html.haml:131 ../app/views/layouts/_perf_charts.html.haml:166 +#: ../app/views/layouts/_perf_charts.html.haml:32 ../app/views/layouts/_perf_charts.html.haml:105 msgid "No Capacity & Utilization data available." msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:663 +#: ../app/helpers/application_helper/button/storage_perf.rb:6 msgid "No Capacity & Utilization data has been collected for this %{storage}" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:514 +#: ../app/helpers/application_helper/button/availability_zone_performance.rb:5 msgid "No Capacity & Utilization data has been collected for this Availability Zone" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:558 +#: ../app/helpers/application_helper/button/ems_cluster_performance.rb:5 msgid "No Capacity & Utilization data has been collected for this Cluster" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:569 +#: ../app/helpers/application_helper/button/host_performance.rb:5 msgid "No Capacity & Utilization data has been collected for this Host" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:530 -msgid "No Capacity & Utilization data has been collected for this Logical Disk" -msgstr "" - -#: ../app/helpers/application_helper/toolbar_builder.rb:753 +#: ../app/helpers/application_helper/button/miq_template_perf.rb:6 msgid "No Capacity & Utilization data has been collected for this Template" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:694 +#: ../app/helpers/application_helper/button/vm_perf.rb:5 msgid "No Capacity & Utilization data has been collected for this VM" msgstr "" @@ -13727,7 +14067,7 @@ msgstr "" msgid "No Catalog Items found." msgstr "" -#: ../app/views/miq_request/_prov_field.html.haml:212 ../app/views/miq_request/_prov_field.html.haml:277 ../app/views/miq_request/_prov_field.html.haml:329 ../app/views/miq_request/_prov_field.html.haml:448 ../app/views/miq_request/_prov_field.html.haml:498 ../app/views/miq_request/_prov_field.html.haml:541 +#: ../app/views/miq_request/_prov_field.html.haml:212 ../app/views/miq_request/_prov_field.html.haml:277 ../app/views/miq_request/_prov_field.html.haml:329 ../app/views/miq_request/_prov_field.html.haml:448 ../app/views/miq_request/_prov_field.html.haml:498 ../app/views/miq_request/_prov_field.html.haml:545 msgid "No Choices Available" msgstr "" @@ -13743,11 +14083,15 @@ msgstr "" msgid "No Cloud Provider that supports instance provisioning added" msgstr "" -#: ../app/controllers/cloud_subnet_controller.rb:125 +#: ../app/controllers/cloud_subnet_controller.rb:146 msgid "No Cloud Subnet were selected for deletion." msgstr "" -#: ../app/controllers/cloud_volume_snapshot_controller.rb:40 +#: ../app/controllers/cloud_tenant_controller.rb:200 +msgid "No Cloud Tenants were selected for deletion." +msgstr "" + +#: ../app/controllers/cloud_volume_snapshot_controller.rb:46 msgid "No Cloud Volume Snapshots were selected for deletion." msgstr "" @@ -13755,19 +14099,19 @@ msgstr "" msgid "No Compliance Policies Found" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:749 +#: ../app/helpers/application_helper/button/miq_check_compliance.rb:7 msgid "No Compliance Policies assigned to this %{vm}" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:567 +#: ../app/helpers/application_helper/button/host_check_compliance.rb:5 msgid "No Compliance Policies assigned to this Host" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:698 +#: ../app/helpers/application_helper/button/instance_check_compare.rb:7 msgid "No Compliance Policies assigned to this virtual machine" msgstr "" -#: ../app/controllers/application_controller/performance.rb:52 +#: ../app/controllers/application_controller/performance.rb:25 msgid "No Daily data is available" msgstr "" @@ -13779,7 +14123,7 @@ msgstr "" msgid "No Datastores found in the current region." msgstr "" -#: ../app/controllers/application_controller/buttons.rb:982 ../app/controllers/catalog_controller.rb:1720 ../app/views/catalog/_form_basic_info.html.haml:85 +#: ../app/controllers/catalog_controller.rb:1740 ../app/controllers/application_controller/buttons.rb:982 ../app/views/catalog/_form_basic_info.html.haml:85 msgid "No Dialog" msgstr "" @@ -13795,7 +14139,11 @@ msgstr "" msgid "No Events are defined that match the entered search string '%s'" msgstr "" -#: ../app/controllers/application_controller/performance.rb:48 +#: ../app/controllers/floating_ip_controller.rb:106 +msgid "No Floating IPs were selected for deletion." +msgstr "" + +#: ../app/controllers/application_controller/performance.rb:21 msgid "No Hourly or Daily data is available, real time data from the Most Recent Hour is being displayed" msgstr "" @@ -13815,11 +14163,11 @@ msgstr "" msgid "No Items found." msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:163 +#: ../app/controllers/auth_key_pair_cloud_controller.rb:178 msgid "No Key Pairs were selected for deletion" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:657 ../app/controllers/catalog_controller.rb:549 +#: ../app/controllers/catalog_controller.rb:556 msgid "No Ordering Dialog is available" msgstr "" @@ -13827,11 +14175,11 @@ msgstr "" msgid "No Owner" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:573 +#: ../app/helpers/application_helper/button/host_miq_request_new.rb:5 msgid "No PXE Servers are available for Host provisioning" msgstr "" -#: ../app/helpers/container_build_helper/textual_summary.rb:88 +#: ../app/helpers/container_build_helper/textual_summary.rb:91 msgid "No Pod" msgstr "" @@ -13863,7 +14211,7 @@ msgstr "" msgid "No Record Filter defined." msgstr "" -#: ../app/views/miq_request/_ae_prov_show.html.haml:7 ../app/views/configuration/_ui_4.html.haml:9 ../app/views/ops/_ldap_domain_show.html.haml:246 ../app/views/ops/_ldap_region_show.html.haml:62 ../app/views/ops/_diagnostics_savedreports.html.haml:7 ../app/views/layouts/_gtl.html.haml:18 ../app/views/layouts/_x_gtl.html.haml:19 ../app/views/layouts/_compare.html.haml:4 +#: ../app/views/configuration/_ui_4.html.haml:9 ../app/views/ops/_ldap_region_show.html.haml:62 ../app/views/ops/_diagnostics_savedreports.html.haml:7 ../app/views/ops/_ldap_domain_show.html.haml:246 ../app/views/miq_request/_ae_prov_show.html.haml:7 ../app/views/layouts/_gtl.html.haml:18 ../app/views/layouts/_x_gtl.html.haml:19 ../app/views/layouts/_compare.html.haml:4 msgid "No Records Found." msgstr "" @@ -13875,15 +14223,15 @@ msgstr "" msgid "No Report data found" msgstr "" -#: ../app/views/chargeback/_reports_list.html.haml:15 ../app/views/chargeback/_reports_list.html.haml:39 ../app/views/chargeback/_reports_list.html.haml:93 ../app/views/report/_savedreports_list.html.haml:11 ../app/views/report/_report_list.html.haml:32 +#: ../app/views/report/_report_list.html.haml:32 ../app/views/report/_savedreports_list.html.haml:11 ../app/views/chargeback/_reports_list.html.haml:15 ../app/views/chargeback/_reports_list.html.haml:39 ../app/views/chargeback/_reports_list.html.haml:93 msgid "No Reports available." msgstr "" -#: ../app/views/catalog/_sandt_tree_show.html.haml:254 +#: ../app/views/catalog/_sandt_tree_show.html.haml:270 msgid "No Resources found." msgstr "" -#: ../app/views/report/_role_list.html.haml:25 ../app/views/report/_report_saved_reports.html.haml:6 +#: ../app/views/report/_report_saved_reports.html.haml:6 ../app/views/report/_role_list.html.haml:25 msgid "No Saved Reports available." msgstr "" @@ -13891,6 +14239,14 @@ msgstr "" msgid "No Schedules available." msgstr "" +#: ../app/controllers/security_group_controller.rb:124 +msgid "No Security Group were selected for deletion." +msgstr "" + +#: ../app/controllers/middleware_server_group_controller.rb:53 +msgid "No Server Groups selected" +msgstr "" + #: ../app/controllers/ops_controller/settings/rhn.rb:293 msgid "No Server was selected" msgstr "" @@ -13899,11 +14255,11 @@ msgstr "" msgid "No Servers Found." msgstr "" -#: ../app/views/ops/_diagnostics_servers_roles_tab.html.haml:19 ../app/views/ops/_diagnostics_roles_servers_tab.html.haml:19 +#: ../app/views/ops/_diagnostics_roles_servers_tab.html.haml:19 ../app/views/ops/_diagnostics_servers_roles_tab.html.haml:19 msgid "No Servers found." msgstr "" -#: ../app/controllers/middleware_server_controller.rb:198 +#: ../app/controllers/middleware_server_controller.rb:186 msgid "No Servers selected" msgstr "" @@ -13911,19 +14267,11 @@ msgstr "" msgid "No Servers with the SmartProxy role are in Zone: \"%{zone_description}\"" msgstr "" -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:95 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:102 -msgid "No Single Point Of Failure" -msgstr "" - -#: ../app/helpers/application_helper/toolbar_builder.rb:524 ../app/helpers/application_helper/toolbar_builder.rb:538 ../app/helpers/application_helper/toolbar_builder.rb:543 ../app/helpers/application_helper/toolbar_builder.rb:548 ../app/helpers/application_helper/toolbar_builder.rb:553 -msgid "No Statistics Collected" -msgstr "" - -#: ../app/helpers/application_helper/toolbar_builder.rb:533 -msgid "No Statistics collected for this Logical Disk" +#: ../app/controllers/service_controller.rb:198 +msgid "No Services were selected for deletion" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:794 +#: ../app/helpers/application_helper/button/customization_template_new.rb:10 msgid "No System Image Types available, Customization Template cannot be added" msgstr "" @@ -13931,7 +14279,7 @@ msgstr "" msgid "No Time Profile Selected" msgstr "" -#: ../app/views/miq_capacity/_utilization_options.html.haml:71 ../app/views/miq_capacity/_planning_options.html.haml:453 ../app/views/report/_form_filter_performance.html.haml:56 ../app/views/layouts/_perf_options.html.haml:167 +#: ../app/views/miq_capacity/_utilization_options.html.haml:71 ../app/views/miq_capacity/_planning_options.html.haml:453 ../app/views/report/_form_filter_performance.html.haml:56 ../app/views/layouts/_perf_options.html.haml:166 msgid "No Time Profiles found" msgstr "" @@ -13939,7 +14287,7 @@ msgstr "" msgid "No Timeline data available." msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:821 ../app/views/layouts/listnav/_ems_storage.html.haml:16 +#: ../app/views/layouts/listnav/_ems_storage.html.haml:16 msgid "No Timeline data has been collected for Policy or Management Events" msgstr "" @@ -13947,15 +14295,15 @@ msgstr "" msgid "No Timeline data has been collected for this %{entity}" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:518 +#: ../app/helpers/application_helper/button/availability_zone_timeline.rb:5 msgid "No Timeline data has been collected for this Availability Zone" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:561 +#: ../app/helpers/application_helper/button/ems_cluster_timeline.rb:5 msgid "No Timeline data has been collected for this Cluster" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:576 +#: ../app/helpers/application_helper/button/host_timeline.rb:5 msgid "No Timeline data has been collected for this Host" msgstr "" @@ -13963,15 +14311,15 @@ msgstr "" msgid "No Timeline data has been collected for this Provider" msgstr "" -#: ../app/helpers/application_helper/button/ems_storage_timeline.rb:13 +#: ../app/helpers/application_helper/button/ems_storage_timeline.rb:9 msgid "No Timeline data has been collected for this Storage Manager" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:759 +#: ../app/helpers/application_helper/button/miq_template_timeline.rb:6 msgid "No Timeline data has been collected for this Template" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:725 +#: ../app/helpers/application_helper/button/vm_timeline.rb:5 msgid "No Timeline data has been collected for this VM" msgstr "" @@ -13979,7 +14327,7 @@ msgstr "" msgid "No TreeBuilder found for feature '%{name}'" msgstr "" -#: ../app/controllers/application_controller/performance.rb:186 +#: ../app/controllers/application_controller/performance.rb:155 msgid "No Utilization data available" msgstr "" @@ -13999,15 +14347,15 @@ msgstr "" msgid "No VMs match the selection criteria" msgstr "" -#: ../app/controllers/vm_common.rb:1870 +#: ../app/controllers/vm_common.rb:1682 msgid "No VMs were selected to move left" msgstr "" -#: ../app/controllers/vm_common.rb:1858 +#: ../app/controllers/vm_common.rb:1670 msgid "No VMs were selected to move right" msgstr "" -#: ../app/controllers/application_controller/compare.rb:1309 ../app/controllers/application_controller/compare.rb:1933 +#: ../app/controllers/application_controller/compare.rb:1203 ../app/controllers/application_controller/compare.rb:1824 msgid "No Value Found" msgstr "" @@ -14035,7 +14383,7 @@ msgstr "" msgid "No chart data found" msgstr "" -#: ../app/controllers/vm_common.rb:1882 +#: ../app/controllers/vm_common.rb:1694 msgid "No child VMs to move right, no action taken" msgstr "" @@ -14051,13 +14399,13 @@ msgstr "" msgid "No cloud providers support key pair import or creation." msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:130 +#: ../app/controllers/provider_foreman_controller.rb:111 msgid "No common configuration profiles available for the selected configured system" msgid_plural "No common configuration profiles available for the selected configured systems" msgstr[0] "" msgstr[1] "" -#: ../app/controllers/ems_infra_controller.rb:97 +#: ../app/controllers/ems_infra_controller.rb:98 msgid "No compute hosts were selected for scale down." msgstr "" @@ -14065,7 +14413,7 @@ msgstr "" msgid "No conditions defined. This policy is unconditional and will ALWAYS return true." msgstr "" -#: ../app/views/catalog/_sandt_tree_show.html.haml:198 +#: ../app/views/catalog/_sandt_tree_show.html.haml:214 msgid "No custom image has been uploaded" msgstr "" @@ -14085,11 +14433,11 @@ msgstr "" msgid "No drift history found, an Analysis or Virtual Black Box Synchronization for this VM may need to be run." msgstr "" -#: ../app/controllers/application_controller/performance.rb:320 ../app/controllers/application_controller/performance.rb:357 +#: ../app/controllers/application_controller/performance.rb:249 ../app/controllers/application_controller/performance.rb:286 msgid "No events available for this %{model}" msgstr "" -#: ../app/controllers/application_controller/performance.rb:318 ../app/controllers/application_controller/performance.rb:355 +#: ../app/controllers/application_controller/performance.rb:247 ../app/controllers/application_controller/performance.rb:284 msgid "No events available for this Cluster" msgstr "" @@ -14105,7 +14453,7 @@ msgstr "" msgid "No expression defined, a condition must contain a valid expression." msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:826 +#: ../app/controllers/report_controller/reports/editor.rb:834 msgid "No fields were moved up" msgstr "" @@ -14113,15 +14461,15 @@ msgstr "" msgid "No fields were selected to move bottom" msgstr "" -#: ../app/controllers/application_controller/buttons.rb:1044 ../app/controllers/ops_controller/ops_rbac.rb:475 ../app/controllers/miq_ae_customization_controller/dialogs.rb:664 ../app/controllers/report_controller/dashboards.rb:459 ../app/controllers/report_controller/menus.rb:423 ../app/controllers/report_controller/menus.rb:467 ../app/controllers/report_controller/reports/editor.rb:796 +#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:654 ../app/controllers/report_controller/menus.rb:423 ../app/controllers/report_controller/menus.rb:467 ../app/controllers/report_controller/reports/editor.rb:804 ../app/controllers/report_controller/dashboards.rb:459 ../app/controllers/application_controller/buttons.rb:1044 ../app/controllers/ops_controller/ops_rbac.rb:475 msgid "No fields were selected to move down" msgstr "" -#: ../app/controllers/application_controller.rb:420 ../app/controllers/report_controller/menus.rb:358 +#: ../app/controllers/application_controller.rb:423 ../app/controllers/report_controller/menus.rb:358 msgid "No fields were selected to move left" msgstr "" -#: ../app/controllers/application_controller.rb:421 ../app/controllers/report_controller/menus.rb:373 +#: ../app/controllers/application_controller.rb:424 ../app/controllers/report_controller/menus.rb:373 msgid "No fields were selected to move right" msgstr "" @@ -14129,26 +14477,34 @@ msgstr "" msgid "No fields were selected to move top" msgstr "" -#: ../app/controllers/application_controller/buttons.rb:1023 ../app/controllers/ops_controller/ops_rbac.rb:453 ../app/controllers/miq_ae_customization_controller/dialogs.rb:655 ../app/controllers/report_controller/dashboards.rb:435 ../app/controllers/report_controller/menus.rb:402 ../app/controllers/report_controller/menus.rb:446 ../app/controllers/report_controller/reports/editor.rb:824 +#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:645 ../app/controllers/report_controller/menus.rb:402 ../app/controllers/report_controller/menus.rb:446 ../app/controllers/report_controller/reports/editor.rb:832 ../app/controllers/report_controller/dashboards.rb:435 ../app/controllers/application_controller/buttons.rb:1023 ../app/controllers/ops_controller/ops_rbac.rb:453 msgid "No fields were selected to move up" msgstr "" -#: ../app/views/shared/_file_chooser.html.haml:8 ../app/views/middleware_server/_deploy.html.haml:87 +#: ../app/views/middleware_shared/_deploy.html.haml:90 ../app/views/shared/_file_chooser.html.haml:8 msgid "No file chosen" msgstr "" +#: ../app/views/layouts/_adv_search_footer.html.haml:20 ../app/views/layouts/_adv_search_footer.html.haml:45 ../app/views/layouts/_adv_search_footer.html.haml:58 +msgid "No filter available" +msgstr "" + #: ../app/views/layouts/listnav/_show_list.html.haml:4 msgid "No filters defined." msgstr "" -#: ../app/controllers/host_aggregate_controller.rb:372 +#: ../app/controllers/host_aggregate_controller.rb:361 msgid "No hosts available to add to %{model} \"%{name}\"" msgstr "" -#: ../app/controllers/host_aggregate_controller.rb:474 +#: ../app/controllers/host_aggregate_controller.rb:463 msgid "No hosts to remove from %{model} \"%{name}\"" msgstr "" +#: ../app/views/layouts/_user_input_filter.html.haml:106 +msgid "No input to apply" +msgstr "" + #: ../app/views/miq_ae_class/_class_instances.html.haml:50 msgid "No instances found" msgstr "" @@ -14157,19 +14513,19 @@ msgstr "" msgid "No methods found" msgstr "" -#: ../app/controllers/application_controller/compare.rb:929 +#: ../app/controllers/application_controller/compare.rb:825 msgid "No more than 10 Analyses can be selected for Drift" msgstr "" -#: ../app/controllers/application_controller/compare.rb:882 +#: ../app/controllers/application_controller/compare.rb:778 msgid "No more than 32 %{model} can be selected for Compare" msgstr "" -#: ../app/views/miq_policy/_condition_details.html.haml:115 ../app/views/miq_policy/_profile_details.html.haml:183 ../app/views/miq_policy/_alert_profile_details.html.haml:178 ../app/views/miq_policy/_policy_details.html.haml:405 +#: ../app/views/miq_policy/_alert_profile_details.html.haml:178 ../app/views/miq_policy/_profile_details.html.haml:183 ../app/views/miq_policy/_policy_details.html.haml:405 ../app/views/miq_policy/_condition_details.html.haml:115 msgid "No notes have been entered." msgstr "" -#: ../app/views/miq_capacity/_utilization_summary.html.haml:53 ../app/views/miq_capacity/_utilization_report.html.haml:29 ../app/views/miq_capacity/_utilization_details.html.haml:18 +#: ../app/views/miq_capacity/_utilization_details.html.haml:18 ../app/views/miq_capacity/_utilization_report.html.haml:29 ../app/views/miq_capacity/_utilization_summary.html.haml:53 msgid "No performance data is available for the selected item." msgstr "" @@ -14181,31 +14537,31 @@ msgstr "" msgid "No policies have been chosen yet" msgstr "" -#: ../app/controllers/vm_common.rb:646 +#: ../app/controllers/vm_common.rb:500 msgid "No policies were selected for Policy Simulation." msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1950 +#: ../app/controllers/application_controller/ci_processing.rb:1977 msgid "No providers were selected for %{task}" msgstr "" -#: ../app/helpers/application_helper/button/utilization_download.rb:13 ../app/helpers/application_helper/button/chargeback_report_only.rb:3 ../app/helpers/application_helper/button/chargeback_download_choice.rb:3 ../app/helpers/application_helper/toolbar_builder.rb:809 ../app/helpers/application_helper/toolbar_builder.rb:815 ../app/controllers/application_controller.rb:595 ../app/controllers/report_controller/saved_reports.rb:77 ../app/controllers/chargeback_controller.rb:381 +#: ../app/helpers/application_helper/button/report_only.rb:5 ../app/helpers/application_helper/button/utilization_download.rb:13 ../app/helpers/application_helper/button/chargeback_report_only.rb:3 ../app/helpers/application_helper/button/chargeback_download_choice.rb:3 ../app/helpers/application_helper/button/mixins/render_report_mixin.rb:3 ../app/controllers/chargeback_controller.rb:377 ../app/controllers/application_controller.rb:598 ../app/controllers/report_controller/saved_reports.rb:77 msgid "No records found for this report" msgstr "" -#: ../app/controllers/dashboard_controller.rb:619 ../app/controllers/dashboard_controller.rb:747 ../app/controllers/application_controller/timelines.rb:236 ../app/controllers/miq_capacity_controller.rb:735 +#: ../app/controllers/miq_capacity_controller.rb:735 ../app/controllers/dashboard_controller.rb:619 ../app/controllers/dashboard_controller.rb:747 ../app/controllers/application_controller/timelines.rb:240 msgid "No records found for this timeline" msgstr "" -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:25 ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:83 +#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:74 ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:309 msgid "No replication role has been set" msgstr "" -#: ../app/controllers/network_router_controller.rb:133 +#: ../app/controllers/network_router_controller.rb:137 msgid "No router were selected for deletion." msgstr "" -#: ../app/views/layouts/_adv_search_footer.html.haml:9 +#: ../app/views/layouts/_adv_search_footer.html.haml:7 msgid "No saved filters or report filters are available to load" msgstr "" @@ -14213,11 +14569,11 @@ msgstr "" msgid "No schema found" msgstr "" -#: ../app/views/miq_policy/_condition_details.html.haml:62 ../app/views/miq_policy/_form_scope.html.haml:25 +#: ../app/views/miq_policy/_form_scope.html.haml:25 ../app/views/miq_policy/_condition_details.html.haml:62 msgid "No scope defined, the scope of this condition includes all elements." msgstr "" -#: ../app/controllers/middleware_server_controller.rb:258 +#: ../app/controllers/middleware_server_controller.rb:251 msgid "No servers selected" msgstr "" @@ -14225,7 +14581,15 @@ msgstr "" msgid "No shortcuts are authorized for this user, contact your Administrator" msgstr "" -#: ../app/views/layouts/gtl/_list.html.haml:209 +#: ../app/controllers/network_router_controller.rb:234 +msgid "No subnets available to add interfaces to Router \"%{name}\"" +msgstr "" + +#: ../app/controllers/network_router_controller.rb:329 +msgid "No subnets to remove interfaces to Router \"%{name}\"" +msgstr "" + +#: ../app/views/layouts/gtl/_list.html.haml:199 msgid "No task target captured" msgstr "" @@ -14249,31 +14613,31 @@ msgstr "" msgid "No variables configured." msgstr "" -#: ../app/helpers/application_helper.rb:1525 ../app/helpers/application_helper.rb:1547 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:80 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:200 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:298 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:401 ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:20 ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:14 ../app/views/ems_infra/scaledown.html.haml:44 +#: ../app/helpers/application_helper/title.rb:99 ../app/helpers/application_helper.rb:1451 ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:20 ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:14 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:80 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:200 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:298 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:401 ../app/views/ems_infra/scaledown.html.haml:44 msgid "Node" msgstr "" -#: ../app/helpers/container_service_helper/textual_summary.rb:18 +#: ../app/helpers/container_service_helper/textual_summary.rb:14 msgid "Node Port" msgstr "" -#: ../app/views/container_group/_main.html.haml:12 +#: ../app/helpers/container_summary_helper.rb:87 ../app/helpers/container_summary_helper.rb:91 msgid "Node Selector" msgstr "" -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:214 +#: ../app/views/ems_container/_show_dashboard.html.haml:214 msgid "Node Utilization" msgstr "" -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:35 ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:72 +#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:72 ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:35 msgid "Node configuration" msgstr "" -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:103 +#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:161 msgid "Node: " msgstr "" -#: ../app/presenters/menu/default_menu.rb:61 ../app/helpers/application_helper.rb:1525 ../app/views/container_topology/show.html.haml:120 ../app/views/infra_topology/show.html.haml:33 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:303 ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:25 ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:11 +#: ../app/presenters/menu/default_menu.rb:62 ../app/helpers/application_helper/title.rb:99 ../app/views/container_topology/show.html.haml:120 ../app/views/infra_topology/show.html.haml:33 ../app/views/physical_infra_topology/show.html.haml:33 ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:25 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:303 ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:11 msgid "Nodes" msgstr "" @@ -14281,7 +14645,7 @@ msgstr "" msgid "Nodes Base Name:" msgstr "" -#: ../app/controllers/ems_infra_controller.rb:161 +#: ../app/controllers/ems_infra_controller.rb:162 msgid "Nodes were added successfully. Refresh queued." msgstr "" @@ -14289,11 +14653,11 @@ msgstr "" msgid "Non-Compliant as of %{time} Ago" msgstr "" -#: ../app/controllers/ems_common.rb:864 ../app/controllers/ems_common.rb:877 +#: ../app/controllers/ems_common.rb:749 ../app/controllers/ems_common.rb:762 msgid "Non-SSL" msgstr "" -#: ../app/helpers/storage_helper/textual_summary.rb:253 ../app/controllers/storage_controller.rb:238 ../app/views/layouts/listnav/_storage.html.haml:126 +#: ../app/helpers/storage_helper/textual_summary.rb:208 ../app/controllers/storage_controller.rb:209 ../app/views/layouts/listnav/_storage.html.haml:87 msgid "Non-VM Files" msgstr "" @@ -14301,11 +14665,11 @@ msgstr "" msgid "Non-clustered Hosts" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:124 ../app/helpers/ems_cluster_helper/textual_summary.rb:190 ../app/helpers/ontap_file_share_helper/textual_summary.rb:61 ../app/helpers/ontap_file_share_helper/textual_summary.rb:74 ../app/helpers/ontap_file_share_helper/textual_summary.rb:86 ../app/helpers/service_helper/textual_summary.rb:77 ../app/helpers/host_helper/textual_summary.rb:136 ../app/helpers/host_helper/textual_summary.rb:225 ../app/helpers/host_helper/textual_summary.rb:265 ../app/helpers/host_helper/textual_summary.rb:304 ../app/helpers/textual_mixins/textual_scan_history.rb:6 ../app/helpers/textual_mixins/textual_metrics_status.rb:5 ../app/helpers/textual_mixins/textual_metrics_status.rb:6 ../app/helpers/textual_mixins/textual_authentications_status.rb:12 ../app/helpers/textual_mixins/textual_authentications_status.rb:38 ../app/helpers/textual_mixins/textual_drift.rb:7 ../app/helpers/vm_helper/textual_summary.rb:127 ../app/helpers/vm_helper/textual_summary.rb:160 ../app/helpers/vm_helper/textual_summary.rb:221 ../app/helpers/vm_helper/textual_summary.rb:232 ../app/helpers/vm_helper/textual_summary.rb:243 ../app/helpers/vm_helper/textual_summary.rb:256 ../app/helpers/vm_helper/textual_summary.rb:288 ../app/helpers/vm_helper/textual_summary.rb:299 ../app/helpers/vm_helper/textual_summary.rb:310 ../app/helpers/vm_helper/textual_summary.rb:323 ../app/helpers/vm_helper/textual_summary.rb:337 ../app/helpers/vm_helper/textual_summary.rb:349 ../app/helpers/vm_helper/textual_summary.rb:447 ../app/helpers/vm_helper/textual_summary.rb:831 ../app/helpers/cloud_volume_backup_helper/textual_summary.rb:37 ../app/helpers/resource_pool_helper/textual_summary.rb:60 ../app/helpers/resource_pool_helper/textual_summary.rb:67 ../app/helpers/resource_pool_helper/textual_summary.rb:79 ../app/helpers/storage_helper/textual_summary.rb:61 ../app/helpers/storage_helper/textual_summary.rb:144 ../app/helpers/storage_helper/textual_summary.rb:155 ../app/helpers/cloud_volume_helper/textual_summary.rb:37 ../app/helpers/cloud_volume_helper/textual_summary.rb:52 ../app/helpers/cloud_volume_helper/textual_summary.rb:64 ../app/helpers/orchestration_stack_helper/textual_summary.rb:47 ../app/helpers/textual_summary_helper.rb:163 ../app/helpers/textual_summary_helper.rb:178 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:189 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:211 ../app/helpers/cloud_volume_snapshot_helper/textual_summary.rb:45 ../app/helpers/vm_helper.rb:24 ../app/helpers/vm_helper.rb:29 ../app/helpers/vm_cloud_helper/textual_summary.rb:100 ../app/helpers/configuration_job_helper/textual_summary.rb:36 ../app/helpers/configuration_job_helper/textual_summary.rb:49 ../app/views/miq_capacity/_utilization_options.html.haml:45 ../app/views/miq_policy/_action_options.html.haml:477 ../app/views/miq_policy/_action_options.html.haml:489 ../app/views/miq_policy/_alert_snmp.html.haml:129 ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:175 ../app/views/miq_request/_prov_pxe_img_grid.html.haml:26 ../app/views/miq_request/_prov_field.html.haml:285 ../app/views/miq_request/_prov_field.html.haml:337 ../app/views/miq_request/_prov_field.html.haml:456 ../app/views/miq_request/_prov_field.html.haml:549 ../app/views/miq_request/_prov_host_grid.html.haml:33 ../app/views/miq_request/_prov_windows_image_grid.html.haml:26 ../app/views/miq_request/_prov_template_grid.html.haml:26 ../app/views/miq_request/_prov_vc_grid.html.haml:27 ../app/views/miq_request/_prov_iso_img_grid.html.haml:26 ../app/views/miq_request/_prov_ds_grid.html.haml:29 ../app/views/miq_request/_prov_vm_grid.html.haml:31 ../app/views/miq_request/_prov_vm_grid.html.haml:108 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:126 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:209 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:252 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:350 ../app/views/miq_ae_customization/_dialog_sample.html.haml:121 ../app/views/miq_ae_customization/_dialog_sample.html.haml:155 ../app/views/shared/dialogs/_dialog_field_radio_button.html.haml:6 ../app/views/shared/views/_retire.html.haml:49 ../app/views/catalog/_form_resources_info.html.haml:121 ../app/views/ops/_settings_replication_tab.html.haml:91 ../app/views/ops/_rbac_role_details.html.haml:59 ../app/views/ops/_rbac_role_details.html.haml:62 ../app/views/report/_form_columns_trend.html.haml:42 ../app/views/report/_form_columns_trend.html.haml:86 ../app/views/report/_form_columns_trend.html.haml:86 ../app/views/report/_form_sort.html.haml:119 ../app/views/report/_form_formatting.html.haml:88 ../app/views/layouts/_edit_to_email.html.haml:22 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:269 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:30 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:36 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:47 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:54 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:73 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:85 +#: ../app/helpers/cloud_volume_helper/textual_summary.rb:42 ../app/helpers/cloud_volume_helper/textual_summary.rb:57 ../app/helpers/cloud_volume_helper/textual_summary.rb:69 ../app/helpers/orchestration_stack_helper/textual_summary.rb:53 ../app/helpers/host_helper/textual_summary.rb:143 ../app/helpers/host_helper/textual_summary.rb:232 ../app/helpers/host_helper/textual_summary.rb:272 ../app/helpers/host_helper/textual_summary.rb:311 ../app/helpers/vm_cloud_helper/textual_summary.rb:111 ../app/helpers/textual_summary_helper.rb:177 ../app/helpers/textual_summary_helper.rb:192 ../app/helpers/configuration_job_helper/textual_summary.rb:36 ../app/helpers/configuration_job_helper/textual_summary.rb:49 ../app/helpers/textual_mixins/textual_metrics_status.rb:5 ../app/helpers/textual_mixins/textual_metrics_status.rb:6 ../app/helpers/textual_mixins/textual_authentications_status.rb:12 ../app/helpers/textual_mixins/textual_authentications_status.rb:38 ../app/helpers/textual_mixins/textual_drift.rb:7 ../app/helpers/textual_mixins/textual_scan_history.rb:6 ../app/helpers/resource_pool_helper/textual_summary.rb:75 ../app/helpers/resource_pool_helper/textual_summary.rb:82 ../app/helpers/resource_pool_helper/textual_summary.rb:94 ../app/helpers/storage_helper/textual_summary.rb:60 ../app/helpers/ems_cluster_helper/textual_summary.rb:135 ../app/helpers/ems_cluster_helper/textual_summary.rb:201 ../app/helpers/service_helper/textual_summary.rb:122 ../app/helpers/cloud_volume_snapshot_helper/textual_summary.rb:45 ../app/helpers/vm_helper/textual_summary.rb:167 ../app/helpers/vm_helper/textual_summary.rb:200 ../app/helpers/vm_helper/textual_summary.rb:261 ../app/helpers/vm_helper/textual_summary.rb:272 ../app/helpers/vm_helper/textual_summary.rb:282 ../app/helpers/vm_helper/textual_summary.rb:295 ../app/helpers/vm_helper/textual_summary.rb:327 ../app/helpers/vm_helper/textual_summary.rb:338 ../app/helpers/vm_helper/textual_summary.rb:349 ../app/helpers/vm_helper/textual_summary.rb:362 ../app/helpers/vm_helper/textual_summary.rb:376 ../app/helpers/vm_helper/textual_summary.rb:388 ../app/helpers/vm_helper/textual_summary.rb:486 ../app/helpers/vm_helper/textual_summary.rb:828 ../app/helpers/vm_helper.rb:24 ../app/helpers/vm_helper.rb:29 ../app/helpers/cloud_volume_backup_helper/textual_summary.rb:37 ../app/views/miq_policy/_action_options.html.haml:469 ../app/views/miq_policy/_action_options.html.haml:481 ../app/views/miq_policy/_alert_snmp.html.haml:129 ../app/views/miq_capacity/_utilization_options.html.haml:45 ../app/views/ops/_rbac_role_details.html.haml:58 ../app/views/ops/_rbac_role_details.html.haml:61 ../app/views/ops/_settings_replication_tab.html.haml:19 ../app/views/miq_request/_prov_pxe_img_grid.html.haml:26 ../app/views/miq_request/_prov_vc_grid.html.haml:27 ../app/views/miq_request/_prov_host_grid.html.haml:33 ../app/views/miq_request/_prov_vm_grid.html.haml:31 ../app/views/miq_request/_prov_vm_grid.html.haml:108 ../app/views/miq_request/_prov_iso_img_grid.html.haml:26 ../app/views/miq_request/_prov_ds_grid.html.haml:29 ../app/views/miq_request/_prov_field.html.haml:285 ../app/views/miq_request/_prov_field.html.haml:337 ../app/views/miq_request/_prov_field.html.haml:456 ../app/views/miq_request/_prov_field.html.haml:553 ../app/views/miq_request/_prov_template_grid.html.haml:26 ../app/views/miq_request/_prov_windows_image_grid.html.haml:26 ../app/views/shared/views/_retire.html.haml:49 ../app/views/report/_form_sort.html.haml:119 ../app/views/report/_form_columns_trend.html.haml:42 ../app/views/report/_form_columns_trend.html.haml:86 ../app/views/report/_form_columns_trend.html.haml:86 ../app/views/report/_form_formatting.html.haml:88 ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:175 ../app/views/layouts/_edit_to_email.html.haml:22 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:274 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:126 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:249 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:347 ../app/views/catalog/_form_resources_info.html.haml:121 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:30 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:36 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:47 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:54 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:73 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:85 msgid "None" msgstr "" -#: ../app/views/miq_request/_prov_options.html.haml:34 ../app/views/ops/_settings_server_tab.html.haml:222 +#: ../app/views/ops/_settings_server_tab.html.haml:222 ../app/views/miq_request/_prov_options.html.haml:34 msgid "None Available" msgstr "" @@ -14313,11 +14677,15 @@ msgstr "" msgid "None Available or All Selected" msgstr "" +#: ../app/controllers/application_controller/ci_processing.rb:48 +msgid "None of the selected items allow ownership changes" +msgstr "" + #: ../app/views/report/_form_styling.html.haml:57 msgid "Normal" msgstr "" -#: ../app/views/vm_common/_main.html.haml:18 +#: ../app/helpers/vm_helper/textual_summary.rb:117 msgid "Normal Operating Ranges (over 30 days)" msgstr "" @@ -14325,15 +14693,15 @@ msgstr "" msgid "Normal Operating Ranges (up to 30 days' data)" msgstr "" -#: ../app/controllers/middleware_server_controller.rb:266 +#: ../app/controllers/middleware_server_controller.rb:259 msgid "Not %{hawkular_info} the provider" msgstr "" -#: ../app/controllers/middleware_server_controller.rb:233 +#: ../app/controllers/middleware_server_controller.rb:226 msgid "Not %{operation_info} the domain server" msgstr "" -#: ../app/controllers/middleware_server_controller.rb:230 +#: ../app/controllers/middleware_server_controller.rb:223 msgid "Not %{operation_info} the provider" msgstr "" @@ -14341,7 +14709,7 @@ msgstr "" msgid "Not %{operation_name} for %{record_name} on the provider itself" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:481 ../app/helpers/vm_helper/textual_summary.rb:660 ../app/helpers/vm_helper/textual_summary.rb:673 ../app/helpers/vm_helper/textual_summary.rb:791 ../app/helpers/vm_helper/textual_summary.rb:801 ../app/helpers/vm_helper/textual_summary.rb:811 ../app/helpers/vm_helper/textual_summary.rb:822 ../app/helpers/compliance_summary_helper.rb:36 ../app/helpers/container_summary_helper.rb:143 ../app/helpers/vm_cloud_helper/textual_summary.rb:226 ../app/helpers/vm_cloud_helper/textual_summary.rb:240 ../app/views/ems_cluster/_config.html.haml:8 ../app/views/vm_common/_config.html.haml:85 ../app/views/vm_common/_right_size.html.haml:1 ../app/views/ops/_settings_server_tab.html.haml:63 ../app/views/resource_pool/_config.html.haml:20 ../app/views/layouts/_item.html.haml:145 +#: ../app/helpers/host_helper/textual_summary.rb:444 ../app/helpers/vm_cloud_helper/textual_summary.rb:237 ../app/helpers/vm_cloud_helper/textual_summary.rb:251 ../app/helpers/compliance_summary_helper.rb:36 ../app/helpers/container_summary_helper.rb:147 ../app/helpers/vm_helper/textual_summary.rb:699 ../app/helpers/vm_helper/textual_summary.rb:712 ../app/helpers/vm_helper/textual_summary.rb:788 ../app/helpers/vm_helper/textual_summary.rb:798 ../app/helpers/vm_helper/textual_summary.rb:808 ../app/helpers/vm_helper/textual_summary.rb:819 ../app/views/vm_common/_config.html.haml:85 ../app/views/vm_common/_right_size.html.haml:1 ../app/views/resource_pool/_config.html.haml:20 ../app/views/ems_cluster/_config.html.haml:8 ../app/views/ops/_settings_server_tab.html.haml:63 ../app/views/layouts/_item.html.haml:87 msgid "Not Available" msgstr "" @@ -14349,22 +14717,26 @@ msgstr "" msgid "Not a Server" msgstr "" -#: ../app/controllers/middleware_server_controller.rb:61 +#: ../app/controllers/middleware_server_controller.rb:63 msgid "Not adding new datasource to Hawkular server" msgstr "" -#: ../app/controllers/ems_infra_controller.rb:217 +#: ../app/controllers/ems_infra_controller.rb:218 msgid "Not all hosts can be removed from the deployment." msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:507 +#: ../app/helpers/host_helper/textual_summary.rb:470 msgid "Not available. Did you assigned Cloud Provider and run SSA?" msgstr "" -#: ../app/controllers/middleware_server_controller.rb:50 +#: ../app/controllers/middleware_server_controller.rb:52 msgid "Not deploying to Hawkular server" msgstr "" +#: ../app/views/shared/views/_alerts_list.html.haml:179 ../app/views/static/edit_alert_dialog.html.haml:76 +msgid "Note" +msgstr "" + #: ../app/views/report/_form_consolidate.html.haml:81 ../app/views/report/_form_consolidate.html.haml:149 msgid "Note:" msgstr "" @@ -14385,19 +14757,23 @@ msgstr "" msgid "Note: Only Time Profiles with 'Roll Up Performance' set are shown." msgstr "" +#: ../app/views/shared/views/_ownership.html.haml:75 +msgid "Note: Some items might be hidden due to the possibility of an ownership change" +msgstr "" + #: ../app/views/ops/_rbac_tenant_details.html.haml:143 msgid "Note: Total quota can be restricted by quotas defined at upper levels" msgstr "" -#: ../app/views/layouts/_auth_credentials.html.haml:30 ../app/assets/javascripts/controllers/ems_common/ems_common_form_controller.js:57 +#: ../app/views/layouts/_auth_credentials.html.haml:30 ../app/assets/javascripts/controllers/ems_common/ems_common_form_controller.js:61 msgid "Note: Username must be in the format: name@realm" msgstr "" -#: ../app/controllers/application_controller.rb:1346 ../app/views/miq_policy/_condition_details.html.haml:95 ../app/views/miq_policy/_condition_details.html.haml:112 ../app/views/miq_policy/_profile_details.html.haml:161 ../app/views/miq_policy/_profile_details.html.haml:180 ../app/views/miq_policy/_alert_profile_details.html.haml:150 ../app/views/miq_policy/_alert_profile_details.html.haml:174 ../app/views/miq_policy/_policy_details.html.haml:385 ../app/views/miq_policy/_policy_details.html.haml:402 +#: ../app/controllers/application_controller.rb:1353 ../app/views/miq_policy/_alert_profile_details.html.haml:150 ../app/views/miq_policy/_alert_profile_details.html.haml:174 ../app/views/miq_policy/_profile_details.html.haml:161 ../app/views/miq_policy/_profile_details.html.haml:180 ../app/views/miq_policy/_policy_details.html.haml:385 ../app/views/miq_policy/_policy_details.html.haml:402 ../app/views/miq_policy/_condition_details.html.haml:95 ../app/views/miq_policy/_condition_details.html.haml:112 msgid "Notes" msgstr "" -#: ../app/views/miq_policy/_alert_profile_assign.html.haml:35 ../app/views/miq_policy/_alert_profile_details.html.haml:249 ../app/views/chargeback/_cb_assignments.html.haml:1 +#: ../app/views/miq_policy/_alert_profile_details.html.haml:249 ../app/views/miq_policy/_alert_profile_assign.html.haml:35 ../app/views/chargeback/_cb_assignments.html.haml:1 msgid "Nothing" msgstr "" @@ -14437,19 +14813,15 @@ msgstr "" msgid "Number List" msgstr "" -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:70 ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:49 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:77 -msgid "Number of Blocks" -msgstr "" - -#: ../app/helpers/container_node_helper/textual_summary.rb:40 ../app/helpers/host_helper/textual_summary.rb:238 +#: ../app/helpers/host_helper/textual_summary.rb:245 ../app/helpers/container_node_helper/textual_summary.rb:54 msgid "Number of CPU Cores" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:245 ../app/views/miq_policy/_action_details.html.haml:270 +#: ../app/views/miq_policy/_action_options.html.haml:237 ../app/views/miq_policy/_action_details.html.haml:270 msgid "Number of CPU's" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:234 +#: ../app/helpers/host_helper/textual_summary.rb:241 msgid "Number of CPUs" msgstr "" @@ -14457,13 +14829,13 @@ msgstr "" msgid "Number of Compute Hosts" msgstr "" -#: ../app/controllers/vm_common.rb:1618 +#: ../app/controllers/vm_common.rb:1426 msgid "Number of Disk" msgid_plural "Number of Disks" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/vm_helper/textual_summary.rb:579 +#: ../app/helpers/vm_helper/textual_summary.rb:618 msgid "Number of Disks" msgstr "" @@ -14483,7 +14855,7 @@ msgstr "" msgid "Number of Nodes" msgstr "" -#: ../app/views/report/_form_sort.html.haml:200 +#: ../app/views/report/_form_sort.html.haml:178 msgid "Number of Rows to Show" msgstr "" @@ -14491,21 +14863,25 @@ msgstr "" msgid "Number of VMs" msgstr "" -#: ../app/views/layouts/_exp_editor.html.haml:68 ../app/views/layouts/_exp_editor.html.haml:94 +#: ../app/views/static/edit_alert_dialog.html.haml:98 +msgid "OK" +msgstr "" + +#: ../app/views/layouts/_exp_editor.html.haml:58 ../app/views/layouts/_exp_editor.html.haml:94 msgid "OR with a new expression element" msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:171 ../app/helpers/provider_foreman_helper.rb:217 +#: ../app/helpers/provider_foreman_helper.rb:174 ../app/helpers/provider_foreman_helper.rb:222 ../app/helpers/automation_manager_helper.rb:58 msgid "OS" msgstr "" -#: ../app/controllers/vm_common.rb:1638 +#: ../app/controllers/vm_common.rb:1446 msgid "OS Info" msgid_plural "OS Info" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/provider_foreman_helper.rb:90 ../app/views/layouts/listnav/_host.html.haml:59 +#: ../app/helpers/provider_foreman_helper.rb:92 ../app/views/layouts/listnav/_host.html.haml:59 msgid "OS Information" msgstr "" @@ -14513,7 +14889,7 @@ msgstr "" msgid "Object" msgstr "" -#: ../app/views/shared/buttons/_ab_show.html.haml:139 ../app/views/ops/_schedule_show.html.haml:129 ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:70 ../app/views/layouts/_ae_resolve_options.html.haml:83 ../app/views/layouts/_ae_resolve_options.html.haml:107 +#: ../app/views/ops/_schedule_show.html.haml:129 ../app/views/shared/buttons/_ab_show.html.haml:139 ../app/views/layouts/_ae_resolve_options.html.haml:83 ../app/views/layouts/_ae_resolve_options.html.haml:107 ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:70 msgid "Object Attribute" msgstr "" @@ -14525,19 +14901,19 @@ msgstr "" msgid "Object Attribute Type" msgstr "" -#: ../app/views/miq_policy/_action_details.html.haml:123 ../app/views/shared/buttons/_ab_show.html.haml:89 ../app/views/ops/_schedule_show.html.haml:87 ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:5 ../app/views/layouts/_ae_resolve_options.html.haml:12 +#: ../app/views/miq_policy/_action_details.html.haml:123 ../app/views/ops/_schedule_show.html.haml:87 ../app/views/shared/buttons/_ab_show.html.haml:89 ../app/views/layouts/_ae_resolve_options.html.haml:12 ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:5 msgid "Object Details" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:445 ../app/views/miq_policy/_action_details.html.haml:396 +#: ../app/views/miq_policy/_action_options.html.haml:437 ../app/views/miq_policy/_action_details.html.haml:396 msgid "Object ID" msgstr "" -#: ../app/controllers/miq_policy_controller.rb:1018 +#: ../app/controllers/miq_policy_controller.rb:1021 msgid "Object ID and Values missing for %{field}" msgstr "" -#: ../app/controllers/miq_policy_controller.rb:1011 ../app/controllers/miq_policy_controller.rb:1016 ../app/controllers/miq_policy_controller.rb:1020 +#: ../app/controllers/miq_policy_controller.rb:1014 ../app/controllers/miq_policy_controller.rb:1019 ../app/controllers/miq_policy_controller.rb:1023 msgid "Object ID missing for %{field}" msgstr "" @@ -14545,47 +14921,47 @@ msgstr "" msgid "Object Info" msgstr "" +#: ../app/assets/javascripts/controllers/alerts/alerts_overview_controller.js:90 +msgid "Object Name" +msgstr "" + #: ../app/views/ops/_schedule_show.html.haml:146 msgid "Object Selection" msgstr "" -#: ../app/presenters/menu/default_menu.rb:184 +#: ../app/presenters/menu/default_menu.rb:186 msgid "Object Storage" msgstr "" -#: ../app/controllers/ems_common.rb:66 -msgid "Object Storage Managers" -msgstr "" - -#: ../app/views/configuration/_ui_2.html.haml:175 +#: ../app/views/configuration/_ui_2.html.haml:176 msgid "Object Store" msgstr "" -#: ../app/presenters/menu/default_menu.rb:191 +#: ../app/presenters/menu/default_menu.rb:193 msgid "Object Store Containers" msgstr "" -#: ../app/presenters/menu/default_menu.rb:196 +#: ../app/presenters/menu/default_menu.rb:198 msgid "Object Store Objects" msgstr "" -#: ../app/views/ops/_schedule_show.html.haml:133 +#: ../app/views/ops/_schedule_show.html.haml:133 ../app/assets/javascripts/controllers/alerts/alerts_overview_controller.js:95 msgid "Object Type" msgstr "" -#: ../app/presenters/tree_builder_buttons.rb:11 ../app/views/shared/buttons/_ab_list.html.haml:11 +#: ../app/presenters/tree_builder_buttons.rb:12 ../app/views/shared/buttons/_ab_list.html.haml:11 msgid "Object Types" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:790 +#: ../app/helpers/application_helper/button/ae_copy_simulate.rb:4 msgid "Object attribute must be specified to copy object details for use in a Button" msgstr "" -#: ../app/views/container_template/_main.html.haml:10 +#: ../app/helpers/container_template_helper/textual_summary.rb:23 msgid "Objects" msgstr "" -#: ../app/helpers/container_project_helper/textual_summary.rb:22 +#: ../app/helpers/container_project_helper/textual_summary.rb:29 msgid "Observed" msgstr "" @@ -14593,7 +14969,7 @@ msgstr "" msgid "Off" msgstr "" -#: ../app/views/miq_task/_tasks_options.html.haml:110 +#: ../app/views/miq_task/_tasks_options.html.haml:116 msgid "Ok" msgstr "" @@ -14601,15 +14977,15 @@ msgstr "" msgid "On" msgstr "" -#: ../app/views/miq_ae_class/_instance_fields.html.haml:19 ../app/views/miq_ae_class/_class_fields.html.haml:14 ../app/views/miq_ae_class/_class_fields.html.haml:79 ../app/views/miq_ae_class/_instance_form.html.haml:91 +#: ../app/views/miq_ae_class/_instance_fields.html.haml:19 ../app/views/miq_ae_class/_instance_form.html.haml:91 ../app/views/miq_ae_class/_class_fields.html.haml:14 ../app/views/miq_ae_class/_class_fields.html.haml:79 msgid "On Entry" msgstr "" -#: ../app/views/miq_ae_class/_instance_fields.html.haml:23 ../app/views/miq_ae_class/_class_fields.html.haml:14 ../app/views/miq_ae_class/_class_fields.html.haml:79 ../app/views/miq_ae_class/_instance_form.html.haml:95 +#: ../app/views/miq_ae_class/_instance_fields.html.haml:23 ../app/views/miq_ae_class/_instance_form.html.haml:95 ../app/views/miq_ae_class/_class_fields.html.haml:14 ../app/views/miq_ae_class/_class_fields.html.haml:79 msgid "On Error" msgstr "" -#: ../app/views/miq_ae_class/_instance_fields.html.haml:21 ../app/views/miq_ae_class/_class_fields.html.haml:14 ../app/views/miq_ae_class/_class_fields.html.haml:79 ../app/views/miq_ae_class/_instance_form.html.haml:93 +#: ../app/views/miq_ae_class/_instance_fields.html.haml:21 ../app/views/miq_ae_class/_instance_form.html.haml:93 ../app/views/miq_ae_class/_class_fields.html.haml:14 ../app/views/miq_ae_class/_class_fields.html.haml:79 msgid "On Exit" msgstr "" @@ -14625,11 +15001,11 @@ msgstr "" msgid "One or more %{model} must be selected to Policy assignment" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1663 +#: ../app/controllers/application_controller/ci_processing.rb:1635 msgid "One or more %{model} must be selected to Reconfigure" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:848 +#: ../app/controllers/application_controller/ci_processing.rb:885 msgid "One or more %{model} must be selected to Right-Size Recommendations" msgstr "" @@ -14649,11 +15025,11 @@ msgstr "" msgid "One widget must be selected" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:799 +#: ../app/helpers/application_helper/button/db_new.rb:4 msgid "Only %{dashboard_count} Dashboards are allowed for a group" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:668 +#: ../app/helpers/application_helper/button/storage_delete.rb:6 msgid "Only %{storage} without VMs and Hosts can be removed" msgstr "" @@ -14673,7 +15049,7 @@ msgstr "" msgid "Only more than 1 Custom Button Groups can be reordered" msgstr "" -#: ../app/views/miq_policy/_alert_profile_folders.html.haml:10 ../app/views/miq_policy/_policy_folders.html.haml:33 +#: ../app/views/miq_policy/_policy_folders.html.haml:33 ../app/views/miq_policy/_alert_profile_folders.html.haml:10 msgid "Open Folder" msgstr "" @@ -14681,19 +15057,23 @@ msgstr "" msgid "Open URL" msgstr "" -#: ../app/helpers/application_helper/toolbar/container_node_center.rb:58 ../app/helpers/application_helper/toolbar/x_vm_center.rb:263 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:275 ../app/helpers/application_helper/toolbar/container_node_center.rb:67 msgid "Open a new browser window with Cockpit for this VM. This requires that Cockpit is pre-configured on the VM." msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:256 +#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:70 ../app/helpers/application_helper/toolbar/container_node_center.rb:28 +msgid "Open a new browser window with the External Logging Presentation UI. This requires the External Logging to be deployed on this Proider." +msgstr "" + +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:267 msgid "Open a web-based VMRC console for this VM. This requires that VMRC is pre-configured to work in your browser." msgstr "" -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:105 ../app/helpers/application_helper/toolbar/x_vm_center.rb:250 +#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:113 ../app/helpers/application_helper/toolbar/x_vm_center.rb:260 msgid "Open a web-based VNC or SPICE console for this VM" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:243 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:252 msgid "Open a web-based console for this VM" msgstr "" @@ -14709,15 +15089,15 @@ msgstr "" msgid "OpenID Connect" msgstr "" -#: ../app/views/container_image/_main.html.haml:28 +#: ../app/helpers/container_image_helper/textual_summary.rb:36 msgid "OpenSCAP Failed Rules Summary" msgstr "" -#: ../app/helpers/container_summary_helper.rb:134 +#: ../app/helpers/container_summary_helper.rb:138 msgid "OpenSCAP HTML" msgstr "" -#: ../app/helpers/container_summary_helper.rb:119 +#: ../app/helpers/container_summary_helper.rb:123 msgid "OpenSCAP Results" msgstr "" @@ -14729,23 +15109,23 @@ msgstr "" msgid "OpenShift Origin" msgstr "" -#: ../app/views/host/_main.html.haml:37 +#: ../app/helpers/host_helper/textual_summary.rb:65 msgid "OpenStack Service Status" msgstr "" -#: ../app/views/ems_cluster/_main.html.haml:23 +#: ../app/helpers/ems_cluster_helper/textual_summary.rb:44 msgid "OpenStack Status" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:259 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:270 msgid "Opening a VM web-based VMRC console requires that VMRC is pre-configured to work in your browser. Are you sure?" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:246 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:255 msgid "Opening a VM web-based console can take a while and requires that the VMware MKS plugin version configured for Management Engine already be installed and working. Are you sure?" msgstr "" -#: ../app/views/host/_main.html.haml:35 +#: ../app/helpers/host_helper/textual_summary.rb:70 msgid "Openstack Hardware" msgstr "" @@ -14757,27 +15137,23 @@ msgstr "" msgid "Openstack Infra provider" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:502 +#: ../app/helpers/host_helper/textual_summary.rb:465 msgid "Openstack Nova Scheduler" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:166 ../app/helpers/textual_mixins/textual_os_info.rb:3 ../app/controllers/application_controller/miq_request_methods.rb:311 ../app/controllers/application_controller/miq_request_methods.rb:407 ../app/controllers/application_controller.rb:1287 ../app/views/provider_foreman/_main_configuration_profile.html.haml:11 ../app/views/provider_foreman/_main.html.haml:11 +#: ../app/helpers/host_helper/textual_summary.rb:173 ../app/helpers/provider_foreman_helper.rb:75 ../app/helpers/textual_mixins/textual_os_info.rb:3 ../app/controllers/application_controller.rb:1294 ../app/controllers/application_controller/miq_request_methods.rb:311 ../app/controllers/application_controller/miq_request_methods.rb:407 ../app/views/provider_foreman/_main_configuration_profile.html.haml:11 msgid "Operating System" msgstr "" -#: ../app/helpers/container_node_helper/textual_summary.rb:109 ../app/helpers/container_image_helper/textual_summary.rb:46 +#: ../app/helpers/container_image_helper/textual_summary.rb:59 ../app/helpers/container_node_helper/textual_summary.rb:122 msgid "Operating System Distribution" msgstr "" -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:43 ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:50 ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:33 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:57 ../app/helpers/ontap_storage_system_helper/textual_summary.rb:47 -msgid "Operational Status" -msgstr "" - -#: ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:40 ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:27 ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:23 ../app/helpers/application_helper/toolbar/middleware_datasources_center.rb:27 +#: ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:23 ../app/helpers/application_helper/toolbar/middleware_datasources_center.rb:27 ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:40 ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:27 msgid "Operations" msgstr "" -#: ../app/presenters/menu/default_menu.rb:240 +#: ../app/presenters/menu/default_menu.rb:261 msgid "Optimize" msgstr "" @@ -14789,11 +15165,11 @@ msgstr "" msgid "Option 2" msgstr "" -#: ../app/views/miq_ae_class/_method_data.html.haml:18 +#: ../app/views/miq_ae_class/_method_data.html.haml:16 msgid "Optional, if not specified, method name is used." msgstr "" -#: ../app/controllers/application_controller/automate.rb:102 ../app/controllers/miq_policy_controller/rsop.rb:51 ../app/views/miq_capacity/_bottlenecks_options.html.haml:6 ../app/views/miq_capacity/_utilization_options.html.haml:7 ../app/views/ontap_storage_system/_create_logical_disk.html.haml:6 ../app/views/miq_request/_reconfigure_show.html.haml:7 ../app/views/miq_ae_customization/_dialog_field_form.html.haml:110 ../app/views/vm_common/_policy_options.html.haml:7 ../app/views/vm_common/_reconfigure.html.haml:9 ../app/views/ontap_file_share/_create_datastore.html.haml:9 ../app/views/layouts/_tl_options.html.haml:16 +#: ../app/controllers/miq_policy_controller/rsop.rb:51 ../app/controllers/application_controller/automate.rb:102 ../app/views/vm_common/_reconfigure.html.haml:9 ../app/views/vm_common/_policy_options.html.haml:7 ../app/views/miq_capacity/_utilization_options.html.haml:7 ../app/views/miq_capacity/_bottlenecks_options.html.haml:6 ../app/views/miq_request/_reconfigure_show.html.haml:7 ../app/views/layouts/_tl_options.html.haml:16 ../app/views/miq_ae_customization/_dialog_field_form.html.haml:110 msgid "Options" msgstr "" @@ -14813,27 +15189,27 @@ msgstr "" msgid "Orange" msgstr "" -#: ../app/views/ems_infra/scaledown.html.haml:14 ../app/views/ems_infra/scaling.html.haml:14 +#: ../app/helpers/service_helper/textual_summary.rb:146 ../app/views/ems_infra/scaledown.html.haml:14 ../app/views/ems_infra/scaling.html.haml:14 msgid "Orchestration Stack" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:636 +#: ../app/helpers/application_helper/button/orchestration_stack_retire_now.rb:5 msgid "Orchestration Stack is already retired" msgstr "" -#: ../app/controllers/orchestration_stack_controller.rb:24 +#: ../app/controllers/orchestration_stack_controller.rb:26 msgid "Orchestration Stacks" msgstr "" -#: ../app/views/catalog/_form_basic_info.html.haml:130 ../app/views/catalog/_sandt_tree_show.html.haml:106 +#: ../app/views/catalog/_sandt_tree_show.html.haml:121 ../app/views/catalog/_form_basic_info.html.haml:147 msgid "Orchestration Template" msgstr "" -#: ../app/controllers/catalog_controller.rb:724 +#: ../app/controllers/catalog_controller.rb:731 msgid "Orchestration Template \"%{name}\" was deleted." msgstr "" -#: ../app/controllers/catalog_controller.rb:832 ../app/views/configuration/_ui_2.html.haml:49 +#: ../app/controllers/catalog_controller.rb:845 ../app/views/configuration/_ui_2.html.haml:50 msgid "Orchestration Templates" msgstr "" @@ -14845,31 +15221,31 @@ msgstr "" msgid "Orchestration Templates that are in use cannot be removed" msgstr "" -#: ../app/controllers/ems_infra_controller.rb:46 ../app/controllers/ems_infra_controller.rb:87 +#: ../app/controllers/ems_infra_controller.rb:47 ../app/controllers/ems_infra_controller.rb:88 msgid "Orchestration stack could not be found." msgstr "" -#: ../app/controllers/orchestration_stack_controller.rb:186 ../app/controllers/orchestration_stack_controller.rb:211 +#: ../app/controllers/orchestration_stack_controller.rb:190 ../app/controllers/orchestration_stack_controller.rb:215 msgid "Orchestration template \"%{name}\" is already orderable" msgstr "" -#: ../app/controllers/orchestration_stack_controller.rb:197 +#: ../app/controllers/orchestration_stack_controller.rb:201 msgid "Orchestration template \"%{name}\" is now orderable" msgstr "" -#: ../app/controllers/catalog_controller.rb:714 +#: ../app/controllers/catalog_controller.rb:721 msgid "Orchestration template \"%{name}\" is read-only and cannot be deleted." msgstr "" -#: ../app/controllers/catalog_controller.rb:657 +#: ../app/controllers/catalog_controller.rb:664 msgid "Orchestration template \"%{name}\" is read-only and cannot be edited." msgstr "" -#: ../app/controllers/catalog_controller.rb:934 ../app/views/catalog/_svccat_tree_show.html.haml:80 +#: ../app/controllers/catalog_controller.rb:947 ../app/views/catalog/_svccat_tree_show.html.haml:80 msgid "Order" msgstr "" -#: ../app/controllers/catalog_controller.rb:530 +#: ../app/controllers/catalog_controller.rb:537 msgid "Order %{model} \"%{name}\"" msgstr "" @@ -14877,15 +15253,15 @@ msgstr "" msgid "Order Request was Submitted" msgstr "" -#: ../app/views/miq_policy/_event_details.html.haml:78 +#: ../app/views/miq_policy/_event_details.html.haml:61 msgid "Order of Actions if ALL Conditions are True" msgstr "" -#: ../app/views/miq_policy/_event_details.html.haml:254 +#: ../app/views/miq_policy/_event_details.html.haml:237 msgid "Order of Actions if ANY Conditions are False" msgstr "" -#: ../app/controllers/catalog_controller.rb:936 ../app/views/catalog/_svccat_tree_show.html.haml:80 +#: ../app/controllers/catalog_controller.rb:949 ../app/views/catalog/_svccat_tree_show.html.haml:80 msgid "Order this Service" msgstr "" @@ -14897,11 +15273,11 @@ msgstr "" msgid "Organization" msgstr "" -#: ../app/views/report/_form_sort.html.haml:35 ../app/views/report/_form_sort.html.haml:183 +#: ../app/views/report/_form_sort.html.haml:35 ../app/views/report/_form_sort.html.haml:161 msgid "Original Value" msgstr "" -#: ../app/controllers/vm_common.rb:1305 +#: ../app/controllers/vm_common.rb:1116 msgid "Orphaned %{models}" msgstr "" @@ -14921,39 +15297,35 @@ msgstr "" msgid "Orphaned Records for userid %{id} were successfully deleted" msgstr "" -#: ../app/controllers/vm_common.rb:1307 +#: ../app/controllers/vm_common.rb:1118 msgid "Orphaned VMs & Templates" msgstr "" -#: ../lib/report_formatter/chart_common.rb:344 ../lib/report_formatter/chart_common.rb:403 ../lib/report_formatter/chart_common.rb:404 ../lib/report_formatter/chart_common.rb:434 ../lib/report_formatter/chart_common.rb:435 ../lib/report_formatter/chart_common.rb:472 +#: ../lib/report_formatter/chart_common.rb:319 ../lib/report_formatter/chart_common.rb:377 ../lib/report_formatter/chart_common.rb:378 ../lib/report_formatter/chart_common.rb:408 ../lib/report_formatter/chart_common.rb:409 ../lib/report_formatter/chart_common.rb:446 msgid "Other" msgstr "" -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:55 -msgid "Other Identifying Info" -msgstr "" - -#: ../app/helpers/storage_helper/textual_summary.rb:236 ../app/controllers/storage_controller.rb:230 ../app/views/layouts/listnav/_storage.html.haml:118 +#: ../app/helpers/storage_helper/textual_summary.rb:191 ../app/controllers/storage_controller.rb:201 ../app/views/layouts/listnav/_storage.html.haml:79 msgid "Other VM Files" msgstr "" -#: ../app/views/ops/_settings_server_tab.html.haml:377 +#: ../app/views/ops/_settings_server_tab.html.haml:341 msgid "Outgoing SMTP E-mail Server" msgstr "" -#: ../app/helpers/container_build_helper/textual_summary.rb:25 +#: ../app/helpers/container_build_helper/textual_summary.rb:29 msgid "Output Image" msgstr "" -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:118 ../app/controllers/orchestration_stack_controller.rb:75 ../app/views/layouts/listnav/_orchestration_stack.html.haml:64 +#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:124 ../app/controllers/orchestration_stack_controller.rb:74 ../app/views/layouts/listnav/_orchestration_stack.html.haml:64 msgid "Outputs" msgstr "" -#: ../app/presenters/menu/default_menu.rb:96 ../app/views/ems_container/_main.html.haml:27 ../app/views/shared/views/ems_common/_main.html.haml:19 ../app/views/ems_middleware/_main.html.haml:18 +#: ../app/presenters/menu/default_menu.rb:99 ../app/presenters/menu/default_menu.rb:270 ../app/helpers/ems_network_helper/textual_summary.rb:33 ../app/helpers/ems_cloud_helper/textual_summary.rb:35 ../app/helpers/ems_infra_helper/textual_summary.rb:35 ../app/helpers/ems_physical_infra_helper/textual_summary.rb:33 ../app/helpers/ems_container_helper/textual_summary.rb:50 ../app/helpers/ems_middleware_helper/textual_summary.rb:30 ../app/views/shared/views/_show_alerts_overview.html.haml:21 msgid "Overview" msgstr "" -#: ../app/views/middleware_server/_deploy.html.haml:97 +#: ../app/views/middleware_shared/_deploy.html.haml:100 msgid "Overwrite (if exists)" msgstr "" @@ -14961,11 +15333,15 @@ msgstr "" msgid "Overwrite existing reports?" msgstr "" -#: ../app/views/report/_form_filter_chargeback.html.haml:23 ../app/views/report/_form_filter_chargeback.html.haml:27 ../app/views/report/_form_filter_chargeback.html.haml:44 ../app/views/report/_form_filter_chargeback.html.haml:182 +#: ../app/views/report/_form_filter_chargeback.html.haml:51 ../app/views/report/_form_filter_chargeback.html.haml:55 ../app/views/report/_form_filter_chargeback.html.haml:72 ../app/views/report/_form_filter_chargeback.html.haml:210 ../app/views/static/edit_alert_dialog.html.haml:40 ../app/assets/javascripts/services/alerts_center_service.js:106 ../app/assets/javascripts/services/alerts_center_service.js:272 msgid "Owner" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:163 +#: ../app/helpers/application_helper/button/set_ownership.rb:5 +msgid "Ownership is controlled by tenant mapping" +msgstr "" + +#: ../app/controllers/application_controller/ci_processing.rb:183 msgid "Ownership saved for selected %{object_types}" msgstr "" @@ -14977,7 +15353,7 @@ msgstr "" msgid "PDF Output" msgstr "" -#: ../app/views/configuration/_timeprofile_form.html.haml:239 +#: ../app/views/configuration/_timeprofile_form.html.haml:237 msgid "PM" msgstr "" @@ -14985,11 +15361,11 @@ msgstr "" msgid "PM:" msgstr "" -#: ../app/presenters/menu/default_menu.rb:71 ../app/views/miq_request/_prov_host_dialog.html.haml:41 ../app/views/shared/views/_prov_dialog.html.haml:47 +#: ../app/presenters/menu/default_menu.rb:72 ../app/views/miq_request/_prov_host_dialog.html.haml:41 ../app/views/shared/views/_prov_dialog.html.haml:47 msgid "PXE" msgstr "" -#: ../app/controllers/application_controller.rb:375 +#: ../app/controllers/application_controller.rb:378 msgid "PXE Credentials successfuly validated" msgstr "" @@ -14997,25 +15373,25 @@ msgstr "" msgid "PXE Directory" msgstr "" -#: ../app/views/pxe/_pxe_server_details.html.haml:17 ../app/views/pxe/_pxe_server_details.html.haml:25 ../app/views/pxe/_pxe_form.html.haml:146 +#: ../app/views/pxe/_pxe_form.html.haml:146 ../app/views/pxe/_pxe_server_details.html.haml:17 msgid "PXE Image Menus" msgstr "" -#: ../app/presenters/tree_builder_pxe_servers.rb:37 ../app/presenters/tree_builder_pxe_servers.rb:39 ../app/views/pxe/_pxe_server_details.html.haml:51 +#: ../app/presenters/tree_builder_pxe_servers.rb:40 ../app/presenters/tree_builder_pxe_servers.rb:42 ../app/views/pxe/_pxe_server_details.html.haml:23 msgid "PXE Images" msgstr "" -#: ../app/controllers/pxe_controller.rb:64 +#: ../app/controllers/pxe_controller.rb:63 msgid "PXE Servers" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:510 ../app/helpers/vm_cloud_helper/textual_summary.rb:153 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:164 ../app/helpers/vm_helper/textual_summary.rb:549 msgid "Package" msgid_plural "Packages" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/host_helper/textual_summary.rb:437 ../app/helpers/container_summary_helper.rb:108 ../app/controllers/host_controller.rb:241 ../app/controllers/container_image_controller.rb:14 ../app/views/layouts/listnav/_host.html.haml:218 +#: ../app/helpers/host_helper/textual_summary.rb:400 ../app/helpers/container_summary_helper.rb:112 ../app/controllers/container_image_controller.rb:23 ../app/controllers/host_controller.rb:193 ../app/views/layouts/listnav/_host.html.haml:187 msgid "Packages" msgstr "" @@ -15023,11 +15399,11 @@ msgstr "" msgid "Page Size" msgstr "" -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:108 ../app/helpers/configuration_job_helper/textual_summary.rb:60 ../app/controllers/orchestration_stack_controller.rb:79 ../app/controllers/configuration_job_controller.rb:48 ../app/views/miq_policy/_alert_details.html.haml:226 ../app/views/miq_policy/_alert_details.html.haml:266 ../app/views/container_template/_main.html.haml:13 ../app/views/layouts/listnav/_configuration_job.html.haml:37 ../app/views/layouts/listnav/_orchestration_stack.html.haml:58 +#: ../app/helpers/container_template_helper/textual_summary.rb:33 ../app/helpers/orchestration_stack_helper/textual_summary.rb:114 ../app/helpers/configuration_job_helper/textual_summary.rb:60 ../app/controllers/orchestration_stack_controller.rb:78 ../app/controllers/configuration_job_controller.rb:46 ../app/views/miq_policy/_alert_details.html.haml:226 ../app/views/miq_policy/_alert_details.html.haml:266 ../app/views/layouts/listnav/_configuration_job.html.haml:37 ../app/views/layouts/listnav/_orchestration_stack.html.haml:58 msgid "Parameters" msgstr "" -#: ../app/helpers/flavor_helper/textual_summary.rb:59 +#: ../app/helpers/flavor_helper/textual_summary.rb:55 msgid "Paravirtualization" msgstr "" @@ -15035,11 +15411,11 @@ msgstr "" msgid "Parent" msgstr "" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:77 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:92 msgid "Parent %{title}" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:146 +#: ../app/helpers/vm_helper/textual_summary.rb:186 msgid "Parent %{title} Platform" msgstr "" @@ -15047,35 +15423,35 @@ msgstr "" msgid "Parent %{title}: %{name}" msgstr "" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:65 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:80 msgid "Parent '%{title}'" msgstr "" -#: ../app/helpers/service_helper/textual_summary.rb:77 +#: ../app/helpers/service_helper/textual_summary.rb:122 msgid "Parent Catalog Item" msgstr "" -#: ../app/helpers/cloud_object_store_container_helper/textual_summary.rb:14 ../app/helpers/cloud_object_store_object_helper/textual_summary.rb:13 ../app/helpers/cloud_volume_backup_helper/textual_summary.rb:27 ../app/helpers/cloud_volume_helper/textual_summary.rb:24 ../app/helpers/ems_storage_helper/textual_summary.rb:56 ../app/helpers/cloud_volume_snapshot_helper/textual_summary.rb:35 ../app/helpers/ems_network_helper/textual_summary.rb:59 +#: ../app/helpers/ems_network_helper/textual_summary.rb:66 ../app/helpers/cloud_volume_helper/textual_summary.rb:29 ../app/helpers/cloud_object_store_object_helper/textual_summary.rb:13 ../app/helpers/ems_storage_helper/textual_summary.rb:59 ../app/helpers/cloud_object_store_container_helper/textual_summary.rb:14 ../app/helpers/cloud_volume_snapshot_helper/textual_summary.rb:35 ../app/helpers/cloud_volume_backup_helper/textual_summary.rb:27 msgid "Parent Cloud Provider" msgstr "" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:60 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:75 msgid "Parent Datacenter" msgstr "" -#: ../app/helpers/service_helper/textual_summary.rb:88 +#: ../app/helpers/service_helper/textual_summary.rb:133 msgid "Parent Service" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:547 ../app/views/miq_policy/_action_details.html.haml:489 +#: ../app/views/miq_policy/_action_options.html.haml:539 ../app/views/miq_policy/_action_details.html.haml:489 msgid "Parent Type" msgstr "" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:386 +#: ../app/controllers/miq_policy_controller/miq_actions.rb:382 msgid "Parent Type must be selected" msgstr "" -#: ../app/controllers/vm_common.rb:1640 ../app/helpers/vm_helper/textual_summary.rb:320 ../app/views/vm_common/_form.html.haml:73 +#: ../app/controllers/vm_common.rb:1448 ../app/helpers/vm_helper/textual_summary.rb:359 ../app/views/vm_common/_form.html.haml:73 msgid "Parent VM" msgid_plural "Parent VM" msgstr[0] "" @@ -15085,15 +15461,15 @@ msgstr[1] "" msgid "Parent VM Selection" msgstr "" -#: ../app/controllers/vm_common.rb:929 +#: ../app/controllers/vm_common.rb:783 msgid "Parent VM can not be one of the child VMs" msgstr "" -#: ../app/helpers/container_group_helper/textual_summary.rb:52 +#: ../app/helpers/container_group_helper/textual_summary.rb:62 msgid "Partition" msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:98 ../app/helpers/provider_foreman_helper.rb:179 ../app/helpers/provider_foreman_helper.rb:225 +#: ../app/helpers/provider_foreman_helper.rb:100 ../app/helpers/provider_foreman_helper.rb:182 ../app/helpers/provider_foreman_helper.rb:230 ../app/helpers/automation_manager_helper.rb:66 msgid "Partition Table" msgstr "" @@ -15105,7 +15481,7 @@ msgstr "" msgid "Passed" msgstr "" -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:31 ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:32 ../app/views/ops/_settings_replication_tab.html.haml:142 ../app/views/ops/_settings_server_tab.html.haml:514 ../app/views/ops/_zone_form.html.haml:150 ../app/views/ops/_rbac_user_details.html.haml:82 ../app/views/ops/_rbac_group_details.html.haml:229 ../app/views/middleware_server/_add_datasource_step3.html.haml:74 ../app/views/storage_manager/_form.html.haml:173 ../app/views/dashboard/login.html.haml:99 ../app/views/dashboard/login.html.haml:103 ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:5 ../app/views/layouts/_discover_credentials.html.haml:30 ../app/views/layouts/angular/_auth_credentials_angular.html.haml:4 ../app/views/layouts/_auth_credentials.html.haml:10 +#: ../app/views/ops/_rbac_group_details.html.haml:228 ../app/views/ops/_zone_form.html.haml:150 ../app/views/ops/_settings_replication_tab.html.haml:70 ../app/views/ops/_rbac_user_details.html.haml:81 ../app/views/ops/_settings_server_tab.html.haml:478 ../app/views/storage_manager/_form.html.haml:173 ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:32 ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:31 ../app/views/layouts/angular/_auth_credentials_angular.html.haml:4 ../app/views/layouts/_auth_credentials.html.haml:10 ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:5 ../app/views/layouts/_discover_credentials.html.haml:30 ../app/views/middleware_server/_add_datasource_step3.html.haml:73 ../app/views/dashboard/login.html.haml:99 ../app/views/dashboard/login.html.haml:103 msgid "Password" msgstr "" @@ -15113,23 +15489,23 @@ msgstr "" msgid "Password (optional):" msgstr "" -#: ../app/controllers/application_controller.rb:1307 +#: ../app/controllers/application_controller.rb:1314 msgid "Password Complex" msgstr "" -#: ../app/controllers/application_controller.rb:1309 +#: ../app/controllers/application_controller.rb:1316 msgid "Password Encrypt" msgstr "" -#: ../app/controllers/application_controller.rb:1299 +#: ../app/controllers/application_controller.rb:1306 msgid "Password History" msgstr "" -#: ../app/controllers/ops_controller/settings/zones.rb:127 ../app/controllers/storage_manager_controller.rb:247 +#: ../app/controllers/storage_manager_controller.rb:250 ../app/controllers/ops_controller/settings/zones.rb:127 msgid "Password and Verify Password fields do not match" msgstr "" -#: ../app/controllers/pxe_controller/pxe_servers.rb:308 +#: ../app/controllers/pxe_controller/pxe_servers.rb:301 msgid "Password is required" msgstr "" @@ -15137,7 +15513,7 @@ msgstr "" msgid "Password or Password+One-Time-Password" msgstr "" -#: ../app/controllers/pxe_controller/pxe_servers.rb:310 ../app/controllers/application_controller/ci_processing.rb:1410 ../app/controllers/ops_controller/ops_rbac.rb:999 ../app/controllers/ems_common.rb:699 +#: ../app/controllers/ems_common.rb:583 ../app/controllers/pxe_controller/pxe_servers.rb:303 ../app/controllers/application_controller/ci_processing.rb:1386 ../app/controllers/ops_controller/ops_rbac.rb:1031 msgid "Password/Verify Password do not match" msgstr "" @@ -15145,10 +15521,14 @@ msgstr "" msgid "Password:" msgstr "" -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:13 ../app/views/layouts/angular/_auth_credentials_angular.html.haml:83 +#: ../app/views/layouts/angular/_auth_credentials_angular.html.haml:83 ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:13 msgid "Passwords do not match" msgstr "" +#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:249 +msgid "Paste here the trusted CA certificates, in PEM format." +msgstr "" + #: ../app/views/shared/buttons/_ab_form.html.haml:18 msgid "Paste is not available, no object information has been copied from the Simulation screen" msgstr "" @@ -15157,17 +15537,17 @@ msgstr "" msgid "Paste object details for use in a Button." msgstr "" -#: ../app/controllers/vm_common.rb:1642 +#: ../app/controllers/vm_common.rb:1450 msgid "Patch" msgid_plural "Patches" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/host_helper/textual_summary.rb:426 ../app/helpers/textual_mixins/textual_patches.rb:6 ../app/views/layouts/listnav/_host.html.haml:200 +#: ../app/helpers/host_helper/textual_summary.rb:389 ../app/helpers/textual_mixins/textual_patches.rb:6 ../app/views/layouts/listnav/_host.html.haml:169 msgid "Patches" msgstr "" -#: ../app/helpers/pxe_helper/textual_summary.rb:84 ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:70 ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:115 ../app/views/pxe/_pxe_server_details.html.haml:110 +#: ../app/helpers/pxe_helper/textual_summary.rb:84 ../app/views/pxe/_pxe_server_details.html.haml:82 ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:70 ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:115 msgid "Path" msgstr "" @@ -15175,15 +15555,15 @@ msgstr "" msgid "Path:" msgstr "" -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:32 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:205 +#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:32 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:207 msgid "Pause" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:204 +#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:206 msgid "Pause the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:208 +#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:210 msgid "Pause the selected items?" msgstr "" @@ -15195,7 +15575,7 @@ msgstr "" msgid "Pause this Instance?" msgstr "" -#: ../app/helpers/ui_constants.rb:422 +#: ../app/helpers/ui_constants.rb:419 msgid "Pending Approval" msgstr "" @@ -15223,7 +15603,7 @@ msgstr "" msgid "Percent Used of Provisioned Size" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:24 ../app/helpers/application_helper/toolbar/template_infras_center.rb:24 ../app/helpers/application_helper/toolbar/host_center.rb:20 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:20 ../app/helpers/application_helper/toolbar/container_image_center.rb:13 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:19 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:19 ../app/helpers/application_helper/toolbar/container_images_center.rb:13 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:15 ../app/helpers/application_helper/toolbar/miq_template_center.rb:20 ../app/helpers/application_helper/toolbar/container_builds_center.rb:13 ../app/helpers/application_helper/toolbar/storages_center.rb:15 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:24 ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:13 ../app/helpers/application_helper/toolbar/x_vm_center.rb:20 ../app/helpers/application_helper/toolbar/container_build_center.rb:13 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:24 ../app/helpers/application_helper/toolbar/hosts_center.rb:22 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:19 ../app/helpers/application_helper/toolbar/storage_center.rb:13 +#: ../app/helpers/application_helper/toolbar/container_build_center.rb:13 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:20 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:19 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:24 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:24 ../app/helpers/application_helper/toolbar/host_center.rb:20 ../app/helpers/application_helper/toolbar/container_image_center.rb:13 ../app/helpers/application_helper/toolbar/x_vm_center.rb:20 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:19 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:24 ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:13 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:19 ../app/helpers/application_helper/toolbar/container_images_center.rb:13 ../app/helpers/application_helper/toolbar/template_infras_center.rb:24 ../app/helpers/application_helper/toolbar/storages_center.rb:15 ../app/helpers/application_helper/toolbar/hosts_center.rb:22 ../app/helpers/application_helper/toolbar/storage_center.rb:13 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:15 ../app/helpers/application_helper/toolbar/container_builds_center.rb:13 msgid "Perform SmartState Analysis" msgstr "" @@ -15243,11 +15623,11 @@ msgstr "" msgid "Perform SmartState Analysis on the selected Templates?" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:23 ../app/helpers/application_helper/toolbar/container_images_center.rb:12 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:14 ../app/helpers/application_helper/toolbar/container_builds_center.rb:12 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:23 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:23 ../app/helpers/application_helper/toolbar/hosts_center.rb:21 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:23 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:23 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:23 ../app/helpers/application_helper/toolbar/container_images_center.rb:12 ../app/helpers/application_helper/toolbar/hosts_center.rb:21 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:14 ../app/helpers/application_helper/toolbar/container_builds_center.rb:12 msgid "Perform SmartState Analysis on the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:26 ../app/helpers/application_helper/toolbar/container_images_center.rb:15 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:17 ../app/helpers/application_helper/toolbar/container_builds_center.rb:15 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:26 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:26 ../app/helpers/application_helper/toolbar/hosts_center.rb:24 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:26 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:26 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:26 ../app/helpers/application_helper/toolbar/container_images_center.rb:15 ../app/helpers/application_helper/toolbar/hosts_center.rb:24 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:17 ../app/helpers/application_helper/toolbar/container_builds_center.rb:15 msgid "Perform SmartState Analysis on the selected items?" msgstr "" @@ -15267,19 +15647,19 @@ msgstr "" msgid "Perform SmartState Analysis on this Image?" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:18 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:18 +#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:18 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:18 msgid "Perform SmartState Analysis on this Instance" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:20 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:20 +#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:20 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:20 msgid "Perform SmartState Analysis on this Instance?" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:19 ../app/helpers/application_helper/toolbar/miq_template_center.rb:19 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:19 msgid "Perform SmartState Analysis on this Template" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:21 ../app/helpers/application_helper/toolbar/miq_template_center.rb:21 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:21 msgid "Perform SmartState Analysis on this Template?" msgstr "" @@ -15291,11 +15671,11 @@ msgstr "" msgid "Perform SmartState Analysis on this VM?" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:19 ../app/helpers/application_helper/toolbar/container_image_center.rb:12 ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:12 ../app/helpers/application_helper/toolbar/container_build_center.rb:12 +#: ../app/helpers/application_helper/toolbar/container_build_center.rb:12 ../app/helpers/application_helper/toolbar/host_center.rb:19 ../app/helpers/application_helper/toolbar/container_image_center.rb:12 ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:12 msgid "Perform SmartState Analysis on this item" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:21 ../app/helpers/application_helper/toolbar/container_image_center.rb:14 ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:14 ../app/helpers/application_helper/toolbar/container_build_center.rb:14 +#: ../app/helpers/application_helper/toolbar/container_build_center.rb:14 ../app/helpers/application_helper/toolbar/host_center.rb:21 ../app/helpers/application_helper/toolbar/container_image_center.rb:14 ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:14 msgid "Perform SmartState Analysis on this item?" msgstr "" @@ -15307,19 +15687,27 @@ msgstr "" msgid "Performance Timeframe" msgstr "" -#: ../app/helpers/container_group_helper/textual_summary.rb:42 +#: ../app/helpers/container_group_helper/textual_summary.rb:52 msgid "Persistent Volume Claim Name" msgstr "" -#: ../app/helpers/container_build_helper/textual_summary.rb:23 +#: ../app/helpers/container_build_helper/textual_summary.rb:27 msgid "Phase" msgstr "" -#: ../app/presenters/tree_node_builder.rb:231 +#: ../app/presenters/menu/default_menu.rb:80 +msgid "Physical Infrastructure" +msgstr "" + +#: ../app/presenters/tree_node/guest_device.rb:7 msgid "Physical NIC: %{name}" msgstr "" -#: ../app/views/network_router/new.html.haml:86 ../app/views/cloud_subnet/new.html.haml:104 ../app/views/shared/views/_prov_dialog.html.haml:91 ../app/views/cloud_volume/new.html.haml:51 ../app/views/cloud_network/edit.html.haml:37 ../app/views/cloud_network/new.html.haml:63 +#: ../app/helpers/ems_physical_infra_helper/textual_summary.rb:58 ../app/views/layouts/listnav/_ems_physical_infra.html.haml:25 ../app/views/layouts/listnav/_ems_physical_infra.html.haml:25 +msgid "Physical Servers" +msgstr "" + +#: ../app/views/floating_ip/new.html.haml:122 ../app/views/cloud_subnet/new.html.haml:112 ../app/views/shared/views/_prov_dialog.html.haml:91 ../app/views/security_group/edit.html.haml:10 ../app/views/security_group/new.html.haml:36 ../app/views/cloud_network/edit.html.haml:37 ../app/views/cloud_network/new.html.haml:63 ../app/views/network_router/new.html.haml:86 msgid "Placement" msgstr "" @@ -15331,7 +15719,7 @@ msgstr "" msgid "Plan for VM placement on %{hosts} or %{clusters}" msgstr "" -#: ../app/presenters/menu/default_menu.rb:242 +#: ../app/presenters/menu/default_menu.rb:263 msgid "Planning" msgstr "" @@ -15347,11 +15735,11 @@ msgstr "" msgid "Planning options have been reset by the user" msgstr "" -#: ../app/controllers/application_controller/miq_request_methods.rb:408 ../app/controllers/application_controller/miq_request_methods.rb:445 +#: ../app/controllers/application_controller/miq_request_methods.rb:408 ../app/controllers/application_controller/miq_request_methods.rb:448 msgid "Platform" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:151 ../app/helpers/vm_cloud_helper/textual_summary.rb:89 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:100 ../app/helpers/vm_helper/textual_summary.rb:191 msgid "Platform Tools" msgstr "" @@ -15359,11 +15747,27 @@ msgstr "" msgid "Platform Updates Available" msgstr "" +#: ../app/helpers/service_helper/textual_summary.rb:203 ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:36 ../app/views/catalog/_sandt_tree_show.html.haml:376 ../app/views/catalog/_sandt_tree_show.html.haml:535 +msgid "Playbook" +msgstr "" + +#: ../app/views/miq_policy/_action_options.html.haml:620 +msgid "Playbook Catalog Item" +msgstr "" + +#: ../app/presenters/menu/default_menu.rb:238 ../app/helpers/ansible_repository_helper/textual_summary.rb:26 +msgid "Playbooks" +msgstr "" + +#: ../app/helpers/service_helper/textual_summary.rb:265 +msgid "Plays" +msgstr "" + #: ../app/views/layouts/_exception_contents.html.haml:51 msgid "Please contact your administrator for assistance." msgstr "" -#: ../app/controllers/catalog_controller.rb:869 +#: ../app/controllers/catalog_controller.rb:882 msgid "Please correct invalid %{adjective} Entry Point prior to saving" msgstr "" @@ -15379,7 +15783,7 @@ msgstr "" msgid "Please select a Cloud Tenant from the Environment Tab" msgstr "" -#: ../app/controllers/ems_infra_controller.rb:128 +#: ../app/controllers/ems_infra_controller.rb:129 msgid "Please select a JSON file containing the nodes you would like to register." msgstr "" @@ -15391,7 +15795,7 @@ msgstr "" msgid "Please select an Instance Type from above" msgstr "" -#: ../app/helpers/container_build_helper/textual_summary.rb:25 +#: ../app/helpers/container_build_helper/textual_summary.rb:29 msgid "Pod" msgstr "" @@ -15399,7 +15803,7 @@ msgstr "" msgid "Pod Compliance Policies" msgstr "" -#: ../app/presenters/tree_builder_condition.rb:23 +#: ../app/presenters/tree_builder_condition.rb:26 msgid "Pod Conditions" msgstr "" @@ -15407,15 +15811,15 @@ msgstr "" msgid "Pod Control Policies" msgstr "" -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:71 +#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:97 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:113 msgid "Pod Creation and Deletion Trends" msgstr "" -#: ../app/controllers/ems_common.rb:79 ../app/views/container_topology/show.html.haml:44 ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:43 +#: ../app/presenters/menu/default_menu.rb:105 ../app/views/container_topology/show.html.haml:44 ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:43 msgid "Pods" msgstr "" -#: ../app/controllers/miq_policy_controller.rb:1080 ../app/controllers/miq_policy_controller.rb:1103 ../app/views/miq_policy/_export.html.haml:107 ../app/views/miq_policy/_profile_details.html.haml:125 +#: ../app/controllers/miq_policy_controller.rb:1083 ../app/controllers/miq_policy_controller.rb:1106 ../app/views/miq_policy/_profile_details.html.haml:125 ../app/views/miq_policy/_export.html.haml:107 msgid "Policies" msgstr "" @@ -15423,7 +15827,7 @@ msgstr "" msgid "Policies that belong to Profiles can not be deleted" msgstr "" -#: ../app/helpers/application_helper/toolbar/orchestration_template_center.rb:41 ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:47 ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:38 ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:35 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:105 ../app/helpers/application_helper/toolbar/security_group_center.rb:6 ../app/helpers/application_helper/toolbar/template_infras_center.rb:70 ../app/helpers/application_helper/toolbar/users_center.rb:46 ../app/helpers/application_helper/toolbar/container_center.rb:30 ../app/helpers/application_helper/toolbar/servicetemplate_center.rb:43 ../app/helpers/application_helper/toolbar/host_center.rb:72 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:48 ../app/helpers/application_helper/toolbar/container_replicators_center.rb:6 ../app/helpers/application_helper/toolbar/flavors_center.rb:6 ../app/helpers/application_helper/toolbar/container_image_center.rb:22 ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:52 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:61 ../app/helpers/application_helper/toolbar/vms_center.rb:62 ../app/helpers/application_helper/toolbar/ontap_storage_system_center.rb:21 ../app/helpers/application_helper/toolbar/cloud_subnets_center.rb:45 ../app/helpers/application_helper/toolbar/container_image_registries_center.rb:6 ../app/helpers/application_helper/toolbar/service_center.rb:43 ../app/helpers/application_helper/toolbar/container_replicator_center.rb:32 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:88 ../app/helpers/application_helper/toolbar/container_image_registry_center.rb:6 ../app/helpers/application_helper/toolbar/miq_groups_center.rb:44 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:75 ../app/helpers/application_helper/toolbar/container_images_center.rb:25 ../app/helpers/application_helper/toolbar/cloud_subnet_center.rb:35 ../app/helpers/application_helper/toolbar/load_balancer_center.rb:6 ../app/helpers/application_helper/toolbar/load_balancers_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_object_store_containers_center.rb:6 ../app/helpers/application_helper/toolbar/x_ansible_tower_configured_system_center.rb:6 ../app/helpers/application_helper/toolbar/miq_group_center.rb:28 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:45 ../app/helpers/application_helper/toolbar/orchestration_templates_center.rb:48 ../app/helpers/application_helper/toolbar/miq_template_center.rb:49 ../app/helpers/application_helper/toolbar/miq_template_center.rb:161 ../app/helpers/application_helper/toolbar/cloud_volume_snapshot_center.rb:22 ../app/helpers/application_helper/toolbar/network_port_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_networks_center.rb:46 ../app/helpers/application_helper/toolbar/ontap_storage_volume_center.rb:6 ../app/helpers/application_helper/toolbar/configured_system/policy_mixin.rb:7 ../app/helpers/application_helper/toolbar/ems_storage_center.rb:35 ../app/helpers/application_helper/toolbar/x_configuration_script_center.rb:19 ../app/helpers/application_helper/toolbar/cloud_object_store_container_center.rb:6 ../app/helpers/application_helper/toolbar/persistent_volume_center.rb:32 ../app/helpers/application_helper/toolbar/ontap_logical_disks_center.rb:6 ../app/helpers/application_helper/toolbar/availability_zones_center.rb:6 ../app/helpers/application_helper/toolbar/configuration_jobs_center.rb:25 ../app/helpers/application_helper/toolbar/cloud_volume_snapshots_center.rb:6 ../app/helpers/application_helper/toolbar/network_router_center.rb:36 ../app/helpers/application_helper/toolbar/middleware_domain_center.rb:6 ../app/helpers/application_helper/toolbar/x_infra_networking_switch_center.rb:6 ../app/helpers/application_helper/toolbar/auth_key_pair_clouds_center.rb:6 ../app/helpers/application_helper/toolbar/container_node_center.rb:32 ../app/helpers/application_helper/toolbar/containers_center.rb:6 ../app/helpers/application_helper/toolbar/user_center.rb:33 ../app/helpers/application_helper/toolbar/ontap_logical_disk_center.rb:6 ../app/helpers/application_helper/toolbar/flavor_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_volume_backups_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_volume_backup_center.rb:6 ../app/helpers/application_helper/toolbar/ontap_file_shares_center.rb:6 ../app/helpers/application_helper/toolbar/ems_network_center.rb:41 ../app/helpers/application_helper/toolbar/container_template_center.rb:6 ../app/helpers/application_helper/toolbar/x_provider_foreman_foreman_configured_system_center.rb:23 ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:53 ../app/helpers/application_helper/toolbar/container_templates_center.rb:6 ../app/helpers/application_helper/toolbar/ontap_storage_systems_center.rb:6 ../app/helpers/application_helper/toolbar/ems_block_storages_center.rb:35 ../app/helpers/application_helper/toolbar/container_project_center.rb:32 ../app/helpers/application_helper/toolbar/container_groups_center.rb:6 ../app/helpers/application_helper/toolbar/infra_networking_center.rb:6 ../app/helpers/application_helper/toolbar/floating_ip_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_tenant_center.rb:26 ../app/helpers/application_helper/toolbar/x_provider_foreman_ansible_tower_configured_system_center.rb:6 ../app/helpers/application_helper/toolbar/container_builds_center.rb:25 ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:23 ../app/helpers/application_helper/toolbar/cloud_volumes_center.rb:61 ../app/helpers/application_helper/toolbar/middleware_messaging_center.rb:25 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:56 ../app/helpers/application_helper/toolbar/ems_container_center.rb:74 ../app/helpers/application_helper/toolbar/x_foreman_configured_system_center.rb:23 ../app/helpers/application_helper/toolbar/ems_containers_center.rb:56 ../app/helpers/application_helper/toolbar/ontap_storage_volumes_center.rb:6 ../app/helpers/application_helper/toolbar/middleware_servers_center.rb:7 ../app/helpers/application_helper/toolbar/ontap_file_share_center.rb:21 ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:49 ../app/helpers/application_helper/toolbar/cloud_object_store_object_center.rb:6 ../app/helpers/application_helper/toolbar/storages_center.rb:36 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:81 ../app/helpers/application_helper/toolbar/network_routers_center.rb:46 ../app/helpers/application_helper/toolbar/cloud_network_center.rb:35 ../app/helpers/application_helper/toolbar/container_group_center.rb:32 ../app/helpers/application_helper/toolbar/middleware_server_groups_center.rb:6 ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:29 ../app/helpers/application_helper/toolbar/services_center.rb:44 ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:25 ../app/helpers/application_helper/toolbar/security_groups_center.rb:6 ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:7 ../app/helpers/application_helper/toolbar/auth_key_pair_cloud_center.rb:23 ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:50 ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:51 ../app/helpers/application_helper/toolbar/x_vm_center.rb:73 ../app/helpers/application_helper/toolbar/tenant_center.rb:50 ../app/helpers/application_helper/toolbar/container_build_center.rb:22 ../app/helpers/application_helper/toolbar/infra_networkings_center.rb:6 ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:43 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:97 ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:56 ../app/helpers/application_helper/toolbar/availability_zone_center.rb:6 ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:7 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:61 ../app/helpers/application_helper/toolbar/resource_pools_center.rb:27 ../app/helpers/application_helper/toolbar/ems_networks_center.rb:51 ../app/helpers/application_helper/toolbar/middleware_domains_center.rb:6 ../app/helpers/application_helper/toolbar/resource_pool_center.rb:23 ../app/helpers/application_helper/toolbar/container_route_center.rb:6 ../app/helpers/application_helper/toolbar/middleware_server_center.rb:24 ../app/helpers/application_helper/toolbar/container_projects_center.rb:6 ../app/helpers/application_helper/toolbar/middleware_messagings_center.rb:7 ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:6 ../app/helpers/application_helper/toolbar/container_services_center.rb:6 ../app/helpers/application_helper/toolbar/configuration_job_center.rb:23 ../app/helpers/application_helper/toolbar/orchestration_stack_center.rb:23 ../app/helpers/application_helper/toolbar/middleware_datasources_center.rb:6 ../app/helpers/application_helper/toolbar/tenants_center.rb:41 ../app/helpers/application_helper/toolbar/cloud_object_store_objects_center.rb:6 ../app/helpers/application_helper/toolbar/hosts_center.rb:107 ../app/helpers/application_helper/toolbar/container_routes_center.rb:6 ../app/helpers/application_helper/toolbar/container_service_center.rb:23 ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:55 ../app/helpers/application_helper/toolbar/configuration_script_center.rb:19 ../app/helpers/application_helper/toolbar/configuration_scripts/policy_mixin.rb:6 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:53 ../app/helpers/application_helper/toolbar/cloud_volume_center.rb:75 ../app/helpers/application_helper/toolbar/floating_ips_center.rb:6 ../app/helpers/application_helper/toolbar/container_nodes_center.rb:6 ../app/helpers/application_helper/toolbar/network_ports_center.rb:6 ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:41 ../app/helpers/application_helper/toolbar/ems_storages_center.rb:35 ../app/helpers/application_helper/toolbar/storage_center.rb:30 +#: ../app/helpers/application_helper/toolbar/container_projects_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_volume_snapshot_center.rb:22 ../app/helpers/application_helper/toolbar/container_replicators_center.rb:6 ../app/helpers/application_helper/toolbar/orchestration_templates_center.rb:48 ../app/helpers/application_helper/toolbar/user_center.rb:35 ../app/helpers/application_helper/toolbar/security_groups_center.rb:45 ../app/helpers/application_helper/toolbar/ems_physical_infras_center.rb:56 ../app/helpers/application_helper/toolbar/container_build_center.rb:22 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:48 ../app/helpers/application_helper/toolbar/cloud_object_store_containers_center.rb:32 ../app/helpers/application_helper/toolbar/cloud_subnet_center.rb:35 ../app/helpers/application_helper/toolbar/network_port_center.rb:6 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:55 ../app/helpers/application_helper/toolbar/container_replicator_center.rb:32 ../app/helpers/application_helper/toolbar/configuration_job_center.rb:23 ../app/helpers/application_helper/toolbar/cloud_subnets_center.rb:45 ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:25 ../app/helpers/application_helper/toolbar/ems_network_center.rb:41 ../app/helpers/application_helper/toolbar/cloud_volume_backups_center.rb:6 ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:7 ../app/helpers/application_helper/toolbar/cloud_object_store_container_center.rb:30 ../app/helpers/application_helper/toolbar/ems_physical_infra_center.rb:40 ../app/helpers/application_helper/toolbar/ems_block_storages_center.rb:35 ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:51 ../app/helpers/application_helper/toolbar/network_routers_center.rb:63 ../app/helpers/application_helper/toolbar/floating_ips_center.rb:46 ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:39 ../app/helpers/application_helper/toolbar/configuration_jobs_center.rb:25 ../app/helpers/application_helper/toolbar/resource_pools_center.rb:27 ../app/helpers/application_helper/toolbar/auth_key_pair_clouds_center.rb:6 ../app/helpers/application_helper/toolbar/configuration_script_center.rb:19 ../app/helpers/application_helper/toolbar/ems_container_center.rb:83 ../app/helpers/application_helper/toolbar/cloud_tenant_center.rb:26 ../app/helpers/application_helper/toolbar/middleware_datasources_center.rb:6 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:97 ../app/helpers/application_helper/toolbar/container_image_registry_center.rb:6 ../app/helpers/application_helper/toolbar/x_provider_foreman_foreman_configured_system_center.rb:23 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:82 ../app/helpers/application_helper/toolbar/ems_storage_center.rb:35 ../app/helpers/application_helper/toolbar/host_center.rb:72 ../app/helpers/application_helper/toolbar/orchestration_stack_center.rb:23 ../app/helpers/application_helper/toolbar/middleware_domain_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_object_store_objects_center.rb:31 ../app/helpers/application_helper/toolbar/container_image_center.rb:24 ../app/helpers/application_helper/toolbar/container_image_registries_center.rb:6 ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:23 ../app/helpers/application_helper/toolbar/x_vm_center.rb:73 ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:53 ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:51 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:77 ../app/helpers/application_helper/toolbar/middleware_messagings_center.rb:7 ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:6 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:106 ../app/helpers/application_helper/toolbar/cloud_object_store_object_center.rb:29 ../app/helpers/application_helper/toolbar/network_ports_center.rb:6 ../app/helpers/application_helper/toolbar/container_node_center.rb:41 ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:29 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:90 ../app/helpers/application_helper/toolbar/vms_center.rb:62 ../app/helpers/application_helper/toolbar/container_project_center.rb:32 ../app/helpers/application_helper/toolbar/network_router_center.rb:54 ../app/helpers/application_helper/toolbar/infra_networkings_center.rb:6 ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:45 ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:48 ../app/helpers/application_helper/toolbar/load_balancers_center.rb:6 ../app/helpers/application_helper/toolbar/container_service_center.rb:23 ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:56 ../app/helpers/application_helper/toolbar/availability_zone_center.rb:6 ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:52 ../app/helpers/application_helper/toolbar/ems_containers_center.rb:57 ../app/helpers/application_helper/toolbar/miq_groups_center.rb:46 ../app/helpers/application_helper/toolbar/availability_zones_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_volume_backup_center.rb:6 ../app/helpers/application_helper/toolbar/tenant_center.rb:51 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:61 ../app/helpers/application_helper/toolbar/container_images_center.rb:26 ../app/helpers/application_helper/toolbar/miq_group_center.rb:30 ../app/helpers/application_helper/toolbar/cloud_volumes_center.rb:61 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:58 ../app/helpers/application_helper/toolbar/container_services_center.rb:6 ../app/helpers/application_helper/toolbar/x_configuration_script_center.rb:19 ../app/helpers/application_helper/toolbar/cloud_volume_center.rb:75 ../app/helpers/application_helper/toolbar/container_group_center.rb:32 ../app/helpers/application_helper/toolbar/tenants_center.rb:41 ../app/helpers/application_helper/toolbar/template_infras_center.rb:70 ../app/helpers/application_helper/toolbar/flavors_center.rb:6 ../app/helpers/application_helper/toolbar/security_group_center.rb:38 ../app/helpers/application_helper/toolbar/storages_center.rb:36 ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:42 ../app/helpers/application_helper/toolbar/servicetemplate_center.rb:43 ../app/helpers/application_helper/toolbar/configuration_scripts/policy_mixin.rb:6 ../app/helpers/application_helper/toolbar/service_center.rb:43 ../app/helpers/application_helper/toolbar/cloud_networks_center.rb:47 ../app/helpers/application_helper/toolbar/x_foreman_configured_system_center.rb:23 ../app/helpers/application_helper/toolbar/container_center.rb:31 ../app/helpers/application_helper/toolbar/service/policy_mixin.rb:7 ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:50 ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:35 ../app/helpers/application_helper/toolbar/load_balancer_center.rb:6 ../app/helpers/application_helper/toolbar/hosts_center.rb:109 ../app/helpers/application_helper/toolbar/middleware_server_center.rb:24 ../app/helpers/application_helper/toolbar/resource_pool_center.rb:23 ../app/helpers/application_helper/toolbar/cloud_network_center.rb:35 ../app/helpers/application_helper/toolbar/middleware_server_groups_center.rb:6 ../app/helpers/application_helper/toolbar/persistent_volume_center.rb:32 ../app/helpers/application_helper/toolbar/containers_center.rb:6 ../app/helpers/application_helper/toolbar/container_routes_center.rb:6 ../app/helpers/application_helper/toolbar/x_infra_networking_switch_center.rb:6 ../app/helpers/application_helper/toolbar/middleware_servers_center.rb:7 ../app/helpers/application_helper/toolbar/ems_networks_center.rb:51 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:61 ../app/helpers/application_helper/toolbar/container_template_center.rb:6 ../app/helpers/application_helper/toolbar/cloud_volume_snapshots_center.rb:6 ../app/helpers/application_helper/toolbar/storage_center.rb:33 ../app/helpers/application_helper/toolbar/container_nodes_center.rb:6 ../app/helpers/application_helper/toolbar/configured_system/automation_policy_mixin.rb:7 ../app/helpers/application_helper/toolbar/configured_system/policy_mixin.rb:7 ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:58 ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:7 ../app/helpers/application_helper/toolbar/floating_ip_center.rb:40 ../app/helpers/application_helper/toolbar/users_center.rb:46 ../app/helpers/application_helper/toolbar/infra_networking_center.rb:6 ../app/helpers/application_helper/toolbar/container_route_center.rb:6 ../app/helpers/application_helper/toolbar/middleware_messaging_center.rb:25 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:45 ../app/helpers/application_helper/toolbar/flavor_center.rb:6 ../app/helpers/application_helper/toolbar/orchestration_template_center.rb:41 ../app/helpers/application_helper/toolbar/middleware_domains_center.rb:6 ../app/helpers/application_helper/toolbar/container_groups_center.rb:6 ../app/helpers/application_helper/toolbar/ems_storages_center.rb:35 ../app/helpers/application_helper/toolbar/auth_key_pair_cloud_center.rb:23 ../app/helpers/application_helper/toolbar/container_templates_center.rb:6 ../app/helpers/application_helper/toolbar/container_builds_center.rb:25 msgid "Policy" msgstr "" @@ -15435,11 +15839,11 @@ msgstr "" msgid "Policy Events" msgstr "" -#: ../app/presenters/tree_builder_policy_simulation.rb:47 -msgid "Policy Profile:" +#: ../app/presenters/tree_builder_policy_simulation.rb:53 +msgid "Policy Profile" msgstr "" -#: ../app/controllers/miq_policy_controller.rb:1102 ../app/views/miq_policy/_export.html.haml:107 +#: ../app/controllers/miq_policy_controller.rb:1105 ../app/views/miq_policy/_export.html.haml:107 msgid "Policy Profiles" msgstr "" @@ -15451,7 +15855,7 @@ msgstr "" msgid "Policy Selection" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:122 ../app/helpers/application_helper/toolbar/template_infras_center.rb:87 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:61 ../app/helpers/application_helper/toolbar/vms_center.rb:79 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:100 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:87 ../app/helpers/application_helper/toolbar/miq_template_center.rb:62 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:98 ../app/helpers/application_helper/toolbar/x_vm_center.rb:86 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:114 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:78 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:65 ../app/controllers/application_controller/policy_support.rb:84 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:61 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:67 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:114 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:99 ../app/helpers/application_helper/toolbar/x_vm_center.rb:86 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:89 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:123 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:102 ../app/helpers/application_helper/toolbar/vms_center.rb:79 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:78 ../app/helpers/application_helper/toolbar/template_infras_center.rb:87 ../app/controllers/application_controller/policy_support.rb:84 msgid "Policy Simulation" msgstr "" @@ -15459,7 +15863,7 @@ msgstr "" msgid "Policy Simulation Details" msgstr "" -#: ../app/controllers/vm_common.rb:629 +#: ../app/controllers/vm_common.rb:483 msgid "Policy Simulation Details for %{name}" msgstr "" @@ -15467,7 +15871,7 @@ msgstr "" msgid "Policy Simulation Results" msgstr "" -#: ../app/presenters/tree_builder_policy_simulation_results.rb:25 +#: ../app/presenters/tree_builder_policy_simulation_results.rb:26 msgid "Policy Simulation Results for Event [%{description}]" msgstr "" @@ -15499,115 +15903,115 @@ msgstr "" msgid "Policy no longer exists" msgstr "" -#: ../app/presenters/tree_builder_policy_simulation.rb:84 -msgid "Policy%{caption}: " -msgstr "" - -#: ../app/presenters/tree_node_builder.rb:76 -msgid "Policy: " +#: ../app/presenters/tree_builder_policy_simulation.rb:89 +msgid "Policy%{caption}" msgstr "" -#: ../app/helpers/storage_manager_helper/textual_summary.rb:27 ../app/helpers/container_service_helper/textual_summary.rb:18 ../app/views/ems_container/_form_fields.html.haml:24 ../app/views/security_group/_main.html.haml:20 ../app/views/ems_datawarehouse/_form_fields.html.haml:24 ../app/views/ops/_settings_replication_tab.html.haml:144 ../app/views/ops/_ldap_domain_show.html.haml:259 ../app/views/ops/_settings_server_tab.html.haml:403 ../app/views/ops/_ldap_server_entries.html.haml:21 ../app/views/ems_middleware/_form_fields.html.haml:24 ../app/views/storage_manager/_form.html.haml:99 +#: ../app/helpers/storage_manager_helper/textual_summary.rb:27 ../app/helpers/container_service_helper/textual_summary.rb:14 ../app/helpers/security_group_helper/textual_summary.rb:37 ../app/views/ops/_ldap_server_entries.html.haml:21 ../app/views/ops/_settings_replication_tab.html.haml:72 ../app/views/ops/_ldap_domain_show.html.haml:259 ../app/views/ops/_settings_server_tab.html.haml:367 ../app/views/storage_manager/_form.html.haml:99 ../app/views/ems_datawarehouse/_form_fields.html.haml:24 ../app/views/ems_container/_form_fields.html.haml:24 ../app/views/ems_middleware/_form_fields.html.haml:24 msgid "Port" msgstr "" -#: ../app/views/container_service/_main.html.haml:9 +#: ../app/helpers/container_service_helper/textual_summary.rb:25 msgid "Port Configurations" msgstr "" -#: ../app/presenters/tree_node_builder.rb:107 +#: ../app/presenters/tree_node/lan.rb:3 msgid "Port Group: %{name}" msgstr "" +#: ../app/views/floating_ip/edit.haml:17 +msgid "Port id" +msgstr "" + #: ../app/helpers/container_service_helper/textual_summary.rb:54 msgid "Portal IP" msgstr "" -#: ../app/controllers/vm_common.rb:529 +#: ../app/controllers/vm_common.rb:383 msgid "Ports" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:145 ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:8 ../app/helpers/application_helper/toolbar/middleware_servers_center.rb:27 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:177 ../app/helpers/application_helper/toolbar/x_vm_center.rb:173 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:206 ../app/helpers/application_helper/toolbar/middleware_server_center.rb:40 ../app/helpers/application_helper/toolbar/hosts_center.rb:172 +#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:8 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:207 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:179 ../app/helpers/application_helper/toolbar/host_center.rb:150 ../app/helpers/application_helper/toolbar/x_vm_center.rb:182 ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:23 ../app/helpers/application_helper/toolbar/hosts_center.rb:175 ../app/helpers/application_helper/toolbar/middleware_server_center.rb:40 ../app/helpers/application_helper/toolbar/middleware_servers_center.rb:27 msgid "Power" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:144 +#: ../app/helpers/application_helper/toolbar/host_center.rb:149 msgid "Power Functions" msgstr "" -#: ../app/views/vm_common/_main.html.haml:29 ../app/views/vm_cloud/_main.html.haml:28 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:62 ../app/helpers/vm_helper/textual_summary.rb:112 msgid "Power Management" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:206 ../app/helpers/application_helper/toolbar/x_vm_center.rb:207 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:245 ../app/helpers/application_helper/toolbar/hosts_center.rb:227 ../app/controllers/application_controller/ci_processing.rb:2525 ../app/views/catalog/_form_resources_info.html.haml:120 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:246 ../app/helpers/application_helper/toolbar/host_center.rb:211 ../app/helpers/application_helper/toolbar/x_vm_center.rb:216 ../app/helpers/application_helper/toolbar/hosts_center.rb:230 ../app/controllers/application_controller/ci_processing.rb:2557 ../app/views/catalog/_form_resources_info.html.haml:120 msgid "Power Off" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:244 ../app/helpers/application_helper/toolbar/hosts_center.rb:226 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:245 ../app/helpers/application_helper/toolbar/hosts_center.rb:229 msgid "Power Off the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:248 ../app/helpers/application_helper/toolbar/hosts_center.rb:230 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:249 ../app/helpers/application_helper/toolbar/hosts_center.rb:233 msgid "Power Off the selected items?" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:206 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:215 msgid "Power Off this VM" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:209 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:218 msgid "Power Off this VM?" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:205 +#: ../app/helpers/application_helper/toolbar/host_center.rb:210 msgid "Power Off this item" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:208 +#: ../app/helpers/application_helper/toolbar/host_center.rb:213 msgid "Power Off this item?" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:197 ../app/helpers/application_helper/toolbar/x_vm_center.rb:198 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:235 ../app/helpers/application_helper/toolbar/hosts_center.rb:217 ../app/controllers/application_controller/ci_processing.rb:2524 ../app/views/catalog/_form_resources_info.html.haml:119 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:236 ../app/helpers/application_helper/toolbar/host_center.rb:202 ../app/helpers/application_helper/toolbar/x_vm_center.rb:207 ../app/helpers/application_helper/toolbar/hosts_center.rb:220 ../app/controllers/application_controller/ci_processing.rb:2556 ../app/views/catalog/_form_resources_info.html.haml:119 msgid "Power On" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:234 ../app/helpers/application_helper/toolbar/hosts_center.rb:216 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:235 ../app/helpers/application_helper/toolbar/hosts_center.rb:219 msgid "Power On the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:238 ../app/helpers/application_helper/toolbar/hosts_center.rb:220 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:239 ../app/helpers/application_helper/toolbar/hosts_center.rb:223 msgid "Power On the selected items?" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:197 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:206 msgid "Power On this VM" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:200 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:209 msgid "Power On this VM?" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:196 +#: ../app/helpers/application_helper/toolbar/host_center.rb:201 msgid "Power On this item" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:199 +#: ../app/helpers/application_helper/toolbar/host_center.rb:204 msgid "Power On this item?" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:176 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:205 ../app/helpers/application_helper/toolbar/hosts_center.rb:171 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:206 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:178 ../app/helpers/application_helper/toolbar/hosts_center.rb:174 msgid "Power Operations" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:189 ../app/helpers/textual_mixins/textual_power_state.rb:5 +#: ../app/helpers/host_helper/textual_summary.rb:196 ../app/helpers/textual_mixins/textual_power_state.rb:5 msgid "Power State" msgstr "" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:83 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:94 msgid "Preemptible" msgstr "" -#: ../app/helpers/ems_cloud_helper/textual_summary.rb:38 +#: ../app/helpers/ems_cloud_helper/textual_summary.rb:43 msgid "Preferred Region" msgstr "" @@ -15639,31 +16043,31 @@ msgstr "" msgid "Pressing the back button during a session." msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:317 ../app/controllers/report_controller/reports/editor.rb:324 ../app/controllers/report_controller/reports/editor.rb:336 +#: ../app/controllers/report_controller/reports/editor.rb:322 ../app/controllers/report_controller/reports/editor.rb:329 ../app/controllers/report_controller/reports/editor.rb:341 msgid "Preview" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1761 +#: ../app/controllers/report_controller/reports/editor.rb:1776 msgid "Preview tab is not available until Chargeback Filters has been configured" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1753 +#: ../app/controllers/report_controller/reports/editor.rb:1768 msgid "Preview tab is not available until Trend Target Limit has been configured" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1750 +#: ../app/controllers/report_controller/reports/editor.rb:1765 msgid "Preview tab is not available until Trending for field has been selected" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1759 +#: ../app/controllers/report_controller/reports/editor.rb:1774 msgid "Preview tab is not available until at least 1 field has been selected" msgstr "" -#: ../app/views/layouts/_pagingcontrols.html.haml:83 ../app/views/layouts/_pagingcontrols.html.haml:84 ../app/views/layouts/_pagingcontrols.html.haml:100 ../app/views/layouts/_pagingcontrols.html.haml:101 ../app/views/layouts/_pagingcontrols.html.haml:117 ../app/views/layouts/_pagingcontrols.html.haml:118 ../app/views/layouts/_x_pagingcontrols.html.haml:77 ../app/views/layouts/_x_pagingcontrols.html.haml:78 ../app/views/layouts/_saved_report_paging_bar.html.haml:38 ../app/views/layouts/_saved_report_paging_bar.html.haml:39 +#: ../app/views/layouts/_pagingcontrols.html.haml:83 ../app/views/layouts/_pagingcontrols.html.haml:84 ../app/views/layouts/_pagingcontrols.html.haml:100 ../app/views/layouts/_pagingcontrols.html.haml:101 ../app/views/layouts/_pagingcontrols.html.haml:117 ../app/views/layouts/_pagingcontrols.html.haml:118 ../app/views/layouts/_paging_bar.html.haml:21 ../app/views/layouts/_paging_bar.html.haml:22 msgid "Previous" msgstr "" -#: ../app/views/report/_report_info.html.haml:20 ../app/views/report/_report_list.html.haml:117 +#: ../app/views/report/_report_list.html.haml:117 ../app/views/report/_report_info.html.haml:20 msgid "Primary (Record) Filter" msgstr "" @@ -15671,10 +16075,6 @@ msgstr "" msgid "Primary (Record) Filter - Filters the %{model} table records" msgstr "" -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:103 ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:70 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:110 -msgid "Primordial" -msgstr "" - #: ../app/views/ops/_selected_by_roles.html.haml:78 ../app/views/ops/_selected_by_servers.html.haml:194 msgid "Priority" msgstr "" @@ -15691,7 +16091,7 @@ msgstr "" msgid "Private Host Name" msgstr "" -#: ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:5 ../app/views/layouts/_auth_credentials_keypair.html.haml:8 +#: ../app/views/layouts/_auth_credentials_keypair.html.haml:8 ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:5 msgid "Private Key" msgstr "" @@ -15699,7 +16099,7 @@ msgstr "" msgid "Private SSH Key" msgstr "" -#: ../app/helpers/container_helper/textual_summary.rb:84 +#: ../app/helpers/container_helper/textual_summary.rb:97 msgid "Privileged" msgstr "" @@ -15715,31 +16115,31 @@ msgstr "" msgid "Processor Sockets" msgstr "" -#: ../app/controllers/application_controller.rb:1152 ../app/views/vm_common/_reconfigure.html.haml:78 ../app/views/vm_common/_right_size.html.haml:213 ../app/views/vm_common/_right_size.html.haml:297 ../app/views/vm_common/_right_size.html.haml:380 +#: ../app/controllers/application_controller.rb:1159 ../app/views/vm_common/_reconfigure.html.haml:78 ../app/views/vm_common/_right_size.html.haml:213 ../app/views/vm_common/_right_size.html.haml:297 ../app/views/vm_common/_right_size.html.haml:380 msgid "Processors" msgstr "" -#: ../app/controllers/application_controller.rb:1323 +#: ../app/controllers/application_controller.rb:1330 msgid "Product" msgstr "" -#: ../app/views/ops/_rbac_role_details.html.haml:98 +#: ../app/views/ops/_rbac_role_details.html.haml:97 msgid "Product Features (Editing)" msgstr "" -#: ../app/views/ops/_rbac_role_details.html.haml:101 +#: ../app/views/ops/_rbac_role_details.html.haml:100 msgid "Product Features (Read Only)" msgstr "" -#: ../app/controllers/application_controller.rb:1291 +#: ../app/controllers/application_controller.rb:1298 msgid "Product ID" msgstr "" -#: ../app/helpers/container_image_helper/textual_summary.rb:56 +#: ../app/helpers/container_image_helper/textual_summary.rb:69 msgid "Product Name" msgstr "" -#: ../app/helpers/container_image_helper/textual_summary.rb:51 +#: ../app/helpers/container_image_helper/textual_summary.rb:64 msgid "Product Type" msgstr "" @@ -15747,6 +16147,10 @@ msgstr "" msgid "Production" msgstr "" +#: ../app/presenters/tree_builder_policy_simulation_results.rb:53 +msgid "Profile" +msgstr "" + #: ../app/views/miq_policy/_alert_profile_details.html.haml:74 msgid "Profile Alerts:" msgstr "" @@ -15755,31 +16159,31 @@ msgstr "" msgid "Profile Policies:" msgstr "" -#: ../app/controllers/ops_controller/ops_rbac.rb:565 ../app/views/shared/views/ems_common/angular/_form.html.haml:99 ../app/views/report/_form_filter_chargeback.html.haml:202 +#: ../app/controllers/ops_controller/ops_rbac.rb:565 ../app/views/shared/views/ems_common/angular/_form.html.haml:99 ../app/views/report/_form_filter_chargeback.html.haml:230 msgid "Project" msgstr "" -#: ../app/views/ops/_rbac_group_details.html.haml:88 +#: ../app/views/ops/_rbac_group_details.html.haml:87 msgid "Project/Tenant" msgstr "" -#: ../app/views/ops/_rbac_tenant_details.html.haml:111 ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:35 +#: ../app/presenters/menu/default_menu.rb:101 ../app/views/ops/_rbac_tenant_details.html.haml:111 ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:35 msgid "Projects" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:86 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:95 +#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:87 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:96 msgid "Promote Server" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:81 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:89 +#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:82 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:90 msgid "Promote Server %{server_name} [%{server_id}] to primary for the %{server_role_description} Role" msgstr "" -#: ../app/views/network_router/_main.html.haml:7 ../app/views/configuration_job/_main.html.haml:7 ../app/views/middleware_deployment/_main.html.haml:7 ../app/views/ontap_storage_system/_main.html.haml:7 ../app/views/cloud_subnet/_main.html.haml:7 ../app/views/container_build/_main.html.haml:7 ../app/views/container_project/_main.html.haml:7 ../app/views/ontap_storage_volume/_main.html.haml:7 ../app/views/container_image/_main.html.haml:7 ../app/views/container_node/_main.html.haml:7 ../app/views/cloud_volume_snapshot/_main.html.haml:7 ../app/views/middleware_domain/_main.html.haml:7 ../app/views/ems_container/_main.html.haml:7 ../app/views/auth_key_pair_cloud/_main.html.haml:9 ../app/views/cloud_object_store_container/_main.html.haml:7 ../app/views/network_port/_main.html.haml:7 ../app/views/container/_container_show.html.haml:7 ../app/views/container_group/_main.html.haml:7 ../app/views/container_service/_main.html.haml:7 ../app/views/middleware_datasource/_main.html.haml:7 ../app/views/storage/_main.html.haml:7 ../app/views/container_route/_main.html.haml:7 ../app/views/middleware_server_group/_main.html.haml:7 ../app/views/shared/views/ems_common/_main.html.haml:7 ../app/views/shared/views/_prov_dialog.html.haml:163 ../app/views/cloud_volume/_main.html.haml:7 ../app/views/security_group/_main.html.haml:7 ../app/views/container_template/_main.html.haml:7 ../app/views/vm_common/_main.html.haml:7 ../app/views/middleware_messaging/_main.html.haml:7 ../app/views/miq_ae_class/_class_props.html.haml:6 ../app/views/miq_ae_class/_class_form.html.haml:5 ../app/views/miq_ae_class/_all_tabs.html.haml:14 ../app/views/miq_ae_class/_all_tabs.html.haml:55 ../app/views/ems_datawarehouse/_main.html.haml:7 ../app/views/provider_foreman/_main_configuration_profile.html.haml:7 ../app/views/provider_foreman/_main.html.haml:7 ../app/views/provider_foreman/_main_inventory_group.html.haml:7 ../app/views/provider_foreman/_configuration_script.html.haml:7 ../app/views/orchestration_stack/_main.html.haml:7 ../app/views/ontap_file_share/_main.html.haml:7 ../app/views/persistent_volume/_main.html.haml:7 ../app/views/service/_svcs_show.html.haml:7 ../app/views/ops/_db_summary.html.haml:5 ../app/views/floating_ip/_main.html.haml:7 ../app/views/container_replicator/_main.html.haml:7 ../app/views/cloud_object_store_object/_main.html.haml:7 ../app/views/load_balancer/_main.html.haml:7 ../app/views/ems_middleware/_main.html.haml:7 ../app/views/flavor/_main.html.haml:7 ../app/views/middleware_server/_main.html.haml:7 ../app/views/cloud_network/_main.html.haml:7 ../app/views/container_image_registry/_main.html.haml:7 ../app/views/storage_manager/_main.html.haml:7 ../app/views/resource_pool/_main.html.haml:7 ../app/views/ontap_logical_disk/_main.html.haml:7 ../app/views/vm_cloud/_main.html.haml:7 ../app/views/host/_main.html.haml:7 ../app/views/cloud_volume_backup/_main.html.haml:7 ../app/views/layouts/listnav/_container_image.html.haml:7 ../app/views/layouts/listnav/_ems_middleware.html.haml:7 ../app/views/layouts/listnav/_configuration_job.html.haml:7 ../app/views/layouts/listnav/_ems_infra.html.haml:9 ../app/views/layouts/listnav/_container_route.html.haml:7 ../app/views/layouts/listnav/_ems_network.html.haml:7 ../app/views/layouts/listnav/_container_group.html.haml:7 ../app/views/layouts/listnav/_host_aggregate.html.haml:7 ../app/views/layouts/listnav/_ems_cluster.html.haml:8 ../app/views/layouts/listnav/_network_router.html.haml:7 ../app/views/layouts/listnav/_middleware_datasource.html.haml:7 ../app/views/layouts/listnav/_persistent_volume.html.haml:7 ../app/views/layouts/listnav/_container_template.html.haml:7 ../app/views/layouts/listnav/_ems_datawarehouse.html.haml:7 ../app/views/layouts/listnav/_storage_manager.html.haml:7 ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:7 ../app/views/layouts/listnav/_floating_ip.html.haml:7 ../app/views/layouts/listnav/_middleware_server.html.haml:7 ../app/views/layouts/listnav/_cloud_network.html.haml:7 ../app/views/layouts/listnav/_network_port.html.haml:7 ../app/views/layouts/listnav/_load_balancer.html.haml:7 ../app/views/layouts/listnav/_middleware_domain.html.haml:7 ../app/views/layouts/listnav/_host.html.haml:31 ../app/views/layouts/listnav/_container_build.html.haml:7 ../app/views/layouts/listnav/_pxe_server.html.haml:7 ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:7 ../app/views/layouts/listnav/_ems_storage.html.haml:7 ../app/views/layouts/listnav/_security_group.html.haml:7 ../app/views/layouts/listnav/_cloud_object_store_object.html.haml:7 ../app/views/layouts/listnav/_middleware_deployment.html.haml:7 ../app/views/layouts/listnav/_ems_container.html.haml:7 ../app/views/layouts/listnav/_storage.html.haml:8 ../app/views/layouts/listnav/_cloud_tenant.html.haml:7 ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:7 ../app/views/layouts/listnav/_resource_pool.html.haml:8 ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:7 ../app/views/layouts/listnav/_ontap_file_share.html.haml:7 ../app/views/layouts/listnav/_container_project.html.haml:7 ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:7 ../app/views/layouts/listnav/_middleware_server_group.html.haml:7 ../app/views/layouts/listnav/_container_image_registry.html.haml:7 ../app/views/layouts/listnav/_cloud_subnet.html.haml:7 ../app/views/layouts/listnav/_container_replicator.html.haml:7 ../app/views/layouts/listnav/_cloud_volume.html.haml:7 ../app/views/layouts/listnav/_service.html.haml:7 ../app/views/layouts/listnav/_availability_zone.html.haml:7 ../app/views/layouts/listnav/_middleware_messaging.html.haml:7 ../app/views/layouts/listnav/_ontap_storage_system.html.haml:7 ../app/views/layouts/listnav/_container_service.html.haml:7 ../app/views/layouts/listnav/_flavor.html.haml:7 ../app/views/layouts/listnav/_miq_ae_class.html.haml:7 ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:7 ../app/views/layouts/listnav/_orchestration_stack.html.haml:7 ../app/views/layouts/listnav/_ems_cloud.html.haml:7 ../app/views/layouts/listnav/_container_node.html.haml:7 +#: ../app/helpers/storage_manager_helper/textual_summary.rb:7 ../app/helpers/auth_key_pair_cloud_helper/textual_summary.rb:12 ../app/helpers/container_image_helper/textual_summary.rb:9 ../app/helpers/ems_swift_helper/textual_summary.rb:8 ../app/helpers/container_group_helper/textual_summary.rb:8 ../app/helpers/ansible_playbook_helper/textual_summary.rb:7 ../app/helpers/ems_network_helper/textual_summary.rb:8 ../app/helpers/container_replicator_helper/textual_summary.rb:8 ../app/helpers/container_helper/textual_summary.rb:8 ../app/helpers/ems_cloud_helper/textual_summary.rb:9 ../app/helpers/container_template_helper/textual_summary.rb:7 ../app/helpers/middleware_datasource_helper/textual_summary.rb:7 ../app/helpers/container_service_helper/textual_summary.rb:8 ../app/helpers/cloud_volume_helper/textual_summary.rb:7 ../app/helpers/orchestration_stack_helper/textual_summary.rb:11 ../app/helpers/ansible_repository_helper/textual_summary.rb:6 ../app/helpers/cloud_object_store_object_helper/textual_summary.rb:5 ../app/helpers/ems_infra_helper/textual_summary.rb:9 ../app/helpers/middleware_deployment_helper/textual_summary.rb:7 ../app/helpers/ems_datawarehouse_helper/textual_summary.rb:8 ../app/helpers/ems_cinder_helper/textual_summary.rb:8 ../app/helpers/container_build_helper/textual_summary.rb:8 ../app/helpers/security_group_helper/textual_summary.rb:10 ../app/helpers/container_project_helper/textual_summary.rb:7 ../app/helpers/host_helper/textual_summary.rb:10 ../app/helpers/vm_cloud_helper/textual_summary.rb:22 ../app/helpers/provider_foreman_helper.rb:6 ../app/helpers/ems_physical_infra_helper/textual_summary.rb:9 ../app/helpers/container_route_helper/textual_summary.rb:7 ../app/helpers/load_balancer_helper/textual_summary.rb:10 ../app/helpers/middleware_server_group_helper/textual_summary.rb:3 ../app/helpers/configuration_job_helper/textual_summary.rb:10 ../app/helpers/cloud_network_helper/textual_summary.rb:10 ../app/helpers/middleware_domain_helper/textual_summary.rb:3 ../app/helpers/persistent_volume_helper/textual_summary.rb:9 ../app/helpers/ems_storage_helper/textual_summary.rb:8 ../app/helpers/floating_ip_helper/textual_summary.rb:9 ../app/helpers/network_router_helper/textual_summary.rb:10 ../app/helpers/cloud_object_store_container_helper/textual_summary.rb:6 ../app/helpers/automation_manager_helper.rb:6 ../app/helpers/cloud_subnet_helper/textual_summary.rb:11 ../app/helpers/middleware_server_helper/textual_summary.rb:7 ../app/helpers/resource_pool_helper/textual_summary.rb:8 ../app/helpers/ems_container_helper/textual_summary.rb:10 ../app/helpers/flavor_helper/textual_summary.rb:10 ../app/helpers/ansible_credential_helper/textual_summary.rb:5 ../app/helpers/storage_helper/textual_summary.rb:7 ../app/helpers/network_port_helper/textual_summary.rb:11 ../app/helpers/service_helper/textual_summary.rb:10 ../app/helpers/container_image_registry_helper/textual_summary.rb:8 ../app/helpers/middleware_messaging_helper/textual_summary.rb:7 ../app/helpers/container_node_helper/textual_summary.rb:8 ../app/helpers/cloud_volume_snapshot_helper/textual_summary.rb:7 ../app/helpers/vm_helper/textual_summary.rb:22 ../app/helpers/ems_middleware_helper/textual_summary.rb:8 ../app/helpers/ops_helper/textual_summary.rb:8 ../app/helpers/cloud_volume_backup_helper/textual_summary.rb:7 ../app/views/shared/views/_prov_dialog.html.haml:163 ../app/views/miq_ae_class/_class_props.html.haml:6 ../app/views/miq_ae_class/_class_form.html.haml:5 ../app/views/miq_ae_class/_all_tabs.html.haml:14 ../app/views/miq_ae_class/_all_tabs.html.haml:55 ../app/views/layouts/listnav/_middleware_domain.html.haml:7 ../app/views/layouts/listnav/_cloud_subnet.html.haml:7 ../app/views/layouts/listnav/_container_template.html.haml:7 ../app/views/layouts/listnav/_middleware_server.html.haml:7 ../app/views/layouts/listnav/_host.html.haml:31 ../app/views/layouts/listnav/_container_project.html.haml:7 ../app/views/layouts/listnav/_storage_manager.html.haml:7 ../app/views/layouts/listnav/_storage.html.haml:8 ../app/views/layouts/listnav/_ems_datawarehouse.html.haml:7 ../app/views/layouts/listnav/_container_replicator.html.haml:7 ../app/views/layouts/listnav/_container_build.html.haml:7 ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:7 ../app/views/layouts/listnav/_ems_physical_infra.html.haml:7 ../app/views/layouts/listnav/_middleware_deployment.html.haml:7 ../app/views/layouts/listnav/_container_service.html.haml:7 ../app/views/layouts/listnav/_container_node.html.haml:7 ../app/views/layouts/listnav/_middleware_server_group.html.haml:7 ../app/views/layouts/listnav/_middleware_datasource.html.haml:7 ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:7 ../app/views/layouts/listnav/_cloud_tenant.html.haml:7 ../app/views/layouts/listnav/_flavor.html.haml:7 ../app/views/layouts/listnav/_persistent_volume.html.haml:7 ../app/views/layouts/listnav/_cloud_network.html.haml:7 ../app/views/layouts/listnav/_cloud_volume.html.haml:7 ../app/views/layouts/listnav/_network_port.html.haml:7 ../app/views/layouts/listnav/_service.html.haml:7 ../app/views/layouts/listnav/_load_balancer.html.haml:7 ../app/views/layouts/listnav/_ems_network.html.haml:7 ../app/views/layouts/listnav/_configuration_job.html.haml:7 ../app/views/layouts/listnav/_pxe_server.html.haml:7 ../app/views/layouts/listnav/_floating_ip.html.haml:7 ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:7 ../app/views/layouts/listnav/_container_group.html.haml:7 ../app/views/layouts/listnav/_container_route.html.haml:7 ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:7 ../app/views/layouts/listnav/_network_router.html.haml:7 ../app/views/layouts/listnav/_resource_pool.html.haml:8 ../app/views/layouts/listnav/_host_aggregate.html.haml:7 ../app/views/layouts/listnav/_ems_cloud.html.haml:7 ../app/views/layouts/listnav/_ems_storage.html.haml:7 ../app/views/layouts/listnav/_container_image_registry.html.haml:7 ../app/views/layouts/listnav/_orchestration_stack.html.haml:7 ../app/views/layouts/listnav/_container_image.html.haml:7 ../app/views/layouts/listnav/_middleware_messaging.html.haml:7 ../app/views/layouts/listnav/_cloud_object_store_object.html.haml:7 ../app/views/layouts/listnav/_ems_infra.html.haml:9 ../app/views/layouts/listnav/_ems_cluster.html.haml:8 ../app/views/layouts/listnav/_availability_zone.html.haml:7 ../app/views/layouts/listnav/_security_group.html.haml:7 ../app/views/layouts/listnav/_ems_middleware.html.haml:7 ../app/views/layouts/listnav/_ems_container.html.haml:7 ../app/views/layouts/listnav/_miq_ae_class.html.haml:7 ../app/views/provider_foreman/_main_inventory_group.html.haml:7 ../app/views/provider_foreman/_configuration_script.html.haml:7 ../app/views/provider_foreman/_main_configuration_profile.html.haml:7 ../app/views/automation_manager/_main_inventory_group.html.haml:7 ../app/views/automation_manager/_configuration_script.html.haml:7 msgid "Properties" msgstr "" -#: ../app/helpers/container_group_helper/textual_summary.rb:57 +#: ../app/helpers/container_group_helper/textual_summary.rb:67 msgid "Property" msgstr "" @@ -15787,11 +16191,11 @@ msgstr "" msgid "Protected" msgstr "" -#: ../app/helpers/container_service_helper/textual_summary.rb:18 +#: ../app/helpers/container_service_helper/textual_summary.rb:14 msgid "Protocol" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2518 +#: ../app/controllers/application_controller/ci_processing.rb:2550 msgid "Provide" msgstr "" @@ -15819,7 +16223,7 @@ msgstr "" msgid "Provide this item?" msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:44 ../app/helpers/provider_configuration_manager_helper.rb:33 ../app/helpers/configuration_job_helper/textual_summary.rb:46 ../app/controllers/application_controller/miq_request_methods.rb:312 ../app/views/host_aggregate/new.html.haml:59 ../app/views/auth_key_pair_cloud/_form.html.haml:68 ../app/views/catalog/_ot_add.html.haml:80 ../app/views/catalog/_form_basic_info.html.haml:152 ../app/views/catalog/_form_basic_info.html.haml:174 ../app/views/catalog/_ot_copy.html.haml:63 ../app/views/catalog/_sandt_tree_show.html.haml:120 ../app/views/catalog/_ot_edit.html.haml:56 ../app/views/report/_form_filter_chargeback.html.haml:132 +#: ../app/helpers/provider_foreman_helper.rb:43 ../app/helpers/configuration_job_helper/textual_summary.rb:46 ../app/helpers/provider_configuration_manager_helper.rb:33 ../app/helpers/automation_manager_helper.rb:30 ../app/controllers/application_controller/miq_request_methods.rb:312 ../app/views/host_aggregate/new.html.haml:59 ../app/views/report/_form_filter_chargeback.html.haml:160 ../app/views/auth_key_pair_cloud/_form.html.haml:68 ../app/views/catalog/_ot_add.html.haml:80 ../app/views/catalog/_ot_edit.html.haml:56 ../app/views/catalog/_sandt_tree_show.html.haml:135 ../app/views/catalog/_ot_copy.html.haml:63 ../app/views/catalog/_form_basic_info.html.haml:169 ../app/views/catalog/_form_basic_info.html.haml:191 msgid "Provider" msgstr "" @@ -15827,14 +16231,26 @@ msgstr "" msgid "Provider Compliance Policies" msgstr "" +#: ../app/presenters/tree_builder_condition.rb:29 +msgid "Provider Conditions" +msgstr "" + #: ../app/presenters/tree_builder_policy.rb:31 ../app/views/miq_policy/_policy_folders.html.haml:2 msgid "Provider Control Policies" msgstr "" +#: ../app/assets/javascripts/services/alerts_center_service.js:87 ../app/assets/javascripts/services/alerts_center_service.js:262 +msgid "Provider Name" +msgstr "" + #: ../app/views/cloud_network/edit.html.haml:19 ../app/views/cloud_network/new.html.haml:45 msgid "Provider Network Type" msgstr "" +#: ../app/assets/javascripts/services/alerts_center_service.js:93 ../app/assets/javascripts/services/alerts_center_service.js:267 +msgid "Provider Type" +msgstr "" + #: ../app/controllers/pxe_controller/iso_datastores.rb:49 msgid "Provider is required" msgstr "" @@ -15843,7 +16259,7 @@ msgstr "" msgid "Provider no longer exists, this alert must be reconfigured" msgstr "" -#: ../app/controllers/ems_infra_controller.rb:197 +#: ../app/controllers/ems_infra_controller.rb:198 msgid "Provider stack is not ready to be updated, another operation is in progress." msgstr "" @@ -15851,15 +16267,19 @@ msgstr "" msgid "Provider to provision on" msgstr "" -#: ../app/assets/javascripts/services/topology_service.js:10 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:85 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:103 +#: ../app/assets/javascripts/services/topology_service.js:10 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:85 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:161 msgid "Provider: " msgstr "" -#: ../app/presenters/menu/default_menu.rb:48 ../app/presenters/menu/default_menu.rb:65 ../app/presenters/menu/default_menu.rb:97 ../app/presenters/menu/default_menu.rb:117 ../app/presenters/menu/default_menu.rb:125 ../app/presenters/menu/default_menu.rb:138 ../app/controllers/provider_foreman_controller.rb:518 ../app/controllers/provider_foreman_controller.rb:1169 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:4 ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:4 +#: ../app/presenters/tree_builder_region.rb:37 ../app/presenters/menu/default_menu.rb:49 ../app/presenters/menu/default_menu.rb:66 ../app/presenters/menu/default_menu.rb:81 ../app/presenters/menu/default_menu.rb:100 ../app/presenters/menu/default_menu.rb:120 ../app/presenters/menu/default_menu.rb:128 ../app/presenters/menu/default_menu.rb:141 ../app/controllers/provider_foreman_controller.rb:280 ../app/controllers/automation_manager_controller.rb:258 ../app/controllers/mixins/manager_controller_mixin.rb:466 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:4 ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:4 msgid "Providers" msgstr "" -#: ../app/helpers/application_helper/toolbar/vms_center.rb:114 +#: ../app/presenters/tree_builder_region.rb:39 +msgid "Providers (Click to open)" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/vms_center.rb:115 msgid "Provision" msgstr "" @@ -15867,7 +16287,7 @@ msgstr "" msgid "Provision %{type} Request was cancelled by the user" msgstr "" -#: ../app/controllers/vm_common.rb:1745 ../app/controllers/vm_common.rb:1749 +#: ../app/controllers/vm_common.rb:1557 ../app/controllers/vm_common.rb:1561 msgid "Provision %{vms_or_templates}" msgstr "" @@ -15883,11 +16303,11 @@ msgstr "" msgid "Provision Configured Systems" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:133 +#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:135 msgid "Provision Instances" msgstr "" -#: ../app/controllers/vm_common.rb:1738 +#: ../app/controllers/vm_common.rb:1550 msgid "Provision Instances - Select an Image" msgstr "" @@ -15895,11 +16315,11 @@ msgstr "" msgid "Provision Instances using selected Image" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:64 +#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:66 msgid "Provision Instances using this Image" msgstr "" -#: ../app/views/catalog/_form_resources_info.html.haml:55 ../app/views/catalog/_sandt_tree_show.html.haml:261 +#: ../app/views/catalog/_form_resources_info.html.haml:55 ../app/views/catalog/_sandt_tree_show.html.haml:277 msgid "Provision Order" msgstr "" @@ -15907,7 +16327,7 @@ msgstr "" msgid "Provision Type" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:149 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:150 msgid "Provision VMs" msgstr "" @@ -15915,19 +16335,19 @@ msgstr "" msgid "Provision VMs using selected Template" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:87 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:88 msgid "Provision VMs using this Template" msgstr "" -#: ../app/controllers/vm_common.rb:1740 +#: ../app/controllers/vm_common.rb:1552 msgid "Provision Virtual Machines - Select a Template" msgstr "" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:160 +#: ../app/helpers/application_helper/toolbar/hosts_center.rb:162 msgid "Provision items" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:111 +#: ../app/helpers/application_helper/toolbar/host_center.rb:113 msgid "Provision this item" msgstr "" @@ -15935,7 +16355,7 @@ msgstr "" msgid "Provisioned Hosts" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:207 +#: ../app/helpers/vm_helper/textual_summary.rb:247 msgid "Provisioned On" msgstr "" @@ -15947,35 +16367,39 @@ msgstr "" msgid "Provisioned VMs" msgstr "" -#: ../app/controllers/miq_request_controller.rb:172 +#: ../app/controllers/miq_request_controller.rb:170 msgid "Provisioned VMs [%{description}]" msgstr "" -#: ../app/controllers/catalog_controller.rb:872 ../app/views/catalog/_sandt_tree_show.html.haml:143 +#: ../app/controllers/catalog_controller.rb:885 ../app/views/layouts/angular/_multi_tab_ansible_form_options.html.haml:6 ../app/views/service/_svcs_show.html.haml:11 ../app/views/service/_svcs_show.html.haml:15 ../app/views/catalog/_sandt_tree_show.html.haml:159 ../app/views/catalog/_sandt_tree_show.html.haml:342 msgid "Provisioning" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:172 +#: ../app/controllers/miq_ae_customization_controller.rb:186 msgid "Provisioning Dialogs" msgstr "" -#: ../app/views/catalog/_form_basic_info.html.haml:216 +#: ../app/views/catalog/_form_basic_info.html.haml:233 msgid "Provisioning Entry Point" msgstr "" -#: ../app/views/catalog/_form_basic_info.html.haml:214 +#: ../app/views/catalog/_form_basic_info.html.haml:231 msgid "Provisioning Entry Point (NameSpace/Class/Instance)" msgstr "" -#: ../app/controllers/catalog_controller.rb:316 ../app/controllers/catalog_controller.rb:859 +#: ../app/controllers/catalog_controller.rb:319 ../app/controllers/catalog_controller.rb:872 msgid "Provisioning Entry Point is required" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:519 +#: ../app/views/catalog/_sandt_tree_show.html.haml:352 +msgid "Provisioning Info" +msgstr "" + +#: ../app/helpers/host_helper/textual_summary.rb:482 msgid "Provisioning State" msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:118 +#: ../app/controllers/provider_foreman_controller.rb:99 msgid "Provisioning is not supported for at least one of the selected systems" msgstr "" @@ -15987,19 +16411,19 @@ msgstr "" msgid "Public Key (optional)" msgstr "" -#: ../app/controllers/vm_common.rb:1718 +#: ../app/controllers/vm_common.rb:1526 msgid "Publish %{vm_or_template}" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:164 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:165 msgid "Publish selected VM to a Template" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:119 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:120 msgid "Publish this VM to a Template" msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:151 +#: ../app/helpers/provider_foreman_helper.rb:154 msgid "Puppet Realm" msgstr "" @@ -16011,27 +16435,27 @@ msgstr "" msgid "Purple Text" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:150 +#: ../app/helpers/application_helper/toolbar/host_center.rb:155 msgid "Put this item into Maintenance Mode" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:153 +#: ../app/helpers/application_helper/toolbar/host_center.rb:158 msgid "Put this item into Maintenance Mode?" msgstr "" -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:30 +#: ../app/helpers/persistent_volume_helper/textual_summary.rb:36 msgid "Quantity" msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:257 +#: ../app/helpers/provider_foreman_helper.rb:262 ../app/helpers/automation_manager_helper.rb:98 msgid "Question Description" msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:257 +#: ../app/helpers/provider_foreman_helper.rb:262 ../app/helpers/automation_manager_helper.rb:98 msgid "Question Name" msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:256 +#: ../app/helpers/provider_foreman_helper.rb:261 ../app/helpers/automation_manager_helper.rb:97 msgid "Questions" msgstr "" @@ -16047,15 +16471,15 @@ msgstr "" msgid "Queue up selected Schedules to run now" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_schedule_center.rb:25 ../app/helpers/application_helper/toolbar/miq_report_schedule_center.rb:25 +#: ../app/helpers/application_helper/toolbar/miq_report_schedule_center.rb:25 ../app/helpers/application_helper/toolbar/miq_schedule_center.rb:25 msgid "Queue up this Schedule to run now" msgstr "" -#: ../app/helpers/ui_constants.rb:418 ../app/views/miq_task/_tasks_options.html.haml:90 +#: ../app/helpers/ui_constants.rb:415 ../app/views/miq_task/_tasks_options.html.haml:92 msgid "Queued" msgstr "" -#: ../app/views/cloud_tenant/_main.html.haml:9 +#: ../app/helpers/cloud_tenant_helper/textual_summary.rb:21 msgid "Quotas" msgstr "" @@ -16079,19 +16503,19 @@ msgstr "" msgid "RHN Satellite URL:" msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:32 ../app/views/layouts/_multi_auth_credentials.html.haml:29 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:34 ../app/views/layouts/_multi_auth_credentials.html.haml:29 msgid "RSA key pair" msgstr "" -#: ../app/presenters/menu/default_menu.rb:27 ../app/controllers/alert_controller.rb:66 +#: ../app/presenters/menu/default_menu.rb:28 ../app/controllers/alert_controller.rb:66 msgid "RSS" msgstr "" -#: ../app/helpers/ui_constants.rb:630 +#: ../app/helpers/ui_constants.rb:597 msgid "RSS Feed" msgstr "" -#: ../app/views/report/_widget_show.html.haml:114 ../app/views/report/_widget_form_rss.html.haml:4 +#: ../app/views/report/_widget_form_rss.html.haml:4 ../app/views/report/_widget_show.html.haml:114 msgid "RSS Feed Options" msgstr "" @@ -16099,31 +16523,31 @@ msgstr "" msgid "RSS Feed no longer exists" msgstr "" -#: ../app/helpers/ui_constants.rb:623 +#: ../app/helpers/ui_constants.rb:590 msgid "RSS Feeds" msgstr "" -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:109 ../app/helpers/container_group_helper/textual_summary.rb:43 +#: ../app/helpers/container_group_helper/textual_summary.rb:53 ../app/helpers/persistent_volume_helper/textual_summary.rb:116 msgid "Rados Ceph Monitors" msgstr "" -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:115 ../app/helpers/container_group_helper/textual_summary.rb:44 +#: ../app/helpers/container_group_helper/textual_summary.rb:54 ../app/helpers/persistent_volume_helper/textual_summary.rb:123 msgid "Rados Image Name" msgstr "" -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:133 ../app/helpers/container_group_helper/textual_summary.rb:47 +#: ../app/helpers/container_group_helper/textual_summary.rb:57 ../app/helpers/persistent_volume_helper/textual_summary.rb:141 msgid "Rados Keyring" msgstr "" -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:121 ../app/helpers/container_group_helper/textual_summary.rb:45 +#: ../app/helpers/container_group_helper/textual_summary.rb:55 ../app/helpers/persistent_volume_helper/textual_summary.rb:129 msgid "Rados Pool Name" msgstr "" -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:127 ../app/helpers/container_group_helper/textual_summary.rb:46 +#: ../app/helpers/container_group_helper/textual_summary.rb:56 ../app/helpers/persistent_volume_helper/textual_summary.rb:135 msgid "Rados User Name" msgstr "" -#: ../app/views/chargeback/_cb_rate_edit_table.html.haml:16 ../app/views/chargeback/_cb_rate_show.html.haml:42 ../app/views/layouts/_perf_options.html.haml:73 +#: ../app/views/chargeback/_cb_rate_show.html.haml:42 ../app/views/chargeback/_cb_rate_edit_table.html.haml:16 ../app/views/layouts/_perf_options.html.haml:72 msgid "Range" msgstr "" @@ -16139,7 +16563,7 @@ msgstr "" msgid "Rate (in %{currency})" msgstr "" -#: ../app/controllers/chargeback_controller.rb:308 +#: ../app/controllers/chargeback_controller.rb:304 msgid "Rate Assignments saved" msgstr "" @@ -16147,47 +16571,47 @@ msgstr "" msgid "Rate Details" msgstr "" -#: ../app/presenters/tree_builder_chargeback_rates.rb:9 ../app/controllers/chargeback_controller.rb:324 +#: ../app/presenters/tree_builder_chargeback_rates.rb:10 ../app/controllers/chargeback_controller.rb:320 msgid "Rates" msgstr "" -#: ../app/views/ops/_settings_replication_tab.html.haml:393 -msgid "Re-Enable Central Admin" -msgstr "" - -#: ../app/views/layouts/_exp_editor.html.haml:41 ../app/views/layouts/_exp_editor.html.haml:41 +#: ../app/views/layouts/_exp_editor.html.haml:33 msgid "Re-apply the previous change" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:97 ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:74 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:111 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:102 ../app/helpers/application_helper/toolbar/ems_container_center.rb:107 ../app/helpers/application_helper/toolbar/ems_containers_center.rb:102 ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:78 ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:79 ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:73 ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:102 +#: ../app/helpers/application_helper/toolbar/ems_physical_infras_center.rb:102 ../app/helpers/application_helper/toolbar/ems_physical_infra_center.rb:90 ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:80 ../app/helpers/application_helper/toolbar/ems_container_center.rb:116 ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:73 ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:98 ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:74 ../app/helpers/application_helper/toolbar/ems_containers_center.rb:103 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:104 ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:79 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:111 ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:104 msgid "Re-check Authentication Status" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:101 +#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:103 msgid "Re-check Authentication Status for the selected Cloud Providers" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:101 +#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:102 msgid "Re-check Authentication Status for the selected Containers Providers " msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:78 +#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:79 msgid "Re-check Authentication Status for the selected Datawarehouse Providers" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:101 +#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:103 msgid "Re-check Authentication Status for the selected Infrastructure Providers" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:77 +#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:78 msgid "Re-check Authentication Status for the selected Middleware Providers" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:96 +#: ../app/helpers/application_helper/toolbar/ems_physical_infras_center.rb:101 +msgid "Re-check Authentication Status for the selected Physical Infrastructure Providers" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:97 msgid "Re-check Authentication Status for this Cloud Provider" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:106 +#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:115 msgid "Re-check Authentication Status for this Containers Provider" msgstr "" @@ -16203,15 +16627,19 @@ msgstr "" msgid "Re-check Authentication Status for this Middleware Provider" msgstr "" -#: ../app/controllers/ems_common.rb:528 +#: ../app/helpers/application_helper/toolbar/ems_physical_infra_center.rb:89 +msgid "Re-check Authentication Status for this Physical Infrastructure Provider" +msgstr "" + +#: ../app/controllers/ems_common.rb:469 msgid "Re-checking Authentication status for the selected %{controller_name} %{name} was not successful: %{details}" msgstr "" -#: ../app/controllers/ems_common.rb:521 +#: ../app/controllers/ems_common.rb:462 msgid "Re-checking Authentication status for this %{controller_name} was not successful: %{details}" msgstr "" -#: ../app/views/catalog/_ot_tree_show.html.haml:50 ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 +#: ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 ../app/views/catalog/_ot_tree_show.html.haml:50 msgid "Read Only" msgstr "" @@ -16239,19 +16667,19 @@ msgstr "" msgid "Read only" msgstr "" -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:149 ../app/helpers/container_group_helper/textual_summary.rb:50 +#: ../app/helpers/container_group_helper/textual_summary.rb:60 ../app/helpers/persistent_volume_helper/textual_summary.rb:157 msgid "Read-Only" msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:70 ../app/views/ems_infra/_form_fields.html.haml:47 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:189 +#: ../app/helpers/provider_foreman_helper.rb:70 ../app/views/ems_infra/_form_fields.html.haml:47 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:261 msgid "Realm" msgstr "" -#: ../app/controllers/ems_common.rb:183 ../app/controllers/ems_common.rb:693 +#: ../app/controllers/ems_common.rb:126 ../app/controllers/ems_common.rb:577 msgid "Realm is required" msgstr "" -#: ../app/helpers/container_build_helper/textual_summary.rb:24 ../app/helpers/container_node_helper/textual_summary.rb:17 ../app/helpers/container_helper/textual_summary.rb:30 ../app/views/miq_request/_request.html.haml:199 ../app/views/miq_request/_request_details.html.haml:84 +#: ../app/helpers/container_helper/textual_summary.rb:39 ../app/helpers/container_build_helper/textual_summary.rb:28 ../app/helpers/container_node_helper/textual_summary.rb:31 ../app/views/miq_request/_request.html.haml:199 ../app/views/miq_request/_request_details.html.haml:84 msgid "Reason" msgstr "" @@ -16267,35 +16695,35 @@ msgstr "" msgid "Recent VMs" msgstr "" +#: ../app/views/ems_container/ad_hoc/_list_view.html.haml:71 +msgid "Recent values" +msgstr "" + #: ../app/views/vm_common/_right_size.html.haml:199 ../app/views/vm_common/_right_size.html.haml:283 ../app/views/vm_common/_right_size.html.haml:366 msgid "Recommended" msgstr "" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:158 +#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:180 msgid "Reconfigurable" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:880 ../app/controllers/catalog_controller.rb:874 ../app/views/catalog/_sandt_tree_show.html.haml:145 +#: ../app/controllers/catalog_controller.rb:887 ../app/controllers/application_controller/ci_processing.rb:917 ../app/views/catalog/_sandt_tree_show.html.haml:161 msgid "Reconfigure" msgstr "" -#: ../app/controllers/service_controller.rb:121 -msgid "Reconfigure %{model} \"%{name}\"" -msgstr "" - -#: ../app/controllers/vm_common.rb:1780 +#: ../app/controllers/vm_common.rb:1592 msgid "Reconfigure %{vm_or_template}" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:236 ../app/views/miq_policy/_action_details.html.haml:261 +#: ../app/views/miq_policy/_action_options.html.haml:228 ../app/views/miq_policy/_action_details.html.haml:261 msgid "Reconfigure CPU" msgstr "" -#: ../app/views/catalog/_form_basic_info.html.haml:254 +#: ../app/views/catalog/_form_basic_info.html.haml:271 msgid "Reconfigure Entry Point" msgstr "" -#: ../app/views/catalog/_form_basic_info.html.haml:252 +#: ../app/views/catalog/_form_basic_info.html.haml:269 msgid "Reconfigure Entry Point (NameSpace/Class/Instance)" msgstr "" @@ -16303,35 +16731,39 @@ msgstr "" msgid "Reconfigure Instance" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:330 +#: ../app/controllers/application_controller/ci_processing.rb:349 msgid "Reconfigure Instance '%{name}'" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:208 ../app/views/miq_policy/_action_details.html.haml:285 +#: ../app/views/miq_policy/_action_options.html.haml:200 ../app/views/miq_policy/_action_details.html.haml:285 msgid "Reconfigure Memory" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:76 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:86 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:86 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:76 msgid "Reconfigure Selected items" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1669 +#: ../app/controllers/service_controller.rb:115 +msgid "Reconfigure Service \"%{name}\"" +msgstr "" + +#: ../app/controllers/application_controller/ci_processing.rb:1641 msgid "Reconfigure does not apply because you selected at least one %{model}" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1675 +#: ../app/controllers/application_controller/ci_processing.rb:1647 msgid "Reconfigure does not apply because you selected at least one un-reconfigurable VM" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:387 +#: ../app/controllers/application_controller/ci_processing.rb:406 msgid "Reconfigure of %{model} \"%{name}\" was cancelled by the user" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:69 +#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:70 msgid "Reconfigure selected Instance" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:49 +#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:51 msgid "Reconfigure the Memory/CPU of this Image" msgstr "" @@ -16339,7 +16771,7 @@ msgstr "" msgid "Reconfigure the Memory/CPU of this VM" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:75 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:85 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:85 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:75 msgid "Reconfigure the Memory/CPUs of selected items" msgstr "" @@ -16347,11 +16779,11 @@ msgstr "" msgid "Reconfigure the options of this Service" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:50 +#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:52 msgid "Reconfigure this Image" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:72 +#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:74 msgid "Reconfigure this Instance" msgstr "" @@ -16363,19 +16795,19 @@ msgstr "" msgid "Reconfigure this VM" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:395 +#: ../app/controllers/application_controller/ci_processing.rb:414 msgid "Reconfiguring %{instance} \"%{name}\" from %{old_flavor} to %{new_flavor}" msgstr "" -#: ../app/controllers/vm_common.rb:1784 +#: ../app/controllers/vm_common.rb:1596 msgid "Reconfiguring %{vm_or_template} \"%{name}\"" msgstr "" -#: ../app/helpers/application_helper.rb:910 +#: ../app/helpers/application_helper.rb:830 msgid "Record is not ExtManagementSystem class" msgstr "" -#: ../app/helpers/application_helper.rb:921 +#: ../app/helpers/application_helper.rb:841 msgid "Record is not VmOrTemplate class" msgstr "" @@ -16419,11 +16851,11 @@ msgstr "" msgid "Referenced by Actions" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2472 ../app/controllers/application_controller/ci_processing.rb:2663 ../app/controllers/provider_foreman_controller.rb:107 ../app/views/ems_container/_show_ad_hoc_metrics.html.haml:163 ../app/views/miq_ae_customization/_dialog_sample.html.haml:92 ../app/views/shared/dialogs/_dialog_field_drop_down_list.html.haml:33 ../app/views/shared/dialogs/_dialog_field_check_box.html.haml:14 ../app/views/shared/dialogs/_dialog_field_text_box.html.haml:19 ../app/views/shared/dialogs/_dialog_field_radio_button.html.haml:41 ../app/views/shared/dialogs/_dialog_field_date_and_date_time_control.html.haml:45 ../app/views/shared/dialogs/_dialog_field_text_area_box.html.haml:18 ../app/views/shared/_topology_header.html.haml:19 ../app/views/shared/_topology_header_toolbar.html.haml:17 ../app/views/ops/_settings_workers_tab.html.haml:418 +#: ../app/controllers/provider_foreman_controller.rb:88 ../app/controllers/automation_manager_controller.rb:94 ../app/controllers/application_controller/ci_processing.rb:2504 ../app/controllers/application_controller/ci_processing.rb:2695 ../app/views/ops/_settings_workers_tab.html.haml:418 ../app/views/shared/dialogs/_dialog_field_text_box.html.haml:23 ../app/views/shared/dialogs/_dialog_field_check_box.html.haml:18 ../app/views/shared/dialogs/_dialog_field_date_and_date_time_control.html.haml:49 ../app/views/shared/dialogs/_dialog_field_text_area_box.html.haml:22 ../app/views/shared/dialogs/_dialog_field_drop_down_list.html.haml:34 ../app/views/shared/dialogs/_dialog_field_radio_button.html.haml:50 ../app/views/shared/_topology_header_toolbar.html.haml:17 ../app/views/shared/_topology_header.html.haml:19 ../app/views/miq_ae_customization/_dialog_sample.html.haml:92 ../app/views/ems_container/ad_hoc/_chart_view_form.html.haml:75 msgid "Refresh" msgstr "" -#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:13 ../app/helpers/application_helper/toolbar/storage_manager_center.rb:13 ../app/controllers/storage_manager_controller.rb:365 +#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:13 ../app/helpers/application_helper/toolbar/storage_manager_center.rb:13 ../app/controllers/storage_manager_controller.rb:368 msgid "Refresh Inventory" msgstr "" @@ -16443,7 +16875,7 @@ msgstr "" msgid "Refresh Inventory for all Storage CIs known to this Storage Manager?" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:13 ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:13 ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:13 +#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:13 ../app/helpers/application_helper/toolbar/ems_containers_center.rb:13 ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:13 msgid "Refresh Items and Relationships" msgstr "" @@ -16479,31 +16911,31 @@ msgstr "" msgid "Refresh Provider" msgstr "" -#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:36 ../app/helpers/application_helper/toolbar/iso_datastores_center.rb:28 ../app/helpers/application_helper/toolbar/iso_datastore_center.rb:21 ../app/helpers/application_helper/toolbar/pxe_server_center.rb:26 +#: ../app/helpers/application_helper/toolbar/iso_datastores_center.rb:29 ../app/helpers/application_helper/toolbar/iso_datastore_center.rb:21 ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:37 ../app/helpers/application_helper/toolbar/pxe_server_center.rb:26 msgid "Refresh Relationships" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:18 ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:13 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:15 ../app/helpers/application_helper/toolbar/template_infras_center.rb:15 ../app/helpers/application_helper/toolbar/host_center.rb:13 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:13 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:18 ../app/helpers/application_helper/toolbar/vms_center.rb:15 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:13 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:13 ../app/helpers/application_helper/toolbar/miq_template_center.rb:13 ../app/helpers/application_helper/toolbar/ems_storage_center.rb:18 ../app/helpers/application_helper/toolbar/ems_network_center.rb:18 ../app/helpers/application_helper/toolbar/ems_block_storages_center.rb:13 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:13 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:15 ../app/helpers/application_helper/toolbar/x_vm_center.rb:13 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:15 ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:13 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:15 ../app/helpers/application_helper/toolbar/ems_networks_center.rb:13 ../app/helpers/application_helper/toolbar/hosts_center.rb:13 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:13 ../app/helpers/application_helper/toolbar/ems_storages_center.rb:13 +#: ../app/helpers/application_helper/toolbar/ems_physical_infras_center.rb:13 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:13 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:13 ../app/helpers/application_helper/toolbar/ems_network_center.rb:18 ../app/helpers/application_helper/toolbar/ems_physical_infra_center.rb:18 ../app/helpers/application_helper/toolbar/ems_block_storages_center.rb:13 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:15 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:15 ../app/helpers/application_helper/toolbar/ems_storage_center.rb:18 ../app/helpers/application_helper/toolbar/host_center.rb:13 ../app/helpers/application_helper/toolbar/x_vm_center.rb:13 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:13 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:15 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:13 ../app/helpers/application_helper/toolbar/vms_center.rb:15 ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:18 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:15 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:13 ../app/helpers/application_helper/toolbar/template_infras_center.rb:15 ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:13 ../app/helpers/application_helper/toolbar/hosts_center.rb:13 ../app/helpers/application_helper/toolbar/ems_networks_center.rb:13 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:18 ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:13 ../app/helpers/application_helper/toolbar/ems_storages_center.rb:13 msgid "Refresh Relationships and Power States" msgstr "" -#: ../app/helpers/application_helper/toolbar/inventory_group_center.rb:14 ../app/helpers/application_helper/toolbar/configuration_manager_provider_center.rb:14 ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:14 +#: ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:14 ../app/helpers/application_helper/toolbar/inventory_group_center.rb:14 ../app/helpers/application_helper/toolbar/automation_manager_providers_center.rb:14 ../app/helpers/application_helper/toolbar/automation_manager_provider_center.rb:14 ../app/helpers/application_helper/toolbar/configuration_manager_provider_center.rb:14 msgid "Refresh Relationships and Power states" msgstr "" -#: ../app/helpers/application_helper/toolbar/iso_datastores_center.rb:27 +#: ../app/helpers/application_helper/toolbar/iso_datastores_center.rb:28 msgid "Refresh Relationships for selected ISO Datastores" msgstr "" -#: ../app/helpers/application_helper/toolbar/iso_datastores_center.rb:30 +#: ../app/helpers/application_helper/toolbar/iso_datastores_center.rb:31 msgid "Refresh Relationships for selected ISO Datastores?" msgstr "" -#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:35 +#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:36 msgid "Refresh Relationships for selected PXE Servers" msgstr "" -#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:38 +#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:39 msgid "Refresh Relationships for selected PXE Servers?" msgstr "" @@ -16523,7 +16955,7 @@ msgstr "" msgid "Refresh Relationships for this PXE Server?" msgstr "" -#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:22 ../app/helpers/application_helper/toolbar/storage_manager_center.rb:19 ../app/controllers/storage_manager_controller.rb:371 +#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:22 ../app/helpers/application_helper/toolbar/storage_manager_center.rb:19 ../app/controllers/storage_manager_controller.rb:374 msgid "Refresh Status" msgstr "" @@ -16543,13 +16975,13 @@ msgstr "" msgid "Refresh Status for all Storage CIs known to this Storage Manager?" msgstr "" -#: ../app/controllers/ems_common.rb:1131 ../app/controllers/ems_common.rb:1146 +#: ../app/controllers/ems_common.rb:1020 ../app/controllers/ems_common.rb:1035 msgid "Refresh initiated for %{count} %{model} from the %{product} Database" msgid_plural "Refresh initiated for %{count} %{models} from the %{product} Database" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:13 ../app/helpers/application_helper/toolbar/ems_container_center.rb:18 ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:13 +#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:18 ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:13 ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:13 msgid "Refresh items and relationships" msgstr "" @@ -16577,7 +17009,7 @@ msgstr "" msgid "Refresh items and relationships related to this Middleware Provider?" msgstr "" -#: ../app/controllers/application_controller/performance.rb:175 +#: ../app/controllers/application_controller/performance.rb:147 msgid "Refresh of recent C&U data has been initiated" msgstr "" @@ -16597,11 +17029,11 @@ msgstr "" msgid "Refresh relationships and power states for all items related to the selected Cloud Providers?" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:12 +#: ../app/helpers/application_helper/toolbar/ems_physical_infras_center.rb:12 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:12 msgid "Refresh relationships and power states for all items related to the selected Infrastructure Providers" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:15 +#: ../app/helpers/application_helper/toolbar/ems_physical_infras_center.rb:15 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:15 msgid "Refresh relationships and power states for all items related to the selected Infrastructure Providers?" msgstr "" @@ -16629,19 +17061,19 @@ msgstr "" msgid "Refresh relationships and power states for all items related to the selected Storage Managers?" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:14 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:14 +#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:14 ../app/helpers/application_helper/toolbar/template_infras_center.rb:14 msgid "Refresh relationships and power states for all items related to the selected Templates" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:17 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:17 +#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:17 ../app/helpers/application_helper/toolbar/template_infras_center.rb:17 msgid "Refresh relationships and power states for all items related to the selected Templates?" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:14 ../app/helpers/application_helper/toolbar/vms_center.rb:14 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:14 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:14 ../app/helpers/application_helper/toolbar/hosts_center.rb:12 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:14 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:14 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:14 ../app/helpers/application_helper/toolbar/vms_center.rb:14 ../app/helpers/application_helper/toolbar/hosts_center.rb:12 msgid "Refresh relationships and power states for all items related to the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:17 ../app/helpers/application_helper/toolbar/vms_center.rb:17 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:17 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:17 ../app/helpers/application_helper/toolbar/hosts_center.rb:15 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:17 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:17 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:17 ../app/helpers/application_helper/toolbar/vms_center.rb:17 ../app/helpers/application_helper/toolbar/hosts_center.rb:15 msgid "Refresh relationships and power states for all items related to the selected items?" msgstr "" @@ -16661,19 +17093,19 @@ msgstr "" msgid "Refresh relationships and power states for all items related to this Image?" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:17 +#: ../app/helpers/application_helper/toolbar/ems_physical_infra_center.rb:17 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:17 msgid "Refresh relationships and power states for all items related to this Infrastructure Provider" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:19 +#: ../app/helpers/application_helper/toolbar/ems_physical_infra_center.rb:19 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:19 msgid "Refresh relationships and power states for all items related to this Infrastructure Provider?" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:12 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:12 +#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:12 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:12 msgid "Refresh relationships and power states for all items related to this Instance" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:14 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:14 +#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:14 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:14 msgid "Refresh relationships and power states for all items related to this Instance?" msgstr "" @@ -16693,11 +17125,11 @@ msgstr "" msgid "Refresh relationships and power states for all items related to this Storage Manager?" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:12 ../app/helpers/application_helper/toolbar/miq_template_center.rb:12 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:12 msgid "Refresh relationships and power states for all items related to this Template" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:14 ../app/helpers/application_helper/toolbar/miq_template_center.rb:14 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:14 msgid "Refresh relationships and power states for all items related to this Template?" msgstr "" @@ -16717,19 +17149,19 @@ msgstr "" msgid "Refresh relationships and power states for all items related to this item?" msgstr "" -#: ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:13 +#: ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:13 ../app/helpers/application_helper/toolbar/automation_manager_providers_center.rb:13 msgid "Refresh relationships for all items related to the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:17 +#: ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:17 ../app/helpers/application_helper/toolbar/automation_manager_providers_center.rb:17 msgid "Refresh relationships for all items related to the selected items?" msgstr "" -#: ../app/helpers/application_helper/toolbar/inventory_group_center.rb:13 ../app/helpers/application_helper/toolbar/configuration_manager_provider_center.rb:13 +#: ../app/helpers/application_helper/toolbar/inventory_group_center.rb:13 ../app/helpers/application_helper/toolbar/automation_manager_provider_center.rb:13 ../app/helpers/application_helper/toolbar/configuration_manager_provider_center.rb:13 msgid "Refresh relationships for all items related to this Provider" msgstr "" -#: ../app/helpers/application_helper/toolbar/inventory_group_center.rb:16 ../app/helpers/application_helper/toolbar/configuration_manager_provider_center.rb:16 +#: ../app/helpers/application_helper/toolbar/inventory_group_center.rb:16 ../app/helpers/application_helper/toolbar/automation_manager_provider_center.rb:16 ../app/helpers/application_helper/toolbar/configuration_manager_provider_center.rb:16 msgid "Refresh relationships for all items related to this Provider?" msgstr "" @@ -16741,7 +17173,7 @@ msgstr "" msgid "Refreshing branch/tag for Git-based Domain" msgstr "" -#: ../app/helpers/ems_cinder_helper/textual_summary.rb:31 ../app/helpers/ems_cloud_helper/textual_summary.rb:38 ../app/helpers/ems_cloud_helper/textual_summary.rb:44 ../app/helpers/provider_foreman_helper.rb:129 ../app/helpers/provider_foreman_helper.rb:209 ../app/helpers/provider_foreman_helper.rb:238 ../app/helpers/textual_mixins/textual_region.rb:4 ../app/helpers/ems_storage_helper/textual_summary.rb:31 ../app/helpers/ems_swift_helper/textual_summary.rb:31 ../app/helpers/ems_network_helper/textual_summary.rb:34 ../app/views/shared/views/ems_common/angular/_form.html.haml:76 ../app/views/shared/views/ems_common/angular/_form.html.haml:221 +#: ../app/helpers/ems_swift_helper/textual_summary.rb:32 ../app/helpers/ems_network_helper/textual_summary.rb:41 ../app/helpers/ems_cloud_helper/textual_summary.rb:43 ../app/helpers/ems_cloud_helper/textual_summary.rb:49 ../app/helpers/ems_cinder_helper/textual_summary.rb:31 ../app/helpers/provider_foreman_helper.rb:132 ../app/helpers/provider_foreman_helper.rb:214 ../app/helpers/provider_foreman_helper.rb:243 ../app/helpers/ems_storage_helper/textual_summary.rb:34 ../app/helpers/textual_mixins/textual_region.rb:4 ../app/helpers/automation_manager_helper.rb:50 ../app/helpers/automation_manager_helper.rb:79 ../app/views/shared/views/ems_common/angular/_form.html.haml:76 ../app/views/shared/views/ems_common/angular/_form.html.haml:221 msgid "Region" msgstr "" @@ -16749,10 +17181,6 @@ msgstr "" msgid "Region Information" msgstr "" -#: ../app/controllers/ops_controller/settings/common.rb:267 ../app/controllers/ops_controller/settings/common.rb:285 -msgid "Region Not found" -msgstr "" - #: ../app/views/ops/_zone_tree.html.haml:17 msgid "Region based nodes shown as %{dimmed} text." msgstr "" @@ -16765,7 +17193,7 @@ msgstr "" msgid "Region:" msgstr "" -#: ../app/presenters/tree_node_builder.rb:111 +#: ../app/presenters/tree_node/ldap_region.rb:3 msgid "Region: %{region_name}" msgstr "" @@ -16773,7 +17201,7 @@ msgstr "" msgid "Register" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:23 ../app/helpers/application_helper/toolbar/hosts_center.rb:38 ../app/controllers/ems_infra_controller.rb:122 +#: ../app/helpers/application_helper/toolbar/hosts_center.rb:38 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:23 ../app/controllers/ems_infra_controller.rb:123 msgid "Register Nodes" msgstr "" @@ -16789,11 +17217,11 @@ msgstr "" msgid "Registries" msgstr "" -#: ../app/helpers/ui_constants.rb:537 ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:42 ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:154 ../app/views/ops/_ap_form.html.haml:86 +#: ../app/helpers/ui_constants.rb:504 ../app/views/ops/_ap_form.html.haml:86 ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:42 ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:154 msgid "Registry" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:568 ../app/helpers/vm_cloud_helper/textual_summary.rb:212 ../app/controllers/vm_common.rb:472 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:223 ../app/helpers/vm_helper/textual_summary.rb:607 ../app/controllers/vm_common.rb:326 msgid "Registry Entries" msgstr "" @@ -16801,7 +17229,7 @@ msgstr "" msgid "Registry Entry" msgstr "" -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:616 +#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:607 msgid "Registry Entry is required" msgstr "" @@ -16809,7 +17237,7 @@ msgstr "" msgid "Registry Hive" msgstr "" -#: ../app/controllers/vm_common.rb:1646 +#: ../app/controllers/vm_common.rb:1454 msgid "Registry Item" msgid_plural "Registry Items" msgstr[0] "" @@ -16831,7 +17259,7 @@ msgstr "" msgid "Registry Value" msgstr "" -#: ../app/controllers/application_controller/filter.rb:831 +#: ../app/controllers/application_controller/filter.rb:829 msgid "Registry Value Error: %{msg}" msgstr "" @@ -16839,22 +17267,30 @@ msgstr "" msgid "Regular Expression" msgstr "" -#: ../app/views/network_router/_main.html.haml:12 ../app/views/configuration_job/_main.html.haml:9 ../app/views/middleware_deployment/_main.html.haml:12 ../app/views/ontap_storage_system/_main.html.haml:14 ../app/views/cloud_subnet/_main.html.haml:12 ../app/views/container_build/_main.html.haml:16 ../app/views/container_project/_main.html.haml:21 ../app/views/ontap_storage_volume/_main.html.haml:14 ../app/views/cloud_tenant/_main.html.haml:7 ../app/views/host_aggregate/_main.html.haml:7 ../app/views/container_image/_main.html.haml:19 ../app/views/container_node/_main.html.haml:21 ../app/views/cloud_volume_snapshot/_main.html.haml:9 ../app/views/middleware_domain/_main.html.haml:12 ../app/views/ems_container/_main.html.haml:24 ../app/views/infra_networking/_main.html.haml:7 ../app/views/auth_key_pair_cloud/_main.html.haml:7 ../app/views/cloud_object_store_container/_main.html.haml:9 ../app/views/network_port/_main.html.haml:12 ../app/views/ems_cluster/_main.html.haml:7 ../app/views/container/_container_show.html.haml:12 ../app/views/container_group/_main.html.haml:24 ../app/views/container_service/_main.html.haml:18 ../app/views/middleware_datasource/_main.html.haml:12 ../app/views/storage/_main.html.haml:11 ../app/views/container_route/_main.html.haml:18 ../app/views/middleware_server_group/_main.html.haml:12 ../app/views/shared/views/ems_common/_main.html.haml:17 ../app/views/cloud_volume/_main.html.haml:9 ../app/views/security_group/_main.html.haml:12 ../app/views/container_template/_main.html.haml:19 ../app/views/vm_common/_main.html.haml:11 ../app/views/middleware_messaging/_main.html.haml:12 ../app/views/ems_datawarehouse/_main.html.haml:15 ../app/views/availability_zone/_main.html.haml:7 ../app/views/orchestration_stack/_main.html.haml:11 ../app/views/ontap_file_share/_main.html.haml:14 ../app/views/persistent_volume/_main.html.haml:16 ../app/views/service/_svcs_show.html.haml:11 ../app/views/ops/_settings_evm_servers_tab.html.haml:92 ../app/views/floating_ip/_main.html.haml:12 ../app/views/container_replicator/_main.html.haml:18 ../app/views/cloud_object_store_object/_main.html.haml:9 ../app/views/load_balancer/_main.html.haml:12 ../app/views/ems_middleware/_main.html.haml:15 ../app/views/flavor/_main.html.haml:9 ../app/views/middleware_server/_main.html.haml:12 ../app/views/cloud_network/_main.html.haml:12 ../app/views/container_image_registry/_main.html.haml:13 ../app/views/resource_pool/_main.html.haml:9 ../app/views/ontap_logical_disk/_main.html.haml:9 ../app/views/vm_cloud/_main.html.haml:12 ../app/views/vm_cloud/_main.html.haml:15 ../app/views/host/_main.html.haml:9 ../app/views/cloud_volume_backup/_main.html.haml:9 ../app/views/layouts/listnav/_container_image.html.haml:17 ../app/views/layouts/listnav/_ems_middleware.html.haml:16 ../app/views/layouts/listnav/_configuration_job.html.haml:19 ../app/views/layouts/listnav/_ems_infra.html.haml:25 ../app/views/layouts/listnav/_container_route.html.haml:17 ../app/views/layouts/listnav/_ems_network.html.haml:23 ../app/views/layouts/listnav/_container_group.html.haml:47 ../app/views/layouts/listnav/_host_aggregate.html.haml:17 ../app/views/layouts/listnav/_ems_cluster.html.haml:41 ../app/views/layouts/listnav/_network_router.html.haml:19 ../app/views/layouts/listnav/_middleware_datasource.html.haml:17 ../app/views/layouts/listnav/_persistent_volume.html.haml:17 ../app/views/layouts/listnav/_container_template.html.haml:17 ../app/views/layouts/listnav/_ems_datawarehouse.html.haml:16 ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:17 ../app/views/layouts/listnav/_floating_ip.html.haml:19 ../app/views/layouts/listnav/_middleware_server.html.haml:17 ../app/views/layouts/listnav/_cloud_network.html.haml:19 ../app/views/layouts/listnav/_network_port.html.haml:19 ../app/views/layouts/listnav/_load_balancer.html.haml:19 ../app/views/layouts/listnav/_middleware_domain.html.haml:17 ../app/views/layouts/listnav/_host.html.haml:90 ../app/views/layouts/listnav/_container_build.html.haml:17 ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:17 ../app/views/layouts/listnav/_ems_storage.html.haml:25 ../app/views/layouts/listnav/_security_group.html.haml:19 ../app/views/layouts/listnav/_cloud_object_store_object.html.haml:17 ../app/views/layouts/listnav/_middleware_deployment.html.haml:17 ../app/views/layouts/listnav/_ems_container.html.haml:45 ../app/views/layouts/listnav/_storage.html.haml:26 ../app/views/layouts/listnav/_storage.html.haml:45 ../app/views/layouts/listnav/_cloud_tenant.html.haml:17 ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:20 ../app/views/layouts/listnav/_resource_pool.html.haml:20 ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:17 ../app/views/layouts/listnav/_ontap_file_share.html.haml:19 ../app/views/layouts/listnav/_container_project.html.haml:46 ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:17 ../app/views/layouts/listnav/_middleware_server_group.html.haml:17 ../app/views/layouts/listnav/_container_image_registry.html.haml:17 ../app/views/layouts/listnav/_cloud_subnet.html.haml:19 ../app/views/layouts/listnav/_container_replicator.html.haml:46 ../app/views/layouts/listnav/_cloud_volume.html.haml:17 ../app/views/layouts/listnav/_service.html.haml:19 ../app/views/layouts/listnav/_availability_zone.html.haml:17 ../app/views/layouts/listnav/_middleware_messaging.html.haml:17 ../app/views/layouts/listnav/_ontap_storage_system.html.haml:19 ../app/views/layouts/listnav/_container_service.html.haml:31 ../app/views/layouts/listnav/_flavor.html.haml:19 ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:19 ../app/views/layouts/listnav/_orchestration_stack.html.haml:19 ../app/views/layouts/listnav/_ems_cloud.html.haml:23 ../app/views/layouts/listnav/_container_node.html.haml:47 +#: ../app/helpers/auth_key_pair_cloud_helper/textual_summary.rb:8 ../app/helpers/container_image_helper/textual_summary.rb:19 ../app/helpers/infra_networking_helper/textual_summary.rb:11 ../app/helpers/ems_swift_helper/textual_summary.rb:12 ../app/helpers/container_group_helper/textual_summary.rb:16 ../app/helpers/ansible_playbook_helper/textual_summary.rb:11 ../app/helpers/ems_network_helper/textual_summary.rb:13 ../app/helpers/container_replicator_helper/textual_summary.rb:14 ../app/helpers/container_helper/textual_summary.rb:19 ../app/helpers/ems_cloud_helper/textual_summary.rb:16 ../app/helpers/container_template_helper/textual_summary.rb:11 ../app/helpers/middleware_datasource_helper/textual_summary.rb:12 ../app/helpers/container_service_helper/textual_summary.rb:30 ../app/helpers/cloud_volume_helper/textual_summary.rb:12 ../app/helpers/cloud_tenant_helper/textual_summary.rb:9 ../app/helpers/orchestration_stack_helper/textual_summary.rb:20 ../app/helpers/ansible_repository_helper/textual_summary.rb:10 ../app/helpers/cloud_object_store_object_helper/textual_summary.rb:9 ../app/helpers/ems_infra_helper/textual_summary.rb:16 ../app/helpers/middleware_deployment_helper/textual_summary.rb:12 ../app/helpers/ems_cinder_helper/textual_summary.rb:12 ../app/helpers/container_build_helper/textual_summary.rb:12 ../app/helpers/security_group_helper/textual_summary.rb:15 ../app/helpers/container_project_helper/textual_summary.rb:12 ../app/helpers/host_helper/textual_summary.rb:21 ../app/helpers/ems_physical_infra_helper/textual_summary.rb:16 ../app/helpers/host_aggregate_helper/textual_summary.rb:9 ../app/helpers/container_route_helper/textual_summary.rb:11 ../app/helpers/load_balancer_helper/textual_summary.rb:14 ../app/helpers/middleware_server_group_helper/textual_summary.rb:8 ../app/helpers/configuration_job_helper/textual_summary.rb:14 ../app/helpers/cloud_network_helper/textual_summary.rb:15 ../app/helpers/middleware_domain_helper/textual_summary.rb:8 ../app/helpers/persistent_volume_helper/textual_summary.rb:26 ../app/helpers/ems_storage_helper/textual_summary.rb:13 ../app/helpers/floating_ip_helper/textual_summary.rb:13 ../app/helpers/network_router_helper/textual_summary.rb:15 ../app/helpers/cloud_object_store_container_helper/textual_summary.rb:10 ../app/helpers/cloud_subnet_helper/textual_summary.rb:18 ../app/helpers/middleware_server_helper/textual_summary.rb:13 ../app/helpers/resource_pool_helper/textual_summary.rb:18 ../app/helpers/ems_container_helper/textual_summary.rb:20 ../app/helpers/flavor_helper/textual_summary.rb:19 ../app/helpers/ansible_credential_helper/textual_summary.rb:9 ../app/helpers/storage_helper/textual_summary.rb:16 ../app/helpers/availability_zone_helper/textual_summary.rb:9 ../app/helpers/ems_cluster_helper/textual_summary.rb:23 ../app/helpers/network_port_helper/textual_summary.rb:18 ../app/helpers/service_helper/textual_summary.rb:69 ../app/helpers/container_image_registry_helper/textual_summary.rb:12 ../app/helpers/middleware_messaging_helper/textual_summary.rb:12 ../app/helpers/container_node_helper/textual_summary.rb:19 ../app/helpers/cloud_volume_snapshot_helper/textual_summary.rb:11 ../app/helpers/vm_helper/textual_summary.rb:40 ../app/helpers/vm_helper/textual_summary.rb:50 ../app/helpers/vm_helper/textual_summary.rb:60 ../app/helpers/ems_middleware_helper/textual_summary.rb:14 ../app/helpers/cloud_volume_backup_helper/textual_summary.rb:11 ../app/views/ops/_settings_evm_servers_tab.html.haml:92 ../app/views/layouts/listnav/_middleware_domain.html.haml:17 ../app/views/layouts/listnav/_cloud_subnet.html.haml:19 ../app/views/layouts/listnav/_container_template.html.haml:17 ../app/views/layouts/listnav/_middleware_server.html.haml:17 ../app/views/layouts/listnav/_host.html.haml:90 ../app/views/layouts/listnav/_container_project.html.haml:46 ../app/views/layouts/listnav/_storage.html.haml:26 ../app/views/layouts/listnav/_ems_datawarehouse.html.haml:16 ../app/views/layouts/listnav/_container_replicator.html.haml:46 ../app/views/layouts/listnav/_container_build.html.haml:17 ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:17 ../app/views/layouts/listnav/_ems_physical_infra.html.haml:22 ../app/views/layouts/listnav/_middleware_deployment.html.haml:17 ../app/views/layouts/listnav/_container_service.html.haml:31 ../app/views/layouts/listnav/_container_node.html.haml:47 ../app/views/layouts/listnav/_middleware_server_group.html.haml:17 ../app/views/layouts/listnav/_middleware_datasource.html.haml:17 ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:17 ../app/views/layouts/listnav/_cloud_tenant.html.haml:17 ../app/views/layouts/listnav/_flavor.html.haml:19 ../app/views/layouts/listnav/_persistent_volume.html.haml:17 ../app/views/layouts/listnav/_cloud_network.html.haml:19 ../app/views/layouts/listnav/_cloud_volume.html.haml:17 ../app/views/layouts/listnav/_network_port.html.haml:19 ../app/views/layouts/listnav/_service.html.haml:19 ../app/views/layouts/listnav/_load_balancer.html.haml:19 ../app/views/layouts/listnav/_ems_network.html.haml:23 ../app/views/layouts/listnav/_configuration_job.html.haml:19 ../app/views/layouts/listnav/_floating_ip.html.haml:19 ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:17 ../app/views/layouts/listnav/_container_group.html.haml:47 ../app/views/layouts/listnav/_container_route.html.haml:17 ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:17 ../app/views/layouts/listnav/_network_router.html.haml:19 ../app/views/layouts/listnav/_resource_pool.html.haml:20 ../app/views/layouts/listnav/_host_aggregate.html.haml:17 ../app/views/layouts/listnav/_ems_cloud.html.haml:23 ../app/views/layouts/listnav/_ems_storage.html.haml:25 ../app/views/layouts/listnav/_container_image_registry.html.haml:17 ../app/views/layouts/listnav/_orchestration_stack.html.haml:19 ../app/views/layouts/listnav/_container_image.html.haml:17 ../app/views/layouts/listnav/_middleware_messaging.html.haml:17 ../app/views/layouts/listnav/_cloud_object_store_object.html.haml:17 ../app/views/layouts/listnav/_ems_infra.html.haml:25 ../app/views/layouts/listnav/_ems_cluster.html.haml:41 ../app/views/layouts/listnav/_availability_zone.html.haml:17 ../app/views/layouts/listnav/_security_group.html.haml:19 ../app/views/layouts/listnav/_ems_middleware.html.haml:16 ../app/views/layouts/listnav/_ems_container.html.haml:45 msgid "Relationships" msgstr "" -#: ../app/helpers/application_helper/toolbar/tasks_center.rb:7 ../app/helpers/application_helper/toolbar/miq_requests_center.rb:7 ../app/helpers/application_helper/toolbar/miq_request_center.rb:28 ../app/controllers/middleware_server_controller.rb:16 +#: ../app/helpers/application_helper/toolbar/miq_request_center.rb:29 ../app/helpers/application_helper/toolbar/tasks_center.rb:7 ../app/helpers/application_helper/toolbar/miq_requests_center.rb:7 ../app/controllers/middleware_server_group_controller.rb:15 ../app/controllers/middleware_server_controller.rb:18 msgid "Reload" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:6 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:6 ../app/helpers/application_helper/toolbar/vmdb_table_center.rb:6 ../app/helpers/application_helper/toolbar/ems_storage_center.rb:6 ../app/helpers/application_helper/toolbar/vmdb_tables_center.rb:6 ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:6 ../app/helpers/application_helper/toolbar/ems_network_center.rb:6 ../app/helpers/application_helper/toolbar/ems_container_center.rb:6 ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:6 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:6 +#: ../app/helpers/application_helper/toolbar/ems_network_center.rb:6 ../app/helpers/application_helper/toolbar/ems_physical_infra_center.rb:6 ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:6 ../app/helpers/application_helper/toolbar/ems_container_center.rb:6 ../app/helpers/application_helper/toolbar/ems_storage_center.rb:6 ../app/helpers/application_helper/toolbar/vmdb_table_center.rb:6 ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:6 ../app/helpers/application_helper/toolbar/vmdb_tables_center.rb:6 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:6 ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:6 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:6 msgid "Reload Current Display" msgstr "" -#: ../app/helpers/application_helper/toolbar/middleware_servers_center.rb:36 ../app/helpers/application_helper/toolbar/middleware_server_center.rb:94 +#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:94 ../app/helpers/application_helper/toolbar/middleware_servers_center.rb:36 msgid "Reload Server" msgstr "" +#: ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:69 +msgid "Reload Server Group" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:68 +msgid "Reload Servers in this Server Group" +msgstr "" + #: ../app/helpers/application_helper/toolbar/miq_widgets_center.rb:6 msgid "Reload Widgets" msgstr "" @@ -16863,7 +17299,7 @@ msgstr "" msgid "Reload current display" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:11 +#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:12 msgid "Reload current workers display" msgstr "" @@ -16871,23 +17307,23 @@ msgstr "" msgid "Reload selected Reports" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:40 ../app/helpers/application_helper/toolbar/logs_center.rb:7 +#: ../app/helpers/application_helper/toolbar/logs_center.rb:7 ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:45 msgid "Reload the %{log_type} Log Display" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:17 +#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:18 msgid "Reload the Audit Log Display" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:28 +#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:31 msgid "Reload the EVM Log Display" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_performance.rb:13 ../app/helpers/application_helper/toolbar/x_vm_performance.rb:13 +#: ../app/helpers/application_helper/toolbar/x_vm_performance.rb:13 ../app/helpers/application_helper/toolbar/vm_performance.rb:13 msgid "Reload the charts from the most recent C&U data" msgstr "" -#: ../app/helpers/application_helper/toolbar/tasks_center.rb:6 ../app/helpers/application_helper/toolbar/miq_requests_center.rb:6 ../app/helpers/application_helper/toolbar/miq_request_center.rb:27 +#: ../app/helpers/application_helper/toolbar/miq_request_center.rb:28 ../app/helpers/application_helper/toolbar/tasks_center.rb:6 ../app/helpers/application_helper/toolbar/miq_requests_center.rb:6 msgid "Reload the current display" msgstr "" @@ -16899,19 +17335,19 @@ msgstr "" msgid "Reload this server" msgstr "" -#: ../app/views/vm_common/console_vmrc.html.haml:423 +#: ../app/views/vm_common/console_vmrc.html.haml:426 msgid "Remote Console plugin is not properly installed." msgstr "" -#: ../app/helpers/textual_summary_helper.rb:171 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:42 ../app/views/layouts/_multi_auth_credentials.html.haml:33 +#: ../app/helpers/textual_summary_helper.rb:185 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:44 ../app/views/layouts/_multi_auth_credentials.html.haml:33 msgid "Remote Login" msgstr "" -#: ../app/controllers/host_controller.rb:617 +#: ../app/controllers/host_controller.rb:580 msgid "Remote Login Password and Verify Password fields do not match" msgstr "" -#: ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:47 ../app/helpers/application_helper/toolbar/middleware_datasources_center.rb:36 ../app/views/host_aggregate/remove_host_select.html.haml:40 ../app/views/report/_form_styling.html.haml:57 +#: ../app/helpers/application_helper/toolbar/middleware_datasources_center.rb:36 ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:47 ../app/views/host_aggregate/remove_host_select.html.haml:32 ../app/views/report/_form_styling.html.haml:57 ../app/views/network_router/remove_interface_select.html.haml:32 msgid "Remove" msgstr "" @@ -16919,7 +17355,7 @@ msgstr "" msgid "Remove %{email}" msgstr "" -#: ../app/helpers/application_helper/toolbar/arbitration_profiles_center.rb:26 +#: ../app/helpers/application_helper/toolbar/arbitration_profiles_center.rb:27 msgid "Remove Arbitration Profiles from the VMDB" msgstr "" @@ -16935,19 +17371,19 @@ msgstr "" msgid "Remove Catalog Item" msgstr "" -#: ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:31 +#: ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:33 msgid "Remove Catalog Items" msgstr "" -#: ../app/helpers/application_helper/toolbar/servicetemplatecatalogs_center.rb:26 +#: ../app/helpers/application_helper/toolbar/servicetemplatecatalogs_center.rb:27 msgid "Remove Catalogs" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:44 +#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:46 msgid "Remove Cloud Providers" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:44 +#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:45 msgid "Remove Containers Providers" msgstr "" @@ -16955,7 +17391,7 @@ msgstr "" msgid "Remove Customization Templates" msgstr "" -#: ../app/helpers/application_helper/toolbar/storage_center.rb:20 +#: ../app/helpers/application_helper/toolbar/storage_center.rb:22 msgid "Remove Datastore" msgstr "" @@ -16963,7 +17399,7 @@ msgstr "" msgid "Remove Datastores" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:37 +#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:38 msgid "Remove Datawarehouse Providers" msgstr "" @@ -16979,11 +17415,11 @@ msgstr "" msgid "Remove Domains" msgstr "" -#: ../app/controllers/host_aggregate_controller.rb:487 +#: ../app/controllers/host_aggregate_controller.rb:476 msgid "Remove Host from %{model} \"%{name}\"" msgstr "" -#: ../app/controllers/host_aggregate_controller.rb:500 +#: ../app/controllers/host_aggregate_controller.rb:489 msgid "Remove Host from %{model} \"%{name}\" was cancelled by the user" msgstr "" @@ -16991,31 +17427,31 @@ msgstr "" msgid "Remove Host from Host Aggregate" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:35 +#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:36 msgid "Remove Host from Selected Host Aggregate" msgstr "" -#: ../app/controllers/host_aggregate_controller.rb:527 +#: ../app/controllers/host_aggregate_controller.rb:516 msgid "Remove Host not supported by %{model} \"%{name}\"" msgstr "" -#: ../app/controllers/host_aggregate_controller.rb:513 +#: ../app/controllers/host_aggregate_controller.rb:502 msgid "Remove Host to %{model} \"%{name}\" failed: Task start failed: ID [%{id}]" msgstr "" -#: ../app/helpers/application_helper/toolbar/iso_datastores_center.rb:18 +#: ../app/helpers/application_helper/toolbar/iso_datastores_center.rb:19 msgid "Remove ISO Datastores" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:37 +#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:39 msgid "Remove Image" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:44 +#: ../app/helpers/application_helper/toolbar/ems_physical_infras_center.rb:44 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:46 msgid "Remove Infrastructure Providers" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:37 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:38 +#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:40 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:38 msgid "Remove Instance" msgstr "" @@ -17023,6 +17459,34 @@ msgstr "" msgid "Remove Instances" msgstr "" +#: ../app/views/network_router/remove_interface_select.html.haml:7 +msgid "Remove Interface from Router" +msgstr "" + +#: ../app/controllers/network_router_controller.rb:341 +msgid "Remove Interface from Router \"%{name}\"" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/network_routers_center.rb:39 +msgid "Remove Interface from selected Router" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/network_router_center.rb:30 +msgid "Remove Interface from this Router" +msgstr "" + +#: ../app/controllers/network_router_controller.rb:378 +msgid "Remove Interface not supported by Router \"%{name}\"" +msgstr "" + +#: ../app/controllers/network_router_controller.rb:365 +msgid "Remove Interface on Subnet from Router \"%{name}\" failed: Task start failed: ID [%{id}]" +msgstr "" + +#: ../app/controllers/network_router_controller.rb:353 +msgid "Remove Interface on Subnet from Router \"%{name}\" was cancelled by the user" +msgstr "" + #: ../app/helpers/application_helper/toolbar/configuration_jobs_center.rb:13 msgid "Remove Jobs" msgstr "" @@ -17039,7 +17503,7 @@ msgstr "" msgid "Remove Middleware Datasources" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:37 +#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:38 msgid "Remove Middleware Providers" msgstr "" @@ -17051,15 +17515,31 @@ msgstr "" msgid "Remove Network Providers" msgstr "" +#: ../app/helpers/application_helper/toolbar/cloud_object_store_container_center.rb:14 ../app/helpers/application_helper/toolbar/cloud_object_store_container_center.rb:15 +msgid "Remove Object Storage Container" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/cloud_object_store_containers_center.rb:17 +msgid "Remove Object Storage Containers" +msgstr "" + #: ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:23 msgid "Remove Object Storage Managers" msgstr "" +#: ../app/helpers/application_helper/toolbar/cloud_object_store_object_center.rb:14 ../app/helpers/application_helper/toolbar/cloud_object_store_object_center.rb:15 +msgid "Remove Object Storage Object" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/cloud_object_store_objects_center.rb:17 +msgid "Remove Object Storage Objects" +msgstr "" + #: ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:13 msgid "Remove Orchestration Stacks" msgstr "" -#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:26 +#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:27 msgid "Remove PXE Servers" msgstr "" @@ -17075,7 +17555,7 @@ msgstr "" msgid "Remove Roles" msgstr "" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:94 +#: ../app/helpers/application_helper/toolbar/hosts_center.rb:96 msgid "Remove Selected items" msgstr "" @@ -17083,15 +17563,15 @@ msgstr "" msgid "Remove Service" msgstr "" -#: ../app/helpers/application_helper/toolbar/services_center.rb:23 +#: ../app/helpers/application_helper/toolbar/service/vmdb_mixin.rb:24 msgid "Remove Services" msgstr "" -#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:46 ../app/helpers/application_helper/toolbar/ems_storages_center.rb:23 +#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:47 ../app/helpers/application_helper/toolbar/ems_storages_center.rb:23 msgid "Remove Storage Managers" msgstr "" -#: ../app/helpers/application_helper/toolbar/pxe_image_types_center.rb:26 +#: ../app/helpers/application_helper/toolbar/pxe_image_types_center.rb:27 msgid "Remove System Image Types" msgstr "" @@ -17099,15 +17579,15 @@ msgstr "" msgid "Remove Tags" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:589 +#: ../app/views/miq_policy/_action_options.html.haml:581 msgid "Remove Tags Settings" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:38 ../app/helpers/application_helper/toolbar/miq_template_center.rb:39 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:38 msgid "Remove Template" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:58 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:49 +#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:49 ../app/helpers/application_helper/toolbar/template_infras_center.rb:58 msgid "Remove Templates" msgstr "" @@ -17119,11 +17599,11 @@ msgstr "" msgid "Remove Virtual Machine" msgstr "" -#: ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:29 +#: ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:30 msgid "Remove Volumes" msgstr "" -#: ../app/views/miq_policy/_event_details.html.haml:121 +#: ../app/views/miq_policy/_event_details.html.haml:104 msgid "Remove all Actions from this Event" msgstr "" @@ -17151,15 +17631,19 @@ msgstr "" msgid "Remove item" msgstr "" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:95 +#: ../app/helpers/application_helper/toolbar/hosts_center.rb:97 msgid "Remove items" msgstr "" -#: ../app/views/miq_policy/_event_details.html.haml:130 +#: ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:197 +msgid "Remove resources?" +msgstr "" + +#: ../app/views/miq_policy/_event_details.html.haml:113 msgid "Remove selected Actions from this Event" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:336 +#: ../app/views/miq_policy/_action_options.html.haml:328 msgid "Remove selected Alerts from this Action" msgstr "" @@ -17167,7 +17651,7 @@ msgstr "" msgid "Remove selected Alerts from this Profile" msgstr "" -#: ../app/helpers/application_helper/toolbar/arbitration_profiles_center.rb:25 +#: ../app/helpers/application_helper/toolbar/arbitration_profiles_center.rb:26 msgid "Remove selected Arbitration Profiles from the VMDB" msgstr "" @@ -17175,11 +17659,11 @@ msgstr "" msgid "Remove selected Block Storage Managers" msgstr "" -#: ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:30 +#: ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:32 msgid "Remove selected Catalog Items" msgstr "" -#: ../app/helpers/application_helper/toolbar/servicetemplatecatalogs_center.rb:25 +#: ../app/helpers/application_helper/toolbar/servicetemplatecatalogs_center.rb:26 msgid "Remove selected Catalogs" msgstr "" @@ -17187,7 +17671,7 @@ msgstr "" msgid "Remove selected Chargeback Rates from the VMDB" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:43 +#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:45 msgid "Remove selected Cloud Providers" msgstr "" @@ -17195,7 +17679,7 @@ msgstr "" msgid "Remove selected Conditions from this Policy" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:43 +#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:44 msgid "Remove selected Containers Providers" msgstr "" @@ -17207,11 +17691,11 @@ msgstr "" msgid "Remove selected Datastores" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:36 +#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:37 msgid "Remove selected Datawarehouse Providers" msgstr "" -#: ../app/helpers/application_helper/toolbar/dialogs_center.rb:36 ../app/helpers/application_helper/toolbar/miq_dialogs_center.rb:34 +#: ../app/helpers/application_helper/toolbar/miq_dialogs_center.rb:35 ../app/helpers/application_helper/toolbar/dialogs_center.rb:36 msgid "Remove selected Dialogs" msgstr "" @@ -17219,11 +17703,11 @@ msgstr "" msgid "Remove selected Domains" msgstr "" -#: ../app/helpers/application_helper/toolbar/iso_datastores_center.rb:17 +#: ../app/helpers/application_helper/toolbar/iso_datastores_center.rb:18 msgid "Remove selected ISO Datastores" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:43 +#: ../app/helpers/application_helper/toolbar/ems_physical_infras_center.rb:43 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:45 msgid "Remove selected Infrastructure Providers" msgstr "" @@ -17247,7 +17731,7 @@ msgstr "" msgid "Remove selected Methods" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:36 +#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:37 msgid "Remove selected Middleware Providers" msgstr "" @@ -17259,10 +17743,18 @@ msgstr "" msgid "Remove selected Network Providers" msgstr "" +#: ../app/helpers/application_helper/toolbar/cloud_object_store_containers_center.rb:16 +msgid "Remove selected Object Storage Containers" +msgstr "" + #: ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:22 msgid "Remove selected Object Storage Managers" msgstr "" +#: ../app/helpers/application_helper/toolbar/cloud_object_store_objects_center.rb:16 +msgid "Remove selected Object Storage Objects" +msgstr "" + #: ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:12 msgid "Remove selected Orchestration Stacks" msgstr "" @@ -17275,7 +17767,7 @@ msgstr "" msgid "Remove selected Orchestration Templates?" msgstr "" -#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:25 +#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:26 msgid "Remove selected PXE Servers" msgstr "" @@ -17287,27 +17779,27 @@ msgstr "" msgid "Remove selected Resource Pools" msgstr "" -#: ../app/helpers/application_helper/toolbar/services_center.rb:22 +#: ../app/helpers/application_helper/toolbar/service/vmdb_mixin.rb:23 msgid "Remove selected Services" msgstr "" -#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:45 ../app/helpers/application_helper/toolbar/ems_storages_center.rb:22 +#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:46 ../app/helpers/application_helper/toolbar/ems_storages_center.rb:22 msgid "Remove selected Storage Managers" msgstr "" -#: ../app/helpers/application_helper/toolbar/pxe_image_types_center.rb:25 +#: ../app/helpers/application_helper/toolbar/pxe_image_types_center.rb:26 msgid "Remove selected System Image Types" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:57 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:48 +#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:48 ../app/helpers/application_helper/toolbar/template_infras_center.rb:57 msgid "Remove selected Templates" msgstr "" -#: ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:28 +#: ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:29 msgid "Remove selected Volumes" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:57 ../app/helpers/application_helper/toolbar/vms_center.rb:48 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:32 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:59 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:67 ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:40 +#: ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:40 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:67 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:60 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:57 ../app/helpers/application_helper/toolbar/vms_center.rb:48 ../app/helpers/application_helper/toolbar/automation_manager_providers_center.rb:43 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:32 msgid "Remove selected items" msgstr "" @@ -17315,11 +17807,11 @@ msgstr "" msgid "Remove the current filter" msgstr "" -#: ../app/views/chargeback/_cb_rate_edit_table.html.haml:100 ../app/views/chargeback/_tier_row.haml:12 +#: ../app/views/chargeback/_tier_row.haml:12 ../app/views/chargeback/_cb_rate_edit_table.html.haml:100 msgid "Remove the tier" msgstr "" -#: ../app/controllers/application_controller/compare.rb:1506 +#: ../app/controllers/application_controller/compare.rb:1399 msgid "Remove this %{title} from the comparison" msgstr "" @@ -17327,15 +17819,11 @@ msgstr "" msgid "Remove this %{type}" msgstr "" -#: ../app/helpers/application_helper/toolbar/arbitration_profile_center.rb:19 -msgid "Remove this Arbitration Profile from the VMDB" -msgstr "" - -#: ../app/helpers/application_helper/toolbar/custom_button_center.rb:18 ../app/helpers/application_helper/toolbar/catalogitem_button_center.rb:19 +#: ../app/helpers/application_helper/toolbar/catalogitem_button_center.rb:19 ../app/helpers/application_helper/toolbar/custom_button_center.rb:18 msgid "Remove this Button" msgstr "" -#: ../app/helpers/application_helper/toolbar/custom_buttons_center.rb:25 ../app/helpers/application_helper/toolbar/catalogitem_buttons_center.rb:25 +#: ../app/helpers/application_helper/toolbar/catalogitem_buttons_center.rb:25 ../app/helpers/application_helper/toolbar/custom_buttons_center.rb:25 msgid "Remove this Button Group" msgstr "" @@ -17351,7 +17839,7 @@ msgstr "" msgid "Remove this Chargeback Rate from the VMDB" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_ae_fields_center.rb:24 ../app/helpers/application_helper/toolbar/miq_ae_methods_center.rb:24 ../app/helpers/application_helper/toolbar/miq_ae_instances_center.rb:24 ../app/helpers/application_helper/toolbar/miq_ae_class_center.rb:24 +#: ../app/helpers/application_helper/toolbar/miq_ae_fields_center.rb:24 ../app/helpers/application_helper/toolbar/miq_ae_instances_center.rb:24 ../app/helpers/application_helper/toolbar/miq_ae_class_center.rb:24 ../app/helpers/application_helper/toolbar/miq_ae_methods_center.rb:24 msgid "Remove this Class" msgstr "" @@ -17367,7 +17855,7 @@ msgstr "" msgid "Remove this Containers Provider" msgstr "" -#: ../app/views/catalog/_sandt_tree_show.html.haml:182 +#: ../app/views/catalog/_sandt_tree_show.html.haml:198 msgid "Remove this Custom Image" msgstr "" @@ -17375,7 +17863,7 @@ msgstr "" msgid "Remove this Customization Template" msgstr "" -#: ../app/helpers/application_helper/toolbar/storage_center.rb:19 +#: ../app/helpers/application_helper/toolbar/storage_center.rb:21 msgid "Remove this Datastore" msgstr "" @@ -17395,15 +17883,15 @@ msgstr "" msgid "Remove this ISO Datastore" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:36 +#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:38 msgid "Remove this Image" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:50 +#: ../app/helpers/application_helper/toolbar/ems_physical_infra_center.rb:29 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:50 msgid "Remove this Infrastructure Provider" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:36 ../app/helpers/application_helper/toolbar/miq_ae_instance_center.rb:24 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:37 +#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:39 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:37 ../app/helpers/application_helper/toolbar/miq_ae_instance_center.rb:24 msgid "Remove this Instance" msgstr "" @@ -17451,15 +17939,15 @@ msgstr "" msgid "Remove this Policy Profile" msgstr "" -#: ../app/helpers/application_helper/toolbar/inventory_group_center.rb:27 ../app/helpers/application_helper/toolbar/configuration_manager_provider_center.rb:27 +#: ../app/helpers/application_helper/toolbar/inventory_group_center.rb:27 ../app/helpers/application_helper/toolbar/automation_manager_provider_center.rb:29 ../app/helpers/application_helper/toolbar/configuration_manager_provider_center.rb:27 msgid "Remove this Provider" msgstr "" -#: ../app/views/catalog/_form_basic_info.html.haml:232 +#: ../app/views/catalog/_form_basic_info.html.haml:249 msgid "Remove this Provisioning Entry Point" msgstr "" -#: ../app/views/catalog/_form_basic_info.html.haml:271 +#: ../app/views/catalog/_form_basic_info.html.haml:288 msgid "Remove this Reconfigure Entry Point" msgstr "" @@ -17467,7 +17955,7 @@ msgstr "" msgid "Remove this Resource Pool" msgstr "" -#: ../app/views/catalog/_form_basic_info.html.haml:310 +#: ../app/views/catalog/_form_basic_info.html.haml:327 msgid "Remove this Retirement Entry Point" msgstr "" @@ -17487,7 +17975,7 @@ msgstr "" msgid "Remove this System Image Type" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:37 ../app/helpers/application_helper/toolbar/miq_template_center.rb:38 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:37 msgid "Remove this Template" msgstr "" @@ -17499,7 +17987,7 @@ msgstr "" msgid "Remove this Volume" msgstr "" -#: ../app/views/layouts/_exp_editor.html.haml:68 ../app/views/layouts/_exp_editor.html.haml:94 +#: ../app/views/layouts/_exp_editor.html.haml:85 ../app/views/layouts/_exp_editor.html.haml:110 msgid "Remove this expression element" msgstr "" @@ -17511,15 +17999,15 @@ msgstr "" msgid "Remove this widget" msgstr "" -#: ../app/helpers/application_helper/toolbar/custom_button_set_center.rb:30 ../app/helpers/application_helper/toolbar/catalogitem_button_set_center.rb:31 +#: ../app/helpers/application_helper/toolbar/custom_button_set_center.rb:31 ../app/helpers/application_helper/toolbar/catalogitem_button_set_center.rb:31 msgid "Reorder" msgstr "" -#: ../app/helpers/application_helper/toolbar/custom_button_set_center.rb:25 ../app/helpers/application_helper/toolbar/catalogitem_button_set_center.rb:26 +#: ../app/helpers/application_helper/toolbar/custom_button_set_center.rb:26 ../app/helpers/application_helper/toolbar/catalogitem_button_set_center.rb:26 msgid "Reorder Buttons Groups" msgstr "" -#: ../app/helpers/application_helper/toolbar/custom_button_set_center.rb:27 ../app/helpers/application_helper/toolbar/catalogitem_button_set_center.rb:28 +#: ../app/helpers/application_helper/toolbar/custom_button_set_center.rb:28 ../app/helpers/application_helper/toolbar/catalogitem_button_set_center.rb:28 msgid "Reorder Buttons and Groups" msgstr "" @@ -17535,11 +18023,11 @@ msgstr "" msgid "Replication" msgstr "" -#: ../app/controllers/ops_controller/settings/common.rb:215 ../app/controllers/ops_controller/settings/common.rb:231 ../app/controllers/ops_controller/settings/common.rb:234 +#: ../app/controllers/ops_controller/settings/common.rb:209 ../app/controllers/ops_controller/settings/common.rb:225 ../app/controllers/ops_controller/settings/common.rb:228 msgid "Replication configuration save was successful" msgstr "" -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:85 +#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:76 msgid "Replication will be disabled for this region" msgstr "" @@ -17547,7 +18035,7 @@ msgstr "" msgid "Replicator Compliance Policies" msgstr "" -#: ../app/presenters/tree_builder_condition.rb:22 +#: ../app/presenters/tree_builder_condition.rb:25 msgid "Replicator Conditions" msgstr "" @@ -17555,15 +18043,15 @@ msgstr "" msgid "Replicator Control Policies" msgstr "" -#: ../app/views/container_topology/show.html.haml:25 +#: ../app/presenters/menu/default_menu.rb:104 ../app/views/container_topology/show.html.haml:25 msgid "Replicators" msgstr "" -#: ../app/helpers/ui_constants.rb:628 ../app/views/miq_capacity/_bottlenecks_tabs.html.haml:7 ../app/views/miq_capacity/_planning_tabs.html.haml:7 ../app/views/miq_capacity/_utilization_tabs.html.haml:10 +#: ../app/helpers/ui_constants.rb:595 ../app/views/miq_capacity/_bottlenecks_tabs.html.haml:7 ../app/views/miq_capacity/_planning_tabs.html.haml:7 ../app/views/miq_capacity/_utilization_tabs.html.haml:10 msgid "Report" msgstr "" -#: ../app/controllers/chargeback_controller.rb:479 +#: ../app/controllers/chargeback_controller.rb:475 msgid "Report \"%{report_name}\"" msgstr "" @@ -17627,7 +18115,7 @@ msgstr "" msgid "Report is not Scheduled." msgstr "" -#: ../app/controllers/report_controller/saved_reports.rb:84 ../app/controllers/chargeback_controller.rb:353 +#: ../app/controllers/chargeback_controller.rb:349 ../app/controllers/report_controller/saved_reports.rb:84 msgid "Report is not authorized for the logged in user" msgstr "" @@ -17639,11 +18127,11 @@ msgstr "" msgid "Report not found." msgstr "" -#: ../app/controllers/report_controller/reports.rb:50 +#: ../app/controllers/report_controller/reports.rb:50 ../app/controllers/mixins/chargeback_preview.rb:11 msgid "Report preview generation returned: Status [%{status}] Message [%{message}]" msgstr "" -#: ../app/controllers/application_controller/timelines.rb:106 +#: ../app/controllers/application_controller/timelines.rb:110 msgid "Report: %{name}" msgstr "" @@ -17651,14 +18139,22 @@ msgstr "" msgid "Reporting Workers" msgstr "" -#: ../app/presenters/menu/default_menu.rb:22 ../app/helpers/ui_constants.rb:621 ../app/controllers/chargeback_controller.rb:320 ../app/controllers/report_controller.rb:20 ../app/controllers/report_controller.rb:274 ../app/views/configuration/_ui_1.html.haml:114 ../app/views/report/_role_list.html.haml:10 +#: ../app/presenters/menu/default_menu.rb:23 ../app/helpers/ui_constants.rb:588 ../app/controllers/report_controller.rb:20 ../app/controllers/report_controller.rb:278 ../app/controllers/chargeback_controller.rb:316 ../app/views/configuration/_ui_1.html.haml:113 ../app/views/report/_role_list.html.haml:10 msgid "Reports" msgstr "" -#: ../app/views/configuration/_timeprofile_form.html.haml:374 +#: ../app/views/configuration/_timeprofile_form.html.haml:369 msgid "Reports Currently Using This Time Profile" msgstr "" +#: ../app/presenters/menu/default_menu.rb:239 ../app/helpers/ansible_credential_helper/textual_summary.rb:30 +msgid "Repositories" +msgstr "" + +#: ../app/helpers/ansible_playbook_helper/textual_summary.rb:27 ../app/helpers/service_helper/textual_summary.rb:208 ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:10 ../app/views/catalog/_sandt_tree_show.html.haml:363 ../app/views/catalog/_sandt_tree_show.html.haml:522 +msgid "Repository" +msgstr "" + #: ../app/controllers/ops_controller/settings/rhn.rb:212 msgid "Repository Name" msgstr "" @@ -17671,15 +18167,15 @@ msgstr "" msgid "Repository Name(s):" msgstr "" -#: ../app/views/miq_policy/_action_details.html.haml:145 ../app/views/shared/buttons/_ab_show.html.haml:124 ../app/views/ops/_schedule_show.html.haml:114 ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:47 ../app/views/layouts/_ae_resolve_options.html.haml:63 +#: ../app/views/miq_policy/_action_details.html.haml:145 ../app/views/ops/_schedule_show.html.haml:114 ../app/views/shared/buttons/_ab_show.html.haml:124 ../app/views/layouts/_ae_resolve_options.html.haml:63 ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:47 msgid "Request" msgstr "" -#: ../app/controllers/miq_request_controller.rb:201 +#: ../app/controllers/miq_request_controller.rb:198 msgid "Request \"%{name}\" was %{task}" msgstr "" -#: ../app/controllers/miq_request_controller.rb:215 +#: ../app/controllers/miq_request_controller.rb:212 msgid "Request Approval" msgstr "" @@ -17687,7 +18183,7 @@ msgstr "" msgid "Request Date:" msgstr "" -#: ../app/controllers/miq_request_controller.rb:217 +#: ../app/controllers/miq_request_controller.rb:214 msgid "Request Denial" msgstr "" @@ -17703,11 +18199,11 @@ msgstr "" msgid "Request ID" msgstr "" -#: ../app/views/catalog/_form.html.haml:17 ../app/views/catalog/_form_request_info.html.haml:9 ../app/views/catalog/_sandt_tree_show.html.haml:21 ../app/views/catalog/_sandt_tree_show.html.haml:311 +#: ../app/views/catalog/_form_request_info.html.haml:9 ../app/views/catalog/_sandt_tree_show.html.haml:21 ../app/views/catalog/_sandt_tree_show.html.haml:327 ../app/views/catalog/_form.html.haml:17 msgid "Request Info" msgstr "" -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:11 ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:11 ../app/views/miq_request/_prov_host_dialog.html.haml:11 ../app/views/shared/views/_prov_dialog.html.haml:10 +#: ../app/views/miq_request/_prov_host_dialog.html.haml:11 ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:11 ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:11 ../app/views/shared/views/_prov_dialog.html.haml:10 msgid "Request Information" msgstr "" @@ -17719,31 +18215,31 @@ msgstr "" msgid "Request Type" msgstr "" -#: ../app/controllers/miq_request_controller.rb:186 +#: ../app/controllers/miq_request_controller.rb:183 msgid "Request approval was cancelled by the user" msgstr "" -#: ../app/controllers/miq_request_controller.rb:188 +#: ../app/controllers/miq_request_controller.rb:185 msgid "Request denial was cancelled by the user" msgstr "" -#: ../app/controllers/application_controller/buttons.rb:737 ../app/controllers/miq_ae_tools_controller.rb:409 +#: ../app/controllers/miq_ae_tools_controller.rb:409 ../app/controllers/application_controller/buttons.rb:737 msgid "Request is required" msgstr "" -#: ../app/helpers/application_helper/toolbar/vms_center.rb:113 +#: ../app/helpers/application_helper/toolbar/vms_center.rb:114 msgid "Request to Provision" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:132 +#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:134 msgid "Request to Provision Instances" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:148 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:149 msgid "Request to Provision VMs" msgstr "" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:159 +#: ../app/helpers/application_helper/toolbar/hosts_center.rb:161 msgid "Request to Provision items" msgstr "" @@ -17755,7 +18251,7 @@ msgstr "" msgid "Requested feed is invalid" msgstr "" -#: ../app/helpers/container_replicator_helper/textual_summary.rb:25 +#: ../app/helpers/container_replicator_helper/textual_summary.rb:28 msgid "Requested pods" msgstr "" @@ -17767,31 +18263,31 @@ msgstr "" msgid "Requester:" msgstr "" -#: ../app/presenters/menu/default_menu.rb:42 ../app/presenters/menu/default_menu.rb:73 ../app/presenters/menu/default_menu.rb:235 ../app/controllers/miq_request_controller.rb:109 ../app/controllers/miq_request_controller.rb:591 +#: ../app/presenters/menu/default_menu.rb:43 ../app/presenters/menu/default_menu.rb:74 ../app/presenters/menu/default_menu.rb:256 ../app/controllers/miq_request_controller.rb:109 ../app/controllers/miq_request_controller.rb:588 msgid "Requests" msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:258 ../app/helpers/container_template_helper/textual_summary.rb:26 ../app/views/ems_container/_form.html.haml:30 ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:23 ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:47 ../app/views/auth_key_pair_cloud/_form.html.haml:41 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:105 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:183 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:384 ../app/views/configuration/_timeprofile_form.html.haml:42 ../app/views/shared/views/ems_common/angular/_form.html.haml:30 ../app/views/shared/views/ems_common/angular/_form.html.haml:114 ../app/views/shared/views/ems_common/angular/_form.html.haml:141 ../app/views/shared/views/ems_common/angular/_form.html.haml:360 ../app/views/shared/views/ems_common/angular/_form.html.haml:384 ../app/views/ems_datawarehouse/_form.html.haml:30 ../app/views/provider_foreman/_form.html.haml:34 ../app/views/provider_foreman/_form.html.haml:125 ../app/views/service/_service_form.html.haml:43 ../app/views/ops/_schedule_form.html.haml:36 ../app/views/ops/_schedule_form.html.haml:60 ../app/views/ops/_tenant_form.html.haml:33 ../app/views/ops/_tenant_form.html.haml:57 ../app/views/ems_middleware/_form.html.haml:30 ../app/views/middleware_server/_add_datasource_step1.html.haml:33 ../app/views/middleware_server/_add_datasource_step1.html.haml:66 ../app/views/middleware_server/_add_datasource_step2.html.haml:32 ../app/views/middleware_server/_add_datasource_step2.html.haml:66 ../app/views/middleware_server/_add_datasource_step2.html.haml:100 ../app/views/middleware_server/_add_datasource_step3.html.haml:32 ../app/views/middleware_server/_add_datasource_step3.html.haml:64 ../app/views/middleware_server/_choose_datasource.html.haml:32 ../app/views/middleware_server/_add_jdbc_driver.html.haml:82 ../app/views/middleware_server/_add_jdbc_driver.html.haml:112 ../app/views/middleware_server/_add_jdbc_driver.html.haml:142 ../app/views/ems_infra/_form.html.haml:30 ../app/views/host/_form.html.haml:41 ../app/views/host/_form.html.haml:65 ../app/views/host/_form.html.haml:88 ../app/views/host/_form.html.haml:130 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:31 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:83 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:119 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:207 ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:61 ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:117 ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:49 ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:104 ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:150 ../app/views/layouts/angular-bootstrap/_edit_log_depot_settings_angular_bootstrap.html.haml:24 ../app/views/layouts/angular-bootstrap/_edit_log_depot_settings_angular_bootstrap.html.haml:59 ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:38 ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:104 ../app/views/layouts/angular/_auth_service_account_angular.html.haml:28 +#: ../app/helpers/container_template_helper/textual_summary.rb:27 ../app/helpers/provider_foreman_helper.rb:263 ../app/helpers/automation_manager_helper.rb:99 ../app/views/configuration/_timeprofile_form.html.haml:44 ../app/views/ops/_tenant_form.html.haml:33 ../app/views/ops/_tenant_form.html.haml:57 ../app/views/ops/_schedule_form.html.haml:36 ../app/views/ops/_schedule_form.html.haml:60 ../app/views/cloud_volume/new.html.haml:26 ../app/views/cloud_volume/new.html.haml:57 ../app/views/cloud_volume/new.html.haml:88 ../app/views/cloud_volume/new.html.haml:112 ../app/views/cloud_volume/new.html.haml:144 ../app/views/cloud_volume/new.html.haml:169 ../app/views/cloud_volume/new.html.haml:195 ../app/views/shared/views/ems_common/angular/_form.html.haml:30 ../app/views/shared/views/ems_common/angular/_form.html.haml:114 ../app/views/shared/views/ems_common/angular/_form.html.haml:141 ../app/views/shared/views/ems_common/angular/_form.html.haml:360 ../app/views/shared/views/ems_common/angular/_form.html.haml:384 ../app/views/ems_infra/_form.html.haml:30 ../app/views/ems_physical_infra/_form.html.haml:30 ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:185 ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:230 ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:241 ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:387 ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:419 ../app/views/layouts/angular/_auth_service_account_angular.html.haml:30 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:31 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:84 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:120 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:279 ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:51 ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:106 ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:152 ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:61 ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:117 ../app/views/layouts/angular-bootstrap/_edit_log_depot_settings_angular_bootstrap.html.haml:24 ../app/views/layouts/angular-bootstrap/_edit_log_depot_settings_angular_bootstrap.html.haml:59 ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:41 ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:107 ../app/views/ems_datawarehouse/_form.html.haml:30 ../app/views/provider_foreman/_form.html.haml:37 ../app/views/provider_foreman/_form.html.haml:128 ../app/views/auth_key_pair_cloud/_form.html.haml:41 ../app/views/host/_form.html.haml:41 ../app/views/host/_form.html.haml:65 ../app/views/host/_form.html.haml:88 ../app/views/host/_form.html.haml:130 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:105 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:183 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:381 ../app/views/middleware_server/_specify_driver.html.haml:22 ../app/views/middleware_server/_specify_driver.html.haml:55 ../app/views/middleware_server/_specify_driver.html.haml:88 ../app/views/middleware_server/_existing_driver.html.haml:19 ../app/views/middleware_server/_choose_datasource.html.haml:51 ../app/views/middleware_server/_add_jdbc_driver.html.haml:82 ../app/views/middleware_server/_add_jdbc_driver.html.haml:112 ../app/views/middleware_server/_add_jdbc_driver.html.haml:142 ../app/views/middleware_server/_add_datasource_step3.html.haml:32 ../app/views/middleware_server/_add_datasource_step3.html.haml:63 ../app/views/middleware_server/_add_datasource_step1.html.haml:33 ../app/views/middleware_server/_add_datasource_step1.html.haml:66 ../app/views/service/_service_form.html.haml:43 ../app/views/ems_container/_form.html.haml:30 ../app/views/ems_middleware/_form.html.haml:30 ../app/views/automation_manager/_form.html.haml:34 ../app/views/automation_manager/_form.html.haml:92 ../app/views/catalog/_st_angular_form.html.haml:35 ../app/views/catalog/_st_angular_form.html.haml:59 msgid "Required" msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:457 ../app/views/layouts/_multi_auth_credentials.html.haml:138 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:462 ../app/views/layouts/_multi_auth_credentials.html.haml:138 msgid "Required if SSH login is disabled for the Default account." msgstr "" -#: ../app/views/provider_foreman/_form.html.haml:174 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:199 ../app/views/layouts/_multi_auth_credentials.html.haml:59 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:202 ../app/views/layouts/_multi_auth_credentials.html.haml:59 ../app/views/provider_foreman/_form.html.haml:178 ../app/views/automation_manager/_form.html.haml:141 msgid "Required. Should have privileged access, such as root or administrator." msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:207 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:210 msgid "Required. Used to gather Utilization data." msgstr "" -#: ../app/helpers/ui_constants.rb:398 +#: ../app/helpers/ui_constants.rb:395 msgid "Reservation" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:215 ../app/helpers/application_helper/toolbar/x_edit_view.rb:22 ../app/helpers/application_helper/toolbar/x_vm_center.rb:225 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:265 ../app/helpers/application_helper/toolbar/hosts_center.rb:237 ../app/views/miq_capacity/planning.html.haml:19 ../app/views/miq_capacity/planning.html.haml:36 ../app/views/host_aggregate/edit.html.haml:45 ../app/views/host_aggregate/new.html.haml:98 ../app/views/miq_policy/_rsop_options.html.haml:22 ../app/views/miq_policy/_rsop_options.html.haml:40 ../app/views/miq_request/_prov_options.html.haml:127 ../app/views/miq_request/_prov_options.html.haml:153 ../app/views/cloud_volume/edit.html.haml:46 ../app/views/cloud_volume/attach.html.haml:64 ../app/views/cloud_volume/new.html.haml:99 ../app/views/cloud_volume/snapshot_new.html.haml:46 ../app/views/cloud_volume/backup_new.html.haml:63 ../app/views/cloud_volume/backup_select.html.haml:47 ../app/views/vm_common/_reconfigure.html.haml:413 ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:25 ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:51 ../app/views/ops/_settings_replication_tab.html.haml:500 ../app/views/ops/_settings_replication_tab.html.haml:506 ../app/views/miq_task/_tasks_options.html.haml:160 ../app/views/miq_task/_tasks_options.html.haml:185 ../app/views/layouts/_adv_search_footer.html.haml:54 ../app/views/layouts/_adv_search_footer.html.haml:57 ../app/views/layouts/_x_dialog_buttons.html.haml:39 ../app/views/layouts/_x_dialog_buttons.html.haml:68 ../app/views/layouts/_x_edit_buttons.html.haml:116 ../app/views/layouts/_x_edit_buttons.html.haml:161 ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:19 ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:27 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:35 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:43 ../app/views/layouts/_form_buttons.html.haml:49 ../app/views/layouts/_form_buttons.html.haml:56 ../app/views/layouts/_form_buttons.html.haml:79 ../app/views/layouts/_edit_form_buttons.html.haml:87 ../app/views/layouts/_edit_form_buttons.html.haml:103 ../app/views/layouts/_edit_form_buttons.html.haml:112 ../app/views/layouts/_edit_form_buttons.html.haml:151 ../app/views/layouts/_edit_buttons.html.haml:32 ../app/assets/javascripts/controllers/buttons/button_group_controller.js:7 ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:8 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:266 ../app/helpers/application_helper/toolbar/host_center.rb:220 ../app/helpers/application_helper/toolbar/x_vm_center.rb:234 ../app/helpers/application_helper/toolbar/hosts_center.rb:240 ../app/helpers/application_helper/toolbar/x_edit_view.rb:22 ../app/views/miq_policy/_rsop_options.html.haml:22 ../app/views/miq_policy/_rsop_options.html.haml:40 ../app/views/vm_common/_reconfigure.html.haml:408 ../app/views/miq_task/_tasks_options.html.haml:172 ../app/views/miq_task/_tasks_options.html.haml:197 ../app/views/miq_capacity/planning.html.haml:19 ../app/views/miq_capacity/planning.html.haml:36 ../app/views/host_aggregate/edit.html.haml:45 ../app/views/host_aggregate/new.html.haml:98 ../app/views/ops/_settings_replication_tab.html.haml:391 ../app/views/miq_request/_prov_options.html.haml:127 ../app/views/miq_request/_prov_options.html.haml:153 ../app/views/cloud_volume/edit.html.haml:46 ../app/views/cloud_volume/attach.html.haml:64 ../app/views/cloud_volume/backup_new.html.haml:63 ../app/views/cloud_volume/backup_select.html.haml:47 ../app/views/cloud_volume/new.html.haml:243 ../app/views/cloud_volume/snapshot_new.html.haml:46 ../app/views/layouts/_edit_buttons.html.haml:32 ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:12 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:21 ../app/views/layouts/angular/_generic_form_buttons.html.haml:21 ../app/views/layouts/_edit_form_buttons.html.haml:87 ../app/views/layouts/_edit_form_buttons.html.haml:103 ../app/views/layouts/_edit_form_buttons.html.haml:112 ../app/views/layouts/_edit_form_buttons.html.haml:151 ../app/views/layouts/_adv_search_footer.html.haml:58 ../app/views/layouts/_adv_search_footer.html.haml:64 ../app/views/layouts/_x_dialog_buttons.html.haml:39 ../app/views/layouts/_x_dialog_buttons.html.haml:68 ../app/views/layouts/_x_edit_buttons.html.haml:116 ../app/views/layouts/_x_edit_buttons.html.haml:161 ../app/views/layouts/_form_buttons.html.haml:49 ../app/views/layouts/_form_buttons.html.haml:56 ../app/views/layouts/_form_buttons.html.haml:79 ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:25 ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:51 ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:8 msgid "Reset" msgstr "" @@ -17803,7 +18299,7 @@ msgstr "" msgid "Reset All menus to defaults" msgstr "" -#: ../app/views/layouts/_x_dialog_buttons.html.haml:39 ../app/views/layouts/_x_edit_buttons.html.haml:116 ../app/views/layouts/_form_buttons.html.haml:49 ../app/views/layouts/_form_buttons.html.haml:56 ../app/views/layouts/_edit_form_buttons.html.haml:87 ../app/views/layouts/_edit_form_buttons.html.haml:103 ../app/views/layouts/_edit_form_buttons.html.haml:112 ../app/views/layouts/_edit_buttons.html.haml:32 ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:9 +#: ../app/views/layouts/_edit_buttons.html.haml:32 ../app/views/layouts/_edit_form_buttons.html.haml:87 ../app/views/layouts/_edit_form_buttons.html.haml:103 ../app/views/layouts/_edit_form_buttons.html.haml:112 ../app/views/layouts/_x_dialog_buttons.html.haml:39 ../app/views/layouts/_x_edit_buttons.html.haml:116 ../app/views/layouts/_form_buttons.html.haml:49 ../app/views/layouts/_form_buttons.html.haml:56 ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:9 msgid "Reset Changes" msgstr "" @@ -17811,7 +18307,7 @@ msgstr "" msgid "Reset Dashboard Widgets to the defaults" msgstr "" -#: ../app/controllers/application_controller.rb:1315 +#: ../app/controllers/application_controller.rb:1322 msgid "Reset Lockout Counter" msgstr "" @@ -17831,23 +18327,19 @@ msgstr "" msgid "Reset all options" msgstr "" -#: ../app/views/static/buttons.html.haml:41 ../app/views/static/buttons.html.haml:42 ../app/views/vm_common/_reconfigure.html.haml:413 ../app/views/vm_common/_reconfigure.html.haml:413 ../app/views/ops/_settings_replication_tab.html.haml:500 ../app/views/ops/_settings_replication_tab.html.haml:506 ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:19 ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:19 ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:27 ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:27 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:35 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:35 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:43 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:43 -msgid "Reset changes" -msgstr "" - -#: ../app/views/miq_request/_prov_options.html.haml:153 ../app/views/miq_task/_tasks_options.html.haml:185 +#: ../app/views/miq_task/_tasks_options.html.haml:197 ../app/views/miq_request/_prov_options.html.haml:153 msgid "Reset filter changes" msgstr "" -#: ../app/views/layouts/_adv_search_footer.html.haml:57 +#: ../app/views/layouts/_adv_search_footer.html.haml:64 msgid "Reset the filter" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:264 ../app/helpers/application_helper/toolbar/hosts_center.rb:236 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:265 ../app/helpers/application_helper/toolbar/hosts_center.rb:239 msgid "Reset the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:268 ../app/helpers/application_helper/toolbar/hosts_center.rb:240 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:269 ../app/helpers/application_helper/toolbar/hosts_center.rb:243 msgid "Reset the selected items?" msgstr "" @@ -17855,19 +18347,19 @@ msgstr "" msgid "Reset this Shortcut's text" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:224 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:233 msgid "Reset this VM" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:227 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:236 msgid "Reset this VM?" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:214 +#: ../app/helpers/application_helper/toolbar/host_center.rb:219 msgid "Reset this item" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:217 +#: ../app/helpers/application_helper/toolbar/host_center.rb:222 msgid "Reset this item?" msgstr "" @@ -17891,45 +18383,53 @@ msgstr "" msgid "Resolve conflicts to import the file" msgstr "" -#: ../app/controllers/vm_common.rb:1648 ../app/helpers/persistent_volume_helper/textual_summary.rb:30 ../app/helpers/container_project_helper/textual_summary.rb:22 ../app/helpers/container_project_helper/textual_summary.rb:43 +#: ../app/controllers/vm_common.rb:1456 ../app/helpers/container_project_helper/textual_summary.rb:29 ../app/helpers/container_project_helper/textual_summary.rb:51 ../app/helpers/persistent_volume_helper/textual_summary.rb:36 msgid "Resource" msgid_plural "Resources" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/vm_helper/textual_summary.rb:243 ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:45 ../app/views/shared/views/_prov_dialog.html.haml:118 -msgid "Resource Pool" +#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:10 +msgid "Resource Entity" +msgstr "" + +#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:12 +msgid "Resource Label" msgstr "" -#: ../app/controllers/application_controller/tree_support.rb:278 -msgid "Resource Pool: #%{name}" +#: ../app/presenters/tree_builder_datacenter.rb:13 ../app/helpers/vm_helper/textual_summary.rb:282 ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:46 ../app/views/shared/views/_prov_dialog.html.haml:118 +msgid "Resource Pool" msgstr "" -#: ../app/presenters/tree_builder_datacenter.rb:38 +#: ../app/presenters/tree_builder_datacenter.rb:57 msgid "Resource Pool: %{name}" msgstr "" -#: ../app/presenters/menu/default_menu.rb:69 ../app/controllers/resource_pool_controller.rb:19 ../app/views/configuration/_ui_2.html.haml:210 ../app/views/layouts/listnav/_ems_cluster.html.haml:79 ../app/views/layouts/listnav/_host.html.haml:120 +#: ../app/presenters/menu/default_menu.rb:70 ../app/helpers/resource_pool_helper/textual_summary.rb:135 ../app/views/configuration/_ui_2.html.haml:211 ../app/views/layouts/listnav/_host.html.haml:120 ../app/views/layouts/listnav/_resource_pool.html.haml:66 ../app/views/layouts/listnav/_ems_cluster.html.haml:79 msgid "Resource Pools" msgstr "" -#: ../app/views/container_project/_main.html.haml:9 +#: ../app/helpers/container_project_helper/textual_summary.rb:28 msgid "Resource Quota" msgstr "" -#: ../app/controllers/catalog_controller.rb:314 +#: ../app/views/ops/_label_tag_mapping_form.html.haml:12 +msgid "Resource entity and label" +msgstr "" + +#: ../app/controllers/catalog_controller.rb:317 msgid "Resource must be selected" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:170 ../app/helpers/orchestration_stack_helper/textual_summary.rb:128 ../app/helpers/vm_cloud_helper/textual_summary.rb:111 ../app/controllers/orchestration_stack_controller.rb:83 ../app/views/catalog/_form_resources_info.html.haml:8 ../app/views/catalog/_form.html.haml:12 ../app/views/catalog/_sandt_tree_show.html.haml:249 ../app/views/layouts/listnav/_orchestration_stack.html.haml:70 +#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:134 ../app/helpers/vm_cloud_helper/textual_summary.rb:122 ../app/helpers/vm_helper/textual_summary.rb:210 ../app/controllers/orchestration_stack_controller.rb:82 ../app/views/layouts/listnav/_orchestration_stack.html.haml:70 ../app/views/catalog/_form_resources_info.html.haml:8 ../app/views/catalog/_sandt_tree_show.html.haml:265 ../app/views/catalog/_form.html.haml:12 msgid "Resources" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:187 ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:36 ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:30 ../app/helpers/application_helper/toolbar/hosts_center.rb:204 ../app/controllers/middleware_server_controller.rb:46 ../app/controllers/middleware_server_controller.rb:81 ../app/controllers/application_controller/ci_processing.rb:2523 +#: ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:30 ../app/helpers/application_helper/toolbar/host_center.rb:192 ../app/helpers/application_helper/toolbar/hosts_center.rb:207 ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:36 ../app/controllers/middleware_server_group_controller.rb:22 ../app/controllers/middleware_server_controller.rb:48 ../app/controllers/middleware_server_controller.rb:83 ../app/controllers/application_controller/ci_processing.rb:2555 msgid "Restart" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:188 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:224 ../app/helpers/application_helper/tasks.rb:10 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:225 ../app/helpers/application_helper/toolbar/x_vm_center.rb:197 ../app/helpers/application_helper/tasks.rb:10 msgid "Restart Guest" msgstr "" @@ -17937,39 +18437,47 @@ msgstr "" msgid "Restart Server" msgstr "" +#: ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:30 +msgid "Restart Server Group" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:29 +msgid "Restart Servers in this Server Group" +msgstr "" + #: ../app/controllers/middleware_deployment_controller.rb:18 msgid "Restart initiated for selected deployment(s)" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:96 +#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:105 msgid "Restart selected worker" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:89 +#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:97 msgid "Restart server" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:223 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:224 msgid "Restart the Guest OS on the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:227 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:228 msgid "Restart the Guest OS on the selected items?" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:187 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:196 msgid "Restart the Guest OS on this VM" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:190 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:199 msgid "Restart the Guest OS on this VM?" msgstr "" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:203 +#: ../app/helpers/application_helper/toolbar/hosts_center.rb:206 msgid "Restart the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:207 +#: ../app/helpers/application_helper/toolbar/hosts_center.rb:210 msgid "Restart the selected items?" msgstr "" @@ -17981,11 +18489,11 @@ msgstr "" msgid "Restart this Middleware Deployment" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:186 +#: ../app/helpers/application_helper/toolbar/host_center.rb:191 msgid "Restart this item" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:189 +#: ../app/helpers/application_helper/toolbar/host_center.rb:194 msgid "Restart this item?" msgstr "" @@ -17993,7 +18501,7 @@ msgstr "" msgid "Restart this server" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:506 +#: ../app/controllers/cloud_volume_controller.rb:572 msgid "Restore %{model} \"%{name}\" from a Backup" msgstr "" @@ -18001,15 +18509,19 @@ msgstr "" msgid "Restore from a Backup of this Cloud Volume" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:520 +#: ../app/controllers/cloud_volume_controller.rb:586 msgid "Restore of %{model} \"%{name}\" was cancelled by the user" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:546 +#: ../app/controllers/cloud_volume_controller.rb:612 msgid "Restoring %{model} \"%{name}\" from backup" msgstr "" -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:68 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:245 ../app/controllers/middleware_server_controller.rb:27 +#: ../app/helpers/service_helper/textual_summary.rb:15 ../app/helpers/service_helper/textual_summary.rb:35 +msgid "Results" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:68 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:247 ../app/controllers/middleware_server_group_controller.rb:20 ../app/controllers/middleware_server_controller.rb:29 msgid "Resume" msgstr "" @@ -18017,11 +18529,19 @@ msgstr "" msgid "Resume Server" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:244 +#: ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:61 +msgid "Resume Server Group" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:60 +msgid "Resume Servers in this Server Group" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:246 msgid "Resume the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:248 +#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:250 msgid "Resume the selected items?" msgstr "" @@ -18037,23 +18557,23 @@ msgstr "" msgid "Resume this server" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:308 +#: ../app/controllers/application_controller/ci_processing.rb:327 msgid "Retire %{name}" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:208 +#: ../app/controllers/application_controller/ci_processing.rb:228 msgid "Retire Orchestration Stack" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:205 +#: ../app/controllers/application_controller/ci_processing.rb:225 msgid "Retire Service" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:202 +#: ../app/controllers/application_controller/ci_processing.rb:222 msgid "Retire VM or Instance" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1843 +#: ../app/controllers/application_controller/ci_processing.rb:1815 msgid "Retire does not apply to selected %{model}" msgstr "" @@ -18061,7 +18581,7 @@ msgstr "" msgid "Retire selected Orchestration Stacks" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:148 ../app/helpers/application_helper/toolbar/services_center.rb:81 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:192 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:193 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:150 ../app/helpers/application_helper/toolbar/service/lifecycle_mixin.rb:23 msgid "Retire selected items" msgstr "" @@ -18069,19 +18589,19 @@ msgstr "" msgid "Retire the selected Orchestration Stacks?" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:147 ../app/helpers/application_helper/toolbar/services_center.rb:80 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:191 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:192 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:149 ../app/helpers/application_helper/toolbar/service/lifecycle_mixin.rb:22 msgid "Retire the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:150 ../app/helpers/application_helper/toolbar/services_center.rb:83 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:194 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:195 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:152 ../app/helpers/application_helper/toolbar/service/lifecycle_mixin.rb:25 msgid "Retire the selected items?" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:130 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:95 +#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:98 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:133 msgid "Retire this Instance" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:132 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:97 +#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:100 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:135 msgid "Retire this Instance?" msgstr "" @@ -18089,39 +18609,47 @@ msgstr "" msgid "Retire this Orchestration Stack" msgstr "" -#: ../app/helpers/application_helper/toolbar/service_center.rb:70 +#: ../app/helpers/application_helper/toolbar/service_center.rb:73 msgid "Retire this Service" msgstr "" -#: ../app/helpers/application_helper/toolbar/service_center.rb:72 +#: ../app/helpers/application_helper/toolbar/service_center.rb:75 msgid "Retire this Service?" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:139 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:140 msgid "Retire this VM" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:141 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:142 msgid "Retire this VM?" msgstr "" -#: ../app/helpers/application_helper/tasks.rb:12 ../app/controllers/catalog_controller.rb:876 ../app/views/catalog/_sandt_tree_show.html.haml:145 +#: ../app/presenters/tree_builder_services.rb:31 ../app/presenters/tree_builder_services.rb:34 ../app/controllers/service_controller.rb:229 +msgid "Retired Services" +msgstr "" + +#: ../app/helpers/application_helper/tasks.rb:12 ../app/controllers/catalog_controller.rb:889 ../app/views/layouts/angular/_multi_tab_ansible_form_options.html.haml:11 ../app/views/service/_svcs_show.html.haml:19 ../app/views/catalog/_sandt_tree_show.html.haml:161 ../app/views/catalog/_sandt_tree_show.html.haml:346 msgid "Retirement" msgstr "" -#: ../app/helpers/service_helper/textual_summary.rb:66 ../app/helpers/vm_helper/textual_summary.rb:195 ../app/helpers/orchestration_stack_helper/textual_summary.rb:38 ../app/views/shared/views/_retire.html.haml:18 +#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:44 ../app/helpers/service_helper/textual_summary.rb:111 ../app/helpers/vm_helper/textual_summary.rb:235 ../app/views/shared/views/_retire.html.haml:18 msgid "Retirement Date" msgstr "" -#: ../app/views/catalog/_form_basic_info.html.haml:294 +#: ../app/views/catalog/_form_basic_info.html.haml:311 msgid "Retirement Entry Point" msgstr "" -#: ../app/views/catalog/_form_basic_info.html.haml:292 +#: ../app/views/catalog/_form_basic_info.html.haml:309 msgid "Retirement Entry Point (NameSpace/Class/Instance)" msgstr "" -#: ../app/helpers/service_helper/textual_summary.rb:72 +#: ../app/views/catalog/_sandt_tree_show.html.haml:511 +msgid "Retirement Info" +msgstr "" + +#: ../app/helpers/service_helper/textual_summary.rb:117 msgid "Retirement State" msgstr "" @@ -18129,19 +18657,19 @@ msgstr "" msgid "Retirement Warning" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:280 +#: ../app/controllers/application_controller/ci_processing.rb:299 msgid "Retirement date removed" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:290 +#: ../app/controllers/application_controller/ci_processing.rb:309 msgid "Retirement date set to %{date}" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:282 +#: ../app/controllers/application_controller/ci_processing.rb:301 msgid "Retirement dates removed" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:292 +#: ../app/controllers/application_controller/ci_processing.rb:311 msgid "Retirement dates set to %{date}" msgstr "" @@ -18153,7 +18681,11 @@ msgstr "" msgid "Retry state machine simulation, with preserved attributes" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:155 ../app/helpers/application_helper/toolbar/miq_template_center.rb:152 ../app/helpers/application_helper/toolbar/x_vm_center.rb:302 +#: ../app/views/ems_container/ad_hoc/_chart_view_form.html.haml:8 +msgid "Return to list view" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:158 ../app/helpers/application_helper/toolbar/x_vm_center.rb:319 msgid "Revert to selected snapshot" msgstr "" @@ -18161,19 +18693,19 @@ msgstr "" msgid "Review" msgstr "" -#: ../app/controllers/vm_common.rb:1793 +#: ../app/controllers/vm_common.rb:1605 msgid "Right Size Recommendation for %{vm_or_template} \"%{name}\"" msgstr "" -#: ../app/controllers/vm_common.rb:704 +#: ../app/controllers/vm_common.rb:558 msgid "Right Size VM '%{name}''" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:68 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:80 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:45 ../app/helpers/application_helper/toolbar/x_vm_center.rb:59 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:78 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:78 ../app/helpers/application_helper/toolbar/x_vm_center.rb:59 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:47 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:68 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:82 msgid "Right-Size Recommendations" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:855 +#: ../app/controllers/application_controller/ci_processing.rb:892 msgid "Right-Size Recommendations does not apply to selected %{model}" msgstr "" @@ -18189,15 +18721,15 @@ msgstr "" msgid "Right-Sizing (Moderate - derived from High NORM)" msgstr "" -#: ../app/views/ops/_selected_by_roles.html.haml:7 ../app/views/ops/_selected_by_servers.html.haml:168 ../app/views/ops/_rbac_user_details.html.haml:195 ../app/views/ops/_rbac_group_details.html.haml:55 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:244 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:25 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-no-provider-controller.js:94 +#: ../app/views/ops/_selected_by_roles.html.haml:7 ../app/views/ops/_rbac_group_details.html.haml:54 ../app/views/ops/_rbac_user_details.html.haml:194 ../app/views/ops/_selected_by_servers.html.haml:168 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:244 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-no-provider-controller.js:94 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:25 msgid "Role" msgstr "" -#: ../app/views/ops/_rbac_role_details.html.haml:14 +#: ../app/views/ops/_rbac_role_details.html.haml:13 msgid "Role Information" msgstr "" -#: ../app/views/_ldap_domain_form.html.haml:99 ../app/views/ops/_ldap_domain_show.html.haml:136 ../app/views/ops/_settings_authentication_tab.html.haml:256 ../app/views/ops/_settings_authentication_tab.html.haml:403 ../app/views/ops/_settings_authentication_tab.html.haml:492 ../app/views/ops/_ldap_domain_form.html.haml:99 +#: ../app/views/ops/_ldap_domain_show.html.haml:136 ../app/views/ops/_ldap_domain_form.html.haml:99 ../app/views/ops/_settings_authentication_tab.html.haml:256 ../app/views/ops/_settings_authentication_tab.html.haml:403 ../app/views/ops/_settings_authentication_tab.html.haml:494 ../app/views/_ldap_domain_form.html.haml:99 msgid "Role Settings" msgstr "" @@ -18205,11 +18737,11 @@ msgstr "" msgid "Role no longer exists" msgstr "" -#: ../app/presenters/tree_node_builder.rb:571 ../app/presenters/tree_node_builder.rb:575 +#: ../app/presenters/tree_node/server_role.rb:15 msgid "Role: %{description} (%{status})" msgstr "" -#: ../app/presenters/tree_builder_ops_rbac.rb:37 ../app/controllers/ops_controller.rb:673 ../app/controllers/ops_controller.rb:688 ../app/views/infra_topology/show.html.haml:52 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:153 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:159 +#: ../app/presenters/tree_builder_ops_rbac.rb:41 ../app/controllers/ops_controller.rb:712 ../app/controllers/ops_controller.rb:727 ../app/views/infra_topology/show.html.haml:71 ../app/views/physical_infra_topology/show.html.haml:52 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:153 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:159 msgid "Roles" msgstr "" @@ -18221,7 +18753,7 @@ msgstr "" msgid "Roles by Servers" msgstr "" -#: ../app/views/configuration/_timeprofile_form.html.haml:343 +#: ../app/views/configuration/_timeprofile_form.html.haml:339 msgid "Roll Up Daily Performance" msgstr "" @@ -18229,7 +18761,7 @@ msgstr "" msgid "Roll Up Performance" msgstr "" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:317 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:328 msgid "Root Device Type" msgstr "" @@ -18241,27 +18773,27 @@ msgstr "" msgid "Router Name" msgstr "" -#: ../app/controllers/network_router_controller.rb:142 +#: ../app/controllers/network_router_controller.rb:146 msgid "Router no longer exists." msgstr "" -#: ../app/controllers/network_router_controller.rb:190 +#: ../app/controllers/network_router_controller.rb:194 msgid "Router update failed: Task start failed: ID [%{id}]" msgstr "" -#: ../app/controllers/vm_common.rb:525 +#: ../app/controllers/vm_common.rb:379 msgid "Routers" msgstr "" -#: ../app/views/container_topology/show.html.haml:101 ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:67 +#: ../app/presenters/menu/default_menu.rb:102 ../app/views/container_topology/show.html.haml:101 ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:67 msgid "Routes" msgstr "" -#: ../app/views/report/_widget_form_report.html.haml:69 ../app/views/report/_widget_show.html.haml:268 ../app/views/report/_widget_form_rss.html.haml:86 +#: ../app/views/report/_widget_form_rss.html.haml:86 ../app/views/report/_widget_form_report.html.haml:69 ../app/views/report/_widget_show.html.haml:268 msgid "Row Count" msgstr "" -#: ../app/helpers/ops_helper/textual_summary.rb:101 ../app/views/ops/_db_info.html.haml:43 ../app/views/ops/_db_info.html.haml:136 ../app/views/ops/_db_info.html.haml:215 +#: ../app/helpers/ops_helper/textual_summary.rb:111 ../app/views/ops/_db_info.html.haml:43 ../app/views/ops/_db_info.html.haml:136 ../app/views/ops/_db_info.html.haml:215 msgid "Rows" msgstr "" @@ -18277,11 +18809,11 @@ msgstr "" msgid "Run" msgstr "" -#: ../app/helpers/container_helper/textual_summary.rb:114 +#: ../app/helpers/container_helper/textual_summary.rb:127 msgid "Run As Non Root" msgstr "" -#: ../app/helpers/container_helper/textual_summary.rb:89 +#: ../app/helpers/container_helper/textual_summary.rb:102 msgid "Run As User" msgstr "" @@ -18305,53 +18837,65 @@ msgstr "" msgid "Run a Database backup now" msgstr "" -#: ../app/views/miq_task/_tasks_options.html.haml:100 +#: ../app/views/miq_policy/_action_options.html.haml:611 +msgid "Run an Ansible Playbook" +msgstr "" + +#: ../app/views/miq_policy/_action_options.html.haml:648 ../app/views/miq_policy/_action_options.html.haml:653 +msgid "Run on localhost" +msgstr "" + +#: ../app/views/miq_policy/_action_options.html.haml:657 ../app/views/miq_policy/_action_options.html.haml:662 +msgid "Run on the target machine of the alert" +msgstr "" + +#: ../app/views/miq_task/_tasks_options.html.haml:104 msgid "Running" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:47 ../app/helpers/host_helper/textual_summary.rb:78 +#: ../app/helpers/host_helper/textual_summary.rb:85 ../app/helpers/ems_cluster_helper/textual_summary.rb:58 msgid "Running (%{number})" msgstr "" -#: ../app/controllers/vm_common.rb:1644 +#: ../app/controllers/vm_common.rb:1452 msgid "Running Process" msgid_plural "Running Processes" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/vm_helper/textual_summary.rb:657 ../app/helpers/vm_cloud_helper/textual_summary.rb:223 ../app/controllers/vm_common.rb:467 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:234 ../app/helpers/vm_helper/textual_summary.rb:696 ../app/controllers/vm_common.rb:321 msgid "Running Processes" msgstr "" -#: ../app/controllers/host_controller.rb:197 +#: ../app/controllers/host_controller.rb:149 msgid "Running system services of %{name}" msgstr "" -#: ../app/views/middleware_server/_deploy.html.haml:81 +#: ../app/views/middleware_shared/_deploy.html.haml:84 msgid "Runtime Name" msgstr "" -#: ../app/presenters/tree_node_builder.rb:374 +#: ../app/presenters/tree_node/miq_scsi_target.rb:6 msgid "SCSI Target %{target}" msgstr "" -#: ../app/presenters/tree_node_builder.rb:376 +#: ../app/presenters/tree_node/miq_scsi_target.rb:8 msgid "SCSI Target %{target} (%{name})" msgstr "" -#: ../app/helpers/container_helper/textual_summary.rb:110 +#: ../app/helpers/container_helper/textual_summary.rb:123 msgid "SELinux Level" msgstr "" -#: ../app/helpers/container_helper/textual_summary.rb:100 +#: ../app/helpers/container_helper/textual_summary.rb:113 msgid "SELinux Role" msgstr "" -#: ../app/helpers/container_helper/textual_summary.rb:105 +#: ../app/helpers/container_helper/textual_summary.rb:118 msgid "SELinux Type" msgstr "" -#: ../app/helpers/container_helper/textual_summary.rb:95 +#: ../app/helpers/container_helper/textual_summary.rb:108 msgid "SELinux User" msgstr "" @@ -18367,35 +18911,35 @@ msgstr "" msgid "SMTP E-mail Server settings and Test E-mail Address are needed to send test email" msgstr "" -#: ../app/views/miq_policy/_action_details.html.haml:333 ../app/views/miq_policy/_alert_snmp.html.haml:9 +#: ../app/views/miq_policy/_alert_snmp.html.haml:9 ../app/views/miq_policy/_action_details.html.haml:333 msgid "SNMP Trap" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:369 +#: ../app/views/miq_policy/_action_options.html.haml:361 msgid "SNMP Trap Settings" msgstr "" -#: ../app/views/vm_common/console_spice.html.haml:9 -msgid "SPICE Console" -msgstr "" - -#: ../app/helpers/textual_summary_helper.rb:173 +#: ../app/helpers/textual_summary_helper.rb:187 msgid "SSH Key Pair" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:420 +#: ../app/helpers/host_helper/textual_summary.rb:383 msgid "SSH Root" msgstr "" -#: ../app/controllers/ems_common.rb:864 +#: ../app/controllers/ems_common.rb:749 ../app/controllers/ems_common.rb:766 msgid "SSL" msgstr "" -#: ../app/views/ops/_settings_server_tab.html.haml:457 +#: ../app/views/ops/_settings_server_tab.html.haml:421 msgid "SSL Verify Mode" msgstr "" -#: ../app/controllers/ems_common.rb:864 +#: ../app/controllers/ems_common.rb:767 +msgid "SSL trusting custom CA" +msgstr "" + +#: ../app/controllers/ems_common.rb:749 ../app/controllers/ems_common.rb:768 msgid "SSL without validation" msgstr "" @@ -18403,27 +18947,27 @@ msgstr "" msgid "SSO Login" msgstr "" -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:56 ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:111 +#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:111 ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:56 msgid "Same as Master configuration" msgstr "" -#: ../app/controllers/application_controller/compare.rb:999 ../app/controllers/application_controller/compare.rb:1002 ../app/controllers/application_controller/compare.rb:1043 +#: ../app/controllers/application_controller/compare.rb:895 ../app/controllers/application_controller/compare.rb:898 ../app/controllers/application_controller/compare.rb:939 msgid "Same as previous" msgstr "" -#: ../app/views/miq_ae_customization/_dialog_details.html.haml:15 ../app/views/report/_form_styling.html.haml:126 +#: ../app/views/report/_form_styling.html.haml:126 ../app/views/miq_ae_customization/_dialog_details.html.haml:15 msgid "Sample" msgstr "" -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:297 +#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:288 msgid "Sample %{model} \"%{name}\" can not be edited" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:646 +#: ../app/helpers/application_helper/button/ap_delete.rb:5 msgid "Sample Analysis Profile cannot be deleted" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:648 +#: ../app/helpers/application_helper/button/ap_edit.rb:5 msgid "Sample Analysis Profile cannot be edited" msgstr "" @@ -18435,27 +18979,23 @@ msgstr "" msgid "Sample Timeline" msgstr "" -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 +#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 msgid "Saturday" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:15 ../app/views/host_aggregate/edit.html.haml:39 ../app/views/host_aggregate/new.html.haml:92 ../app/views/miq_ae_customization/_dialog_sample.html.haml:149 ../app/views/shared/dialogs/_dialog_field.html.haml:48 ../app/views/shared/views/_retire.html.haml:99 ../app/views/shared/views/_retire.html.haml:99 ../app/views/cloud_volume/edit.html.haml:40 ../app/views/cloud_volume/new.html.haml:93 ../app/views/cloud_volume/snapshot_new.html.haml:40 ../app/views/cloud_volume/backup_new.html.haml:57 ../app/views/cloud_volume/backup_select.html.haml:41 ../app/views/ops/_settings_replication_tab.html.haml:488 ../app/views/ops/_settings_replication_tab.html.haml:488 ../app/views/ops/_settings_replication_tab.html.haml:494 ../app/views/ops/_settings_replication_tab.html.haml:494 ../app/views/ops/_ap_form_nteventlog.html.haml:106 ../app/views/ops/_ap_form_nteventlog.html.haml:173 ../app/views/ops/_ap_form_registry.html.haml:81 ../app/views/ops/_ap_form_registry.html.haml:128 ../app/views/ops/_classification_entry.html.haml:58 ../app/views/ops/_ap_form_file.html.haml:62 ../app/views/ops/_ap_form_file.html.haml:119 ../app/views/layouts/_adv_search_footer.html.haml:84 ../app/views/layouts/_x_dialog_buttons.html.haml:18 ../app/views/layouts/_x_dialog_buttons.html.haml:59 ../app/views/layouts/_x_edit_buttons.html.haml:101 ../app/views/layouts/_x_edit_buttons.html.haml:108 ../app/views/layouts/_x_edit_buttons.html.haml:157 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:19 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:27 ../app/views/layouts/_form_buttons.html.haml:14 ../app/views/layouts/_form_buttons.html.haml:21 ../app/views/layouts/_form_buttons.html.haml:29 ../app/views/layouts/_form_buttons.html.haml:39 ../app/views/layouts/_form_buttons.html.haml:77 ../app/views/layouts/_edit_form_buttons.html.haml:25 ../app/views/layouts/_edit_form_buttons.html.haml:47 ../app/views/layouts/_edit_form_buttons.html.haml:56 ../app/views/layouts/_edit_form_buttons.html.haml:76 ../app/views/layouts/_edit_form_buttons.html.haml:148 ../app/views/layouts/_edit_buttons.html.haml:23 ../app/views/layouts/_edit_buttons.html.haml:58 ../app/assets/javascripts/controllers/buttons/button_group_controller.js:6 ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:4 +#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:15 ../app/views/host_aggregate/edit.html.haml:39 ../app/views/host_aggregate/new.html.haml:92 ../app/views/ops/_ap_form_registry.html.haml:81 ../app/views/ops/_ap_form_registry.html.haml:128 ../app/views/ops/_ap_form_file.html.haml:62 ../app/views/ops/_ap_form_file.html.haml:119 ../app/views/ops/_settings_replication_tab.html.haml:385 ../app/views/ops/_classification_entry.html.haml:58 ../app/views/ops/_ap_form_nteventlog.html.haml:106 ../app/views/ops/_ap_form_nteventlog.html.haml:173 ../app/views/cloud_volume/edit.html.haml:40 ../app/views/cloud_volume/backup_new.html.haml:57 ../app/views/cloud_volume/backup_select.html.haml:41 ../app/views/cloud_volume/new.html.haml:237 ../app/views/cloud_volume/snapshot_new.html.haml:40 ../app/views/shared/dialogs/_dialog_field.html.haml:58 ../app/views/shared/views/_retire.html.haml:99 ../app/views/shared/views/_retire.html.haml:99 ../app/views/layouts/_edit_buttons.html.haml:23 ../app/views/layouts/_edit_buttons.html.haml:58 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:13 ../app/views/layouts/angular/_generic_form_buttons.html.haml:13 ../app/views/layouts/_edit_form_buttons.html.haml:25 ../app/views/layouts/_edit_form_buttons.html.haml:47 ../app/views/layouts/_edit_form_buttons.html.haml:56 ../app/views/layouts/_edit_form_buttons.html.haml:76 ../app/views/layouts/_edit_form_buttons.html.haml:148 ../app/views/layouts/_adv_search_footer.html.haml:45 ../app/views/layouts/_adv_search_footer.html.haml:51 ../app/views/layouts/_adv_search_footer.html.haml:91 ../app/views/layouts/_x_dialog_buttons.html.haml:18 ../app/views/layouts/_x_dialog_buttons.html.haml:59 ../app/views/layouts/_x_edit_buttons.html.haml:101 ../app/views/layouts/_x_edit_buttons.html.haml:108 ../app/views/layouts/_x_edit_buttons.html.haml:157 ../app/views/layouts/_form_buttons.html.haml:14 ../app/views/layouts/_form_buttons.html.haml:21 ../app/views/layouts/_form_buttons.html.haml:29 ../app/views/layouts/_form_buttons.html.haml:39 ../app/views/layouts/_form_buttons.html.haml:77 ../app/views/miq_ae_customization/_dialog_sample.html.haml:148 ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:4 msgid "Save" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:14 ../app/views/layouts/_x_dialog_buttons.html.haml:18 ../app/views/layouts/_x_edit_buttons.html.haml:108 ../app/views/layouts/_form_buttons.html.haml:1 ../app/views/layouts/_edit_form_buttons.html.haml:1 ../app/views/layouts/_edit_buttons.html.haml:23 ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:5 +#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:14 ../app/views/layouts/_edit_buttons.html.haml:23 ../app/views/layouts/_edit_form_buttons.html.haml:1 ../app/views/layouts/_x_dialog_buttons.html.haml:18 ../app/views/layouts/_x_edit_buttons.html.haml:108 ../app/views/layouts/_form_buttons.html.haml:1 ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:5 msgid "Save Changes" msgstr "" -#: ../app/views/static/buttons.html.haml:22 ../app/views/static/buttons.html.haml:23 ../app/views/static/buttons.html.haml:32 ../app/views/static/buttons.html.haml:33 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:19 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:19 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:27 ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:27 -msgid "Save changes" -msgstr "" - -#: ../app/views/layouts/_adv_search_footer.html.haml:47 +#: ../app/views/layouts/_adv_search_footer.html.haml:51 msgid "Save the current filter" msgstr "" -#: ../app/views/layouts/_adv_search_footer.html.haml:84 +#: ../app/views/layouts/_adv_search_footer.html.haml:91 msgid "Save the current search" msgstr "" @@ -18463,31 +19003,27 @@ msgstr "" msgid "Save this %{model} search as:" msgstr "" -#: ../app/views/layouts/_adv_search_footer.html.haml:44 ../app/views/layouts/_adv_search_footer.html.haml:47 -msgid "Save..." -msgstr "" - -#: ../app/controllers/chargeback_controller.rb:436 +#: ../app/controllers/chargeback_controller.rb:432 msgid "Saved Chargeback Report \"%{last_run_on}\"" msgstr "" -#: ../app/controllers/chargeback_controller.rb:351 +#: ../app/controllers/chargeback_controller.rb:347 msgid "Saved Chargeback Report [%{name}]" msgstr "" -#: ../app/presenters/tree_builder_chargeback_reports.rb:14 +#: ../app/presenters/tree_builder_chargeback_reports.rb:15 msgid "Saved Chargeback Reports" msgstr "" -#: ../app/controllers/chargeback_controller.rb:450 +#: ../app/controllers/chargeback_controller.rb:446 msgid "Saved Chargeback Reports \"%{report_name}\"" msgstr "" -#: ../app/controllers/report_controller.rb:417 +#: ../app/controllers/report_controller.rb:421 msgid "Saved Report \"%{name} - %{timestamp}\"" msgstr "" -#: ../app/controllers/report_controller/saved_reports.rb:23 ../app/controllers/report_controller.rb:441 +#: ../app/controllers/report_controller.rb:445 ../app/controllers/report_controller/saved_reports.rb:23 msgid "Saved Report \"%{name}\"" msgstr "" @@ -18503,7 +19039,7 @@ msgstr "" msgid "Saved Report: %{report_name}" msgstr "" -#: ../app/controllers/report_controller.rb:269 ../app/views/report/_report_list.html.haml:202 +#: ../app/controllers/report_controller.rb:273 ../app/views/report/_report_list.html.haml:202 msgid "Saved Reports" msgstr "" @@ -18519,11 +19055,11 @@ msgstr "" msgid "Scale Down" msgstr "" -#: ../app/controllers/ems_infra_controller.rb:40 ../app/views/ems_infra/scaling.html.haml:59 +#: ../app/controllers/ems_infra_controller.rb:41 ../app/views/ems_infra/scaling.html.haml:59 msgid "Scale Infrastructure Provider" msgstr "" -#: ../app/controllers/ems_infra_controller.rb:81 ../app/views/ems_infra/scaledown.html.haml:89 +#: ../app/controllers/ems_infra_controller.rb:82 ../app/views/ems_infra/scaledown.html.haml:89 msgid "Scale Infrastructure Provider Down" msgstr "" @@ -18535,29 +19071,29 @@ msgstr "" msgid "Scale this Infrastructure Provider down" msgstr "" -#: ../app/controllers/ems_infra_controller.rb:62 +#: ../app/controllers/ems_infra_controller.rb:63 msgid "Scaling" msgstr "" -#: ../app/controllers/vm_common.rb:1650 +#: ../app/controllers/vm_common.rb:1458 msgid "Scan History" msgid_plural "Scan History" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/ui_constants.rb:415 +#: ../app/helpers/ui_constants.rb:412 msgid "Scanning" msgstr "" -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:82 ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:60 ../app/views/miq_request/_prov_host_dialog.html.haml:117 ../app/views/shared/views/_prov_dialog.html.haml:408 ../app/views/report/_show_schedule.html.haml:3 +#: ../app/views/miq_request/_prov_host_dialog.html.haml:117 ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:83 ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:60 ../app/views/shared/views/_prov_dialog.html.haml:408 ../app/views/report/_show_schedule.html.haml:3 msgid "Schedule Info" msgstr "" -#: ../app/presenters/tree_builder_ops_settings.rb:33 ../app/controllers/report_controller.rb:279 ../app/views/ops/_settings_evm_servers_tab.html.haml:148 ../app/views/ops/_settings_details_tab.html.haml:101 ../app/views/report/_report_info.html.haml:109 +#: ../app/presenters/tree_builder_ops_settings.rb:37 ../app/controllers/report_controller.rb:283 ../app/views/ops/_settings_details_tab.html.haml:101 ../app/views/ops/_settings_evm_servers_tab.html.haml:148 ../app/views/report/_report_info.html.haml:109 msgid "Schedules" msgstr "" -#: ../app/views/miq_ae_class/_class_fields.html.haml:8 ../app/views/miq_ae_class/_class_fields.html.haml:69 ../app/views/miq_ae_class/_all_tabs.html.haml:17 +#: ../app/views/miq_ae_class/_all_tabs.html.haml:17 ../app/views/miq_ae_class/_class_fields.html.haml:8 ../app/views/miq_ae_class/_class_fields.html.haml:69 msgid "Schema" msgstr "" @@ -18565,7 +19101,7 @@ msgstr "" msgid "Schema for %{model} \"%{name}\" was saved" msgstr "" -#: ../app/views/miq_policy/_condition_details.html.haml:45 ../app/views/miq_policy/_policy_details.html.haml:113 ../app/views/miq_policy/_policy_details.html.haml:256 ../app/views/configuration/_timeprofile_form.html.haml:51 +#: ../app/presenters/tree_builder_policy_simulation_results.rb:95 ../app/presenters/tree_builder_policy_simulation.rb:115 ../app/views/miq_policy/_policy_details.html.haml:113 ../app/views/miq_policy/_policy_details.html.haml:256 ../app/views/miq_policy/_condition_details.html.haml:45 ../app/views/configuration/_timeprofile_form.html.haml:53 msgid "Scope" msgstr "" @@ -18581,10 +19117,6 @@ msgstr "" msgid "Scope (Press the \"Edit\" button to edit the scope)" msgstr "" -#: ../app/presenters/tree_builder_policy_simulation.rb:114 -msgid "Scope: " -msgstr "" - #: ../app/views/miq_policy/_policy_details.html.haml:227 msgid "Scopes / Expressions" msgstr "" @@ -18593,7 +19125,7 @@ msgstr "" msgid "Script" msgstr "" -#: ../app/views/shared/_topology_header.html.haml:31 ../app/views/shared/_topology_header_toolbar.html.haml:29 ../app/views/shared/_topology_header_toolbar.html.haml:32 ../app/views/layouts/_x_adv_searchbox.html.haml:24 ../app/views/layouts/_searchbar.html.haml:23 +#: ../app/views/shared/_topology_header_toolbar.html.haml:29 ../app/views/shared/_topology_header_toolbar.html.haml:32 ../app/views/shared/_topology_header.html.haml:31 ../app/views/layouts/_searchbar.html.haml:23 ../app/views/layouts/_x_adv_searchbox.html.haml:24 msgid "Search" msgstr "" @@ -18609,7 +19141,7 @@ msgstr "" msgid "Search Name is required" msgstr "" -#: ../app/views/layouts/_x_adv_searchbox.html.haml:24 ../app/views/layouts/_searchbar.html.haml:23 ../app/views/layouts/_searchbar.html.haml:23 +#: ../app/views/layouts/_searchbar.html.haml:23 ../app/views/layouts/_searchbar.html.haml:23 ../app/views/layouts/_x_adv_searchbox.html.haml:24 msgid "Search by Name within results" msgstr "" @@ -18617,7 +19149,7 @@ msgstr "" msgid "Second" msgstr "" -#: ../app/views/report/_report_info.html.haml:31 ../app/views/report/_report_list.html.haml:122 +#: ../app/views/report/_report_list.html.haml:122 ../app/views/report/_report_info.html.haml:31 msgid "Secondary (Display) Filter" msgstr "" @@ -18625,11 +19157,11 @@ msgstr "" msgid "Secondary (Display) Filter - Filters the rows based on child table fields" msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 ../app/views/layouts/_multi_auth_credentials.html.haml:44 ../app/views/layouts/_multi_auth_credentials.html.haml:66 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:72 ../app/views/layouts/_multi_auth_credentials.html.haml:44 ../app/views/layouts/_multi_auth_credentials.html.haml:66 msgid "Secret Access Key" msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:72 msgid "Secret Access Keys do not match" msgstr "" @@ -18637,7 +19169,7 @@ msgstr "" msgid "Secret Key" msgstr "" -#: ../app/helpers/container_group_helper/textual_summary.rb:53 +#: ../app/helpers/container_group_helper/textual_summary.rb:63 msgid "Secret Name" msgstr "" @@ -18645,27 +19177,55 @@ msgstr "" msgid "Section" msgstr "" -#: ../app/views/vm_common/_main.html.haml:31 ../app/views/ops/_settings_server_tab.html.haml:603 ../app/views/vm_cloud/_main.html.haml:30 ../app/views/host/_main.html.haml:19 ../app/views/layouts/listnav/_host.html.haml:182 +#: ../app/helpers/host_helper/textual_summary.rb:28 ../app/helpers/vm_cloud_helper/textual_summary.rb:32 ../app/helpers/vm_helper/textual_summary.rb:64 ../app/views/ops/_settings_server_tab.html.haml:567 ../app/views/layouts/listnav/_host.html.haml:151 msgid "Security" msgstr "" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:92 +#: ../app/views/middleware_server/_add_datasource_step3.html.haml:90 msgid "Security Domain" msgstr "" -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:175 -msgid "Security Group" +#: ../app/controllers/security_group_controller.rb:99 +msgid "Security Group \"%{name}\" created" msgstr "" -#: ../app/presenters/menu/default_menu.rb:142 ../app/helpers/ems_network_helper/textual_summary.rb:63 ../app/controllers/vm_common.rb:505 ../app/controllers/ems_common.rb:98 ../app/views/network_topology/show.html.haml:71 ../app/views/layouts/listnav/_cloud_tenant.html.haml:28 ../app/views/layouts/listnav/_orchestration_stack.html.haml:46 -msgid "Security Groups" +#: ../app/controllers/security_group_controller.rb:217 +msgid "Security Group \"%{name}\" updated" msgstr "" -#: ../app/views/ems_infra/_form_fields.html.haml:25 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:142 -msgid "Security Protocol" +#: ../app/views/security_group/_common_new_edit.html.haml:30 +msgid "Security Group Description" msgstr "" -#: ../app/views/shared/views/_prov_dialog.html.haml:37 +#: ../app/views/security_group/_common_new_edit.html.haml:3 +msgid "Security Group Information" +msgstr "" + +#: ../app/views/security_group/_common_new_edit.html.haml:12 +msgid "Security Group Name" +msgstr "" + +#: ../app/controllers/security_group_controller.rb:77 +msgid "Security Group creation: Task start failed: ID [%{id}]" +msgstr "" + +#: ../app/controllers/security_group_controller.rb:131 +msgid "Security Group no longer exists." +msgstr "" + +#: ../app/controllers/security_group_controller.rb:195 +msgid "Security Group update failed: Task start failed: ID [%{id}]" +msgstr "" + +#: ../app/presenters/menu/default_menu.rb:145 ../app/helpers/ems_network_helper/textual_summary.rb:70 ../app/controllers/vm_common.rb:359 ../app/views/layouts/listnav/_cloud_tenant.html.haml:28 ../app/views/layouts/listnav/_orchestration_stack.html.haml:46 ../app/views/network_topology/show.html.haml:90 +msgid "Security Groups" +msgstr "" + +#: ../app/views/ems_infra/_form_fields.html.haml:25 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:144 +msgid "Security Protocol" +msgstr "" + +#: ../app/views/shared/views/_prov_dialog.html.haml:37 msgid "Select" msgstr "" @@ -18673,7 +19233,7 @@ msgstr "" msgid "Select %{host} to validate against" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:287 +#: ../app/views/miq_policy/_action_options.html.haml:279 msgid "Select Alerts to be Evaluated" msgstr "" @@ -18681,7 +19241,7 @@ msgstr "" msgid "Select All" msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:335 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:340 msgid "Select Ceilometer if eventing is not enabled on AMQP." msgstr "" @@ -18693,7 +19253,7 @@ msgstr "" msgid "Select Destination Host" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:49 +#: ../app/controllers/miq_ae_customization_controller.rb:50 msgid "Select Dialogs to import" msgstr "" @@ -18701,7 +19261,7 @@ msgstr "" msgid "Select Entry Point %{entry_point}" msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:627 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:633 msgid "Select Host to validate against" msgstr "" @@ -18721,11 +19281,11 @@ msgstr "" msgid "Select Server:" msgstr "" -#: ../app/controllers/ops_controller.rb:338 +#: ../app/controllers/ops_controller.rb:377 msgid "Select Start date and End date to Collect C & U Data" msgstr "" -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:26 ../app/views/miq_request/_prov_host_dialog.html.haml:26 ../app/views/shared/views/_prov_dialog.html.haml:28 +#: ../app/views/miq_request/_prov_host_dialog.html.haml:26 ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:26 ../app/views/shared/views/_prov_dialog.html.haml:28 msgid "Select Tags to apply" msgstr "" @@ -18737,7 +19297,7 @@ msgstr "" msgid "Select a Policy Profile to add:" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:128 +#: ../app/views/miq_policy/_action_options.html.haml:127 msgid "Select a Tag to Apply" msgstr "" @@ -18761,7 +19321,7 @@ msgstr "" msgid "Select a node on the left to view Bottlenecks timeline." msgstr "" -#: ../app/views/miq_capacity/_utilization_summary.html.haml:51 ../app/views/miq_capacity/_utilization_details.html.haml:16 +#: ../app/views/miq_capacity/_utilization_details.html.haml:16 ../app/views/miq_capacity/_utilization_summary.html.haml:51 msgid "Select a node on the left to view Utilization information." msgstr "" @@ -18773,19 +19333,19 @@ msgstr "" msgid "Select a reference VM or Manual Input source to Submit the Planning Options" msgstr "" -#: ../app/helpers/application_helper/toolbar/arbitration_profiles_center.rb:17 +#: ../app/helpers/application_helper/toolbar/arbitration_profiles_center.rb:18 msgid "Select a single Arbitration Profile to edit" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:35 +#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:37 msgid "Select a single Cloud Provider to edit" msgstr "" -#: ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:17 +#: ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:18 msgid "Select a single Cloud Tenant to edit" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:35 +#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:36 msgid "Select a single Containers Provider to edit" msgstr "" @@ -18797,7 +19357,7 @@ msgstr "" msgid "Select a single Customization Templates to edit" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:28 +#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:29 msgid "Select a single Datawarehouse Providers to edit" msgstr "" @@ -18809,15 +19369,15 @@ msgstr "" msgid "Select a single Group to edit" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:26 +#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:27 msgid "Select a single Host Aggregate to Add Host" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:34 +#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:35 msgid "Select a single Host Aggregate to Remove Host" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:18 +#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:19 msgid "Select a single Host Aggregate to edit" msgstr "" @@ -18825,7 +19385,7 @@ msgstr "" msgid "Select a single Image to Provision Instances" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:35 +#: ../app/helpers/application_helper/toolbar/ems_physical_infras_center.rb:35 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:37 msgid "Select a single Infrastructure Provider to edit" msgstr "" @@ -18833,7 +19393,7 @@ msgstr "" msgid "Select a single Instance to edit" msgstr "" -#: ../app/helpers/application_helper/toolbar/servicetemplatecatalogs_center.rb:17 ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:22 +#: ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:24 ../app/helpers/application_helper/toolbar/servicetemplatecatalogs_center.rb:18 msgid "Select a single Item to edit" msgstr "" @@ -18845,7 +19405,7 @@ msgstr "" msgid "Select a single Method to edit" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:28 +#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:29 msgid "Select a single Middleware Providers to edit" msgstr "" @@ -18857,7 +19417,7 @@ msgstr "" msgid "Select a single Network Provider to edit" msgstr "" -#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:17 +#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:18 msgid "Select a single PXE Servers to edit" msgstr "" @@ -18869,11 +19429,11 @@ msgstr "" msgid "Select a single Role to edit" msgstr "" -#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:37 +#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:38 msgid "Select a single Storage Manager to edit" msgstr "" -#: ../app/helpers/application_helper/toolbar/pxe_image_types_center.rb:17 +#: ../app/helpers/application_helper/toolbar/pxe_image_types_center.rb:18 msgid "Select a single System Image Type to edit" msgstr "" @@ -18881,15 +19441,15 @@ msgstr "" msgid "Select a single Template to Provision VMs" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:41 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:32 +#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:32 ../app/helpers/application_helper/toolbar/template_infras_center.rb:41 msgid "Select a single Template to edit" msgstr "" -#: ../app/helpers/application_helper/toolbar/time_profiles_center.rb:26 +#: ../app/helpers/application_helper/toolbar/time_profiles_center.rb:27 msgid "Select a single Time Profile to copy" msgstr "" -#: ../app/helpers/application_helper/toolbar/time_profiles_center.rb:18 +#: ../app/helpers/application_helper/toolbar/time_profiles_center.rb:19 msgid "Select a single Time Profile to edit" msgstr "" @@ -18901,11 +19461,11 @@ msgstr "" msgid "Select a single User to edit" msgstr "" -#: ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:20 +#: ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:21 msgid "Select a single Volume to edit" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:41 ../app/helpers/application_helper/toolbar/vms_center.rb:32 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:42 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:51 ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:31 ../app/helpers/application_helper/toolbar/tenants_center.rb:12 +#: ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:31 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:51 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:43 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:41 ../app/helpers/application_helper/toolbar/vms_center.rb:32 ../app/helpers/application_helper/toolbar/automation_manager_providers_center.rb:33 ../app/helpers/application_helper/toolbar/tenants_center.rb:12 msgid "Select a single item to edit" msgstr "" @@ -18913,15 +19473,11 @@ msgstr "" msgid "Select a single item to manage quotas" msgstr "" -#: ../app/helpers/application_helper/toolbar/services_center.rb:14 +#: ../app/helpers/application_helper/toolbar/service/vmdb_mixin.rb:15 msgid "Select a single service to edit" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:742 -msgid "Select a snapshot that is not the active one" -msgstr "" - -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:95 ../app/helpers/application_helper/toolbar_builder.rb:626 +#: ../app/helpers/application_helper/button/restart_workers.rb:3 ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:104 msgid "Select a worker to restart" msgstr "" @@ -18929,7 +19485,7 @@ msgstr "" msgid "Select an Owner:" msgstr "" -#: ../app/controllers/application_controller/filter.rb:903 +#: ../app/controllers/application_controller/filter.rb:901 msgid "Select an expression element type" msgstr "" @@ -18957,7 +19513,7 @@ msgstr "" msgid "Select namespaces you wish to import:" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_groups_center.rb:25 +#: ../app/helpers/application_helper/toolbar/miq_groups_center.rb:26 msgid "Select one or more Groups to delete" msgstr "" @@ -18977,11 +19533,11 @@ msgstr "" msgid "Select one or more items to delete" msgstr "" -#: ../app/controllers/miq_policy_controller.rb:827 +#: ../app/controllers/miq_policy_controller.rb:830 msgid "Select only one or consecutive %{member} to move down" msgstr "" -#: ../app/controllers/miq_policy_controller.rb:809 +#: ../app/controllers/miq_policy_controller.rb:812 msgid "Select only one or consecutive %{member} to move up" msgstr "" @@ -18993,7 +19549,7 @@ msgstr "" msgid "Select only one or consecutive %{name} to move up" msgstr "" -#: ../app/controllers/application_controller/buttons.rb:1049 ../app/controllers/ops_controller/ops_rbac.rb:480 ../app/controllers/report_controller/dashboards.rb:466 ../app/controllers/report_controller/menus.rb:428 ../app/controllers/report_controller/menus.rb:472 +#: ../app/controllers/report_controller/menus.rb:428 ../app/controllers/report_controller/menus.rb:472 ../app/controllers/report_controller/dashboards.rb:466 ../app/controllers/application_controller/buttons.rb:1049 ../app/controllers/ops_controller/ops_rbac.rb:480 msgid "Select only one or consecutive fields to move down" msgstr "" @@ -19005,15 +19561,11 @@ msgstr "" msgid "Select only one or consecutive fields to move to the top" msgstr "" -#: ../app/controllers/application_controller/buttons.rb:1028 ../app/controllers/ops_controller/ops_rbac.rb:458 ../app/controllers/report_controller/dashboards.rb:442 ../app/controllers/report_controller/menus.rb:407 ../app/controllers/report_controller/menus.rb:451 +#: ../app/controllers/report_controller/menus.rb:407 ../app/controllers/report_controller/menus.rb:451 ../app/controllers/report_controller/dashboards.rb:442 ../app/controllers/application_controller/buttons.rb:1028 ../app/controllers/ops_controller/ops_rbac.rb:458 msgid "Select only one or consecutive fields to move up" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:734 -msgid "Select the Active snapshot to create a new snapshot for this VM" -msgstr "" - -#: ../app/views/middleware_server/_deploy.html.haml:48 ../app/views/middleware_server/_add_jdbc_driver.html.haml:48 +#: ../app/views/middleware_shared/_deploy.html.haml:48 ../app/views/middleware_server/_add_jdbc_driver.html.haml:48 msgid "Select the file to deploy" msgstr "" @@ -19021,11 +19573,11 @@ msgstr "" msgid "Select this Host Aggregate" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:32 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:23 +#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:23 ../app/helpers/application_helper/toolbar/template_infras_center.rb:32 msgid "Select two or more Templates to compare" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:32 ../app/helpers/application_helper/toolbar/vms_center.rb:23 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:23 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:33 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:42 ../app/helpers/application_helper/toolbar/hosts_center.rb:30 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:42 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:33 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:32 ../app/helpers/application_helper/toolbar/vms_center.rb:23 ../app/helpers/application_helper/toolbar/hosts_center.rb:30 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:23 msgid "Select two or more items to compare" msgstr "" @@ -19041,16 +19593,20 @@ msgstr "" msgid "Selected" msgstr "" -#: ../app/controllers/application_controller.rb:2212 +#: ../app/controllers/application_controller.rb:2218 msgid "Selected %{model_name} no longer exists" msgstr "" -#: ../app/helpers/ui_constants.rb:454 ../app/helpers/ui_constants.rb:462 ../app/helpers/ui_constants.rb:470 ../app/helpers/ui_constants.rb:473 ../app/helpers/ui_constants.rb:485 ../app/helpers/ui_constants.rb:494 ../app/helpers/ui_constants.rb:500 ../app/helpers/ui_constants.rb:507 ../app/helpers/ui_constants.rb:510 ../app/helpers/ui_constants.rb:513 -msgid "Selected %{tables}" +#: ../app/controllers/chargeback_controller.rb:449 +msgid "Selected Chargeback Report no longer exists" msgstr "" -#: ../app/controllers/chargeback_controller.rb:453 -msgid "Selected Chargeback Report no longer exists" +#: ../app/helpers/ui_constants.rb:451 ../app/helpers/ui_constants.rb:487 +msgid "Selected Cluster / Deployment Roles" +msgstr "" + +#: ../app/helpers/ui_constants.rb:488 +msgid "Selected Containers Providers" msgstr "" #: ../app/helpers/application_helper/button/ab_group_delete.rb:3 @@ -19061,6 +19617,10 @@ msgstr "" msgid "Selected Custom Button Group cannot be edited" msgstr "" +#: ../app/helpers/ui_constants.rb:466 +msgid "Selected Datastores" +msgstr "" + #: ../app/views/miq_capacity/_utilization_options.html.haml:94 msgid "Selected Day" msgstr "" @@ -19069,11 +19629,23 @@ msgstr "" msgid "Selected Fields:" msgstr "" +#: ../app/helpers/ui_constants.rb:459 +msgid "Selected Folders" +msgstr "" + +#: ../app/helpers/ui_constants.rb:455 +msgid "Selected Host / Nodes" +msgstr "" + #: ../app/views/ops/_selected.html.haml:8 msgid "Selected Item" msgstr "" -#: ../app/helpers/ui_constants.rb:450 +#: ../app/helpers/ui_constants.rb:475 +msgid "Selected Middleware Servers" +msgstr "" + +#: ../app/helpers/ui_constants.rb:447 ../app/helpers/ui_constants.rb:486 msgid "Selected Providers" msgstr "" @@ -19081,14 +19653,22 @@ msgstr "" msgid "Selected Reports:" msgstr "" +#: ../app/helpers/ui_constants.rb:460 +msgid "Selected Resource Pools" +msgstr "" + #: ../app/views/catalog/_form_resources_info.html.haml:44 ../app/views/catalog/_sandt_tree_show.html.haml:16 msgid "Selected Resources" msgstr "" -#: ../app/controllers/chargeback_controller.rb:438 +#: ../app/controllers/chargeback_controller.rb:434 msgid "Selected Saved Chargeback Report no longer exists" msgstr "" +#: ../app/helpers/ui_constants.rb:471 +msgid "Selected Servers" +msgstr "" + #: ../app/views/miq_request/_prov_host_dialog.html.haml:107 ../app/views/shared/views/_prov_dialog.html.haml:398 msgid "Selected Template Contents" msgstr "" @@ -19105,7 +19685,7 @@ msgstr "" msgid "Selected:" msgstr "" -#: ../app/views/shared/buttons/_ab_show.html.haml:162 ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:100 ../app/views/layouts/_ae_resolve_options.html.haml:140 +#: ../app/views/shared/buttons/_ab_show.html.haml:162 ../app/views/layouts/_ae_resolve_options.html.haml:140 ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:100 msgid "Selection" msgstr "" @@ -19113,8 +19693,8 @@ msgstr "" msgid "Selections" msgstr "" -#: ../app/views/container_service/_main.html.haml:13 ../app/views/container_replicator/_main.html.haml:11 -msgid "Selector" +#: ../app/views/layouts/remote_console.html.haml:145 +msgid "Send CTRL+ALT+DEL" msgstr "" #: ../app/views/miq_policy/_alert_details.html.haml:291 @@ -19149,11 +19729,7 @@ msgstr "" msgid "Send test email" msgstr "" -#: ../app/views/vm_common/console_vmrc.html.haml:460 -msgid "Send Ctrl-Alt-Delete" -msgstr "" - -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:53 ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:98 ../app/views/ops/_all_tabs.html.haml:24 +#: ../app/views/ops/_all_tabs.html.haml:24 ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:53 ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:98 msgid "Server" msgstr "" @@ -19189,11 +19765,11 @@ msgstr "" msgid "Server Roles" msgstr "" -#: ../app/helpers/middleware_server_helper/textual_summary.rb:41 +#: ../app/helpers/middleware_server_helper/textual_summary.rb:47 msgid "Server State" msgstr "" -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:16 ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:6 +#: ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:6 ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:16 msgid "Server information, Username and matching password fields are needed to perform verification of credentials" msgstr "" @@ -19209,7 +19785,7 @@ msgstr "" msgid "Server: %{appliance_name}" msgstr "" -#: ../app/presenters/menu/default_menu.rb:127 ../app/views/middleware_topology/show.html.haml:32 ../app/views/vm_common/_evm_relationship.html.haml:8 ../app/views/ops/_settings_evm_servers_tab.html.haml:100 ../app/views/ops/_settings_evm_servers_tab.html.haml:163 ../app/views/ops/_settings_server_tab.html.haml:338 ../app/views/ops/_zone_form.html.haml:87 ../app/views/ops/_all_tabs.html.haml:138 ../app/views/ops/_all_tabs.html.haml:232 +#: ../app/presenters/menu/default_menu.rb:82 ../app/presenters/menu/default_menu.rb:130 ../app/views/vm_common/_evm_relationship.html.haml:8 ../app/views/ops/_zone_form.html.haml:87 ../app/views/ops/_all_tabs.html.haml:138 ../app/views/ops/_all_tabs.html.haml:232 ../app/views/ops/_settings_server_tab.html.haml:302 ../app/views/ops/_settings_evm_servers_tab.html.haml:100 ../app/views/ops/_settings_evm_servers_tab.html.haml:163 ../app/views/middleware_topology/show.html.haml:32 msgid "Servers" msgstr "" @@ -19217,43 +19793,43 @@ msgstr "" msgid "Servers by Roles" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:346 ../app/helpers/orchestration_stack_helper/textual_summary.rb:44 ../app/helpers/configuration_job_helper/textual_summary.rb:33 ../app/views/vm_common/_add_to_service.html.haml:29 ../app/views/ops/rhn/_info_subscribed.html.haml:13 +#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:50 ../app/helpers/configuration_job_helper/textual_summary.rb:33 ../app/helpers/vm_helper/textual_summary.rb:385 ../app/views/vm_common/_add_to_service.html.haml:29 ../app/views/ops/rhn/_info_subscribed.html.haml:13 msgid "Service" msgstr "" -#: ../app/controllers/service_controller.rb:103 +#: ../app/controllers/service_controller.rb:96 msgid "Service \"%{name}\" was saved" msgstr "" -#: ../app/views/layouts/angular/_auth_service_account_angular.html.haml:13 +#: ../app/views/layouts/angular/_auth_service_account_angular.html.haml:15 msgid "Service Account JSON" msgstr "" -#: ../app/controllers/catalog_controller.rb:822 ../app/views/configuration/_ui_2.html.haml:49 +#: ../app/controllers/catalog_controller.rb:835 ../app/views/configuration/_ui_2.html.haml:50 msgid "Service Catalogs" msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:1205 ../app/controllers/catalog_controller.rb:1135 +#: ../app/controllers/automation_manager_controller.rb:564 ../app/controllers/catalog_controller.rb:1148 msgid "Service Dialog \"%{name}\" was successfully created" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:266 +#: ../app/controllers/miq_ae_customization_controller.rb:280 msgid "Service Dialog Import / Export" msgstr "" -#: ../app/presenters/tree_builder_ae_customization.rb:14 +#: ../app/presenters/tree_builder_ae_customization.rb:15 msgid "Service Dialog Import/Export" msgstr "" -#: ../app/views/catalog/_service_dialog_from_ot.html.haml:14 ../app/views/provider_foreman/_configscript_service_dialog.html.haml:14 +#: ../app/views/provider_foreman/_configscript_service_dialog.html.haml:14 ../app/views/automation_manager/_configscript_service_dialog.html.haml:14 ../app/views/catalog/_service_dialog_from_ot.html.haml:14 msgid "Service Dialog Name" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:177 +#: ../app/controllers/miq_ae_customization_controller.rb:191 msgid "Service Dialogs" msgstr "" -#: ../app/controllers/application_controller.rb:1289 +#: ../app/controllers/application_controller.rb:1296 msgid "Service Pack" msgstr "" @@ -19261,19 +19837,19 @@ msgstr "" msgid "Service Selection" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:81 +#: ../app/controllers/miq_ae_customization_controller.rb:82 msgid "Service dialog import cancelled" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:75 +#: ../app/controllers/miq_ae_customization_controller.rb:76 msgid "Service dialogs imported successfully" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:641 +#: ../app/helpers/application_helper/button/service_retire_now.rb:5 ../app/helpers/application_helper/button/service_retire.rb:5 msgid "Service is already retired" msgstr "" -#: ../app/presenters/menu/default_menu.rb:38 ../app/helpers/host_helper/textual_summary.rb:448 ../app/helpers/ui_constants.rb:437 ../app/controllers/service_controller.rb:150 ../app/controllers/host_controller.rb:190 ../app/views/container_topology/show.html.haml:82 ../app/views/configuration/_ui_2.html.haml:46 ../app/views/layouts/listnav/_host.html.haml:224 ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:51 +#: ../app/presenters/menu/default_menu.rb:39 ../app/helpers/ui_constants.rb:434 ../app/helpers/host_helper/textual_summary.rb:411 ../app/controllers/service_controller.rb:161 ../app/controllers/host_controller.rb:142 ../app/views/configuration/_ui_2.html.haml:47 ../app/views/container_topology/show.html.haml:82 ../app/views/layouts/listnav/_host.html.haml:193 ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:51 msgid "Services" msgstr "" @@ -19301,27 +19877,27 @@ msgstr "" msgid "Set Nodes to Manageable" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:50 ../app/helpers/application_helper/toolbar/template_infras_center.rb:50 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:33 ../app/helpers/application_helper/toolbar/vms_center.rb:41 ../app/helpers/application_helper/toolbar/service_center.rb:27 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:32 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:32 ../app/helpers/application_helper/toolbar/miq_template_center.rb:34 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:51 ../app/helpers/application_helper/toolbar/services_center.rb:33 ../app/helpers/application_helper/toolbar/x_vm_center.rb:41 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:60 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:41 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:32 ../app/controllers/application_controller/ci_processing.rb:49 ../app/controllers/application_controller/ci_processing.rb:77 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:33 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:32 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:60 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:52 ../app/helpers/application_helper/toolbar/x_vm_center.rb:41 ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:32 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:50 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:32 ../app/helpers/application_helper/toolbar/vms_center.rb:41 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:41 ../app/helpers/application_helper/toolbar/template_infras_center.rb:50 ../app/helpers/application_helper/toolbar/service_center.rb:27 ../app/helpers/application_helper/toolbar/service/vmdb_mixin.rb:34 ../app/controllers/application_controller/ci_processing.rb:56 ../app/controllers/application_controller/ci_processing.rb:84 msgid "Set Ownership" msgstr "" -#: ../app/controllers/service_controller.rb:216 -msgid "Set Ownership for %{model}" +#: ../app/controllers/vm_common.rb:1565 +msgid "Set Ownership for %{vms_or_templates}" msgstr "" -#: ../app/controllers/vm_common.rb:1753 -msgid "Set Ownership for %{vms_or_templates}" +#: ../app/controllers/service_controller.rb:257 +msgid "Set Ownership for Service" msgstr "" -#: ../app/helpers/application_helper/toolbar/services_center.rb:32 +#: ../app/helpers/application_helper/toolbar/service/vmdb_mixin.rb:33 msgid "Set Ownership for the selected Services" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:49 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:40 +#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:40 ../app/helpers/application_helper/toolbar/template_infras_center.rb:49 msgid "Set Ownership for the selected Templates" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:49 ../app/helpers/application_helper/toolbar/vms_center.rb:40 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:50 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:59 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:59 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:51 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:49 ../app/helpers/application_helper/toolbar/vms_center.rb:40 msgid "Set Ownership for the selected items" msgstr "" @@ -19329,7 +19905,7 @@ msgstr "" msgid "Set Ownership for this Image" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:31 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:31 +#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:31 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:31 msgid "Set Ownership for this Instance" msgstr "" @@ -19337,7 +19913,7 @@ msgstr "" msgid "Set Ownership for this Service" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:32 ../app/helpers/application_helper/toolbar/miq_template_center.rb:33 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:32 msgid "Set Ownership for this Template" msgstr "" @@ -19345,19 +19921,23 @@ msgstr "" msgid "Set Ownership for this VM" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:128 +#: ../app/controllers/application_controller/ci_processing.rb:145 msgid "Set Ownership was cancelled by the user" msgstr "" -#: ../app/helpers/application_helper/toolbar/service_center.rb:66 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:126 ../app/helpers/application_helper/toolbar/x_vm_center.rb:134 ../app/helpers/application_helper/toolbar/orchestration_stack_center.rb:45 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:91 +#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:94 ../app/helpers/application_helper/toolbar/orchestration_stack_center.rb:45 ../app/helpers/application_helper/toolbar/x_vm_center.rb:135 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:129 msgid "Set Retirement Date" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:194 +#: ../app/controllers/application_controller/ci_processing.rb:214 msgid "Set Retirement Date does not apply to selected %{model}" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:140 ../app/helpers/application_helper/toolbar/services_center.rb:73 ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:54 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:183 +#: ../app/helpers/application_helper/toolbar/service_center.rb:65 +msgid "Set Retirement Date for this Service" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:54 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:184 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:142 ../app/helpers/application_helper/toolbar/service/lifecycle_mixin.rb:15 msgid "Set Retirement Dates" msgstr "" @@ -19365,11 +19945,11 @@ msgstr "" msgid "Set Retirement Dates for the selected Orchestration Stacks" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:139 ../app/helpers/application_helper/toolbar/services_center.rb:72 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:182 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:183 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:141 ../app/helpers/application_helper/toolbar/service/lifecycle_mixin.rb:14 msgid "Set Retirement Dates for the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:125 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:90 +#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:93 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:128 msgid "Set Retirement Dates for this Instance" msgstr "" @@ -19377,23 +19957,27 @@ msgstr "" msgid "Set Retirement Dates for this Orchestration Stack" msgstr "" -#: ../app/helpers/application_helper/toolbar/service_center.rb:65 -msgid "Set Retirement Dates for this Service" +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:134 +msgid "Set Retirement Dates for this VM" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:133 -msgid "Set Retirement Dates for this VM" +#: ../app/helpers/application_helper/toolbar/service_center.rb:67 +msgid "Set Retirement this Service?" +msgstr "" + +#: ../app/views/ems_container/ad_hoc/_list_view_form.html.haml:9 +msgid "Set Tenant" msgstr "" -#: ../app/views/miq_request/_prov_options.html.haml:129 ../app/views/miq_request/_prov_options.html.haml:163 ../app/views/miq_task/_tasks_options.html.haml:162 ../app/views/miq_task/_tasks_options.html.haml:195 +#: ../app/views/miq_task/_tasks_options.html.haml:174 ../app/views/miq_task/_tasks_options.html.haml:207 ../app/views/miq_request/_prov_options.html.haml:129 ../app/views/miq_request/_prov_options.html.haml:163 msgid "Set filters to default" msgstr "" -#: ../app/views/miq_policy/_event_details.html.haml:186 +#: ../app/views/miq_policy/_event_details.html.haml:169 msgid "Set selected Actions to Asynchronous" msgstr "" -#: ../app/views/miq_policy/_event_details.html.haml:176 +#: ../app/views/miq_policy/_event_details.html.haml:159 msgid "Set selected Actions to Synchronous" msgstr "" @@ -19425,19 +20009,19 @@ msgstr "" msgid "Set/Remove Retirement Date" msgstr "" -#: ../app/controllers/service_controller.rb:220 -msgid "Set/Remove retirement date for %{model}" +#: ../app/controllers/vm_common.rb:1601 +msgid "Set/Remove retirement date for %{vm_or_template}" msgstr "" -#: ../app/controllers/vm_common.rb:1789 -msgid "Set/Remove retirement date for %{vm_or_template}" +#: ../app/controllers/service_controller.rb:261 +msgid "Set/Remove retirement date for Service" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:272 +#: ../app/controllers/application_controller/ci_processing.rb:291 msgid "Set/remove retirement date was cancelled by the user" msgstr "" -#: ../app/controllers/ops_controller/diagnostics.rb:719 ../app/controllers/ops_controller/diagnostics.rb:737 +#: ../app/controllers/ops_controller/diagnostics.rb:710 ../app/controllers/ops_controller/diagnostics.rb:728 msgid "Setting priority is not allowed for the selected item" msgstr "" @@ -19445,47 +20029,47 @@ msgstr "" msgid "Setting tracing to true may cause excessive log lines to be written" msgstr "" -#: ../app/presenters/menu/default_menu.rb:248 ../app/controllers/ops_controller.rb:203 ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:4 ../app/views/ops/_zone_form.html.haml:185 ../app/views/ops/_all_tabs.html.haml:288 +#: ../app/presenters/menu/default_menu.rb:283 ../app/controllers/ops_controller.rb:232 ../app/views/ops/_zone_form.html.haml:185 ../app/views/ops/_all_tabs.html.haml:288 ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:4 msgid "Settings" msgstr "" -#: ../app/controllers/ops_controller/settings/common.rb:1186 ../app/controllers/ops_controller/settings/common.rb:1189 ../app/controllers/ops_controller/settings/common.rb:1192 ../app/controllers/ops_controller/settings/common.rb:1195 +#: ../app/controllers/ops_controller/settings/common.rb:1134 ../app/controllers/ops_controller/settings/common.rb:1137 ../app/controllers/ops_controller/settings/common.rb:1140 ../app/controllers/ops_controller/settings/common.rb:1143 msgid "Settings %{model}" msgstr "" -#: ../app/controllers/ops_controller/settings.rb:138 ../app/controllers/ops_controller/settings/common.rb:938 ../app/controllers/ops_controller/settings/common.rb:944 ../app/controllers/ops_controller/settings/common.rb:1139 ../app/controllers/ops_controller/settings/common.rb:1206 ../app/controllers/ops_controller/settings/common.rb:1213 ../app/controllers/ops_controller/settings/common.rb:1218 ../app/controllers/ops_controller/settings/common.rb:1224 ../app/controllers/ops_controller/settings/common.rb:1234 +#: ../app/controllers/ops_controller/settings.rb:138 ../app/controllers/ops_controller/settings/common.rb:888 ../app/controllers/ops_controller/settings/common.rb:894 ../app/controllers/ops_controller/settings/common.rb:1087 ../app/controllers/ops_controller/settings/common.rb:1154 ../app/controllers/ops_controller/settings/common.rb:1161 ../app/controllers/ops_controller/settings/common.rb:1166 ../app/controllers/ops_controller/settings/common.rb:1172 ../app/controllers/ops_controller/settings/common.rb:1182 msgid "Settings %{model} \"%{name}\"" msgstr "" -#: ../app/controllers/ops_controller/settings/common.rb:936 ../app/controllers/ops_controller/settings/common.rb:942 ../app/controllers/ops_controller/settings/common.rb:1232 +#: ../app/controllers/ops_controller/settings/common.rb:886 ../app/controllers/ops_controller/settings/common.rb:892 ../app/controllers/ops_controller/settings/common.rb:1180 msgid "Settings %{model} \"%{name}\" (current)" msgstr "" -#: ../app/controllers/ops_controller.rb:447 +#: ../app/controllers/ops_controller.rb:486 msgid "Settings %{text}" msgstr "" -#: ../app/views/cloud_network/_common_new_edit.html.haml:68 -msgid "Shared" +#: ../app/assets/javascripts/services/alerts_center_service.js:74 ../app/assets/javascripts/services/alerts_center_service.js:252 ../app/assets/javascripts/controllers/alerts/alerts_overview_controller.js:47 +msgid "Severity" msgstr "" -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:51 -msgid "Sharing Directory" +#: ../app/views/cloud_network/_common_new_edit.html.haml:68 +msgid "Shared" msgstr "" -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:50 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:225 +#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:50 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:227 msgid "Shelve" msgstr "" -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:59 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:235 +#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:59 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:237 msgid "Shelve Offload" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:234 +#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:236 msgid "Shelve Offload the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:238 +#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:240 msgid "Shelve Offload the selected items?" msgstr "" @@ -19497,11 +20081,11 @@ msgstr "" msgid "Shelve Offload this Instance?" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:224 +#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:226 msgid "Shelve the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:228 +#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:230 msgid "Shelve the selected items?" msgstr "" @@ -19521,7 +20105,7 @@ msgstr "" msgid "Shortcuts" msgstr "" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:58 ../app/views/miq_capacity/_planning_options.html.haml:273 ../app/views/shared/buttons/_ab_show.html.haml:219 ../app/views/report/_widget_show.html.haml:328 ../app/views/layouts/_role_visibility.html.haml:17 ../app/views/layouts/_perf_options.html.haml:53 ../app/views/layouts/_perf_options.html.haml:98 +#: ../app/views/miq_capacity/_planning_options.html.haml:273 ../app/views/miq_capacity/_planning_vm_profile.html.haml:58 ../app/views/shared/buttons/_ab_show.html.haml:219 ../app/views/shared/views/_show_alerts_most_recent.html.haml:37 ../app/views/report/_widget_show.html.haml:328 ../app/views/layouts/_role_visibility.html.haml:17 ../app/views/layouts/_perf_options.html.haml:52 ../app/views/layouts/_perf_options.html.haml:97 msgid "Show" msgstr "" @@ -19557,19 +20141,15 @@ msgstr "" msgid "Show %{host} storage adapters" msgstr "" -#: ../app/helpers/ems_infra_helper/textual_summary.rb:77 ../app/helpers/floating_ip_helper/textual_summary.rb:47 ../app/helpers/network_port_helper/textual_summary.rb:52 +#: ../app/helpers/ems_infra_helper/textual_summary.rb:88 ../app/helpers/floating_ip_helper/textual_summary.rb:47 ../app/helpers/network_port_helper/textual_summary.rb:58 msgid "Show %{label}" msgstr "" -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:63 ../app/helpers/ontap_file_share_helper/textual_summary.rb:76 ../app/helpers/ontap_file_share_helper/textual_summary.rb:88 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:191 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:213 -msgid "Show %{label} '%{name}'" -msgstr "" - -#: ../app/helpers/textual_summary_helper.rb:88 +#: ../app/helpers/textual_summary_helper.rb:96 msgid "Show %{label} '%{value}'" msgstr "" -#: ../app/helpers/application_helper.rb:1045 +#: ../app/helpers/application_helper.rb:965 msgid "Show %{name}" msgstr "" @@ -19577,27 +20157,27 @@ msgstr "" msgid "Show %{object_name} Summary" msgstr "" -#: ../app/helpers/application_helper.rb:87 ../app/helpers/application_helper.rb:94 +#: ../app/helpers/application_helper.rb:111 ../app/helpers/application_helper.rb:118 msgid "Show %{plural_linked_name}" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:216 ../app/helpers/host_helper/textual_summary.rb:483 +#: ../app/helpers/host_helper/textual_summary.rb:223 ../app/helpers/host_helper/textual_summary.rb:446 msgid "Show %{title} Network" msgstr "" -#: ../app/views/configuration/_ui_1.html.haml:36 +#: ../app/views/configuration/_ui_1.html.haml:35 msgid "Show %{title} Quadrants" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:205 +#: ../app/helpers/host_helper/textual_summary.rb:212 msgid "Show %{title} Storage Adapters" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:227 +#: ../app/helpers/host_helper/textual_summary.rb:234 msgid "Show %{title} devices" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:192 +#: ../app/helpers/ems_cluster_helper/textual_summary.rb:203 msgid "Show %{title} drift history" msgstr "" @@ -19605,13 +20185,7 @@ msgstr "" msgid "Show Ad hoc Metrics for this Provider" msgstr "" -#: ../app/helpers/ems_cloud_helper/textual_summary.rb:151 -msgid "Show Arbitration Profiles for this Provider" -msgid_plural "Show Arbitration Profiles for this Provider" -msgstr[0] "" -msgstr[1] "" - -#: ../app/views/layouts/listnav/_container_group.html.haml:19 ../app/views/layouts/listnav/_ems_cluster.html.haml:26 ../app/views/layouts/listnav/_host.html.haml:71 ../app/views/layouts/listnav/_ems_container.html.haml:19 ../app/views/layouts/listnav/_storage.html.haml:18 ../app/views/layouts/listnav/_container_project.html.haml:19 ../app/views/layouts/listnav/_container_replicator.html.haml:19 ../app/views/layouts/listnav/_container_service.html.haml:19 ../app/views/layouts/listnav/_container_node.html.haml:19 +#: ../app/views/layouts/listnav/_host.html.haml:71 ../app/views/layouts/listnav/_container_project.html.haml:19 ../app/views/layouts/listnav/_storage.html.haml:18 ../app/views/layouts/listnav/_container_replicator.html.haml:19 ../app/views/layouts/listnav/_container_service.html.haml:19 ../app/views/layouts/listnav/_container_node.html.haml:19 ../app/views/layouts/listnav/_container_group.html.haml:19 ../app/views/layouts/listnav/_ems_cluster.html.haml:26 ../app/views/layouts/listnav/_ems_container.html.haml:19 msgid "Show Capacity & Utilization" msgstr "" @@ -19627,7 +20201,7 @@ msgstr "" msgid "Show Capacity & Utilization data for this Datasource" msgstr "" -#: ../app/helpers/application_helper/toolbar/storage_center.rb:51 +#: ../app/helpers/application_helper/toolbar/storage_center.rb:54 msgid "Show Capacity & Utilization data for this Datastore" msgstr "" @@ -19635,14 +20209,10 @@ msgstr "" msgid "Show Capacity & Utilization data for this Group" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:162 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:111 +#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:115 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:166 msgid "Show Capacity & Utilization data for this Instance" msgstr "" -#: ../app/helpers/application_helper/toolbar/ontap_logical_disk_center.rb:27 -msgid "Show Capacity & Utilization data for this Logical Disk" -msgstr "" - #: ../app/helpers/application_helper/toolbar/middleware_messaging_center.rb:13 msgid "Show Capacity & Utilization data for this Middleware messaging" msgstr "" @@ -19671,50 +20241,58 @@ msgstr "" msgid "Show Capacity & Utilization data for this Service" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:111 ../app/helpers/application_helper/toolbar/miq_template_center.rb:105 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:112 msgid "Show Capacity & Utilization data for this Template" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:156 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:157 msgid "Show Capacity & Utilization data for this VM" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:126 ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:55 +#: ../app/helpers/application_helper/toolbar/host_center.rb:129 ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:55 msgid "Show Capacity & Utilization data for this item" msgstr "" +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:171 +msgid "Show Chargeback preview" +msgstr "" + #: ../app/helpers/compliance_summary_helper.rb:40 msgid "Show Compliance History of this %{model} (Last 10 Checks)" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:380 +#: ../app/helpers/host_helper/textual_summary.rb:343 msgid "Show Compliance History of this %{title} (Last 10 Checks)" msgstr "" -#: ../app/helpers/container_image_helper/textual_summary.rb:60 +#: ../app/helpers/container_image_helper/textual_summary.rb:73 msgid "Show Compliance History of this Container Image (Last 10 Checks)" msgstr "" -#: ../app/helpers/container_node_helper/textual_summary.rb:117 +#: ../app/helpers/container_node_helper/textual_summary.rb:130 msgid "Show Compliance History of this Node (Last 10 Checks)" msgstr "" -#: ../app/helpers/container_replicator_helper/textual_summary.rb:33 ../app/helpers/container_group_helper/textual_summary.rb:135 +#: ../app/helpers/container_group_helper/textual_summary.rb:145 ../app/helpers/container_replicator_helper/textual_summary.rb:36 msgid "Show Compliance History of this Replicator (Last 10 Checks)" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:773 ../app/helpers/vm_cloud_helper/textual_summary.rb:292 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:303 ../app/helpers/vm_helper/textual_summary.rb:770 msgid "Show Compliance History of this VM (Last 10 Checks)" msgstr "" -#: ../app/views/report/_form_filter_chargeback.html.haml:14 ../app/views/report/_form_filter_chargeback.html.haml:249 +#: ../app/views/report/_form_filter_chargeback.html.haml:42 ../app/views/report/_form_filter_chargeback.html.haml:277 msgid "Show Costs by" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1602 +#: ../app/controllers/report_controller/reports/editor.rb:1617 msgid "Show Costs by must be selected" msgstr "" +#: ../app/helpers/ansible_repository_helper/textual_summary.rb:40 +msgid "Show Credential" +msgstr "" + #: ../app/views/layouts/_tl_options.html.haml:68 msgid "Show Detailed Events" msgstr "" @@ -19723,24 +20301,16 @@ msgstr "" msgid "Show Details of Compliance Check on %{date}" msgstr "" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:242 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:253 msgid "Show Event Log on this VM" msgid_plural "Show Event Logs on this VM" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/vm_helper/textual_summary.rb:675 +#: ../app/helpers/vm_helper/textual_summary.rb:714 msgid "Show Event Logs on this VM" msgstr "" -#: ../app/views/layouts/listnav/_storage.html.haml:60 -msgid "Show File Shares" -msgstr "" - -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:22 -msgid "Show Filer" -msgstr "" - #: ../app/views/miq_capacity/_bottlenecks_options.html.haml:38 msgid "Show Host Events" msgstr "" @@ -19749,19 +20319,19 @@ msgstr "" msgid "Show Input Parameters" msgstr "" -#: ../app/helpers/storage_helper/textual_summary.rb:255 +#: ../app/helpers/storage_helper/textual_summary.rb:210 msgid "Show Non-VM Files installed on this %{storage}" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:180 ../app/helpers/textual_mixins/textual_os_info.rb:16 +#: ../app/helpers/host_helper/textual_summary.rb:187 ../app/helpers/textual_mixins/textual_os_info.rb:16 msgid "Show OS container information" msgstr "" -#: ../app/helpers/storage_helper/textual_summary.rb:238 +#: ../app/helpers/storage_helper/textual_summary.rb:193 msgid "Show Other VM Files installed on this %{storage}" msgstr "" -#: ../app/views/layouts/listnav/_storage.html.haml:118 +#: ../app/views/layouts/listnav/_storage.html.haml:79 msgid "Show Other VM files on this Datastore" msgstr "" @@ -19769,11 +20339,11 @@ msgstr "" msgid "Show Parent %{host}" msgstr "" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:69 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:84 msgid "Show Parent %{title} %{name}" msgstr "" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:81 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:96 msgid "Show Parent %{title} '%{name}'" msgstr "" @@ -19785,11 +20355,15 @@ msgstr "" msgid "Show Refresh Button" msgstr "" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:79 ../app/views/layouts/listnav/_host.html.haml:120 +#: ../app/helpers/ansible_playbook_helper/textual_summary.rb:32 +msgid "Show Repository" +msgstr "" + +#: ../app/views/layouts/listnav/_host.html.haml:120 ../app/views/layouts/listnav/_ems_cluster.html.haml:79 msgid "Show Resource Pools" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:664 ../app/helpers/vm_cloud_helper/textual_summary.rb:230 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:241 ../app/helpers/vm_helper/textual_summary.rb:703 msgid "Show Running Processes on this VM" msgstr "" @@ -19797,19 +20371,19 @@ msgstr "" msgid "Show Sort Breaks" msgstr "" -#: ../app/views/layouts/listnav/_container_image.html.haml:12 ../app/views/layouts/listnav/_ems_middleware.html.haml:10 ../app/views/layouts/listnav/_configuration_job.html.haml:12 ../app/views/layouts/listnav/_ems_infra.html.haml:14 ../app/views/layouts/listnav/_container_route.html.haml:12 ../app/views/layouts/listnav/_ems_network.html.haml:10 ../app/views/layouts/listnav/_container_group.html.haml:12 ../app/views/layouts/listnav/_host_aggregate.html.haml:12 ../app/views/layouts/listnav/_ems_cluster.html.haml:13 ../app/views/layouts/listnav/_network_router.html.haml:12 ../app/views/layouts/listnav/_middleware_datasource.html.haml:12 ../app/views/layouts/listnav/_persistent_volume.html.haml:12 ../app/views/layouts/listnav/_container_template.html.haml:12 ../app/views/layouts/listnav/_ems_datawarehouse.html.haml:10 ../app/views/layouts/listnav/_storage_manager.html.haml:12 ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:12 ../app/views/layouts/listnav/_floating_ip.html.haml:12 ../app/views/layouts/listnav/_middleware_server.html.haml:12 ../app/views/layouts/listnav/_cloud_network.html.haml:12 ../app/views/layouts/listnav/_network_port.html.haml:12 ../app/views/layouts/listnav/_load_balancer.html.haml:12 ../app/views/layouts/listnav/_middleware_domain.html.haml:12 ../app/views/layouts/listnav/_host.html.haml:36 ../app/views/layouts/listnav/_container_build.html.haml:12 ../app/views/layouts/listnav/_pxe_server.html.haml:12 ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:12 ../app/views/layouts/listnav/_ems_storage.html.haml:10 ../app/views/layouts/listnav/_security_group.html.haml:12 ../app/views/layouts/listnav/_cloud_object_store_object.html.haml:12 ../app/views/layouts/listnav/_middleware_deployment.html.haml:12 ../app/views/layouts/listnav/_ems_container.html.haml:12 ../app/views/layouts/listnav/_storage.html.haml:13 ../app/views/layouts/listnav/_cloud_tenant.html.haml:12 ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:13 ../app/views/layouts/listnav/_resource_pool.html.haml:13 ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:12 ../app/views/layouts/listnav/_ontap_file_share.html.haml:12 ../app/views/layouts/listnav/_container_project.html.haml:12 ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:12 ../app/views/layouts/listnav/_middleware_server_group.html.haml:12 ../app/views/layouts/listnav/_container_image_registry.html.haml:12 ../app/views/layouts/listnav/_cloud_subnet.html.haml:12 ../app/views/layouts/listnav/_container_replicator.html.haml:12 ../app/views/layouts/listnav/_cloud_volume.html.haml:12 ../app/views/layouts/listnav/_service.html.haml:12 ../app/views/layouts/listnav/_availability_zone.html.haml:12 ../app/views/layouts/listnav/_middleware_messaging.html.haml:12 ../app/views/layouts/listnav/_ontap_storage_system.html.haml:12 ../app/views/layouts/listnav/_container_service.html.haml:12 ../app/views/layouts/listnav/_flavor.html.haml:12 ../app/views/layouts/listnav/_miq_ae_class.html.haml:12 ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:12 ../app/views/layouts/listnav/_orchestration_stack.html.haml:12 ../app/views/layouts/listnav/_ems_cloud.html.haml:12 ../app/views/layouts/listnav/_container_node.html.haml:12 +#: ../app/views/layouts/listnav/_middleware_domain.html.haml:12 ../app/views/layouts/listnav/_cloud_subnet.html.haml:12 ../app/views/layouts/listnav/_container_template.html.haml:12 ../app/views/layouts/listnav/_middleware_server.html.haml:12 ../app/views/layouts/listnav/_host.html.haml:36 ../app/views/layouts/listnav/_container_project.html.haml:12 ../app/views/layouts/listnav/_storage_manager.html.haml:12 ../app/views/layouts/listnav/_storage.html.haml:13 ../app/views/layouts/listnav/_ems_datawarehouse.html.haml:10 ../app/views/layouts/listnav/_container_replicator.html.haml:12 ../app/views/layouts/listnav/_container_build.html.haml:12 ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:12 ../app/views/layouts/listnav/_ems_physical_infra.html.haml:12 ../app/views/layouts/listnav/_middleware_deployment.html.haml:12 ../app/views/layouts/listnav/_container_service.html.haml:12 ../app/views/layouts/listnav/_container_node.html.haml:12 ../app/views/layouts/listnav/_middleware_server_group.html.haml:12 ../app/views/layouts/listnav/_middleware_datasource.html.haml:12 ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:12 ../app/views/layouts/listnav/_cloud_tenant.html.haml:12 ../app/views/layouts/listnav/_flavor.html.haml:12 ../app/views/layouts/listnav/_persistent_volume.html.haml:12 ../app/views/layouts/listnav/_cloud_network.html.haml:12 ../app/views/layouts/listnav/_cloud_volume.html.haml:12 ../app/views/layouts/listnav/_network_port.html.haml:12 ../app/views/layouts/listnav/_service.html.haml:12 ../app/views/layouts/listnav/_load_balancer.html.haml:12 ../app/views/layouts/listnav/_ems_network.html.haml:10 ../app/views/layouts/listnav/_configuration_job.html.haml:12 ../app/views/layouts/listnav/_pxe_server.html.haml:12 ../app/views/layouts/listnav/_floating_ip.html.haml:12 ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:12 ../app/views/layouts/listnav/_container_group.html.haml:12 ../app/views/layouts/listnav/_container_route.html.haml:12 ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:12 ../app/views/layouts/listnav/_network_router.html.haml:12 ../app/views/layouts/listnav/_resource_pool.html.haml:13 ../app/views/layouts/listnav/_host_aggregate.html.haml:12 ../app/views/layouts/listnav/_ems_cloud.html.haml:12 ../app/views/layouts/listnav/_ems_storage.html.haml:10 ../app/views/layouts/listnav/_container_image_registry.html.haml:12 ../app/views/layouts/listnav/_orchestration_stack.html.haml:12 ../app/views/layouts/listnav/_container_image.html.haml:12 ../app/views/layouts/listnav/_middleware_messaging.html.haml:12 ../app/views/layouts/listnav/_cloud_object_store_object.html.haml:12 ../app/views/layouts/listnav/_ems_infra.html.haml:14 ../app/views/layouts/listnav/_ems_cluster.html.haml:13 ../app/views/layouts/listnav/_availability_zone.html.haml:12 ../app/views/layouts/listnav/_security_group.html.haml:12 ../app/views/layouts/listnav/_ems_middleware.html.haml:10 ../app/views/layouts/listnav/_ems_container.html.haml:12 ../app/views/layouts/listnav/_miq_ae_class.html.haml:12 msgid "Show Summary" msgstr "" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:17 ../app/views/layouts/listnav/_ems_network.html.haml:15 ../app/views/layouts/listnav/_container_group.html.haml:34 ../app/views/layouts/listnav/_ems_cluster.html.haml:32 ../app/views/layouts/listnav/_host.html.haml:77 ../app/views/layouts/listnav/_ems_storage.html.haml:16 ../app/views/layouts/listnav/_ems_container.html.haml:34 ../app/views/layouts/listnav/_container_project.html.haml:34 ../app/views/layouts/listnav/_container_replicator.html.haml:34 ../app/views/layouts/listnav/_ems_cloud.html.haml:14 ../app/views/layouts/listnav/_container_node.html.haml:34 +#: ../app/views/layouts/listnav/_host.html.haml:77 ../app/views/layouts/listnav/_container_project.html.haml:34 ../app/views/layouts/listnav/_container_replicator.html.haml:34 ../app/views/layouts/listnav/_ems_physical_infra.html.haml:15 ../app/views/layouts/listnav/_container_node.html.haml:34 ../app/views/layouts/listnav/_ems_network.html.haml:15 ../app/views/layouts/listnav/_container_group.html.haml:34 ../app/views/layouts/listnav/_ems_cloud.html.haml:14 ../app/views/layouts/listnav/_ems_storage.html.haml:16 ../app/views/layouts/listnav/_ems_infra.html.haml:17 ../app/views/layouts/listnav/_ems_cluster.html.haml:32 ../app/views/layouts/listnav/_ems_container.html.haml:34 msgid "Show Timelines" msgstr "" -#: ../app/helpers/application_helper/toolbar/availability_zone_center.rb:34 +#: ../app/helpers/application_helper/toolbar/availability_zone_center.rb:35 msgid "Show Timelines for this Availability Zone" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:79 +#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:80 msgid "Show Timelines for this Cloud Provider" msgstr "" @@ -19833,7 +20407,7 @@ msgstr "" msgid "Show Timelines for this Infrastructure Provider" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:168 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:117 +#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:122 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:173 msgid "Show Timelines for this Instance" msgstr "" @@ -19849,6 +20423,10 @@ msgstr "" msgid "Show Timelines for this Node" msgstr "" +#: ../app/helpers/application_helper/toolbar/ems_physical_infra_center.rb:72 +msgid "Show Timelines for this Physical Infrastructure Provider" +msgstr "" + #: ../app/helpers/application_helper/toolbar/container_project_center.rb:12 msgid "Show Timelines for this Project" msgstr "" @@ -19861,67 +20439,47 @@ msgstr "" msgid "Show Timelines for this Storage Manager" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:117 ../app/helpers/application_helper/toolbar/miq_template_center.rb:112 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:119 msgid "Show Timelines for this Template" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:162 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:164 msgid "Show Timelines for this VM" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:133 ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:62 +#: ../app/helpers/application_helper/toolbar/host_center.rb:137 ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:63 msgid "Show Timelines for this item" msgstr "" -#: ../app/helpers/application_helper/toolbar/ontap_logical_disk_center.rb:34 -msgid "Show Utilization Statistics for this Logical Disk" -msgstr "" - -#: ../app/helpers/application_helper/toolbar/ontap_file_share_center.rb:42 -msgid "Show Utilization for this File Share" -msgstr "" - -#: ../app/helpers/application_helper/toolbar/ontap_storage_system_center.rb:42 -msgid "Show Utilization for this Filer" -msgstr "" - -#: ../app/helpers/application_helper/toolbar/ontap_storage_volume_center.rb:27 -msgid "Show Utilization for this Storage System" -msgstr "" - -#: ../app/views/layouts/_perf_options.html.haml:214 -msgid "Show VM" -msgstr "" - -#: ../app/helpers/storage_helper/textual_summary.rb:221 +#: ../app/helpers/storage_helper/textual_summary.rb:176 msgid "Show VM Memory Files installed on this %{storage}" msgstr "" -#: ../app/helpers/storage_helper/textual_summary.rb:185 +#: ../app/helpers/storage_helper/textual_summary.rb:140 msgid "Show VM Provisioned Disk Files installed on this %{table}" msgstr "" -#: ../app/views/layouts/listnav/_storage.html.haml:94 +#: ../app/views/layouts/listnav/_storage.html.haml:55 msgid "Show VM Provisioned Disk Files on this Datastore" msgstr "" -#: ../app/helpers/storage_helper/textual_summary.rb:203 +#: ../app/helpers/storage_helper/textual_summary.rb:158 msgid "Show VM Snapshot Files installed on this %{storage}" msgstr "" -#: ../app/views/layouts/_perf_options.html.haml:141 +#: ../app/views/layouts/_perf_options.html.haml:140 msgid "Show VM Types" msgstr "" -#: ../app/views/layouts/listnav/_storage.html.haml:110 +#: ../app/views/layouts/listnav/_storage.html.haml:71 msgid "Show VM memory files on this Datastore" msgstr "" -#: ../app/views/layouts/listnav/_storage.html.haml:102 +#: ../app/views/layouts/listnav/_storage.html.haml:63 msgid "Show VM snapshot files on this Datastore" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:141 ../app/helpers/vm_helper/textual_summary.rb:130 +#: ../app/helpers/host_helper/textual_summary.rb:148 ../app/helpers/vm_helper/textual_summary.rb:170 msgid "Show VMM container information" msgstr "" @@ -19937,11 +20495,11 @@ msgstr "" msgid "Show VMs & Templates" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:833 +#: ../app/helpers/vm_helper/textual_summary.rb:830 msgid "Show VMs devices" msgstr "" -#: ../app/views/configuration/_ui_2.html.haml:115 +#: ../app/views/configuration/_ui_2.html.haml:116 msgid "Show VMs in Explorer tree." msgstr "" @@ -19949,51 +20507,35 @@ msgstr "" msgid "Show VMs in this %{cluster_title}, but not in Resource Pools below" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:141 +#: ../app/helpers/ems_cluster_helper/textual_summary.rb:152 msgid "Show VMs in this %{title}, but not in Resource Pools below" msgstr "" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:91 ../app/views/layouts/listnav/_resource_pool.html.haml:42 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:106 ../app/views/layouts/listnav/_resource_pool.html.haml:42 msgid "Show VMs in this Resource Pool, but not in Resource Pools below" msgstr "" -#: ../app/helpers/ems_infra_helper/textual_summary.rb:89 +#: ../app/helpers/ems_infra_helper/textual_summary.rb:100 msgid "Show Virtual Machines & Templates" msgstr "" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:121 -msgid "Show all %{base_storage_extent}" -msgstr "" - #: ../app/views/layouts/listnav/_cloud_volume.html.haml:51 msgid "Show all %{children}" msgstr "" -#: ../app/helpers/network_router_helper/textual_summary.rb:38 ../app/helpers/ems_cluster_helper/textual_summary.rb:203 ../app/helpers/ems_cluster_helper/textual_summary.rb:214 ../app/helpers/ontap_file_share_helper/textual_summary.rb:99 ../app/helpers/ontap_file_share_helper/textual_summary.rb:110 ../app/helpers/cloud_subnet_helper/textual_summary.rb:62 ../app/helpers/cloud_subnet_helper/textual_summary.rb:89 ../app/helpers/cloud_tenant_helper/textual_summary.rb:26 ../app/helpers/cloud_tenant_helper/textual_summary.rb:37 ../app/helpers/cloud_tenant_helper/textual_summary.rb:59 ../app/helpers/cloud_tenant_helper/textual_summary.rb:70 ../app/helpers/security_group_helper/textual_summary.rb:48 ../app/helpers/ems_infra_helper/textual_summary.rb:100 ../app/helpers/ems_infra_helper/textual_summary.rb:111 ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:126 ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:137 ../app/helpers/ems_cloud_helper/textual_summary.rb:81 ../app/helpers/ems_cloud_helper/textual_summary.rb:92 ../app/helpers/ems_cloud_helper/textual_summary.rb:110 ../app/helpers/ems_cloud_helper/textual_summary.rb:142 ../app/helpers/cloud_network_helper/textual_summary.rb:38 ../app/helpers/host_helper/textual_summary.rb:292 ../app/helpers/host_helper/textual_summary.rb:324 ../app/helpers/host_helper/textual_summary.rb:340 ../app/helpers/host_helper/textual_summary.rb:351 ../app/helpers/host_helper/textual_summary.rb:362 ../app/helpers/host_helper/textual_summary.rb:373 ../app/helpers/host_aggregate_helper/textual_summary.rb:22 ../app/helpers/host_aggregate_helper/textual_summary.rb:33 ../app/helpers/flavor_helper/textual_summary.rb:77 ../app/helpers/load_balancer_helper/textual_summary.rb:58 ../app/helpers/vm_helper/textual_summary.rb:363 ../app/helpers/vm_helper/textual_summary.rb:375 ../app/helpers/vm_helper/textual_summary.rb:387 ../app/helpers/vm_helper/textual_summary.rb:399 ../app/helpers/vm_helper/textual_summary.rb:411 ../app/helpers/vm_helper/textual_summary.rb:425 ../app/helpers/vm_helper/textual_summary.rb:437 ../app/helpers/vm_helper/textual_summary.rb:687 ../app/helpers/vm_helper/textual_summary.rb:699 ../app/helpers/vm_helper/textual_summary.rb:711 ../app/helpers/vm_helper/textual_summary.rb:723 ../app/helpers/storage_helper/textual_summary.rb:80 ../app/helpers/storage_helper/textual_summary.rb:91 ../app/helpers/storage_helper/textual_summary.rb:102 ../app/helpers/storage_helper/textual_summary.rb:124 ../app/helpers/storage_helper/textual_summary.rb:135 ../app/helpers/orchestration_stack_helper/textual_summary.rb:68 ../app/helpers/orchestration_stack_helper/textual_summary.rb:91 ../app/helpers/textual_summary_helper.rb:132 ../app/helpers/availability_zone_helper/textual_summary.rb:26 ../app/helpers/availability_zone_helper/textual_summary.rb:37 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:202 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:224 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:235 ../app/helpers/ontap_storage_system_helper/textual_summary.rb:67 ../app/helpers/ontap_storage_system_helper/textual_summary.rb:78 ../app/helpers/ontap_storage_system_helper/textual_summary.rb:89 ../app/helpers/ontap_storage_system_helper/textual_summary.rb:100 ../app/helpers/ontap_storage_system_helper/textual_summary.rb:111 ../app/helpers/ontap_storage_system_helper/textual_summary.rb:122 ../app/helpers/ems_container_helper/textual_summary.rb:96 ../app/helpers/auth_key_pair_cloud_helper/textual_summary.rb:28 +#: ../app/helpers/auth_key_pair_cloud_helper/textual_summary.rb:28 ../app/helpers/ems_cloud_helper/textual_summary.rb:86 ../app/helpers/ems_cloud_helper/textual_summary.rb:97 ../app/helpers/ems_cloud_helper/textual_summary.rb:115 ../app/helpers/ems_cloud_helper/textual_summary.rb:147 ../app/helpers/cloud_tenant_helper/textual_summary.rb:33 ../app/helpers/cloud_tenant_helper/textual_summary.rb:44 ../app/helpers/cloud_tenant_helper/textual_summary.rb:66 ../app/helpers/cloud_tenant_helper/textual_summary.rb:77 ../app/helpers/orchestration_stack_helper/textual_summary.rb:74 ../app/helpers/orchestration_stack_helper/textual_summary.rb:97 ../app/helpers/ems_infra_helper/textual_summary.rb:111 ../app/helpers/ems_infra_helper/textual_summary.rb:122 ../app/helpers/security_group_helper/textual_summary.rb:58 ../app/helpers/host_helper/textual_summary.rb:299 ../app/helpers/host_helper/textual_summary.rb:331 ../app/helpers/host_aggregate_helper/textual_summary.rb:22 ../app/helpers/host_aggregate_helper/textual_summary.rb:33 ../app/helpers/textual_summary_helper.rb:139 ../app/helpers/load_balancer_helper/textual_summary.rb:58 ../app/helpers/cloud_network_helper/textual_summary.rb:41 ../app/helpers/network_router_helper/textual_summary.rb:41 ../app/helpers/cloud_subnet_helper/textual_summary.rb:75 ../app/helpers/cloud_subnet_helper/textual_summary.rb:102 ../app/helpers/ems_container_helper/textual_summary.rb:100 ../app/helpers/flavor_helper/textual_summary.rb:73 ../app/helpers/storage_helper/textual_summary.rb:79 ../app/helpers/storage_helper/textual_summary.rb:90 ../app/helpers/storage_helper/textual_summary.rb:101 ../app/helpers/availability_zone_helper/textual_summary.rb:26 ../app/helpers/availability_zone_helper/textual_summary.rb:37 ../app/helpers/vm_helper/textual_summary.rb:402 ../app/helpers/vm_helper/textual_summary.rb:414 ../app/helpers/vm_helper/textual_summary.rb:426 ../app/helpers/vm_helper/textual_summary.rb:438 ../app/helpers/vm_helper/textual_summary.rb:450 ../app/helpers/vm_helper/textual_summary.rb:464 ../app/helpers/vm_helper/textual_summary.rb:476 msgid "Show all %{label}" msgstr "" -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:115 -msgid "Show all %{label} '%{name}'" -msgstr "" - -#: ../app/helpers/cloud_tenant_helper/textual_summary.rb:82 ../app/helpers/cloud_volume_helper/textual_summary.rb:78 ../app/helpers/cloud_volume_helper/textual_summary.rb:90 +#: ../app/helpers/cloud_volume_helper/textual_summary.rb:83 ../app/helpers/cloud_volume_helper/textual_summary.rb:95 ../app/helpers/cloud_tenant_helper/textual_summary.rb:89 msgid "Show all %{models}" msgstr "" -#: ../app/helpers/application_helper.rb:1037 +#: ../app/helpers/application_helper.rb:957 msgid "Show all %{names}" msgstr "" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:113 -msgid "Show all %{ontap_file_share}" -msgstr "" - -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:97 -msgid "Show all %{ontap_storage_system}" -msgstr "" - -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:131 +#: ../app/helpers/ems_cluster_helper/textual_summary.rb:142 msgid "Show all %{title}" msgstr "" @@ -20001,10 +20543,6 @@ msgstr "" msgid "Show all %{volumes} based on this Snapshot." msgstr "" -#: ../app/views/layouts/listnav/_storage.html.haml:75 ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:50 ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:30 -msgid "Show all Base Extents" -msgstr "" - #: ../app/views/layouts/listnav/_orchestration_stack.html.haml:52 msgid "Show all Cloud Networks" msgstr "" @@ -20013,7 +20551,7 @@ msgstr "" msgid "Show all Cloud Object Stores" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:460 +#: ../app/helpers/vm_helper/textual_summary.rb:499 msgid "Show all Cloud Volumes attached to this VM." msgstr "" @@ -20021,40 +20559,36 @@ msgstr "" msgid "Show all Cloud Volumes based on this Snapshot" msgstr "" -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:79 ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:56 -msgid "Show all Datastores" -msgstr "" - -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:32 -msgid "Show all File Shares" +#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:42 +msgid "Show all Images" msgstr "" -#: ../app/views/layouts/listnav/_storage.html.haml:48 -msgid "Show all Filers" +#: ../app/views/layouts/listnav/_cloud_subnet.html.haml:25 ../app/views/layouts/listnav/_cloud_tenant.html.haml:35 ../app/views/layouts/listnav/_flavor.html.haml:31 ../app/views/layouts/listnav/_cloud_network.html.haml:25 ../app/views/layouts/listnav/_load_balancer.html.haml:25 ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:29 ../app/views/layouts/listnav/_network_router.html.haml:25 ../app/views/layouts/listnav/_host_aggregate.html.haml:28 ../app/views/layouts/listnav/_orchestration_stack.html.haml:38 ../app/views/layouts/listnav/_availability_zone.html.haml:28 ../app/views/layouts/listnav/_security_group.html.haml:25 +msgid "Show all Instances" msgstr "" -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:70 ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:48 -msgid "Show all Hosts" +#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:64 +msgid "Show all Outputs" msgstr "" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:42 -msgid "Show all Images" +#: ../app/views/layouts/listnav/_configuration_job.html.haml:37 ../app/views/layouts/listnav/_orchestration_stack.html.haml:58 +msgid "Show all Parameters" msgstr "" -#: ../app/views/layouts/listnav/_host_aggregate.html.haml:28 ../app/views/layouts/listnav/_network_router.html.haml:25 ../app/views/layouts/listnav/_cloud_network.html.haml:25 ../app/views/layouts/listnav/_load_balancer.html.haml:25 ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:29 ../app/views/layouts/listnav/_security_group.html.haml:25 ../app/views/layouts/listnav/_cloud_tenant.html.haml:35 ../app/views/layouts/listnav/_cloud_subnet.html.haml:25 ../app/views/layouts/listnav/_availability_zone.html.haml:28 ../app/views/layouts/listnav/_flavor.html.haml:31 ../app/views/layouts/listnav/_orchestration_stack.html.haml:38 -msgid "Show all Instances" +#: ../app/helpers/ansible_repository_helper/textual_summary.rb:29 +msgid "Show all Playbooks" msgstr "" -#: ../app/views/layouts/listnav/_storage.html.haml:67 -msgid "Show all LUNs" +#: ../app/helpers/ansible_credential_helper/textual_summary.rb:33 +msgid "Show all Repositories" msgstr "" -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:64 -msgid "Show all Outputs" +#: ../app/helpers/resource_pool_helper/textual_summary.rb:137 +msgid "Show all Resource Pools" msgstr "" -#: ../app/views/layouts/listnav/_configuration_job.html.haml:37 ../app/views/layouts/listnav/_orchestration_stack.html.haml:58 -msgid "Show all Parameters" +#: ../app/views/layouts/listnav/_resource_pool.html.haml:66 +msgid "Show all Resource Pools in this Resource Pool" msgstr "" #: ../app/views/layouts/listnav/_orchestration_stack.html.haml:70 @@ -20065,7 +20599,7 @@ msgstr "" msgid "Show all Security Groups" msgstr "" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:70 ../app/views/layouts/listnav/_host.html.haml:136 +#: ../app/views/layouts/listnav/_host.html.haml:136 ../app/views/layouts/listnav/_ems_infra.html.haml:70 msgid "Show all Templates" msgstr "" @@ -20073,11 +20607,11 @@ msgstr "" msgid "Show all Templates in this %{cluster_title}" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:163 +#: ../app/helpers/ems_cluster_helper/textual_summary.rb:174 msgid "Show all Templates in this %{title}" msgstr "" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:63 ../app/views/layouts/listnav/_host.html.haml:128 ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:61 ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:40 +#: ../app/views/layouts/listnav/_host.html.haml:128 ../app/views/layouts/listnav/_ems_infra.html.haml:63 msgid "Show all VMs" msgstr "" @@ -20085,11 +20619,11 @@ msgstr "" msgid "Show all VMs in this %{cluster_title}" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:151 +#: ../app/helpers/ems_cluster_helper/textual_summary.rb:162 msgid "Show all VMs in this %{title}" msgstr "" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:101 ../app/views/layouts/listnav/_resource_pool.html.haml:50 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:116 ../app/views/layouts/listnav/_resource_pool.html.haml:50 msgid "Show all VMs in this Resource Pool" msgstr "" @@ -20101,15 +20635,15 @@ msgstr "" msgid "Show all Volumes" msgstr "" -#: ../app/helpers/cloud_volume_helper/textual_summary.rb:101 +#: ../app/helpers/cloud_volume_helper/textual_summary.rb:106 msgid "Show all attached %{models}" msgstr "" -#: ../app/helpers/storage_helper/textual_summary.rb:167 +#: ../app/helpers/storage_helper/textual_summary.rb:122 msgid "Show all files installed on this %{table}" msgstr "" -#: ../app/views/layouts/listnav/_storage.html.haml:86 +#: ../app/views/layouts/listnav/_storage.html.haml:47 msgid "Show all files on this Datastore" msgstr "" @@ -20125,11 +20659,11 @@ msgstr "" msgid "Show all managed %{storages}" msgstr "" -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:121 +#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:127 msgid "Show all outputs" msgstr "" -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:111 ../app/helpers/configuration_job_helper/textual_summary.rb:63 +#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:117 ../app/helpers/configuration_job_helper/textual_summary.rb:63 msgid "Show all parameters" msgstr "" @@ -20137,11 +20671,11 @@ msgstr "" msgid "Show all registered %{hosts}" msgstr "" -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:131 +#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:137 msgid "Show all resources" msgstr "" -#: ../app/views/configuration/_ui_1.html.haml:86 +#: ../app/views/configuration/_ui_1.html.haml:85 msgid "Show at Login" msgstr "" @@ -20153,7 +20687,7 @@ msgstr "" msgid "Show daily data from" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:581 +#: ../app/helpers/vm_helper/textual_summary.rb:620 msgid "Show disk on this VM" msgid_plural "Show disks on this VM" msgstr[0] "" @@ -20179,31 +20713,31 @@ msgstr "" msgid "Show in Console" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:93 +#: ../app/helpers/host_helper/textual_summary.rb:100 msgid "Show list of all %{name}" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:100 +#: ../app/helpers/host_helper/textual_summary.rb:107 msgid "Show list of configuration files of %{name}" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:85 +#: ../app/helpers/host_helper/textual_summary.rb:92 msgid "Show list of failed %{name}" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:70 +#: ../app/helpers/ems_cluster_helper/textual_summary.rb:81 msgid "Show list of hosts with %{name}" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:58 +#: ../app/helpers/ems_cluster_helper/textual_summary.rb:69 msgid "Show list of hosts with failed %{name}" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:46 +#: ../app/helpers/ems_cluster_helper/textual_summary.rb:57 msgid "Show list of hosts with running %{name}" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:77 +#: ../app/helpers/host_helper/textual_summary.rb:84 msgid "Show list of running %{name}" msgstr "" @@ -20211,11 +20745,11 @@ msgstr "" msgid "Show member VMs" msgstr "" -#: ../app/views/layouts/listnav/_storage.html.haml:126 +#: ../app/views/layouts/listnav/_storage.html.haml:87 msgid "Show non-VM files on this Datastore" msgstr "" -#: ../app/views/miq_policy/_alert_evm_event.html.haml:16 ../app/views/miq_policy/_alert_details.html.haml:444 +#: ../app/views/miq_policy/_alert_details.html.haml:444 ../app/views/miq_policy/_alert_evm_event.html.haml:16 msgid "Show on Timeline" msgstr "" @@ -20239,7 +20773,7 @@ msgstr "" msgid "Show parent Orchestration Stack for this Security Group" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:471 +#: ../app/helpers/vm_helper/textual_summary.rb:510 msgid "Show parent and child VMs" msgstr "" @@ -20247,11 +20781,11 @@ msgstr "" msgid "Show policies:" msgstr "" -#: ../app/helpers/quadicon_helper.rb:812 +#: ../app/helpers/quadicon_helper.rb:787 msgid "Show policy details for %{item_name}" msgstr "" -#: ../app/helpers/quadicon_helper.rb:280 +#: ../app/helpers/quadicon_helper.rb:271 msgid "Show policy details for %{name}" msgstr "" @@ -20259,7 +20793,7 @@ msgstr "" msgid "Show registered VMs" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:170 ../app/helpers/vm_cloud_helper/textual_summary.rb:111 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:122 ../app/helpers/vm_helper/textual_summary.rb:210 msgid "Show resources of this VM" msgstr "" @@ -20267,23 +20801,23 @@ msgstr "" msgid "Show service %s for this Job" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:514 +#: ../app/helpers/vm_helper/textual_summary.rb:553 msgid "Show the %{label} installed on this VM" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:472 +#: ../app/helpers/host_helper/textual_summary.rb:435 msgid "Show the Advanced Setting installed on this %{title}" msgid_plural "Show the Advanced Settings installed on this %{title}" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/vm_helper/textual_summary.rb:555 ../app/helpers/vm_cloud_helper/textual_summary.rb:199 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:210 ../app/helpers/vm_helper/textual_summary.rb:594 msgid "Show the File System Driver installed on this VM" msgid_plural "Show the File System Drivers installed on this VM" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/host_helper/textual_summary.rb:461 +#: ../app/helpers/host_helper/textual_summary.rb:424 msgid "Show the File installed on this %{title}" msgid_plural "Show the Files installed on this %{title}" msgstr[0] "" @@ -20295,19 +20829,19 @@ msgid_plural "Show the Files installed on this VM" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/host_helper/textual_summary.rb:411 +#: ../app/helpers/host_helper/textual_summary.rb:374 msgid "Show the Firewall Rule defined on this %{title}" msgid_plural "Show the Firewall Rules defined on this %{title}" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/host_helper/textual_summary.rb:399 +#: ../app/helpers/host_helper/textual_summary.rb:362 msgid "Show the Group defined on this %{title}" msgid_plural "Show the Groups defined on this %{title}" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/vm_helper/textual_summary.rb:499 ../app/helpers/vm_cloud_helper/textual_summary.rb:134 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:145 ../app/helpers/vm_helper/textual_summary.rb:538 msgid "Show the Group defined on this VM" msgid_plural "Show the Groups defined on this VM" msgstr[0] "" @@ -20319,19 +20853,19 @@ msgid_plural "Show the Init Processes installed on this VM" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/vm_helper/textual_summary.rb:541 ../app/helpers/vm_cloud_helper/textual_summary.rb:184 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:195 ../app/helpers/vm_helper/textual_summary.rb:580 msgid "Show the Kernel Driver installed on this VM" msgid_plural "Show the Kernel Drivers installed on this VM" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/host_helper/textual_summary.rb:439 +#: ../app/helpers/host_helper/textual_summary.rb:402 msgid "Show the Package installed on this %{title}" msgid_plural "Show the Packages installed on this %{title}" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/host_helper/textual_summary.rb:428 +#: ../app/helpers/host_helper/textual_summary.rb:391 msgid "Show the Patch defined on this %{title}" msgid_plural "Show the Patches defined on this %{title}" msgstr[0] "" @@ -20343,31 +20877,31 @@ msgid_plural "Show the Patches defined on this VM" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/vm_helper/textual_summary.rb:570 ../app/helpers/vm_cloud_helper/textual_summary.rb:214 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:225 ../app/helpers/vm_helper/textual_summary.rb:609 msgid "Show the Registry Item installed on this VM" msgid_plural "Show the Registry Items installed on this VM" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/host_helper/textual_summary.rb:450 +#: ../app/helpers/host_helper/textual_summary.rb:413 msgid "Show the Service installed on this %{title}" msgid_plural "Show the Services installed on this %{title}" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/host_helper/textual_summary.rb:388 ../app/helpers/vm_helper/textual_summary.rb:488 ../app/helpers/vm_cloud_helper/textual_summary.rb:123 +#: ../app/helpers/host_helper/textual_summary.rb:351 ../app/helpers/vm_cloud_helper/textual_summary.rb:134 ../app/helpers/vm_helper/textual_summary.rb:527 msgid "Show the User defined on this VM" msgid_plural "Show the Users defined on this VM" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/vm_helper/textual_summary.rb:527 ../app/helpers/vm_cloud_helper/textual_summary.rb:169 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:180 ../app/helpers/vm_helper/textual_summary.rb:566 msgid "Show the Win32 Service installed on this VM" msgid_plural "Show the Win32 Services installed on this VM" msgstr[0] "" msgstr[1] "" -#: ../app/views/layouts/listnav/_host.html.haml:236 +#: ../app/views/layouts/listnav/_host.html.haml:205 msgid "Show the advanced settings on this %{host}" msgstr "" @@ -20375,47 +20909,47 @@ msgstr "" msgid "Show the advanced settings on this VM" msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:230 +#: ../app/views/layouts/listnav/_host.html.haml:199 msgid "Show the files on this %{host}" msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:207 +#: ../app/views/layouts/listnav/_host.html.haml:176 msgid "Show the firewall rules on this %{host}" msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:192 +#: ../app/views/layouts/listnav/_host.html.haml:161 msgid "Show the groups defined on this %{host}" msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:218 +#: ../app/views/layouts/listnav/_host.html.haml:187 msgid "Show the packages installed on this %{host}" msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:200 +#: ../app/views/layouts/listnav/_host.html.haml:169 msgid "Show the patches installed on this %{host}" msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:224 +#: ../app/views/layouts/listnav/_host.html.haml:193 msgid "Show the services installed on this %{host}" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:162 ../app/helpers/vm_cloud_helper/textual_summary.rb:102 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:113 ../app/helpers/vm_helper/textual_summary.rb:202 msgid "Show the snapshot info for this VM" msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:185 +#: ../app/views/layouts/listnav/_host.html.haml:154 msgid "Show the users defined on this %{host}" msgstr "" -#: ../app/helpers/application_helper.rb:64 +#: ../app/helpers/application_helper.rb:88 msgid "Show this %{entity_name}'s parent %{linked_entity_name}" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:267 +#: ../app/helpers/host_helper/textual_summary.rb:274 msgid "Show this %{host_title}'s %{cluster_title}" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:306 +#: ../app/helpers/host_helper/textual_summary.rb:313 msgid "Show this %{title}'s %{label}" msgstr "" @@ -20455,10 +20989,6 @@ msgstr "" msgid "Show this Cloud Volume's parent %{parent}" msgstr "" -#: ../app/helpers/storage_helper/textual_summary.rb:146 ../app/helpers/storage_helper/textual_summary.rb:157 -msgid "Show this Datastore's %{label}" -msgstr "" - #: ../app/views/layouts/listnav/_flavor.html.haml:24 msgid "Show this Flavor's parent Cloud Provider" msgstr "" @@ -20467,11 +20997,11 @@ msgstr "" msgid "Show this Host Aggregate's parent Cloud Provider" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:326 +#: ../app/helpers/vm_helper/textual_summary.rb:365 msgid "Show this Image's parent" msgstr "" -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:79 +#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:85 msgid "Show this Orchestration Template" msgstr "" @@ -20479,19 +21009,19 @@ msgstr "" msgid "Show this Parent Provider" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:352 ../app/helpers/orchestration_stack_helper/textual_summary.rb:50 ../app/helpers/configuration_job_helper/textual_summary.rb:39 +#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:56 ../app/helpers/configuration_job_helper/textual_summary.rb:39 ../app/helpers/vm_helper/textual_summary.rb:391 msgid "Show this Service" msgstr "" -#: ../app/helpers/service_helper/textual_summary.rb:106 +#: ../app/helpers/service_helper/textual_summary.rb:162 msgid "Show this Service's Job" msgstr "" -#: ../app/helpers/service_helper/textual_summary.rb:91 +#: ../app/helpers/service_helper/textual_summary.rb:137 msgid "Show this Service's Parent Service" msgstr "" -#: ../app/helpers/service_helper/textual_summary.rb:79 +#: ../app/helpers/service_helper/textual_summary.rb:124 msgid "Show this Service's Parent Service Catalog" msgstr "" @@ -20503,31 +21033,31 @@ msgstr "" msgid "Show this Snapshot's parent %{parent}" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:260 ../app/helpers/vm_helper/textual_summary.rb:268 ../app/helpers/vm_helper/textual_summary.rb:290 ../app/helpers/vm_helper/textual_summary.rb:301 ../app/helpers/vm_helper/textual_summary.rb:312 ../app/helpers/vm_helper/textual_summary.rb:449 +#: ../app/helpers/vm_helper/textual_summary.rb:299 ../app/helpers/vm_helper/textual_summary.rb:307 ../app/helpers/vm_helper/textual_summary.rb:329 ../app/helpers/vm_helper/textual_summary.rb:340 ../app/helpers/vm_helper/textual_summary.rb:351 ../app/helpers/vm_helper/textual_summary.rb:488 msgid "Show this VM's %{label}" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:339 +#: ../app/helpers/vm_helper/textual_summary.rb:378 msgid "Show this VM's %{label} '%{name}'" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:223 ../app/helpers/vm_helper/textual_summary.rb:234 +#: ../app/helpers/vm_helper/textual_summary.rb:263 ../app/helpers/vm_helper/textual_summary.rb:274 msgid "Show this VM's %{title}" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:245 +#: ../app/helpers/vm_helper/textual_summary.rb:284 msgid "Show this VM's Resource Pool" msgstr "" -#: ../app/helpers/cloud_volume_helper/textual_summary.rb:40 +#: ../app/helpers/cloud_volume_helper/textual_summary.rb:45 msgid "Show this Volume's %{availability_zone}" msgstr "" -#: ../app/helpers/cloud_volume_helper/textual_summary.rb:66 +#: ../app/helpers/cloud_volume_helper/textual_summary.rb:71 msgid "Show this Volume's %{cloud_tenant}" msgstr "" -#: ../app/helpers/cloud_volume_helper/textual_summary.rb:55 +#: ../app/helpers/cloud_volume_helper/textual_summary.rb:60 msgid "Show this Volume's %{parent}" msgstr "" @@ -20539,7 +21069,7 @@ msgstr "" msgid "Show this parent %{provider} for this %{host}" msgstr "" -#: ../app/helpers/ems_infra_helper/textual_summary.rb:185 ../app/helpers/ems_cloud_helper/textual_summary.rb:169 ../app/helpers/ems_middleware_helper/textual_summary.rb:55 ../app/helpers/ems_container_helper/textual_summary.rb:87 ../app/helpers/ems_network_helper/textual_summary.rb:93 +#: ../app/helpers/ems_network_helper/textual_summary.rb:101 ../app/helpers/ems_cloud_helper/textual_summary.rb:160 ../app/helpers/ems_infra_helper/textual_summary.rb:180 ../app/helpers/ems_physical_infra_helper/textual_summary.rb:91 ../app/helpers/ems_container_helper/textual_summary.rb:91 ../app/helpers/ems_middleware_helper/textual_summary.rb:57 msgid "Show topology" msgstr "" @@ -20547,11 +21077,11 @@ msgstr "" msgid "Show tree of all VMs by Resource Pool in this %{cluster_title}" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:173 +#: ../app/helpers/ems_cluster_helper/textual_summary.rb:184 msgid "Show tree of all VMs by Resource Pool in this %{title}" msgstr "" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:112 ../app/views/layouts/listnav/_resource_pool.html.haml:58 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:127 ../app/views/layouts/listnav/_resource_pool.html.haml:58 msgid "Show tree of all VMs in this Resource Pool" msgstr "" @@ -20563,91 +21093,87 @@ msgstr "" msgid "Show virtual machine drift history" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:472 +#: ../app/helpers/vm_helper/textual_summary.rb:511 msgid "Show virtual machine genealogy" msgstr "" -#: ../app/views/layouts/_saved_report_paging_bar.html.haml:53 -msgid "Showing %{start_number} of %{total_items} items" +#: ../app/assets/javascripts/controllers/live_metrics/util/metrics-http-factory.js:31 +msgid "Showing first" msgstr "" -#: ../app/views/layouts/_saved_report_paging_bar.html.haml:57 ../app/views/layouts/_saved_report_paging_bar.html.haml:60 -msgid "Showing %{start_number}-%{end_number} of %{total_items} items" -msgstr "" - -#: ../app/helpers/application_helper/toolbar/host_center.rb:178 ../app/helpers/application_helper/toolbar/hosts_center.rb:192 ../app/controllers/middleware_server_controller.rb:40 ../app/views/catalog/_form_resources_info.html.haml:120 +#: ../app/helpers/application_helper/toolbar/host_center.rb:183 ../app/helpers/application_helper/toolbar/hosts_center.rb:195 ../app/controllers/middleware_server_controller.rb:42 ../app/views/catalog/_form_resources_info.html.haml:120 msgid "Shutdown" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:179 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:214 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:215 ../app/helpers/application_helper/toolbar/x_vm_center.rb:188 msgid "Shutdown Guest" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:213 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:214 msgid "Shutdown the Guest OS on the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:217 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:218 msgid "Shutdown the Guest OS on the selected items?" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:178 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:187 msgid "Shutdown the Guest OS on this VM" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:181 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:190 msgid "Shutdown the Guest OS on this VM?" msgstr "" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:191 +#: ../app/helpers/application_helper/toolbar/hosts_center.rb:194 msgid "Shutdown the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:179 +#: ../app/helpers/application_helper/toolbar/hosts_center.rb:182 msgid "Shutdown the selected items to Standby Mode" msgstr "" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:182 +#: ../app/helpers/application_helper/toolbar/hosts_center.rb:185 msgid "Shutdown the selected items to Standy Mode?" msgstr "" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:195 +#: ../app/helpers/application_helper/toolbar/hosts_center.rb:198 msgid "Shutdown the selected items?" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:177 +#: ../app/helpers/application_helper/toolbar/host_center.rb:182 msgid "Shutdown this item" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:168 +#: ../app/helpers/application_helper/toolbar/host_center.rb:173 msgid "Shutdown this item to Standby Mode" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:171 +#: ../app/helpers/application_helper/toolbar/host_center.rb:176 msgid "Shutdown this item to Standby Mode?" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:180 +#: ../app/helpers/application_helper/toolbar/host_center.rb:185 msgid "Shutdown this item?" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2528 +#: ../app/controllers/application_controller/ci_processing.rb:2560 msgid "Shutdown to Standby Mode" msgstr "" -#: ../app/helpers/container_helper/textual_summary.rb:46 +#: ../app/helpers/container_helper/textual_summary.rb:55 msgid "Signal" msgstr "" -#: ../app/helpers/application_helper/toolbar/custom_button_center.rb:27 ../app/helpers/application_helper/toolbar/catalogitem_button_center.rb:29 +#: ../app/helpers/application_helper/toolbar/catalogitem_button_center.rb:29 ../app/helpers/application_helper/toolbar/custom_button_center.rb:27 msgid "Simulate" msgstr "" -#: ../app/helpers/application_helper/toolbar/custom_button_center.rb:26 ../app/helpers/application_helper/toolbar/catalogitem_button_center.rb:28 +#: ../app/helpers/application_helper/toolbar/catalogitem_button_center.rb:28 ../app/helpers/application_helper/toolbar/custom_button_center.rb:26 msgid "Simulate using Button details" msgstr "" -#: ../app/presenters/menu/default_menu.rb:216 ../app/presenters/menu/default_menu.rb:230 ../app/controllers/application_controller/automate.rb:131 +#: ../app/presenters/menu/default_menu.rb:214 ../app/presenters/menu/default_menu.rb:251 ../app/controllers/application_controller/automate.rb:131 msgid "Simulation" msgstr "" @@ -20659,55 +21185,31 @@ msgstr "" msgid "Simulation unavailable: Required Class \"System/Process\" is missing" msgstr "" -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:308 +#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:305 msgid "Single Select" msgstr "" #: ../app/views/miq_policy/_rsop_form.html.haml:47 -msgid "Single VM" +msgid "Single VM/Instance" msgstr "" #: ../app/views/ops/_settings_co_categories_tab.html.haml:16 ../app/views/ops/_category_form.html.haml:71 ../app/views/ops/_category_form.html.haml:194 msgid "Single Value" msgstr "" -#: ../app/helpers/cloud_object_store_container_helper/textual_summary.rb:22 ../app/helpers/cloud_volume_backup_helper/textual_summary.rb:19 ../app/helpers/ops_helper/textual_summary.rb:109 ../app/helpers/cloud_volume_helper/textual_summary.rb:16 ../app/helpers/cloud_volume_snapshot_helper/textual_summary.rb:15 ../app/views/vm_common/_snapshots_desc.html.haml:31 ../app/views/vm_common/_reconfigure.html.haml:207 ../app/views/ops/_db_info.html.haml:59 ../app/views/ops/_db_info.html.haml:152 ../app/views/ops/_db_info.html.haml:217 +#: ../app/helpers/cloud_volume_helper/textual_summary.rb:21 ../app/helpers/cloud_object_store_container_helper/textual_summary.rb:22 ../app/helpers/cloud_volume_snapshot_helper/textual_summary.rb:15 ../app/helpers/ops_helper/textual_summary.rb:119 ../app/helpers/cloud_volume_backup_helper/textual_summary.rb:19 ../app/views/vm_common/_snapshots_desc.html.haml:31 ../app/views/vm_common/_reconfigure.html.haml:207 ../app/views/ops/_db_info.html.haml:59 ../app/views/ops/_db_info.html.haml:152 ../app/views/ops/_db_info.html.haml:217 msgid "Size" msgstr "" -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:41 -msgid "Size (GB)" -msgstr "" - -#: ../app/views/cloud_volume/new.html.haml:34 +#: ../app/views/cloud_volume/new.html.haml:154 msgid "Size (in gigabytes)" msgstr "" -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:122 -msgid "Size Available" -msgstr "" - -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:130 -msgid "Size Total" -msgstr "" - -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:126 -msgid "Size Used" -msgstr "" - -#: ../app/controllers/ontap_storage_system_controller.rb:110 -msgid "Size is required" -msgstr "" - -#: ../app/controllers/ontap_storage_system_controller.rb:112 -msgid "Size must be an integer" -msgstr "" - -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:63 ../app/helpers/configuration_helper/configuration_view_helper.rb:68 +#: ../app/helpers/configuration_helper/configuration_view_helper.rb:75 ../app/helpers/configuration_helper/configuration_view_helper.rb:80 msgid "Small Trees" msgstr "" -#: ../app/views/network_router/_main.html.haml:20 ../app/views/configuration_job/_main.html.haml:14 ../app/views/middleware_deployment/_main.html.haml:14 ../app/views/ontap_storage_system/_main.html.haml:9 ../app/views/cloud_subnet/_main.html.haml:20 ../app/views/container_build/_main.html.haml:19 ../app/views/container_project/_main.html.haml:23 ../app/views/ontap_storage_volume/_main.html.haml:9 ../app/views/cloud_tenant/_main.html.haml:14 ../app/views/host_aggregate/_main.html.haml:12 ../app/views/container_image/_main.html.haml:22 ../app/views/container_node/_main.html.haml:25 ../app/views/cloud_volume_snapshot/_main.html.haml:14 ../app/views/middleware_domain/_main.html.haml:14 ../app/views/ems_container/_main.html.haml:30 ../app/views/infra_networking/_main.html.haml:12 ../app/views/auth_key_pair_cloud/_main.html.haml:14 ../app/views/cloud_object_store_container/_main.html.haml:14 ../app/views/network_port/_main.html.haml:20 ../app/views/ems_cluster/_main.html.haml:21 ../app/views/container/_container_show.html.haml:15 ../app/views/container_group/_main.html.haml:30 ../app/views/container_service/_main.html.haml:20 ../app/views/middleware_datasource/_main.html.haml:14 ../app/views/storage/_main.html.haml:21 ../app/views/container_route/_main.html.haml:22 ../app/views/middleware_server_group/_main.html.haml:14 ../app/views/shared/views/ems_common/_main.html.haml:21 ../app/views/cloud_volume/_main.html.haml:14 ../app/views/security_group/_main.html.haml:22 ../app/views/container_template/_main.html.haml:25 ../app/views/vm_common/_main.html.haml:41 ../app/views/middleware_messaging/_main.html.haml:14 ../app/views/ems_datawarehouse/_main.html.haml:18 ../app/views/catalog/_ot_tree_show.html.haml:89 ../app/views/provider_foreman/_main.html.haml:18 ../app/views/availability_zone/_main.html.haml:14 ../app/views/orchestration_stack/_main.html.haml:16 ../app/views/ontap_file_share/_main.html.haml:9 ../app/views/persistent_volume/_main.html.haml:19 ../app/views/service/_svcs_show.html.haml:20 ../app/views/ops/_rbac_tag_box.html.haml:1 ../app/views/floating_ip/_main.html.haml:20 ../app/views/container_replicator/_main.html.haml:20 ../app/views/cloud_object_store_object/_main.html.haml:14 ../app/views/load_balancer/_main.html.haml:20 ../app/views/ems_middleware/_main.html.haml:21 ../app/views/flavor/_main.html.haml:14 ../app/views/middleware_server/_main.html.haml:14 ../app/views/cloud_network/_main.html.haml:20 ../app/views/container_image_registry/_main.html.haml:16 ../app/views/resource_pool/_main.html.haml:16 ../app/views/ontap_logical_disk/_main.html.haml:18 ../app/views/vm_cloud/_main.html.haml:36 ../app/views/host/_main.html.haml:25 ../app/views/cloud_volume_backup/_main.html.haml:14 +#: ../app/helpers/container_image_helper/textual_summary.rb:31 ../app/helpers/infra_networking_helper/textual_summary.rb:15 ../app/helpers/ems_swift_helper/textual_summary.rb:20 ../app/helpers/container_group_helper/textual_summary.rb:39 ../app/helpers/ems_network_helper/textual_summary.rb:26 ../app/helpers/container_replicator_helper/textual_summary.rb:20 ../app/helpers/container_helper/textual_summary.rb:27 ../app/helpers/ems_cloud_helper/textual_summary.rb:29 ../app/helpers/container_template_helper/textual_summary.rb:17 ../app/helpers/container_service_helper/textual_summary.rb:38 ../app/helpers/ems_infra_helper/textual_summary.rb:29 ../app/helpers/ems_datawarehouse_helper/textual_summary.rb:16 ../app/helpers/ems_cinder_helper/textual_summary.rb:20 ../app/helpers/container_build_helper/textual_summary.rb:18 ../app/helpers/container_project_helper/textual_summary.rb:23 ../app/helpers/host_helper/textual_summary.rb:41 ../app/helpers/ems_physical_infra_helper/textual_summary.rb:29 ../app/helpers/container_route_helper/textual_summary.rb:17 ../app/helpers/persistent_volume_helper/textual_summary.rb:32 ../app/helpers/ems_storage_helper/textual_summary.rb:23 ../app/helpers/textual_mixins/textual_group_tags.rb:3 ../app/helpers/resource_pool_helper/textual_summary.rb:34 ../app/helpers/ems_container_helper/textual_summary.rb:44 ../app/helpers/storage_helper/textual_summary.rb:22 ../app/helpers/container_image_registry_helper/textual_summary.rb:18 ../app/helpers/container_node_helper/textual_summary.rb:46 ../app/helpers/ems_middleware_helper/textual_summary.rb:24 ../app/helpers/middleware_summary_helper.rb:13 ../app/helpers/catalog_helper/textual_summary.rb:33 ../app/views/ops/_rbac_tag_box.html.haml:1 msgid "Smart Management" msgstr "" @@ -20715,37 +21217,37 @@ msgstr "" msgid "SmartProxy Affinity" msgstr "" -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:45 ../app/views/ops/_zone_form.html.haml:57 +#: ../app/views/ops/_zone_form.html.haml:57 ../app/views/ops/_settings_evm_servers_tab.html.haml:45 msgid "SmartProxy Server IP" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2626 +#: ../app/helpers/application_helper/button/storage_scan.rb:12 +msgid "SmartState Analysis cannot be performed when there is no active Host" +msgstr "" + +#: ../app/controllers/application_controller/ci_processing.rb:2658 msgid "Smartstate Analysis" msgstr "" -#: ../app/controllers/vm_common.rb:1652 +#: ../app/controllers/vm_common.rb:1460 ../app/controllers/application_controller.rb:904 ../app/views/miq_request/_pre_prov.html.haml:59 msgid "Snapshot" msgid_plural "Snapshots" msgstr[0] "" msgstr[1] "" -#: ../app/views/miq_policy/_action_options.html.haml:178 ../app/views/miq_policy/_action_details.html.haml:89 +#: ../app/views/miq_policy/_action_options.html.haml:170 ../app/views/miq_policy/_action_details.html.haml:89 msgid "Snapshot Age Settings" msgstr "" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:392 +#: ../app/controllers/miq_policy_controller/miq_actions.rb:388 msgid "Snapshot Age must be selected" msgstr "" -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:134 -msgid "Snapshot Blocks Reserved" -msgstr "" - -#: ../app/helpers/ui_constants.rb:415 +#: ../app/helpers/ui_constants.rb:412 msgid "Snapshot Create" msgstr "" -#: ../app/helpers/ui_constants.rb:416 +#: ../app/helpers/ui_constants.rb:413 msgid "Snapshot Delete" msgstr "" @@ -20753,19 +21255,19 @@ msgstr "" msgid "Snapshot Information" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:161 ../app/views/cloud_volume/snapshot_new.html.haml:16 +#: ../app/views/miq_policy/_action_options.html.haml:153 ../app/views/cloud_volume/snapshot_new.html.haml:16 msgid "Snapshot Name" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:152 ../app/views/miq_policy/_action_details.html.haml:69 +#: ../app/views/miq_policy/_action_options.html.haml:144 ../app/views/miq_policy/_action_details.html.haml:69 msgid "Snapshot Settings" msgstr "" -#: ../app/controllers/vm_common.rb:559 +#: ../app/controllers/vm_common.rb:413 msgid "Snapshot VM '%{name}'" msgstr "" -#: ../app/controllers/vm_common.rb:543 +#: ../app/controllers/vm_common.rb:397 msgid "Snapshot VM '%{name}''" msgstr "" @@ -20773,19 +21275,19 @@ msgstr "" msgid "Snapshot VM memory" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:604 +#: ../app/controllers/cloud_volume_controller.rb:670 msgid "Snapshot for Cloud Volume \"%{name}\" created" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:581 +#: ../app/controllers/cloud_volume_controller.rb:647 msgid "Snapshot of Cloud Volume \"%{name}\" was cancelled by the user" msgstr "" -#: ../app/controllers/vm_common.rb:577 +#: ../app/controllers/vm_common.rb:431 msgid "Snapshot of VM %{name} was cancelled by the user" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:160 ../app/helpers/vm_helper/textual_summary.rb:627 ../app/helpers/vm_cloud_helper/textual_summary.rb:100 ../app/controllers/application_controller/miq_request_methods.rb:414 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:111 ../app/helpers/vm_helper/textual_summary.rb:200 ../app/helpers/vm_helper/textual_summary.rb:666 ../app/controllers/application_controller/miq_request_methods.rb:414 msgid "Snapshots" msgstr "" @@ -20793,15 +21295,15 @@ msgstr "" msgid "Sockets" msgstr "" -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:78 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:256 +#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:78 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:258 msgid "Soft Reboot" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:255 +#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:257 msgid "Soft Reboot the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:259 +#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:261 msgid "Soft Reboot the selected items?" msgstr "" @@ -20813,7 +21315,7 @@ msgstr "" msgid "Soft Reboot this Instance?" msgstr "" -#: ../app/helpers/ui_constants.rb:438 +#: ../app/helpers/ui_constants.rb:435 msgid "Software" msgstr "" @@ -20821,11 +21323,15 @@ msgstr "" msgid "Software updates have not yet been configured. Select Edit Registration to register appliances in this region with Red Hat to receive software updates and other benefits." msgstr "" +#: ../app/assets/javascripts/controllers/live_metrics/util/metrics-utils-factory.js:3 +msgid "Something is wrong, try reloading the page" +msgstr "" + #: ../app/services/user_validation_service.rb:105 msgid "Sorry, the username or password you entered is incorrect." msgstr "" -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:247 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:345 ../app/views/report/_report_info.html.haml:45 ../app/views/report/_report_list.html.haml:127 +#: ../app/views/report/_report_list.html.haml:127 ../app/views/report/_report_info.html.haml:45 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:244 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:342 msgid "Sort By" msgstr "" @@ -20833,7 +21339,7 @@ msgstr "" msgid "Sort Criteria" msgstr "" -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:267 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:365 ../app/views/report/_form_sort.html.haml:51 +#: ../app/views/report/_form_sort.html.haml:51 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:264 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:362 msgid "Sort Order" msgstr "" @@ -20841,15 +21347,19 @@ msgstr "" msgid "Sort the Report By" msgstr "" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:7 ../app/views/miq_capacity/_planning_options.html.haml:124 ../app/views/chargeback/_reports_list.html.haml:54 ../app/views/security_group/_main.html.haml:20 ../app/views/ops/_ap_form_nteventlog.html.haml:18 +#: ../app/helpers/security_group_helper/textual_summary.rb:37 ../app/views/miq_capacity/_planning_options.html.haml:124 ../app/views/miq_capacity/_planning_vm_profile.html.haml:7 ../app/views/ops/_ap_form_nteventlog.html.haml:18 ../app/views/chargeback/_reports_list.html.haml:54 msgid "Source" msgstr "" -#: ../app/views/provider_foreman/_form.html.haml:130 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:36 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:88 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:124 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:212 ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:54 ../app/views/layouts/angular/_auth_service_account_angular.html.haml:33 +#: ../app/views/layouts/angular/_auth_service_account_angular.html.haml:35 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:36 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:89 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:125 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:284 ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:56 ../app/views/provider_foreman/_form.html.haml:133 ../app/views/automation_manager/_form.html.haml:97 msgid "Spaces are prohibited" msgstr "" -#: ../app/views/ops/_settings_server_tab.html.haml:370 +#: ../app/views/miq_policy/_action_options.html.haml:671 +msgid "Specific Hosts" +msgstr "" + +#: ../app/views/ops/_settings_server_tab.html.haml:334 msgid "Specified NTP settings applied here will override Zone NTP settings." msgstr "" @@ -20857,7 +21367,7 @@ msgstr "" msgid "Specify CDN configuration" msgstr "" -#: ../app/views/report/_form_sort.html.haml:225 +#: ../app/views/report/_form_sort.html.haml:203 msgid "Specify Calculations for Summary Rows" msgstr "" @@ -20873,6 +21383,10 @@ msgstr "" msgid "Specify Column Styles" msgstr "" +#: ../app/views/middleware_server/_add_datasource_step2.html.haml:16 +msgid "Specify Driver" +msgstr "" + #: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:76 ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:39 msgid "Specify a list of machines to deploy on (No existing provider)" msgstr "" @@ -20881,11 +21395,11 @@ msgstr "" msgid "Specify role(s) for this host" msgstr "" -#: ../app/controllers/orchestration_stack_controller.rb:275 +#: ../app/controllers/orchestration_stack_controller.rb:279 msgid "Stack" msgstr "" -#: ../app/presenters/menu/default_menu.rb:54 ../app/controllers/ems_common.rb:73 ../app/views/configuration/_ui_2.html.haml:175 +#: ../app/presenters/menu/default_menu.rb:55 ../app/views/configuration/_ui_2.html.haml:176 msgid "Stacks" msgstr "" @@ -20893,7 +21407,7 @@ msgstr "" msgid "Standard NFS Server" msgstr "" -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:23 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:195 ../app/controllers/middleware_server_controller.rb:71 ../app/views/chargeback/_cb_rate_edit_table.html.haml:25 ../app/views/chargeback/_cb_rate_show.html.haml:51 ../app/views/catalog/_form_resources_info.html.haml:63 ../app/views/catalog/_form_resources_info.html.haml:63 ../app/views/catalog/_sandt_tree_show.html.haml:266 ../app/views/catalog/_sandt_tree_show.html.haml:266 ../app/views/ems_cloud/discover.html.haml:54 ../app/views/layouts/_discover.html.haml:103 +#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:23 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:197 ../app/controllers/middleware_server_group_controller.rb:24 ../app/controllers/middleware_server_controller.rb:73 ../app/views/ems_cloud/discover.html.haml:54 ../app/views/chargeback/_cb_rate_show.html.haml:51 ../app/views/chargeback/_cb_rate_edit_table.html.haml:25 ../app/views/layouts/_discover.html.haml:103 ../app/views/catalog/_form_resources_info.html.haml:63 ../app/views/catalog/_form_resources_info.html.haml:63 ../app/views/catalog/_sandt_tree_show.html.haml:282 ../app/views/catalog/_sandt_tree_show.html.haml:282 msgid "Start" msgstr "" @@ -20901,11 +21415,11 @@ msgstr "" msgid "Start Date" msgstr "" -#: ../app/views/configuration/_ui_1.html.haml:79 +#: ../app/views/configuration/_ui_1.html.haml:78 msgid "Start Page" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:38 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:41 +#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:39 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:42 msgid "Start Role" msgstr "" @@ -20913,19 +21427,27 @@ msgstr "" msgid "Start Server" msgstr "" -#: ../app/views/ops/_settings_server_tab.html.haml:437 +#: ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:77 +msgid "Start Server Group" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:76 +msgid "Start Servers in this Server Group" +msgstr "" + +#: ../app/views/ops/_settings_server_tab.html.haml:401 msgid "Start TLS Automatically" msgstr "" -#: ../app/helpers/container_build_helper/textual_summary.rb:26 +#: ../app/helpers/container_build_helper/textual_summary.rb:30 msgid "Start Timestamp" msgstr "" -#: ../app/controllers/ops_controller/diagnostics.rb:655 +#: ../app/controllers/ops_controller/diagnostics.rb:646 msgid "Start is not allowed for the selected item" msgstr "" -#: ../app/controllers/ops_controller/diagnostics.rb:663 +#: ../app/controllers/ops_controller/diagnostics.rb:654 msgid "Start successfully initiated" msgstr "" @@ -20933,23 +21455,19 @@ msgstr "" msgid "Start the %{host} Discovery" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:33 -msgid "Start the %{server_role_description} Role on Server %{server.name} [%{server.id}]" -msgstr "" - -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:35 +#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:34 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:36 msgid "Start the %{server_role_description} Role on Server %{server_name} [%{server_id}]" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:40 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:43 +#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:41 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:44 msgid "Start the %{server_role_description} Role on Server %{server_name} [%{server_id}]?" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:194 +#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:196 msgid "Start the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:198 +#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:200 msgid "Start the selected items?" msgstr "" @@ -20965,7 +21483,11 @@ msgstr "" msgid "Start this server" msgstr "" -#: ../app/helpers/container_helper/textual_summary.rb:34 +#: ../app/helpers/service_helper/textual_summary.rb:190 ../app/helpers/service_helper/textual_summary.rb:267 +msgid "Started" +msgstr "" + +#: ../app/helpers/container_helper/textual_summary.rb:43 msgid "Started At" msgstr "" @@ -20989,7 +21511,7 @@ msgstr "" msgid "Starting Message" msgstr "" -#: ../app/controllers/application_controller/buttons.rb:736 ../app/controllers/miq_ae_tools_controller.rb:407 +#: ../app/controllers/miq_ae_tools_controller.rb:407 ../app/controllers/application_controller/buttons.rb:736 msgid "Starting Process is required" msgstr "" @@ -21001,34 +21523,38 @@ msgstr "" msgid "Starting process must be specified" msgstr "" -#: ../app/controllers/application_controller/compare.rb:1037 +#: ../app/controllers/application_controller/compare.rb:933 msgid "Starting values" msgstr "" -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:118 ../app/controllers/application_controller/miq_request_methods.rb:447 ../app/views/miq_request/_ae_prov_show.html.haml:18 +#: ../app/controllers/application_controller/miq_request_methods.rb:450 ../app/views/miq_request/_ae_prov_show.html.haml:18 msgid "State" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:784 ../app/helpers/vm_cloud_helper/textual_summary.rb:305 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:316 ../app/helpers/vm_helper/textual_summary.rb:781 msgid "State Changed On" msgstr "" -#: ../app/helpers/ems_infra_helper/textual_summary.rb:159 +#: ../app/helpers/ems_infra_helper/textual_summary.rb:154 msgid "States of Root Orchestration Stacks" msgstr "" -#: ../app/helpers/application_helper/toolbar/ontap_logical_disk_center.rb:35 -msgid "Statistics" -msgstr "" - -#: ../app/helpers/container_node_helper/textual_summary.rb:17 ../app/helpers/cloud_volume_backup_helper/textual_summary.rb:15 ../app/helpers/compliance_summary_helper.rb:7 ../app/helpers/container_group_helper/textual_summary.rb:16 ../app/views/ems_container/_main.html.haml:13 ../app/views/miq_request/_request.html.haml:31 ../app/views/miq_request/_request_details.html.haml:44 ../app/views/miq_request/_ae_prov_show.html.haml:22 ../app/views/miq_ae_customization/_dialog_import_export.html.haml:29 ../app/views/shared/views/ems_common/_main.html.haml:9 ../app/views/ems_datawarehouse/_main.html.haml:10 ../app/views/ops/_selected_by_roles.html.haml:17 ../app/views/ops/_selected_by_roles.html.haml:64 ../app/views/ops/_server_desc.html.haml:29 ../app/views/ops/_selected_by_servers.html.haml:48 ../app/views/ops/_selected_by_servers.html.haml:181 ../app/views/ems_middleware/_main.html.haml:10 ../app/views/report/_export_widgets.html.haml:29 ../app/views/report/_widget_show.html.haml:65 +#: ../app/helpers/ems_swift_helper/textual_summary.rb:16 ../app/helpers/container_group_helper/textual_summary.rb:25 ../app/helpers/ems_network_helper/textual_summary.rb:22 ../app/helpers/ems_cloud_helper/textual_summary.rb:25 ../app/helpers/ems_infra_helper/textual_summary.rb:23 ../app/helpers/ems_datawarehouse_helper/textual_summary.rb:12 ../app/helpers/ems_cinder_helper/textual_summary.rb:16 ../app/helpers/ems_physical_infra_helper/textual_summary.rb:23 ../app/helpers/ems_storage_helper/textual_summary.rb:19 ../app/helpers/ems_container_helper/textual_summary.rb:25 ../app/helpers/compliance_summary_helper.rb:7 ../app/helpers/service_helper/textual_summary.rb:186 ../app/helpers/container_node_helper/textual_summary.rb:31 ../app/helpers/ems_middleware_helper/textual_summary.rb:20 ../app/helpers/cloud_volume_backup_helper/textual_summary.rb:15 ../app/views/ops/_selected_by_roles.html.haml:17 ../app/views/ops/_selected_by_roles.html.haml:64 ../app/views/ops/_server_desc.html.haml:29 ../app/views/ops/_selected_by_servers.html.haml:48 ../app/views/ops/_selected_by_servers.html.haml:181 ../app/views/miq_request/_request.html.haml:31 ../app/views/miq_request/_request_details.html.haml:44 ../app/views/miq_request/_ae_prov_show.html.haml:22 ../app/views/report/_export_widgets.html.haml:29 ../app/views/report/_widget_show.html.haml:65 ../app/views/miq_ae_customization/_dialog_import_export.html.haml:29 msgid "Status" msgstr "" -#: ../app/helpers/application_helper.rb:1600 +#: ../app/helpers/application_helper.rb:1515 msgid "Status = %{row}" msgstr "" +#: ../app/helpers/application_helper.rb:1526 +msgid "Status = Queued" +msgstr "" + +#: ../app/helpers/application_helper.rb:1529 +msgid "Status = Running" +msgstr "" + #: ../app/views/ops/_zone_tree.html.haml:5 msgid "Status of Regional Roles for Servers in %{kind} %{description}" msgstr "" @@ -21053,7 +21579,7 @@ msgstr "" msgid "Step 3/3: Connection Settings" msgstr "" -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:14 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:185 ../app/controllers/middleware_server_controller.rb:35 ../app/controllers/middleware_server_controller.rb:76 ../app/views/catalog/_form_resources_info.html.haml:63 ../app/views/catalog/_form_resources_info.html.haml:63 ../app/views/catalog/_sandt_tree_show.html.haml:266 ../app/views/catalog/_sandt_tree_show.html.haml:266 +#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:14 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:187 ../app/controllers/middleware_server_group_controller.rb:26 ../app/controllers/middleware_server_controller.rb:37 ../app/controllers/middleware_server_controller.rb:78 ../app/views/catalog/_form_resources_info.html.haml:63 ../app/views/catalog/_form_resources_info.html.haml:63 ../app/views/catalog/_sandt_tree_show.html.haml:282 ../app/views/catalog/_sandt_tree_show.html.haml:282 msgid "Stop" msgstr "" @@ -21061,11 +21587,19 @@ msgstr "" msgid "Stop Server" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:184 +#: ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:39 +msgid "Stop Server Group" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:38 +msgid "Stop Servers in this Server Group" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:186 msgid "Stop the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:188 +#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:190 msgid "Stop the selected items?" msgstr "" @@ -21089,19 +21623,19 @@ msgstr "" msgid "Stopped On" msgstr "" -#: ../app/presenters/menu/default_menu.rb:152 ../app/helpers/chargeback_helper.rb:9 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:87 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:210 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:313 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:424 ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:31 ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:21 ../app/views/chargeback/_assignments_list.html.haml:29 ../app/views/configuration/_ui_2.html.haml:242 +#: ../app/presenters/menu/default_menu.rb:154 ../app/helpers/chargeback_helper.rb:9 ../app/views/chargeback/_assignments_list.html.haml:29 ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:31 ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:21 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:87 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:210 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:313 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:424 msgid "Storage" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:203 ../app/views/layouts/listnav/_host.html.haml:53 +#: ../app/helpers/host_helper/textual_summary.rb:210 ../app/views/layouts/listnav/_host.html.haml:53 msgid "Storage Adapters" msgstr "" -#: ../app/controllers/chargeback_controller.rb:406 +#: ../app/controllers/chargeback_controller.rb:402 msgid "Storage Chargeback Rate \"%{name}\"" msgstr "" -#: ../app/controllers/chargeback_controller.rb:398 +#: ../app/controllers/chargeback_controller.rb:394 msgid "Storage Chargeback Rates" msgstr "" @@ -21109,27 +21643,27 @@ msgstr "" msgid "Storage Clusters" msgstr "" -#: ../app/presenters/menu/default_menu.rb:209 ../app/helpers/ems_cloud_helper/textual_summary.rb:106 ../app/controllers/storage_manager_controller.rb:486 ../app/controllers/ems_common.rb:69 ../app/views/configuration/_ui_2.html.haml:269 ../app/views/ops/_settings_evm_servers_tab.html.haml:132 +#: ../app/views/cloud_volume/new.html.haml:11 +msgid "Storage Manager" +msgstr "" + +#: ../app/presenters/menu/default_menu.rb:207 ../app/helpers/ems_cloud_helper/textual_summary.rb:111 ../app/views/ops/_settings_evm_servers_tab.html.haml:132 msgid "Storage Managers" msgstr "" -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:55 ../app/helpers/container_group_helper/textual_summary.rb:33 +#: ../app/helpers/container_group_helper/textual_summary.rb:43 ../app/helpers/persistent_volume_helper/textual_summary.rb:61 msgid "Storage Medium Type" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:180 +#: ../app/helpers/vm_helper/textual_summary.rb:220 msgid "Storage Profile" msgstr "" -#: ../app/controllers/chargeback_controller.rb:415 +#: ../app/controllers/chargeback_controller.rb:411 msgid "Storage Rate Assignments" msgstr "" -#: ../app/views/ems_cluster/_main.html.haml:10 ../app/views/storage/_main.html.haml:17 ../app/views/vm_common/_main.html.haml:14 ../app/views/host/_main.html.haml:15 ../app/views/layouts/listnav/_ems_cluster.html.haml:94 ../app/views/layouts/listnav/_host.html.haml:152 -msgid "Storage Relationships" -msgstr "" - -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:76 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:231 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:329 +#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:76 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:228 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:326 msgid "String" msgstr "" @@ -21141,23 +21675,23 @@ msgstr "" msgid "Style" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:331 +#: ../app/controllers/report_controller/reports/editor.rb:336 msgid "Styling" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1644 +#: ../app/controllers/report_controller/reports/editor.rb:1659 msgid "Styling for '%{item}', first value is in error: %{message}" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1647 +#: ../app/controllers/report_controller/reports/editor.rb:1662 msgid "Styling for '%{item}', second value is in error: %{message}" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1650 +#: ../app/controllers/report_controller/reports/editor.rb:1665 msgid "Styling for '%{item}', third value is in error: %{message}" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1768 +#: ../app/controllers/report_controller/reports/editor.rb:1783 msgid "Styling tab is not available until at least 1 field has been selected" msgstr "" @@ -21173,7 +21707,7 @@ msgstr "" msgid "Sub-claim:" msgstr "" -#: ../app/views/miq_capacity/planning.html.haml:9 ../app/views/miq_capacity/planning.html.haml:32 ../app/views/ontap_storage_system/_create_logical_disk.html.haml:64 ../app/views/miq_policy/_rsop_options.html.haml:12 ../app/views/miq_policy/_rsop_options.html.haml:35 ../app/views/miq_request/_prov_form_buttons.html.haml:18 ../app/views/miq_request/_prov_form_buttons.html.haml:42 ../app/views/miq_request/_request.html.haml:266 ../app/views/vm_common/_associate_floating_ip.html.haml:42 ../app/views/vm_common/_live_migrate.html.haml:113 ../app/views/vm_common/_disassociate_floating_ip.html.haml:42 ../app/views/vm_common/_resize.html.haml:62 ../app/views/vm_common/_resize.html.haml:81 ../app/views/vm_common/_reconfigure.html.haml:401 ../app/views/vm_common/_reconfigure.html.haml:401 ../app/views/vm_common/_reconfigure.html.haml:407 ../app/views/vm_common/_reconfigure.html.haml:407 ../app/views/vm_common/_evacuate.html.haml:109 ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:6 ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:47 ../app/views/miq_ae_tools/_import_export.html.haml:122 ../app/views/miq_ae_tools/_import_export.html.haml:232 ../app/views/ontap_file_share/_create_datastore.html.haml:67 ../app/views/ops/_diagnostics_database_tab.html.haml:217 ../app/views/layouts/_x_dialog_buttons.html.haml:25 ../app/views/layouts/_x_dialog_buttons.html.haml:62 ../app/views/layouts/_x_edit_buttons.html.haml:71 ../app/views/layouts/_x_edit_buttons.html.haml:148 ../app/views/layouts/angular/_form_button_submit_angular.html.haml:8 ../app/views/layouts/angular/_form_button_submit_angular.html.haml:15 ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:6 +#: ../app/views/miq_policy/_rsop_options.html.haml:12 ../app/views/miq_policy/_rsop_options.html.haml:35 ../app/views/vm_common/_live_migrate.html.haml:113 ../app/views/vm_common/_reconfigure.html.haml:401 ../app/views/vm_common/_associate_floating_ip.html.haml:42 ../app/views/vm_common/_evacuate.html.haml:109 ../app/views/vm_common/_disassociate_floating_ip.html.haml:42 ../app/views/vm_common/_resize.html.haml:62 ../app/views/vm_common/_resize.html.haml:81 ../app/views/miq_capacity/planning.html.haml:9 ../app/views/miq_capacity/planning.html.haml:32 ../app/views/ops/_diagnostics_database_tab.html.haml:217 ../app/views/miq_request/_request.html.haml:266 ../app/views/miq_request/_prov_form_buttons.html.haml:18 ../app/views/miq_request/_prov_form_buttons.html.haml:42 ../app/views/layouts/angular/_form_button_submit_angular.html.haml:8 ../app/views/layouts/_x_dialog_buttons.html.haml:25 ../app/views/layouts/_x_dialog_buttons.html.haml:62 ../app/views/layouts/_x_edit_buttons.html.haml:71 ../app/views/layouts/_x_edit_buttons.html.haml:148 ../app/views/miq_ae_tools/_import_export.html.haml:122 ../app/views/miq_ae_tools/_import_export.html.haml:232 ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:6 ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:47 ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:6 msgid "Submit" msgstr "" @@ -21193,19 +21727,23 @@ msgstr "" msgid "Submit Policy Simulation for the selected VMs" msgstr "" -#: ../app/views/ontap_file_share/_create_datastore.html.haml:67 -msgid "Submit this Create Datastore request" +#: ../app/views/miq_request/_prov_form_buttons.html.haml:19 +msgid "Submit this provisioning request" msgstr "" -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:64 -msgid "Submit this Create Logical Disk request" +#: ../app/views/network_router/add_interface_select.html.haml:16 ../app/views/network_router/remove_interface_select.html.haml:16 +msgid "Subnet" msgstr "" -#: ../app/views/miq_request/_prov_form_buttons.html.haml:19 -msgid "Submit this provisioning request" +#: ../app/controllers/network_router_controller.rb:301 +msgid "Subnet \"%{subnetname}\" added to Router \"%{name}\"" msgstr "" -#: ../app/views/cloud_subnet/new.html.haml:86 +#: ../app/controllers/network_router_controller.rb:396 +msgid "Subnet \"%{subnetname}\" removed from Router \"%{name}\"" +msgstr "" + +#: ../app/views/cloud_subnet/new.html.haml:94 msgid "Subnet CIDR" msgstr "" @@ -21221,7 +21759,7 @@ msgstr "" msgid "Subnet Range" msgstr "" -#: ../app/presenters/menu/default_menu.rb:140 ../app/controllers/vm_common.rb:513 +#: ../app/presenters/menu/default_menu.rb:143 ../app/controllers/vm_common.rb:367 msgid "Subnets" msgstr "" @@ -21229,7 +21767,7 @@ msgstr "" msgid "Subscribe to this feed" msgstr "" -#: ../app/controllers/ops_controller/settings/common.rb:245 +#: ../app/controllers/ops_controller/settings/common.rb:239 msgid "Subscription Credentials validated successfully" msgstr "" @@ -21237,7 +21775,7 @@ msgstr "" msgid "Subscription ID" msgstr "" -#: ../app/views/ops/_settings_replication_tab.html.haml:106 +#: ../app/views/ops/_settings_replication_tab.html.haml:34 msgid "Subscriptions" msgstr "" @@ -21245,15 +21783,15 @@ msgstr "" msgid "Substitute: %{substitute}" msgstr "" -#: ../app/views/miq_ae_class/_class_fields.html.haml:39 ../app/views/miq_ae_class/_instance_form.html.haml:119 +#: ../app/views/miq_ae_class/_instance_form.html.haml:119 ../app/views/miq_ae_class/_class_fields.html.haml:39 msgid "Substitution:" msgstr "" -#: ../app/views/catalog/_form_basic_info.html.haml:103 ../app/views/catalog/_sandt_tree_show.html.haml:92 +#: ../app/views/catalog/_sandt_tree_show.html.haml:107 ../app/views/catalog/_form_basic_info.html.haml:120 msgid "Subtype" msgstr "" -#: ../app/controllers/catalog_controller.rb:857 +#: ../app/controllers/catalog_controller.rb:870 msgid "Subtype is required." msgstr "" @@ -21269,7 +21807,7 @@ msgstr "" msgid "Successful Events" msgstr "" -#: ../app/controllers/application_controller.rb:1395 +#: ../app/controllers/application_controller.rb:1402 msgid "Successfully deleted Saved Report from the %{product} Database" msgid_plural "Successfully deleted Saved Reports from the %{product} Database" msgstr[0] "" @@ -21283,35 +21821,43 @@ msgstr "" msgid "Sum 'Other' values" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:333 ../app/views/miq_capacity/_bottlenecks_tabs.html.haml:4 ../app/views/miq_capacity/_planning_tabs.html.haml:4 ../app/views/miq_capacity/_utilization_tabs.html.haml:4 ../app/views/static/deploy_containers_provider/deploy-provider-review-summary.html.haml:5 ../app/views/provider_foreman/_configuration_profile.html.haml:4 ../app/views/provider_foreman/_inventory_group.html.haml:4 ../app/views/ops/_all_tabs.html.haml:166 ../app/views/ops/_all_tabs.html.haml:277 ../app/views/layouts/listnav/_container_image.html.haml:12 ../app/views/layouts/listnav/_ems_middleware.html.haml:10 ../app/views/layouts/listnav/_configuration_job.html.haml:12 ../app/views/layouts/listnav/_ems_infra.html.haml:14 ../app/views/layouts/listnav/_container_route.html.haml:12 ../app/views/layouts/listnav/_ems_network.html.haml:10 ../app/views/layouts/listnav/_container_group.html.haml:12 ../app/views/layouts/listnav/_host_aggregate.html.haml:12 ../app/views/layouts/listnav/_ems_cluster.html.haml:13 ../app/views/layouts/listnav/_network_router.html.haml:12 ../app/views/layouts/listnav/_middleware_datasource.html.haml:12 ../app/views/layouts/listnav/_persistent_volume.html.haml:12 ../app/views/layouts/listnav/_container_template.html.haml:12 ../app/views/layouts/listnav/_ems_datawarehouse.html.haml:10 ../app/views/layouts/listnav/_storage_manager.html.haml:12 ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:12 ../app/views/layouts/listnav/_floating_ip.html.haml:12 ../app/views/layouts/listnav/_middleware_server.html.haml:12 ../app/views/layouts/listnav/_cloud_network.html.haml:12 ../app/views/layouts/listnav/_network_port.html.haml:12 ../app/views/layouts/listnav/_load_balancer.html.haml:12 ../app/views/layouts/listnav/_middleware_domain.html.haml:12 ../app/views/layouts/listnav/_host.html.haml:36 ../app/views/layouts/listnav/_container_build.html.haml:12 ../app/views/layouts/listnav/_pxe_server.html.haml:12 ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:12 ../app/views/layouts/listnav/_ems_storage.html.haml:10 ../app/views/layouts/listnav/_security_group.html.haml:12 ../app/views/layouts/listnav/_cloud_object_store_object.html.haml:12 ../app/views/layouts/listnav/_middleware_deployment.html.haml:12 ../app/views/layouts/listnav/_ems_container.html.haml:12 ../app/views/layouts/listnav/_storage.html.haml:13 ../app/views/layouts/listnav/_cloud_tenant.html.haml:12 ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:13 ../app/views/layouts/listnav/_resource_pool.html.haml:13 ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:12 ../app/views/layouts/listnav/_ontap_file_share.html.haml:12 ../app/views/layouts/listnav/_container_project.html.haml:12 ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:12 ../app/views/layouts/listnav/_middleware_server_group.html.haml:12 ../app/views/layouts/listnav/_container_image_registry.html.haml:12 ../app/views/layouts/listnav/_cloud_subnet.html.haml:12 ../app/views/layouts/listnav/_container_replicator.html.haml:12 ../app/views/layouts/listnav/_cloud_volume.html.haml:12 ../app/views/layouts/listnav/_service.html.haml:12 ../app/views/layouts/listnav/_availability_zone.html.haml:12 ../app/views/layouts/listnav/_middleware_messaging.html.haml:12 ../app/views/layouts/listnav/_ontap_storage_system.html.haml:12 ../app/views/layouts/listnav/_container_service.html.haml:12 ../app/views/layouts/listnav/_flavor.html.haml:12 ../app/views/layouts/listnav/_miq_ae_class.html.haml:12 ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:12 ../app/views/layouts/listnav/_orchestration_stack.html.haml:12 ../app/views/layouts/listnav/_ems_cloud.html.haml:12 ../app/views/layouts/listnav/_container_node.html.haml:12 +#: ../app/controllers/report_controller/reports/editor.rb:338 ../app/views/miq_capacity/_bottlenecks_tabs.html.haml:4 ../app/views/miq_capacity/_planning_tabs.html.haml:4 ../app/views/miq_capacity/_utilization_tabs.html.haml:4 ../app/views/ops/_all_tabs.html.haml:166 ../app/views/ops/_all_tabs.html.haml:277 ../app/views/static/deploy_containers_provider/deploy-provider-review-summary.html.haml:5 ../app/views/layouts/listnav/_middleware_domain.html.haml:12 ../app/views/layouts/listnav/_cloud_subnet.html.haml:12 ../app/views/layouts/listnav/_container_template.html.haml:12 ../app/views/layouts/listnav/_middleware_server.html.haml:12 ../app/views/layouts/listnav/_host.html.haml:36 ../app/views/layouts/listnav/_container_project.html.haml:12 ../app/views/layouts/listnav/_storage_manager.html.haml:12 ../app/views/layouts/listnav/_storage.html.haml:13 ../app/views/layouts/listnav/_ems_datawarehouse.html.haml:10 ../app/views/layouts/listnav/_container_replicator.html.haml:12 ../app/views/layouts/listnav/_container_build.html.haml:12 ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:12 ../app/views/layouts/listnav/_ems_physical_infra.html.haml:12 ../app/views/layouts/listnav/_middleware_deployment.html.haml:12 ../app/views/layouts/listnav/_container_service.html.haml:12 ../app/views/layouts/listnav/_container_node.html.haml:12 ../app/views/layouts/listnav/_middleware_server_group.html.haml:12 ../app/views/layouts/listnav/_middleware_datasource.html.haml:12 ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:12 ../app/views/layouts/listnav/_cloud_tenant.html.haml:12 ../app/views/layouts/listnav/_flavor.html.haml:12 ../app/views/layouts/listnav/_persistent_volume.html.haml:12 ../app/views/layouts/listnav/_cloud_network.html.haml:12 ../app/views/layouts/listnav/_cloud_volume.html.haml:12 ../app/views/layouts/listnav/_network_port.html.haml:12 ../app/views/layouts/listnav/_service.html.haml:12 ../app/views/layouts/listnav/_load_balancer.html.haml:12 ../app/views/layouts/listnav/_ems_network.html.haml:10 ../app/views/layouts/listnav/_configuration_job.html.haml:12 ../app/views/layouts/listnav/_pxe_server.html.haml:12 ../app/views/layouts/listnav/_floating_ip.html.haml:12 ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:12 ../app/views/layouts/listnav/_container_group.html.haml:12 ../app/views/layouts/listnav/_container_route.html.haml:12 ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:12 ../app/views/layouts/listnav/_network_router.html.haml:12 ../app/views/layouts/listnav/_resource_pool.html.haml:13 ../app/views/layouts/listnav/_host_aggregate.html.haml:12 ../app/views/layouts/listnav/_ems_cloud.html.haml:12 ../app/views/layouts/listnav/_ems_storage.html.haml:10 ../app/views/layouts/listnav/_container_image_registry.html.haml:12 ../app/views/layouts/listnav/_orchestration_stack.html.haml:12 ../app/views/layouts/listnav/_container_image.html.haml:12 ../app/views/layouts/listnav/_middleware_messaging.html.haml:12 ../app/views/layouts/listnav/_cloud_object_store_object.html.haml:12 ../app/views/layouts/listnav/_ems_infra.html.haml:14 ../app/views/layouts/listnav/_ems_cluster.html.haml:13 ../app/views/layouts/listnav/_availability_zone.html.haml:12 ../app/views/layouts/listnav/_security_group.html.haml:12 ../app/views/layouts/listnav/_ems_middleware.html.haml:10 ../app/views/layouts/listnav/_ems_container.html.haml:12 ../app/views/layouts/listnav/_miq_ae_class.html.haml:12 ../app/views/provider_foreman/_inventory_group.html.haml:4 ../app/views/provider_foreman/_configuration_profile.html.haml:4 ../app/views/automation_manager/_inventory_group.html.haml:4 msgid "Summary" msgstr "" -#: ../app/helpers/application_helper/toolbar/dashboard_summary_toggle_view.rb:13 +#: ../app/views/configuration/_ui_2.html.haml:22 +msgid "Summary Screens" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/dashboard_summary_toggle_view.rb:14 ../app/helpers/application_helper/toolbar/container_project_view.rb:6 msgid "Summary View" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1723 +#: ../app/controllers/report_controller/reports/editor.rb:1738 msgid "Summary tab is not available until at least 1 field has been selected" msgstr "" -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 +#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 msgid "Sunday" msgstr "" -#: ../app/assets/javascripts/miq_application.js:1563 +#: ../app/helpers/application_helper/button/rbac_user_copy.rb:5 +msgid "Super Administrator can not be copied" +msgstr "" + +#: ../app/assets/javascripts/miq_application.js:1570 msgid "Support Case must be provided to collect logs" msgstr "" -#: ../app/views/provider_foreman/_configuration_script.html.haml:18 +#: ../app/views/provider_foreman/_configuration_script.html.haml:18 ../app/views/automation_manager/_configuration_script.html.haml:18 msgid "Surveys" msgstr "" -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:41 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:215 ../app/helpers/application_helper/toolbar/x_vm_center.rb:216 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:255 ../app/controllers/middleware_server_controller.rb:21 ../app/views/catalog/_form_resources_info.html.haml:120 +#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:41 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:256 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:217 ../app/helpers/application_helper/toolbar/x_vm_center.rb:225 ../app/controllers/middleware_server_group_controller.rb:17 ../app/controllers/middleware_server_controller.rb:23 ../app/views/catalog/_form_resources_info.html.haml:120 msgid "Suspend" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:56 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:61 +#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:57 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:62 msgid "Suspend Role" msgstr "" @@ -21319,27 +21865,35 @@ msgstr "" msgid "Suspend Server" msgstr "" -#: ../app/controllers/ops_controller/diagnostics.rb:672 +#: ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:50 +msgid "Suspend Server Group" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:49 +msgid "Suspend Server in this Server Group" +msgstr "" + +#: ../app/controllers/ops_controller/diagnostics.rb:663 msgid "Suspend is not allowed for the selected item" msgstr "" -#: ../app/controllers/ops_controller/diagnostics.rb:680 +#: ../app/controllers/ops_controller/diagnostics.rb:671 msgid "Suspend successfully initiated" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:51 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:55 +#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:52 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:56 msgid "Suspend the %{server_role_description} Role on Server %{server_name} [%{server_id}]" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:58 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:63 +#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:59 ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:64 msgid "Suspend the %{server_role_description} Role on Server %{server_name} [%{server_id}]?" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:214 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:254 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:255 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:216 msgid "Suspend the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:218 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:258 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:259 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:220 msgid "Suspend the selected items?" msgstr "" @@ -21351,11 +21905,11 @@ msgstr "" msgid "Suspend this Instance?" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:215 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:224 msgid "Suspend this VM" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:218 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:227 msgid "Suspend this VM?" msgstr "" @@ -21363,27 +21917,31 @@ msgstr "" msgid "Suspend this server" msgstr "" -#: ../app/presenters/tree_node_builder.rb:150 +#: ../app/presenters/tree_builder_datacenter.rb:16 +msgid "Switch" +msgstr "" + +#: ../app/presenters/tree_node/switch.rb:3 msgid "Switch: %{name}" msgstr "" -#: ../app/controllers/infra_networking_controller.rb:274 +#: ../app/controllers/infra_networking_controller.rb:280 msgid "Switches" msgstr "" -#: ../app/controllers/infra_networking_controller.rb:352 ../app/controllers/infra_networking_controller.rb:369 ../app/controllers/infra_networking_controller.rb:386 +#: ../app/controllers/infra_networking_controller.rb:358 ../app/controllers/infra_networking_controller.rb:375 ../app/controllers/infra_networking_controller.rb:392 msgid "Switches for %{model} \"%{name}\"" msgstr "" -#: ../app/helpers/ui_constants.rb:416 +#: ../app/helpers/ui_constants.rb:413 msgid "Synchronizing" msgstr "" -#: ../app/views/miq_policy/_event_details.html.haml:216 ../app/views/miq_policy/_event_details.html.haml:396 +#: ../app/views/miq_policy/_event_details.html.haml:199 ../app/views/miq_policy/_event_details.html.haml:379 msgid "Synchronous" msgstr "" -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:264 +#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:253 msgid "Syntax error in YAML file: %{error_message}" msgstr "" @@ -21395,11 +21953,11 @@ msgstr "" msgid "Sysprep \"%{params}\" upload was successful" msgstr "" -#: ../app/helpers/ui_constants.rb:439 +#: ../app/helpers/ui_constants.rb:436 msgid "System" msgstr "" -#: ../app/helpers/container_node_helper/textual_summary.rb:60 +#: ../app/helpers/container_node_helper/textual_summary.rb:73 msgid "System BIOS UUID" msgstr "" @@ -21407,19 +21965,15 @@ msgstr "" msgid "System Default" msgstr "" -#: ../app/controllers/pxe_controller.rb:74 +#: ../app/controllers/pxe_controller.rb:73 msgid "System Image Types" msgstr "" -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:66 ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:45 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:73 -msgid "System Name" -msgstr "" - -#: ../app/controllers/application_controller.rb:1297 +#: ../app/controllers/application_controller.rb:1304 msgid "System Type" msgstr "" -#: ../app/views/ops/_schedule_show.html.haml:91 ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:11 ../app/views/layouts/_ae_resolve_options.html.haml:19 +#: ../app/views/ops/_schedule_show.html.haml:91 ../app/views/layouts/_ae_resolve_options.html.haml:19 ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:11 msgid "System/Process" msgstr "" @@ -21427,11 +21981,11 @@ msgstr "" msgid "System/Process/" msgstr "" -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:103 ../app/views/layouts/exp_atom/_edit_find.html.haml:216 +#: ../app/views/layouts/exp_atom/_edit_find.html.haml:216 ../app/views/layouts/exp_atom/_edit_field.html.haml:103 msgid "THROUGH" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:320 +#: ../app/controllers/miq_ae_customization_controller.rb:334 msgid "Tab" msgstr "" @@ -21439,7 +21993,7 @@ msgstr "" msgid "Tab Information" msgstr "" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:683 +#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:673 msgid "Tab Label is required" msgstr "" @@ -21455,19 +22009,19 @@ msgstr "" msgid "Table" msgstr "" -#: ../app/controllers/ops_controller/db.rb:127 +#: ../app/controllers/ops_controller/db.rb:119 msgid "Tables" msgstr "" -#: ../app/views/ops/_db_summary.html.haml:12 +#: ../app/helpers/ops_helper/textual_summary.rb:17 msgid "Tables with Most Rows" msgstr "" -#: ../app/helpers/ops_helper/textual_summary.rb:116 ../app/views/ops/_db_summary.html.haml:16 +#: ../app/helpers/ops_helper/textual_summary.rb:25 ../app/helpers/ops_helper/textual_summary.rb:126 msgid "Tables with Most Wasted Space" msgstr "" -#: ../app/helpers/ops_helper/textual_summary.rb:100 +#: ../app/helpers/ops_helper/textual_summary.rb:110 msgid "Tables with the Most Rows" msgstr "" @@ -21475,7 +22029,7 @@ msgstr "" msgid "Tabular View" msgstr "" -#: ../app/helpers/ui_constants.rb:533 ../app/views/miq_policy/_action_details.html.haml:318 ../app/views/report/_form_filter_chargeback.html.haml:110 ../app/views/report/_form_filter_chargeback.html.haml:201 ../app/views/layouts/exp_atom/_editor.html.haml:71 +#: ../app/helpers/ui_constants.rb:500 ../app/views/miq_policy/_action_details.html.haml:318 ../app/views/report/_form_filter_chargeback.html.haml:138 ../app/views/report/_form_filter_chargeback.html.haml:229 ../app/views/layouts/exp_atom/_editor.html.haml:68 msgid "Tag" msgstr "" @@ -21487,7 +22041,7 @@ msgstr "" msgid "Tag Assignment (Tags common to all selected items)" msgstr "" -#: ../app/views/miq_policy/_alert_profile_assign.html.haml:51 ../app/views/chargeback/_cb_assignments.html.haml:40 ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:14 ../app/views/report/_form_filter_chargeback.html.haml:88 +#: ../app/views/miq_policy/_alert_profile_assign.html.haml:51 ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:14 ../app/views/report/_form_filter_chargeback.html.haml:116 ../app/views/chargeback/_cb_assignments.html.haml:40 msgid "Tag Category" msgstr "" @@ -21499,38 +22053,66 @@ msgstr "" msgid "Tag edits were successfully saved" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:111 +#: ../app/views/ems_container/ad_hoc/_list_view.html.haml:63 +msgid "Tag list" +msgstr "" + +#: ../app/views/miq_policy/_action_options.html.haml:110 msgid "Tag to Apply" msgstr "" -#: ../app/presenters/tree_builder_tags.rb:62 +#: ../app/presenters/tree_builder_tags.rb:69 msgid "Tag: %{description}" msgstr "" -#: ../app/helpers/ui_constants.rb:457 ../app/helpers/ui_constants.rb:465 ../app/helpers/ui_constants.rb:476 ../app/helpers/ui_constants.rb:479 ../app/helpers/ui_constants.rb:488 ../app/helpers/ui_constants.rb:516 ../app/helpers/ui_constants.rb:519 -msgid "Tagged %{tables}" +#: ../app/helpers/ui_constants.rb:452 +msgid "Tagged Cluster / Deployment Roles" +msgstr "" + +#: ../app/helpers/ui_constants.rb:490 +msgid "Tagged Container Images" +msgstr "" + +#: ../app/helpers/ui_constants.rb:467 +msgid "Tagged Datastores" msgstr "" -#: ../app/helpers/ui_constants.rb:451 +#: ../app/helpers/ui_constants.rb:456 +msgid "Tagged Host / Nodes" +msgstr "" + +#: ../app/helpers/ui_constants.rb:448 msgid "Tagged Providers" msgstr "" -#: ../app/controllers/ops_controller.rb:633 ../app/views/configuration/_ui_2.html.haml:22 +#: ../app/helpers/ui_constants.rb:461 +msgid "Tagged Resource Pools" +msgstr "" + +#: ../app/helpers/ui_constants.rb:462 ../app/helpers/ui_constants.rb:489 +msgid "Tagged VMs and Instances" +msgstr "" + +#: ../app/controllers/ops_controller.rb:672 ../app/views/configuration/_ui_2.html.haml:22 msgid "Tagging" msgstr "" -#: ../app/views/infra_topology/show.html.haml:71 ../app/views/miq_ae_tools/_import_export.html.haml:214 ../app/views/miq_ae_class/_git_domain_refresh.html.haml:47 ../app/views/ops/_rbac_tag_box.html.haml:11 ../app/views/ops/_all_tabs.html.haml:82 ../app/views/ops/_rbac_group_details.html.haml:276 ../app/views/network_topology/show.html.haml:166 ../app/views/cloud_topology/show.html.haml:90 +#: ../app/views/cloud_topology/show.html.haml:90 ../app/views/ops/_rbac_tag_box.html.haml:11 ../app/views/ops/_all_tabs.html.haml:82 ../app/views/infra_topology/show.html.haml:90 ../app/views/miq_ae_class/_git_domain_refresh.html.haml:47 ../app/views/physical_infra_topology/show.html.haml:71 ../app/views/network_topology/show.html.haml:185 ../app/views/miq_ae_tools/_import_export.html.haml:214 msgid "Tags" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:159 +#: ../app/helpers/application_helper/toolbar/host_center.rb:164 msgid "Take this item out of Maintenance Mode" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:162 +#: ../app/helpers/application_helper/toolbar/host_center.rb:167 msgid "Take this item out of Maintenance Mode?" msgstr "" +#: ../app/views/miq_policy/_action_options.html.haml:662 +msgid "Target Machine" +msgstr "" + #: ../app/views/miq_capacity/_planning_options.html.haml:264 msgid "Target Options / Limits" msgstr "" @@ -21539,15 +22121,15 @@ msgstr "" msgid "Target Options/Limits" msgstr "" -#: ../app/helpers/container_service_helper/textual_summary.rb:18 +#: ../app/helpers/container_service_helper/textual_summary.rb:14 msgid "Target Port" msgstr "" -#: ../app/presenters/tree_node_builder.rb:378 +#: ../app/presenters/tree_node/miq_scsi_target.rb:10 msgid "Target: %{text}" msgstr "" -#: ../app/views/miq_task/_tasks_options.html.haml:138 +#: ../app/views/miq_task/_tasks_options.html.haml:150 msgid "Task State" msgstr "" @@ -21555,23 +22137,23 @@ msgstr "" msgid "Task Status" msgstr "" -#: ../app/presenters/menu/default_menu.rb:250 ../app/assets/javascripts/services/event_notifications_service.js:62 +#: ../app/presenters/menu/default_menu.rb:285 ../app/assets/javascripts/services/event_notifications_service.js:62 msgid "Tasks" msgstr "" -#: ../app/controllers/miq_task_controller.rb:52 +#: ../app/controllers/miq_task_controller.rb:50 msgid "Tasks for %{name}" msgstr "" -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:40 ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:117 ../app/views/configuration/_ui_1.html.haml:25 +#: ../app/views/configuration/_ui_1.html.haml:24 ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:40 ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:117 msgid "Template" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:621 +#: ../app/controllers/ops_controller/settings/schedules.rb:616 msgid "Template Analysis" msgstr "" -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:165 +#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:172 msgid "Template Selection" msgstr "" @@ -21583,19 +22165,19 @@ msgstr "" msgid "Template:" msgstr "" -#: ../app/helpers/ems_infra_helper/textual_summary.rb:153 ../app/controllers/application_controller/miq_request_methods.rb:615 ../app/controllers/vm_infra_controller.rb:32 ../app/controllers/miq_template_controller.rb:20 ../app/controllers/host_controller.rb:95 ../app/controllers/vm_common.rb:1260 ../app/controllers/ems_common.rb:71 ../app/views/configuration/_ui_2.html.haml:210 ../app/views/layouts/listnav/_ems_infra.html.haml:70 ../app/views/layouts/listnav/_host.html.haml:136 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:43 +#: ../app/helpers/ems_infra_helper/textual_summary.rb:148 ../app/controllers/miq_template_controller.rb:21 ../app/controllers/vm_common.rb:1071 ../app/controllers/host_controller.rb:78 ../app/controllers/application_controller/miq_request_methods.rb:618 ../app/controllers/vm_infra_controller.rb:33 ../app/views/configuration/_ui_2.html.haml:211 ../app/views/layouts/listnav/_host.html.haml:136 ../app/views/layouts/listnav/_ems_infra.html.haml:70 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:43 msgid "Templates" msgstr "" -#: ../app/controllers/vm_common.rb:1258 ../app/controllers/vm_or_template_controller.rb:22 ../app/views/configuration/_ui_2.html.haml:49 +#: ../app/controllers/vm_or_template_controller.rb:23 ../app/controllers/vm_common.rb:1069 ../app/views/configuration/_ui_2.html.haml:50 msgid "Templates & Images" msgstr "" -#: ../app/views/provider_foreman/_main_configuration_profile.html.haml:16 ../app/views/provider_foreman/_main.html.haml:16 +#: ../app/helpers/provider_foreman_helper.rb:104 ../app/views/provider_foreman/_main_configuration_profile.html.haml:16 msgid "Tenancy" msgstr "" -#: ../app/controllers/ops_controller/ops_rbac.rb:853 ../app/views/report/_form_filter_chargeback.html.haml:23 ../app/views/report/_form_filter_chargeback.html.haml:66 +#: ../app/controllers/application_controller/miq_request_methods.rb:418 ../app/controllers/ops_controller/ops_rbac.rb:858 ../app/views/report/_form_filter_chargeback.html.haml:51 ../app/views/report/_form_filter_chargeback.html.haml:94 msgid "Tenant" msgstr "" @@ -21615,7 +22197,7 @@ msgstr "" msgid "Tenant Name" msgstr "" -#: ../app/helpers/ops_helper/textual_summary.rb:138 ../app/views/ops/_rbac_tenant_details.html.haml:139 +#: ../app/helpers/ops_helper/textual_summary.rb:148 ../app/views/ops/_rbac_tenant_details.html.haml:139 msgid "Tenant Quota" msgstr "" @@ -21623,7 +22205,7 @@ msgstr "" msgid "Tenant no longer exists" msgstr "" -#: ../app/presenters/tree_builder_ops_rbac.rb:40 ../app/presenters/menu/default_menu.rb:51 ../app/helpers/ui_constants.rb:491 ../app/helpers/ui_constants.rb:525 ../app/controllers/ops_controller.rb:675 ../app/controllers/ops_controller.rb:690 ../app/views/configuration/_ui_2.html.haml:175 +#: ../app/presenters/tree_builder_ops_rbac.rb:44 ../app/presenters/menu/default_menu.rb:52 ../app/helpers/ui_constants.rb:468 ../app/helpers/ui_constants.rb:492 ../app/controllers/ops_controller.rb:714 ../app/controllers/ops_controller.rb:729 ../app/views/configuration/_ui_2.html.haml:176 msgid "Tenants" msgstr "" @@ -21631,7 +22213,7 @@ msgstr "" msgid "Tenants (%{tenants_count})" msgstr "" -#: ../app/views/ops/_settings_server_tab.html.haml:549 +#: ../app/views/ops/_settings_server_tab.html.haml:513 msgid "Test E-mail Address" msgstr "" @@ -21643,6 +22225,10 @@ msgstr "" msgid "Text (REGEX)" msgstr "" +#: ../app/helpers/configuration_helper/configuration_view_helper.rb:65 ../app/helpers/configuration_helper/configuration_view_helper.rb:70 +msgid "Textual View" +msgstr "" + #: ../app/services/user_validation_service.rb:86 msgid "The %{product} Server is still starting, you have been redirected to the diagnostics page for problem determination" msgstr "" @@ -21651,15 +22237,15 @@ msgstr "" msgid "The %{product} Server is still starting. If this message persists, please contact your %{product} administrator." msgstr "" -#: ../app/helpers/ui_constants.rb:449 ../app/helpers/ui_constants.rb:484 ../app/helpers/ui_constants.rb:499 ../app/helpers/ui_constants.rb:506 ../app/views/miq_policy/_alert_profile_details.html.haml:194 +#: ../app/helpers/ui_constants.rb:446 ../app/helpers/ui_constants.rb:465 ../app/helpers/ui_constants.rb:474 ../app/helpers/ui_constants.rb:478 ../app/helpers/ui_constants.rb:485 ../app/views/miq_policy/_alert_profile_details.html.haml:194 msgid "The Enterprise" msgstr "" -#: ../app/controllers/ems_common.rb:720 +#: ../app/controllers/ems_common.rb:604 msgid "The Host Default VNC Port Range ending port must be equal to or higher than the starting point" msgstr "" -#: ../app/views/vm_common/console_vmrc.html.haml:490 +#: ../app/views/vm_common/console_vmrc.html.haml:471 msgid "The Remote Console is connecting" msgstr "" @@ -21667,15 +22253,15 @@ msgstr "" msgid "The Subscription Management Service you register with will provide your systems with updates and allow additional management." msgstr "" -#: ../app/views/vm_common/console_vmrc.html.haml:83 +#: ../app/views/vm_common/console_vmrc.html.haml:86 msgid "The VM has been suspended, powered off or the connection to the server has been lost. \\nThis console window will now close." msgstr "" -#: ../app/controllers/application_controller/filter.rb:853 +#: ../app/controllers/application_controller/filter.rb:851 msgid "The check count value must be an integer to commit this expression element" msgstr "" -#: ../app/controllers/application_controller/filter.rb:376 +#: ../app/controllers/application_controller/filter.rb:375 msgid "The current search details have been reset" msgstr "" @@ -21683,7 +22269,7 @@ msgstr "" msgid "The number of Masters must be 1, 3, or 5" msgstr "" -#: ../app/controllers/application_controller.rb:1412 +#: ../app/controllers/application_controller.rb:1419 msgid "The selected %{label} is not in the current region" msgstr "" @@ -21691,7 +22277,7 @@ msgstr "" msgid "The selected %{models} was deleted" msgstr "" -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:418 ../app/controllers/auth_key_pair_cloud_controller.rb:190 ../app/controllers/cloud_volume_controller.rb:420 ../app/controllers/host_aggregate_controller.rb:352 +#: ../app/controllers/host_aggregate_controller.rb:341 ../app/controllers/cloud_volume_controller.rb:486 ../app/controllers/ops_controller/settings/analysis_profiles.rb:409 ../app/controllers/auth_key_pair_cloud_controller.rb:205 msgid "The selected %{model} was deleted" msgstr "" @@ -21699,13 +22285,13 @@ msgstr "" msgid "The selected %{model} were marked as %{action}" msgstr "" -#: ../app/controllers/catalog_controller.rb:284 +#: ../app/controllers/catalog_controller.rb:287 msgid "The selected %{number} Catalog Item was deleted" msgid_plural "The selected %{number} Catalog Items were deleted" msgstr[0] "" msgstr[1] "" -#: ../app/controllers/application_controller/ci_processing.rb:2719 ../app/controllers/application_controller/ci_processing.rb:2752 ../app/controllers/catalog_controller.rb:274 ../app/controllers/ems_common.rb:1071 +#: ../app/controllers/ems_common.rb:960 ../app/controllers/catalog_controller.rb:277 ../app/controllers/application_controller/ci_processing.rb:2751 ../app/controllers/application_controller/ci_processing.rb:2784 msgid "The selected %{record} was deleted" msgstr "" @@ -21721,11 +22307,11 @@ msgstr "" msgid "The selected %{schedules} were enabled" msgstr "" -#: ../app/controllers/miq_request_controller.rb:528 +#: ../app/controllers/miq_request_controller.rb:525 msgid "The selected %{tables} were deleted" msgstr "" -#: ../app/controllers/ops_controller/diagnostics.rb:695 ../app/controllers/miq_request_controller.rb:538 +#: ../app/controllers/miq_request_controller.rb:535 ../app/controllers/ops_controller/diagnostics.rb:686 msgid "The selected %{table} was deleted" msgstr "" @@ -21733,11 +22319,11 @@ msgstr "" msgid "The selected Cloud Network was deleted" msgstr "" -#: ../app/controllers/cloud_subnet_controller.rb:148 +#: ../app/controllers/cloud_subnet_controller.rb:169 msgid "The selected Cloud Subnet was deleted" msgstr "" -#: ../app/controllers/cloud_volume_snapshot_controller.rb:61 +#: ../app/controllers/cloud_volume_snapshot_controller.rb:67 msgid "The selected Cloud Volume Snapshot was deleted" msgstr "" @@ -21749,7 +22335,11 @@ msgstr "" msgid "The selected Filter record was not found" msgstr "" -#: ../app/controllers/network_router_controller.rb:156 +#: ../app/controllers/floating_ip_controller.rb:127 +msgid "The selected Floating IP was deleted" +msgstr "" + +#: ../app/controllers/network_router_controller.rb:160 msgid "The selected Router was deleted" msgstr "" @@ -21765,15 +22355,19 @@ msgstr "" msgid "The selected Schedules have been queued to run" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:223 +#: ../app/controllers/ops_controller/settings/schedules.rb:217 msgid "The selected Schedules were disabled" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:221 +#: ../app/controllers/ops_controller/settings/schedules.rb:215 msgid "The selected Schedules were enabled" msgstr "" -#: ../app/controllers/miq_task_controller.rb:119 +#: ../app/controllers/security_group_controller.rb:150 +msgid "The selected Security Group was deleted" +msgstr "" + +#: ../app/controllers/miq_task_controller.rb:99 msgid "The selected Task was cancelled" msgstr "" @@ -21781,11 +22375,11 @@ msgstr "" msgid "The selected datasources were removed" msgstr "" -#: ../app/controllers/miq_task_controller.rb:191 +#: ../app/controllers/miq_task_controller.rb:171 msgid "The selected job no longer exists, Delete all older Tasks was not completed" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:141 ../app/helpers/application_helper/toolbar/miq_template_center.rb:138 ../app/helpers/application_helper/toolbar/x_vm_center.rb:288 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:144 ../app/helpers/application_helper/toolbar/x_vm_center.rb:301 msgid "The selected snapshot will be permanently deleted. Are you sure you want to delete the selected snapshot?" msgstr "" @@ -21793,11 +22387,11 @@ msgstr "" msgid "The server is initializing; access is being retried every 10 seconds . . ." msgstr "" -#: ../app/controllers/ops_controller/settings/common.rb:380 +#: ../app/controllers/ops_controller/settings/common.rb:338 msgid "The test email is being delivered, check \"%{email}\" to verify it was successful" msgstr "" -#: ../app/controllers/dashboard_controller.rb:599 ../app/controllers/application_controller.rb:1077 ../app/controllers/application_controller.rb:2303 ../app/controllers/ontap_file_share_controller.rb:48 ../app/controllers/ontap_storage_system_controller.rb:53 +#: ../app/controllers/application_controller.rb:1084 ../app/controllers/application_controller.rb:2309 ../app/controllers/dashboard_controller.rb:599 msgid "The user is not authorized for this task or item." msgstr "" @@ -21805,15 +22399,15 @@ msgstr "" msgid "The user's role is not authorized for any access, please contact the administrator!" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:719 +#: ../app/helpers/application_helper/button/vm_vnc_console.rb:13 msgid "The web-based VNC console is not available because the VM is not powered on" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:715 +#: ../app/helpers/application_helper/button/vm_console.rb:17 msgid "The web-based console is not available because the VM is not powered on" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:703 +#: ../app/helpers/application_helper/button/vm_console.rb:10 msgid "The web-based console is only available on IE, Firefox or Chrome (Windows/Linux)" msgstr "" @@ -21821,19 +22415,31 @@ msgstr "" msgid "The widget \"%{widget_name}\" is already part of the edited dashboard" msgstr "" +#: ../app/helpers/application_helper/button/instance_attach.rb:4 +msgid "There are no Cloud Volumes available to attach to this Instance." +msgstr "" + #: ../app/helpers/application_helper/button/instance_associate_floating_ip.rb:6 msgid "There are no Floating IPs available to this Instance." msgstr "" +#: ../app/helpers/application_helper/button/storage_scan.rb:14 +msgid "There are no running Hosts with valid credentials for this Datastore" +msgstr "" + #: ../app/controllers/application_controller/filter.rb:100 msgid "There is an error in the selected expression element, perhaps it was imported or edited manually." msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:803 -msgid "There should be atleast 2 Dashboards to Edit Sequence" +#: ../app/helpers/application_helper/button/db_seq_edit.rb:5 +msgid "There should be at least 2 Dashboards to Edit Sequence" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:593 +#: ../app/controllers/application_controller.rb:1807 +msgid "These VMs can not be migrated together." +msgstr "" + +#: ../app/helpers/vm_helper/textual_summary.rb:632 msgid "Thin Provisioning Used" msgstr "" @@ -21841,7 +22447,7 @@ msgstr "" msgid "This %{klass} is read only and cannot be modified" msgstr "" -#: ../app/helpers/application_helper/button/miq_action_modify.rb:15 +#: ../app/helpers/application_helper/button/miq_action_modify.rb:16 msgid "This Action belongs to a read only Policy and cannot be modified" msgstr "" @@ -21861,43 +22467,47 @@ msgstr "" msgid "This Condition is not assigned to any Policies." msgstr "" -#: ../app/helpers/application_helper/button/miq_action_modify.rb:16 +#: ../app/helpers/application_helper/button/miq_action_modify.rb:17 msgid "This Event belongs to a read only Policy and cannot be modified" msgstr "" -#: ../app/views/miq_policy/_event_details.html.haml:383 +#: ../app/views/miq_policy/_event_details.html.haml:366 msgid "This Event has no false Actions." msgstr "" -#: ../app/views/miq_policy/_event_details.html.haml:203 +#: ../app/views/miq_policy/_event_details.html.haml:186 msgid "This Event has no true Actions." msgstr "" -#: ../app/views/miq_policy/_event_details.html.haml:55 +#: ../app/views/miq_policy/_event_details.html.haml:38 msgid "This Event is not assigned to any Policies." msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:607 +#: ../app/helpers/application_helper/button/rbac_group_delete.rb:5 msgid "This Group is Read Only and can not be deleted" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:609 +#: ../app/helpers/application_helper/button/rbac_group_edit.rb:5 msgid "This Group is Read Only and can not be edited" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:571 +#: ../app/helpers/application_helper/button/host_miq_request_new.rb:6 msgid "This Host can not be provisioned because the MAC address is not known" msgstr "" -#: ../app/helpers/ui_constants.rb:553 +#: ../app/helpers/ui_constants.rb:520 msgid "This Hour" msgstr "" -#: ../app/helpers/ui_constants.rb:597 +#: ../app/helpers/application_helper/button/instance_detach.rb:4 +msgid "This Instance has no attached Cloud Volumes." +msgstr "" + +#: ../app/helpers/ui_constants.rb:564 msgid "This Month" msgstr "" -#: ../app/views/report/_form_filter_chargeback.html.haml:280 +#: ../app/views/report/_form_filter_chargeback.html.haml:308 msgid "This Month (partial)" msgstr "" @@ -21905,15 +22515,15 @@ msgstr "" msgid "This Policy is not assigned to any Profiles." msgstr "" -#: ../app/helpers/ui_constants.rb:605 +#: ../app/helpers/ui_constants.rb:572 msgid "This Quarter" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:686 +#: ../app/helpers/application_helper/button/rbac_role_delete.rb:6 msgid "This Role is Read Only and can not be deleted" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:689 +#: ../app/helpers/application_helper/button/rbac_role_edit.rb:5 msgid "This Role is Read Only and can not be edited" msgstr "" @@ -21921,7 +22531,7 @@ msgstr "" msgid "This Role is already active on this Server" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:687 +#: ../app/helpers/application_helper/button/rbac_role_delete.rb:8 msgid "This Role is in use by one or more Groups and can not be deleted" msgstr "" @@ -21937,19 +22547,19 @@ msgstr "" msgid "This Template is not orderable" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:157 ../app/helpers/application_helper/toolbar/miq_template_center.rb:154 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:160 msgid "This Template will revert to selected snapshot. Are you sure you want to revert to the selected snapshot?" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:304 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:321 msgid "This VM will revert to selected snapshot. Are you sure you want to revert to the selected snapshot?" msgstr "" -#: ../app/helpers/ui_constants.rb:590 +#: ../app/helpers/ui_constants.rb:557 msgid "This Week" msgstr "" -#: ../app/views/report/_form_filter_chargeback.html.haml:278 +#: ../app/views/report/_form_filter_chargeback.html.haml:306 msgid "This Week (partial)" msgstr "" @@ -21957,15 +22567,15 @@ msgstr "" msgid "This Widget content generation is already running or queued up" msgstr "" -#: ../app/helpers/ui_constants.rb:612 +#: ../app/helpers/ui_constants.rb:579 msgid "This Year" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:770 +#: ../app/helpers/application_helper/button/zone_collect_logs.rb:9 msgid "This Zone do not have Log Depot settings configured, collection not allowed" msgstr "" -#: ../app/helpers/application_helper/dialogs.rb:133 ../app/assets/javascripts/dialog_field_refresh.js:97 ../app/assets/javascripts/dialog_field_refresh.js:178 +#: ../app/helpers/application_helper/dialogs.rb:177 ../app/assets/javascripts/dialog_field_refresh.js:195 ../app/assets/javascripts/dialog_field_refresh.js:241 msgid "This element is disabled because it is read only" msgstr "" @@ -21973,6 +22583,10 @@ msgstr "" msgid "This element should be removed and recreated or you can report the error to your %{product} administrator." msgstr "" +#: ../app/helpers/application_helper/import_export_helper.rb:8 +msgid "This object already exists in the database with the same name" +msgstr "" + #: ../app/views/vm_common/console_mks.html.haml:202 msgid "This page requires the VMware MKS plugin. Install the plugin and try again." msgstr "" @@ -21981,19 +22595,23 @@ msgstr "" msgid "This policy does not currently respond to any Events." msgstr "" -#: ../app/helpers/application_helper/button/role_start.rb:11 ../app/helpers/application_helper/button/server_promote.rb:8 ../app/helpers/application_helper/button/server_demote.rb:8 ../app/helpers/application_helper/button/role_suspend.rb:6 +#: ../app/controllers/application_controller.rb:309 +msgid "This report isn't generated yet. It cannot be rendered." +msgstr "" + +#: ../app/helpers/application_helper/button/server_promote.rb:8 ../app/helpers/application_helper/button/role_suspend.rb:6 ../app/helpers/application_helper/button/role_start.rb:11 ../app/helpers/application_helper/button/server_demote.rb:8 msgid "This role can only be managed at the Region level" msgstr "" -#: ../app/views/ops/_rbac_group_details.html.haml:288 +#: ../app/views/ops/rbac_group/_customer_tags.html.haml:3 msgid "This user is limited to items with the selected tags." msgstr "" -#: ../app/views/ops/_rbac_group_details.html.haml:319 +#: ../app/views/ops/rbac_group/_vms_templates.html.haml:3 msgid "This user is limited to the selected folders and their children." msgstr "" -#: ../app/views/ops/_rbac_group_details.html.haml:299 +#: ../app/views/ops/rbac_group/_hosts_clusters.html.haml:3 msgid "This user is limited to the selected items and their children." msgstr "" @@ -22009,15 +22627,19 @@ msgstr "" msgid "This will show the entire report (all rows) in your browser. Do you want to proceed?" msgstr "" -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 +#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 msgid "Thursday" msgstr "" -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:73 ../app/helpers/configuration_helper/configuration_view_helper.rb:79 ../app/helpers/configuration_helper/configuration_view_helper.rb:85 ../app/helpers/application_helper/toolbar/x_gtl_view.rb:14 ../app/helpers/application_helper/toolbar/gtl_view.rb:14 ../app/views/configuration/_ui_1.html.haml:114 +#: ../app/helpers/application_helper/toolbar/gtl_view.rb:14 ../app/helpers/application_helper/toolbar/x_gtl_view.rb:14 ../app/helpers/configuration_helper/configuration_view_helper.rb:85 ../app/helpers/configuration_helper/configuration_view_helper.rb:91 ../app/helpers/configuration_helper/configuration_view_helper.rb:97 ../app/views/configuration/_ui_1.html.haml:113 msgid "Tile View" msgstr "" -#: ../app/controllers/configuration_controller.rb:298 ../app/views/miq_capacity/_planning_vm_profile.html.haml:116 ../app/views/miq_capacity/_utilization_options.html.haml:65 ../app/views/miq_capacity/_planning_options.html.haml:447 ../app/views/report/_form_filter_performance.html.haml:50 ../app/views/layouts/_perf_options.html.haml:161 +#: ../app/views/shared/views/_alerts_list.html.haml:164 ../app/assets/javascripts/services/alerts_center_service.js:247 +msgid "Time" +msgstr "" + +#: ../app/controllers/configuration_controller.rb:281 ../app/views/miq_capacity/_utilization_options.html.haml:65 ../app/views/miq_capacity/_planning_options.html.haml:447 ../app/views/miq_capacity/_planning_vm_profile.html.haml:116 ../app/views/report/_form_filter_performance.html.haml:50 ../app/views/layouts/_perf_options.html.haml:160 msgid "Time Profile" msgstr "" @@ -22025,11 +22647,11 @@ msgstr "" msgid "Time Profile Information" msgstr "" -#: ../app/controllers/configuration_controller.rb:238 ../app/controllers/configuration_controller.rb:504 +#: ../app/controllers/configuration_controller.rb:221 ../app/controllers/configuration_controller.rb:495 msgid "Time Profiles" msgstr "" -#: ../app/views/miq_capacity/_bottlenecks_options.html.haml:54 ../app/views/miq_capacity/_planning_vm_profile.html.haml:128 ../app/views/configuration/_ui_1.html.haml:146 ../app/views/ops/_schedule_form_timer.html.haml:43 ../app/views/report/_schedule_form_timer.html.haml:86 ../app/views/report/_form_filter_chargeback.html.haml:314 +#: ../app/views/configuration/_ui_1.html.haml:173 ../app/views/miq_capacity/_bottlenecks_options.html.haml:54 ../app/views/miq_capacity/_planning_vm_profile.html.haml:128 ../app/views/ops/_schedule_form_timer.html.haml:43 ../app/views/report/_form_filter_chargeback.html.haml:342 ../app/views/report/_schedule_form_timer.html.haml:86 msgid "Time Zone" msgstr "" @@ -22037,15 +22659,15 @@ msgstr "" msgid "Time threshold for the field criteria must be selected" msgstr "" -#: ../app/controllers/configuration_controller.rb:417 +#: ../app/controllers/configuration_controller.rb:409 msgid "TimeProfile \"%{name}\": Error during 'save': %{error_message}" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:335 +#: ../app/controllers/report_controller/reports/editor.rb:340 msgid "Timeline" msgstr "" -#: ../app/views/miq_policy/_alert_evm_event.html.haml:5 ../app/views/miq_policy/_alert_details.html.haml:435 +#: ../app/views/miq_policy/_alert_details.html.haml:435 ../app/views/miq_policy/_alert_evm_event.html.haml:5 msgid "Timeline Event" msgstr "" @@ -22061,39 +22683,43 @@ msgstr "" msgid "Timeline View" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1744 +#: ../app/controllers/report_controller/reports/editor.rb:1759 msgid "Timeline tab is not available unless at least 1 time field has been selected" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1734 +#: ../app/controllers/report_controller/reports/editor.rb:1749 msgid "Timeline tab is not available until at least 1 field has been selected" msgstr "" -#: ../app/presenters/menu/default_menu.rb:26 ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:80 ../app/helpers/application_helper/toolbar/container_center.rb:13 ../app/helpers/application_helper/toolbar/host_center.rb:134 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:118 ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:43 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:94 ../app/helpers/application_helper/toolbar/container_replicator_center.rb:13 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:169 ../app/helpers/application_helper/toolbar/miq_template_center.rb:113 ../app/helpers/application_helper/toolbar/ems_storage_center.rb:62 ../app/helpers/application_helper/toolbar/container_node_center.rb:13 ../app/helpers/application_helper/toolbar/ems_network_center.rb:68 ../app/helpers/application_helper/toolbar/container_project_center.rb:13 ../app/helpers/application_helper/toolbar/ems_container_center.rb:47 ../app/helpers/application_helper/toolbar/container_group_center.rb:13 ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:63 ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:42 ../app/helpers/application_helper/toolbar/x_vm_center.rb:163 ../app/helpers/application_helper/toolbar/availability_zone_center.rb:35 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:118 ../app/controllers/availability_zone_controller.rb:66 ../app/controllers/dashboard_controller.rb:502 ../app/controllers/dashboard_controller.rb:521 ../app/controllers/host_controller.rb:69 ../app/controllers/ems_cluster_controller.rb:85 ../app/controllers/host_aggregate_controller.rb:66 ../app/controllers/vm_common.rb:83 ../app/controllers/mixins/containers_common_mixin.rb:67 ../app/controllers/ems_common.rb:30 ../app/controllers/ems_common.rb:489 ../app/views/ops/_all_tabs.html.haml:190 ../app/views/layouts/listnav/_ems_infra.html.haml:17 ../app/views/layouts/listnav/_ems_network.html.haml:15 ../app/views/layouts/listnav/_container_group.html.haml:42 ../app/views/layouts/listnav/_ems_cluster.html.haml:32 ../app/views/layouts/listnav/_host.html.haml:77 ../app/views/layouts/listnav/_ems_storage.html.haml:16 ../app/views/layouts/listnav/_ems_container.html.haml:34 ../app/views/layouts/listnav/_ems_container.html.haml:41 ../app/views/layouts/listnav/_container_project.html.haml:42 ../app/views/layouts/listnav/_container_replicator.html.haml:42 ../app/views/layouts/listnav/_ems_cloud.html.haml:14 ../app/views/layouts/listnav/_container_node.html.haml:42 +#: ../app/presenters/menu/default_menu.rb:27 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:120 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:123 ../app/helpers/application_helper/toolbar/container_replicator_center.rb:13 ../app/helpers/application_helper/toolbar/ems_network_center.rb:68 ../app/helpers/application_helper/toolbar/ems_physical_infra_center.rb:73 ../app/helpers/application_helper/toolbar/ems_container_center.rb:47 ../app/helpers/application_helper/toolbar/ems_storage_center.rb:62 ../app/helpers/application_helper/toolbar/host_center.rb:138 ../app/helpers/application_helper/toolbar/x_vm_center.rb:165 ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:42 ../app/helpers/application_helper/toolbar/container_node_center.rb:13 ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:64 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:174 ../app/helpers/application_helper/toolbar/container_project_center.rb:13 ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:81 ../app/helpers/application_helper/toolbar/availability_zone_center.rb:36 ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:43 ../app/helpers/application_helper/toolbar/container_group_center.rb:13 ../app/helpers/application_helper/toolbar/container_center.rb:13 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:94 ../app/controllers/ems_common.rb:429 ../app/controllers/vm_common.rb:96 ../app/controllers/dashboard_controller.rb:502 ../app/controllers/dashboard_controller.rb:521 ../app/controllers/mixins/more_show_actions.rb:9 ../app/views/ops/_all_tabs.html.haml:190 ../app/views/layouts/listnav/_host.html.haml:77 ../app/views/layouts/listnav/_container_project.html.haml:42 ../app/views/layouts/listnav/_container_replicator.html.haml:42 ../app/views/layouts/listnav/_ems_physical_infra.html.haml:15 ../app/views/layouts/listnav/_container_node.html.haml:42 ../app/views/layouts/listnav/_ems_network.html.haml:15 ../app/views/layouts/listnav/_container_group.html.haml:42 ../app/views/layouts/listnav/_timeline.html.haml:3 ../app/views/layouts/listnav/_ems_cloud.html.haml:14 ../app/views/layouts/listnav/_ems_storage.html.haml:16 ../app/views/layouts/listnav/_ems_infra.html.haml:17 ../app/views/layouts/listnav/_ems_cluster.html.haml:32 ../app/views/layouts/listnav/_ems_container.html.haml:34 ../app/views/layouts/listnav/_ems_container.html.haml:41 msgid "Timelines" msgstr "" -#: ../app/controllers/vm_common.rb:1806 +#: ../app/controllers/vm_common.rb:1618 msgid "Timelines for %{virtual_machine} \"%{name}\"" msgstr "" -#: ../app/views/middleware_server/_ops_params.html.haml:49 +#: ../app/controllers/container_controller.rb:192 +msgid "Timelines for Container \"%{container_name}\"" +msgstr "" + +#: ../app/views/middleware_shared/_ops_params.html.haml:49 msgid "Timeout" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:757 ../app/helpers/vm_cloud_helper/textual_summary.rb:276 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:287 ../app/helpers/vm_helper/textual_summary.rb:748 msgid "Timeout (ms)" msgstr "" -#: ../app/views/middleware_server/_ops_params.html.haml:74 +#: ../app/views/middleware_shared/_ops_params.html.haml:74 msgid "Timeout is required" msgstr "" -#: ../app/views/middleware_server/_ops_params.html.haml:84 +#: ../app/views/middleware_shared/_ops_params.html.haml:84 msgid "Timeout max is 60" msgstr "" -#: ../app/views/middleware_server/_ops_params.html.haml:79 +#: ../app/views/middleware_shared/_ops_params.html.haml:79 msgid "Timeout min is 0" msgstr "" @@ -22109,11 +22735,11 @@ msgstr "" msgid "Timestamp" msgstr "" -#: ../app/views/configuration/_ui_4.html.haml:16 ../app/views/configuration/_timeprofile_form.html.haml:322 ../app/views/ops/_diagnostics_cu_repair_tab.html.haml:23 +#: ../app/views/configuration/_ui_4.html.haml:16 ../app/views/configuration/_timeprofile_form.html.haml:318 ../app/views/ops/_diagnostics_cu_repair_tab.html.haml:23 msgid "Timezone" msgstr "" -#: ../app/views/configuration/_timeprofile_form.html.haml:386 ../app/views/alert/_rss_list.html.haml:39 ../app/views/report/_form.html.haml:42 ../app/views/report/_widget_form.html.haml:19 ../app/views/report/_report_info.html.haml:9 ../app/views/report/_report_info.html.haml:243 ../app/views/report/_widget_show.html.haml:14 +#: ../app/views/configuration/_timeprofile_form.html.haml:381 ../app/views/alert/_rss_list.html.haml:39 ../app/views/report/_form.html.haml:42 ../app/views/report/_widget_form.html.haml:19 ../app/views/report/_widget_show.html.haml:14 ../app/views/report/_report_info.html.haml:9 ../app/views/report/_report_info.html.haml:243 msgid "Title" msgstr "" @@ -22141,19 +22767,19 @@ msgstr "" msgid "To E-mail" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:42 ../app/views/miq_policy/_action_details.html.haml:209 +#: ../app/views/miq_policy/_action_options.html.haml:41 ../app/views/miq_policy/_action_details.html.haml:209 msgid "To E-mail Address" msgstr "" -#: ../app/controllers/ems_common.rb:715 +#: ../app/controllers/ems_common.rb:599 msgid "To configure the Host Default VNC Port Range, both start and end ports are required" msgstr "" -#: ../app/helpers/ui_constants.rb:405 ../app/helpers/ui_constants.rb:579 +#: ../app/helpers/ui_constants.rb:402 ../app/helpers/ui_constants.rb:546 msgid "Today" msgstr "" -#: ../app/views/report/_form_filter_chargeback.html.haml:276 +#: ../app/views/report/_form_filter_chargeback.html.haml:304 msgid "Today (partial)" msgstr "" @@ -22161,7 +22787,11 @@ msgstr "" msgid "Toggle All/None" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2484 +#: ../app/views/layouts/remote_console.html.haml:150 +msgid "Toggle Fullscreen" +msgstr "" + +#: ../app/controllers/application_controller/ci_processing.rb:2516 msgid "Toggle Maintenance" msgstr "" @@ -22173,7 +22803,7 @@ msgstr "" msgid "Toggle Scheduling" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2490 +#: ../app/controllers/application_controller/ci_processing.rb:2522 msgid "Toggle Scheduling for Cloud Service" msgstr "" @@ -22193,7 +22823,7 @@ msgstr "" msgid "Toggle navigation" msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:136 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:155 ../app/views/layouts/_auth_bearer_token.html.haml:8 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:139 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:158 ../app/views/layouts/_auth_bearer_token.html.haml:8 msgid "Token" msgstr "" @@ -22205,103 +22835,107 @@ msgstr "" msgid "Token-Endpoint:" msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:136 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:155 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:139 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:158 msgid "Tokens do not match" msgstr "" +#: ../app/presenters/tree_builder_menu_roles.rb:37 +msgid "Top Level" +msgstr "" + #: ../app/views/report/_form_chart.html.haml:83 msgid "Top values to show" msgstr "" -#: ../app/presenters/menu/default_menu.rb:56 ../app/presenters/menu/default_menu.rb:74 ../app/presenters/menu/default_menu.rb:110 ../app/presenters/menu/default_menu.rb:131 ../app/presenters/menu/default_menu.rb:146 ../app/helpers/ems_infra_helper/textual_summary.rb:182 ../app/helpers/ems_cloud_helper/textual_summary.rb:166 ../app/helpers/ems_middleware_helper/textual_summary.rb:52 ../app/helpers/ems_container_helper/textual_summary.rb:84 ../app/helpers/ems_network_helper/textual_summary.rb:90 ../app/controllers/topology_controller.rb:25 +#: ../app/presenters/menu/default_menu.rb:57 ../app/presenters/menu/default_menu.rb:75 ../app/presenters/menu/default_menu.rb:113 ../app/presenters/menu/default_menu.rb:134 ../app/presenters/menu/default_menu.rb:149 ../app/helpers/ems_network_helper/textual_summary.rb:98 ../app/helpers/ems_cloud_helper/textual_summary.rb:157 ../app/helpers/ems_infra_helper/textual_summary.rb:177 ../app/helpers/ems_physical_infra_helper/textual_summary.rb:88 ../app/helpers/ems_container_helper/textual_summary.rb:88 ../app/helpers/ems_middleware_helper/textual_summary.rb:54 ../app/controllers/topology_controller.rb:25 msgid "Topology" msgstr "" -#: ../app/helpers/application_helper/toolbar/dashboard_summary_toggle_view.rb:20 +#: ../app/views/configuration/_ui_1.html.haml:142 +msgid "Topology Default Items in View" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/dashboard_summary_toggle_view.rb:23 ../app/helpers/application_helper/toolbar/container_project_view.rb:14 msgid "Topology View" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:101 ../app/helpers/resource_pool_helper/textual_summary.rb:47 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:62 ../app/helpers/ems_cluster_helper/textual_summary.rb:112 msgid "Total %{title} CPU Cores" msgstr "" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:32 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:47 msgid "Total %{title} CPU Resources" msgstr "" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:42 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:57 msgid "Total %{title} CPUs" msgstr "" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:37 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:52 msgid "Total %{title} Memory" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:614 +#: ../app/helpers/vm_helper/textual_summary.rb:653 msgid "Total Allocation" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:89 +#: ../app/helpers/ems_cluster_helper/textual_summary.rb:100 msgid "Total CPU Resources" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:97 +#: ../app/helpers/ems_cluster_helper/textual_summary.rb:108 msgid "Total CPUs" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:113 +#: ../app/helpers/ems_cluster_helper/textual_summary.rb:124 msgid "Total Configured CPUs" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:106 +#: ../app/helpers/ems_cluster_helper/textual_summary.rb:117 msgid "Total Configured Memory" msgstr "" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:56 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:71 msgid "Total Configured VM CPUs" msgstr "" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:52 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:67 msgid "Total Configured VM Memory" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:635 +#: ../app/helpers/vm_helper/textual_summary.rb:674 msgid "Total Datastore Used Space" msgstr "" -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:163 -msgid "Total Files" -msgstr "" - -#: ../app/helpers/ops_helper/textual_summary.rb:86 +#: ../app/helpers/ops_helper/textual_summary.rb:96 msgid "Total Index Nodes" msgstr "" -#: ../app/controllers/application_controller/compare.rb:1555 +#: ../app/controllers/application_controller/compare.rb:1447 msgid "Total Matches" msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:93 +#: ../app/helpers/ems_cluster_helper/textual_summary.rb:104 msgid "Total Memory" msgstr "" -#: ../app/views/miq_request/_reconfigure_show.html.haml:63 ../app/views/vm_common/_reconfigure.html.haml:147 +#: ../app/views/vm_common/_reconfigure.html.haml:147 ../app/views/miq_request/_reconfigure_show.html.haml:63 msgid "Total Processors" msgstr "" -#: ../app/helpers/ops_helper/textual_summary.rb:139 +#: ../app/helpers/ops_helper/textual_summary.rb:149 msgid "Total Quota" msgstr "" -#: ../app/helpers/storage_helper/textual_summary.rb:55 ../app/controllers/application_controller/miq_request_methods.rb:360 +#: ../app/helpers/storage_helper/textual_summary.rb:54 ../app/controllers/application_controller/miq_request_methods.rb:360 msgid "Total Space" msgstr "" -#: ../app/helpers/ops_helper/textual_summary.rb:71 +#: ../app/helpers/ops_helper/textual_summary.rb:81 msgid "Total Space on Volume" msgstr "" -#: ../app/controllers/application_controller/miq_request_methods.rb:444 +#: ../app/controllers/application_controller/miq_request_methods.rb:447 msgid "Total VMs" msgstr "" @@ -22309,35 +22943,35 @@ msgstr "" msgid "Total number of VMs that can fit on all of the above %{models}: %{count}" msgstr "" -#: ../app/views/ems_cluster/_main.html.haml:15 +#: ../app/helpers/ems_cluster_helper/textual_summary.rb:9 msgid "Totals for %{hosts}" msgstr "" -#: ../app/views/availability_zone/_main.html.haml:12 +#: ../app/helpers/availability_zone_helper/textual_summary.rb:13 msgid "Totals for Availability Zone" msgstr "" -#: ../app/views/service/_svcs_show.html.haml:18 +#: ../app/helpers/service_helper/textual_summary.rb:55 msgid "Totals for Service VMs" msgstr "" -#: ../app/views/ems_cluster/_main.html.haml:17 +#: ../app/helpers/ems_cluster_helper/textual_summary.rb:18 msgid "Totals for VMs" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:413 ../app/views/miq_policy/_alert_details.html.haml:379 ../app/views/miq_policy/_action_details.html.haml:364 ../app/views/miq_policy/_alert_snmp.html.haml:80 +#: ../app/views/miq_policy/_action_options.html.haml:405 ../app/views/miq_policy/_alert_snmp.html.haml:80 ../app/views/miq_policy/_alert_details.html.haml:379 ../app/views/miq_policy/_action_details.html.haml:364 msgid "Trap Number" msgstr "" -#: ../app/controllers/miq_policy_controller.rb:1000 +#: ../app/controllers/miq_policy_controller.rb:1003 msgid "Trap Number is required" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:413 ../app/views/miq_policy/_alert_details.html.haml:379 ../app/views/miq_policy/_action_details.html.haml:364 ../app/views/miq_policy/_alert_snmp.html.haml:80 +#: ../app/views/miq_policy/_action_options.html.haml:405 ../app/views/miq_policy/_alert_snmp.html.haml:80 ../app/views/miq_policy/_alert_details.html.haml:379 ../app/views/miq_policy/_action_details.html.haml:364 msgid "Trap Object ID" msgstr "" -#: ../app/controllers/miq_policy_controller.rb:1002 +#: ../app/controllers/miq_policy_controller.rb:1005 msgid "Trap Object ID is required" msgstr "" @@ -22345,7 +22979,7 @@ msgstr "" msgid "Tree View" msgstr "" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:105 ../app/views/miq_capacity/_planning_options.html.haml:416 +#: ../app/views/miq_capacity/_planning_options.html.haml:416 ../app/views/miq_capacity/_planning_vm_profile.html.haml:105 msgid "Trend Options" msgstr "" @@ -22357,15 +22991,15 @@ msgstr "" msgid "Trend Target Limit" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1590 +#: ../app/controllers/report_controller/reports/editor.rb:1605 msgid "Trend Target Limit must be configured" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1593 ../app/controllers/report_controller/reports/editor.rb:1716 +#: ../app/controllers/report_controller/reports/editor.rb:1608 ../app/controllers/report_controller/reports/editor.rb:1731 msgid "Trend Target Limit must be numeric" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1756 +#: ../app/controllers/report_controller/reports/editor.rb:1771 msgid "Trend Target Limit: Value must be numeric" msgstr "" @@ -22381,7 +23015,7 @@ msgstr "" msgid "Trending for" msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1587 +#: ../app/controllers/report_controller/reports/editor.rb:1602 msgid "Trending for is required" msgstr "" @@ -22389,35 +23023,39 @@ msgstr "" msgid "Trends for past" msgstr "" -#: ../app/views/miq_policy/_alert_details.html.haml:451 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:188 ../app/views/catalog/_ot_tree_show.html.haml:42 ../app/views/catalog/_ot_tree_show.html.haml:55 ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:37 ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:40 ../app/views/report/_show_schedule.html.haml:35 +#: ../app/views/miq_policy/_alert_details.html.haml:451 ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:37 ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:40 ../app/views/report/_show_schedule.html.haml:35 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:188 ../app/views/catalog/_ot_tree_show.html.haml:42 ../app/views/catalog/_ot_tree_show.html.haml:55 msgid "True" msgstr "" -#: ../app/views/configuration/_ui_1.html.haml:55 +#: ../app/views/configuration/_ui_1.html.haml:54 msgid "Truncate Long Text" msgstr "" +#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:233 +msgid "Trusted CA Certificates" +msgstr "" + #: ../app/views/ops/_ldap_forest_entries.html.haml:4 msgid "Trusted Forest Settings" msgstr "" -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 +#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 msgid "Tuesday" msgstr "" -#: ../app/helpers/ems_infra_helper/textual_summary.rb:41 ../app/helpers/container_project_helper/textual_summary.rb:43 ../app/helpers/provider_foreman_helper.rb:258 ../app/helpers/container_helper/textual_summary.rb:121 ../app/helpers/container_image_helper/textual_summary.rb:105 ../app/helpers/container_service_helper/textual_summary.rb:50 ../app/helpers/pxe_helper/textual_summary.rb:56 ../app/helpers/pxe_helper/textual_summary.rb:80 ../app/helpers/pxe_helper/textual_summary.rb:108 ../app/helpers/pxe_helper/textual_summary.rb:144 ../app/helpers/ems_network_helper/textual_summary.rb:47 ../app/views/ems_container/_form.html.haml:40 ../app/views/miq_policy/_action_options.html.haml:450 ../app/views/miq_policy/_event_details.html.haml:218 ../app/views/miq_policy/_event_details.html.haml:398 ../app/views/miq_policy/_alert_details.html.haml:403 ../app/views/miq_policy/_action_details.html.haml:398 ../app/views/miq_policy/_alert_snmp.html.haml:108 ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:14 ../app/views/pxe/_pxe_img_form.html.haml:17 ../app/views/pxe/_template_form.html.haml:70 ../app/views/pxe/_pxe_wimg_form.html.haml:17 ../app/views/pxe/_pxe_image_type_form.html.haml:34 ../app/views/pxe/_iso_img_form.html.haml:17 ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:53 ../app/views/miq_ae_customization/_dialog_field_form.html.haml:69 ../app/views/configuration/_ui_4.html.haml:16 ../app/views/shared/buttons/_ab_list.html.haml:51 ../app/views/shared/buttons/_ab_show.html.haml:148 ../app/views/shared/views/ems_common/_form.html.haml:35 ../app/views/shared/views/ems_common/angular/_form.html.haml:40 ../app/views/vm_common/_reconfigure.html.haml:203 ../app/views/vm_common/_disks.html.haml:9 ../app/views/miq_ae_class/_class_fields.html.haml:79 ../app/views/ems_datawarehouse/_form.html.haml:40 ../app/views/provider_foreman/_form.html.haml:44 ../app/views/ops/_settings_replication_tab.html.haml:86 ../app/views/ops/_ap_show.html.haml:48 ../app/views/ops/_ap_form.html.haml:55 ../app/views/ops/_schedule_form_filter.html.haml:19 ../app/views/ops/_settings_import_tab.html.haml:20 ../app/views/ops/_diagnostics_database_tab.html.haml:19 ../app/views/ops/_diagnostics_database_tab.html.haml:141 ../app/views/ops/_log_collection.html.haml:26 ../app/views/ems_middleware/_form.html.haml:40 ../app/views/storage_manager/_form.html.haml:41 ../app/views/report/_db_list.html.haml:15 ../app/views/report/_widget_show.html.haml:169 ../app/views/report/_widget_form_rss.html.haml:15 ../app/views/ems_infra/_form.html.haml:40 ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:76 ../app/views/layouts/_ae_resolve_options.html.haml:92 ../app/views/layouts/_ae_resolve_options.html.haml:116 ../app/views/layouts/_edit_log_depot_settings.html.haml:20 +#: ../app/helpers/container_image_helper/textual_summary.rb:120 ../app/helpers/ems_network_helper/textual_summary.rb:54 ../app/helpers/container_helper/textual_summary.rb:135 ../app/helpers/container_service_helper/textual_summary.rb:50 ../app/helpers/ems_infra_helper/textual_summary.rb:51 ../app/helpers/container_project_helper/textual_summary.rb:51 ../app/helpers/provider_foreman_helper.rb:263 ../app/helpers/ems_physical_infra_helper/textual_summary.rb:49 ../app/helpers/automation_manager_helper.rb:99 ../app/helpers/pxe_helper/textual_summary.rb:56 ../app/helpers/pxe_helper/textual_summary.rb:80 ../app/helpers/pxe_helper/textual_summary.rb:108 ../app/helpers/pxe_helper/textual_summary.rb:144 ../app/controllers/application_controller/miq_request_methods.rb:421 ../app/views/miq_policy/_action_options.html.haml:442 ../app/views/miq_policy/_alert_snmp.html.haml:108 ../app/views/miq_policy/_alert_details.html.haml:403 ../app/views/miq_policy/_event_details.html.haml:201 ../app/views/miq_policy/_event_details.html.haml:381 ../app/views/miq_policy/_action_details.html.haml:398 ../app/views/vm_common/_disks.html.haml:9 ../app/views/vm_common/_reconfigure.html.haml:203 ../app/views/configuration/_ui_4.html.haml:16 ../app/views/ops/_schedule_form_filter.html.haml:19 ../app/views/ops/_settings_import_tab.html.haml:20 ../app/views/ops/_ap_show.html.haml:48 ../app/views/ops/_diagnostics_database_tab.html.haml:19 ../app/views/ops/_diagnostics_database_tab.html.haml:141 ../app/views/ops/_settings_replication_tab.html.haml:14 ../app/views/ops/_ap_form.html.haml:55 ../app/views/ops/_log_collection.html.haml:26 ../app/views/storage_manager/_form.html.haml:41 ../app/views/shared/buttons/_ab_show.html.haml:148 ../app/views/shared/buttons/_ab_list.html.haml:51 ../app/views/shared/views/ems_common/angular/_form.html.haml:40 ../app/views/shared/views/ems_common/_form.html.haml:35 ../app/views/miq_ae_class/_class_fields.html.haml:79 ../app/views/pxe/_template_form.html.haml:70 ../app/views/pxe/_iso_img_form.html.haml:17 ../app/views/pxe/_pxe_image_type_form.html.haml:34 ../app/views/pxe/_pxe_img_form.html.haml:17 ../app/views/pxe/_pxe_wimg_form.html.haml:17 ../app/views/report/_widget_form_rss.html.haml:15 ../app/views/report/_db_list.html.haml:15 ../app/views/report/_widget_show.html.haml:169 ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:14 ../app/views/ems_infra/_form.html.haml:40 ../app/views/ems_physical_infra/_form.html.haml:40 ../app/views/layouts/_ae_resolve_options.html.haml:92 ../app/views/layouts/_ae_resolve_options.html.haml:116 ../app/views/layouts/_edit_log_depot_settings.html.haml:20 ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:76 ../app/views/ems_datawarehouse/_form.html.haml:40 ../app/views/provider_foreman/_form.html.haml:47 ../app/views/miq_ae_customization/_dialog_field_form.html.haml:69 ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:53 ../app/views/ems_container/_form.html.haml:40 ../app/views/ems_middleware/_form.html.haml:40 ../app/assets/javascripts/controllers/alerts/alerts_overview_controller.js:60 msgid "Type" msgstr "" -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:118 ../app/controllers/storage_manager_controller.rb:69 ../app/controllers/storage_manager_controller.rb:74 ../app/controllers/storage_manager_controller.rb:99 ../app/controllers/ems_common.rb:179 +#: ../app/controllers/ems_common.rb:122 ../app/controllers/pxe_controller/pxe_customization_templates.rb:111 ../app/controllers/storage_manager_controller.rb:70 ../app/controllers/storage_manager_controller.rb:75 ../app/controllers/storage_manager_controller.rb:100 msgid "Type is required" msgstr "" -#: ../app/controllers/miq_policy_controller.rb:1013 +#: ../app/controllers/miq_policy_controller.rb:1016 msgid "Type missing for %{field}" msgstr "" -#: ../app/views/miq_policy/_rsop_form.html.haml:17 ../app/views/static/deploy_containers_provider/deploy-provider-details-general-review.html.haml:19 ../app/views/miq_request/_prov_options.html.haml:62 ../app/views/miq_ae_class/_class_fields.html.haml:30 ../app/views/miq_ae_class/_instance_form.html.haml:109 +#: ../app/views/miq_policy/_rsop_form.html.haml:17 ../app/views/miq_request/_prov_options.html.haml:62 ../app/views/miq_ae_class/_instance_form.html.haml:109 ../app/views/miq_ae_class/_class_fields.html.haml:30 ../app/views/static/deploy_containers_provider/deploy-provider-details-general-review.html.haml:19 msgid "Type:" msgstr "" @@ -22433,7 +23071,11 @@ msgstr "" msgid "UI Worker" msgstr "" -#: ../app/helpers/pxe_helper/textual_summary.rb:12 ../app/views/pxe/_pxe_form.html.haml:55 ../app/views/miq_ae_tools/_results_uri.html.haml:16 ../app/views/layouts/angular-bootstrap/_edit_log_depot_settings_angular_bootstrap.html.haml:36 ../app/views/layouts/_edit_log_depot_settings.html.haml:59 +#: ../app/helpers/infra_networking_helper/textual_summary.rb:7 +msgid "UNUSED?" +msgstr "" + +#: ../app/helpers/pxe_helper/textual_summary.rb:12 ../app/views/pxe/_pxe_form.html.haml:55 ../app/views/layouts/_edit_log_depot_settings.html.haml:59 ../app/views/layouts/angular-bootstrap/_edit_log_depot_settings_angular_bootstrap.html.haml:36 ../app/views/miq_ae_tools/_results_uri.html.haml:16 msgid "URI" msgstr "" @@ -22441,7 +23083,7 @@ msgstr "" msgid "URI Prefix" msgstr "" -#: ../app/controllers/pxe_controller/pxe_servers.rb:298 ../app/controllers/pxe_controller/pxe_servers.rb:302 +#: ../app/controllers/pxe_controller/pxe_servers.rb:291 ../app/controllers/pxe_controller/pxe_servers.rb:295 msgid "URI is required" msgstr "" @@ -22449,7 +23091,7 @@ msgstr "" msgid "URL" msgstr "" -#: ../app/views/ops/_settings_server_tab.html.haml:661 +#: ../app/views/ops/_settings_server_tab.html.haml:625 msgid "URL (i.e. www.mypage.com)" msgstr "" @@ -22489,115 +23131,175 @@ msgstr "" msgid "US Tabloid - 11.0in x 17.0in" msgstr "" -#: ../app/controllers/ems_infra_controller.rb:163 +#: ../app/controllers/network_router_controller.rb:306 +msgid "Unable to add Subnet \"%{name}\": %{details}" +msgstr "" + +#: ../app/controllers/ems_infra_controller.rb:164 msgid "Unable to add nodes: %{error}" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:723 +#: ../app/controllers/application_controller/ci_processing.rb:760 msgid "Unable to associate Floating IP %{address} with Instance \"%{name}\": %{details}" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:675 ../app/controllers/application_controller/ci_processing.rb:729 +#: ../app/controllers/application_controller/ci_processing.rb:712 ../app/controllers/application_controller/ci_processing.rb:766 msgid "Unable to associate Floating IP with Instance \"%{name}\": %{details}" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:185 ../app/controllers/vm_cloud_controller.rb:81 -msgid "Unable to attach %{volume} \"%{volume_name}\" to %{vm_name}: %{details}" +#: ../app/controllers/cloud_volume_controller.rb:205 ../app/controllers/vm_cloud_controller.rb:103 +msgid "Unable to attach Cloud Volume \"%{volume_name}\" to %{vm_name}: %{details}" msgstr "" -#: ../app/controllers/network_router_controller.rb:109 ../app/controllers/cloud_tenant_controller.rb:112 ../app/controllers/host_aggregate_controller.rb:222 +#: ../app/controllers/network_router_controller.rb:113 ../app/controllers/host_aggregate_controller.rb:211 msgid "Unable to create %{model} \"%{name}\": %{details}" msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:121 -msgid "Unable to create %{model} %{name}. %{error}" +#: ../app/controllers/cloud_network_controller.rb:106 +msgid "Unable to create Cloud Network \"%{name}\": %{details}" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:271 -msgid "Unable to create %{volume} \"%{volume_name}\": %{details}" +#: ../app/controllers/cloud_subnet_controller.rb:126 +msgid "Unable to create Cloud Subnet: %{details}" msgstr "" -#: ../app/controllers/cloud_network_controller.rb:106 -msgid "Unable to create Cloud Network \"%{name}\": %{details}" +#: ../app/controllers/cloud_tenant_controller.rb:111 +msgid "Unable to create Cloud Tenant \"%{name}\": %{details}" msgstr "" -#: ../app/controllers/cloud_subnet_controller.rb:105 -msgid "Unable to create Cloud Subnet: %{details}" +#: ../app/controllers/cloud_volume_controller.rb:342 +msgid "Unable to create Cloud Volume \"%{name}\": %{details}" +msgstr "" + +#: ../app/controllers/floating_ip_controller.rb:85 +msgid "Unable to create Floating IP \"%{name}\": %{details}" +msgstr "" + +#: ../app/controllers/auth_key_pair_cloud_controller.rb:154 +msgid "Unable to create Key Pair \"%{name}\": %{details}" +msgstr "" + +#: ../app/controllers/security_group_controller.rb:101 +msgid "Unable to create Security Group \"%{name}\": %{details}" msgstr "" -#: ../app/controllers/catalog_controller.rb:1037 ../app/controllers/orchestration_stack_controller.rb:241 +#: ../app/controllers/orchestration_stack_controller.rb:245 ../app/controllers/catalog_controller.rb:1050 msgid "Unable to create a new template copy \"%{name}\": new template content cannot be empty." msgstr "" -#: ../app/controllers/catalog_controller.rb:1034 ../app/controllers/orchestration_stack_controller.rb:237 +#: ../app/controllers/orchestration_stack_controller.rb:241 ../app/controllers/catalog_controller.rb:1047 msgid "Unable to create a new template copy \"%{name}\": old and new template content have to differ." msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:484 +#: ../app/controllers/cloud_volume_controller.rb:550 msgid "Unable to create backup for %{model} \"%{name}\": %{details}" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:608 +#: ../app/controllers/cloud_volume_controller.rb:674 msgid "Unable to create snapshot for Cloud Volume \"%{name}\": %{details}" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:223 ../app/controllers/vm_cloud_controller.rb:120 -msgid "Unable to detach %{volume} \"%{volume_name}\" from %{vm_name}: %{details}" +#: ../app/assets/javascripts/controllers/middleware_deployment/middleware_deployment_controller.js:26 +msgid "Unable to deploy %s on this server %s\"" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:817 +#: ../app/controllers/cloud_volume_controller.rb:262 ../app/controllers/vm_cloud_controller.rb:160 +msgid "Unable to detach Cloud Volume \"%{volume_name}\" from %{vm_name}: %{details}" +msgstr "" + +#: ../app/controllers/application_controller/ci_processing.rb:854 msgid "Unable to disassociate Floating IP %{address} from Instance \"%{name}\": %{details}" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:767 ../app/controllers/application_controller/ci_processing.rb:823 +#: ../app/controllers/application_controller/ci_processing.rb:804 ../app/controllers/application_controller/ci_processing.rb:860 msgid "Unable to disassociate Floating IP from Instance \"%{name}\": %{details}" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:575 ../app/controllers/application_controller/ci_processing.rb:611 ../app/controllers/application_controller/ci_processing.rb:617 +#: ../app/controllers/application_controller/ci_processing.rb:611 ../app/controllers/application_controller/ci_processing.rb:648 ../app/controllers/application_controller/ci_processing.rb:654 msgid "Unable to evacuate %{instance} \"%{name}\": %{details}" msgstr "" -#: ../app/controllers/ems_infra_controller.rb:207 +#: ../app/controllers/ems_infra_controller.rb:208 msgid "Unable to initiate scaling: %{message}" msgstr "" -#: ../app/assets/javascripts/controllers/middleware_datasource/middleware_datasource_controller.js:58 +#: ../app/assets/javascripts/controllers/middleware_datasource/middleware_datasource_controller.js:82 msgid "Unable to install the Datasource on this server." msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:452 ../app/controllers/application_controller/ci_processing.rb:525 ../app/controllers/application_controller/ci_processing.rb:531 +#: ../app/controllers/application_controller/ci_processing.rb:471 ../app/controllers/application_controller/ci_processing.rb:541 msgid "Unable to live migrate %{instance} \"%{name}\": %{details}" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:370 ../app/controllers/application_controller/ci_processing.rb:401 ../app/controllers/application_controller/ci_processing.rb:407 +#: ../app/controllers/application_controller/ci_processing.rb:567 +msgid "Unable to live migrate Instance \"%{name}\": %{details}" +msgstr "" + +#: ../app/controllers/application_controller/ci_processing.rb:389 ../app/controllers/application_controller/ci_processing.rb:420 ../app/controllers/application_controller/ci_processing.rb:426 msgid "Unable to reconfigure %{instance} \"%{name}\": %{details}" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:551 +#: ../app/controllers/network_router_controller.rb:401 +msgid "Unable to remove Subnet \"%{name}\": %{details}" +msgstr "" + +#: ../app/controllers/cloud_volume_controller.rb:617 msgid "Unable to restore %{model} \"%{name}\" from backup: %{details}" msgstr "" -#: ../app/controllers/network_router_controller.rb:211 ../app/controllers/cloud_tenant_controller.rb:173 ../app/controllers/cloud_volume_controller.rb:336 ../app/controllers/host_aggregate_controller.rb:300 ../app/controllers/host_aggregate_controller.rb:450 ../app/controllers/host_aggregate_controller.rb:552 +#: ../app/controllers/network_router_controller.rb:214 ../app/controllers/host_aggregate_controller.rb:289 ../app/controllers/host_aggregate_controller.rb:439 ../app/controllers/host_aggregate_controller.rb:541 msgid "Unable to update %{model} \"%{name}\": %{details}" msgstr "" -#: ../app/controllers/cloud_network_controller.rb:221 +#: ../app/controllers/cloud_network_controller.rb:220 msgid "Unable to update Cloud Network \"%{name}\": %{details}" msgstr "" -#: ../app/controllers/cloud_subnet_controller.rb:200 +#: ../app/controllers/cloud_subnet_controller.rb:221 msgid "Unable to update Cloud Subnet \"%{name}\": %{details}" msgstr "" -#: ../app/controllers/ems_infra_controller.rb:191 +#: ../app/controllers/cloud_tenant_controller.rb:169 +msgid "Unable to update Cloud Tenant \"%{name}\": %{details}" +msgstr "" + +#: ../app/controllers/cloud_volume_controller.rb:417 +msgid "Unable to update Cloud Volume \"%{name}\": %{details}" +msgstr "" + +#: ../app/controllers/floating_ip_controller.rb:222 +msgid "Unable to update Floating IP \"%{name}\": %{details}" +msgstr "" + +#: ../app/controllers/security_group_controller.rb:219 +msgid "Unable to update Security Group \"%{name}\": %{details}" +msgstr "" + +#: ../app/controllers/ems_infra_controller.rb:192 msgid "Unable to update stack, obtaining of status failed: %{message}" msgstr "" -#: ../app/views/catalog/_form_basic_info.html.haml:61 ../app/views/catalog/_sandt_tree_show.html.haml:70 +#: ../app/assets/javascripts/services/alerts_center_service.js:303 +msgid "Unacknowledge" +msgstr "" + +#: ../app/assets/javascripts/services/alerts_center_service.js:115 +msgid "Unacknowledged" +msgstr "" + +#: ../app/assets/javascripts/services/alerts_center_service.js:309 +msgid "Unassign" +msgstr "" + +#: ../app/assets/javascripts/services/alerts_center_service.js:812 +msgid "Unassign Alert" +msgstr "" + +#: ../app/views/static/edit_alert_dialog.html.haml:57 ../app/views/catalog/_sandt_tree_show.html.haml:70 ../app/views/catalog/_st_angular_form.html.haml:102 ../app/views/catalog/_form_basic_info.html.haml:61 ../app/assets/javascripts/services/alerts_center_service.js:532 ../app/assets/javascripts/services/alerts_center_service.js:698 msgid "Unassigned" msgstr "" -#: ../app/presenters/tree_node_builder.rb:306 ../app/controllers/provider_foreman_controller.rb:1062 ../app/controllers/provider_foreman_controller.rb:1089 +#: ../app/controllers/provider_foreman_controller.rb:481 ../app/controllers/provider_foreman_controller.rb:508 msgid "Unassigned Profiles Group" msgstr "" @@ -22609,15 +23311,19 @@ msgstr "" msgid "Unattended GUI" msgstr "" -#: ../app/controllers/application_controller.rb:2308 +#: ../app/controllers/application_controller.rb:2314 msgid "Unauthorized object or action" msgstr "" -#: ../app/helpers/storage_helper/textual_summary.rb:65 +#: ../app/assets/javascripts/services/alerts_center_service.js:806 +msgid "Uncknowledge Alert" +msgstr "" + +#: ../app/helpers/storage_helper/textual_summary.rb:64 msgid "Uncommitted Space" msgstr "" -#: ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:66 ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:51 +#: ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:51 ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:66 msgid "Undeploy" msgstr "" @@ -22633,11 +23339,11 @@ msgstr "" msgid "Undeployment initiated for selected deployment(s)" msgstr "" -#: ../app/helpers/container_node_helper/textual_summary.rb:80 ../app/helpers/container_group_helper/textual_summary.rb:103 +#: ../app/helpers/container_group_helper/textual_summary.rb:113 ../app/helpers/container_node_helper/textual_summary.rb:93 msgid "Underlying %{name}" msgstr "" -#: ../app/views/layouts/_exp_editor.html.haml:20 ../app/views/layouts/_exp_editor.html.haml:20 +#: ../app/views/layouts/_exp_editor.html.haml:18 msgid "Undo the last change" msgstr "" @@ -22645,27 +23351,35 @@ msgstr "" msgid "Unexpected error encountered" msgstr "" -#: ../app/views/chargeback/_cb_rate_show.html.haml:46 ../app/views/ops/_tenant_quota_form.html.haml:37 +#: ../app/assets/javascripts/controllers/alerts/alerts_overview_controller.js:27 ../app/assets/javascripts/controllers/alerts/alerts_overview_controller.js:28 +msgid "Ungrouped" +msgstr "" + +#: ../app/views/ops/_tenant_quota_form.html.haml:37 ../app/views/chargeback/_cb_rate_show.html.haml:46 msgid "Units" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:168 ../app/helpers/textual_mixins/textual_os_info.rb:8 ../app/views/pxe/_pxe_img_form.html.haml:22 ../app/views/pxe/_pxe_wimg_form.html.haml:22 ../app/views/pxe/_iso_img_form.html.haml:22 ../app/views/dashboard/_widget_footer.html.haml:24 +#: ../app/helpers/host_helper/textual_summary.rb:175 ../app/helpers/textual_mixins/textual_os_info.rb:8 ../app/services/physical_infra_topology_service.rb:60 ../app/services/physical_infra_topology_service.rb:62 ../app/services/physical_infra_topology_service.rb:64 ../app/views/pxe/_iso_img_form.html.haml:22 ../app/views/pxe/_pxe_img_form.html.haml:22 ../app/views/pxe/_pxe_wimg_form.html.haml:22 ../app/views/dashboard/_widget_footer.html.haml:24 msgid "Unknown" msgstr "" -#: ../app/controllers/application_controller.rb:121 +#: ../app/controllers/application_controller.rb:117 msgid "Unknown Action" msgstr "" -#: ../app/controllers/application_controller/performance.rb:526 +#: ../app/controllers/application_controller/performance.rb:452 msgid "Unknown error has occurred" msgstr "" -#: ../app/controllers/middleware_server_controller.rb:207 -msgid "Unknown server operation: " +#: ../app/controllers/middleware_server_group_controller.rb:60 +msgid "Unknown server group operation: " msgstr "" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:133 ../app/helpers/resource_pool_helper/textual_summary.rb:163 ../app/views/ops/_settings_evm_servers_tab.html.haml:85 ../app/views/ops/_zone_form.html.haml:199 +#: ../app/controllers/middleware_server_controller.rb:195 +msgid "Unknown server operation: %{operation}" +msgstr "" + +#: ../app/helpers/resource_pool_helper/textual_summary.rb:158 ../app/helpers/resource_pool_helper/textual_summary.rb:188 ../app/views/configuration/_ui_1.html.haml:155 ../app/views/ops/_zone_form.html.haml:199 ../app/views/ops/_settings_evm_servers_tab.html.haml:85 msgid "Unlimited" msgstr "" @@ -22677,11 +23391,11 @@ msgstr "" msgid "Unlocked" msgstr "" -#: ../app/helpers/storage_helper/textual_summary.rb:116 +#: ../app/helpers/storage_helper/textual_summary.rb:115 msgid "Unmanaged VMs" msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:643 +#: ../app/helpers/vm_helper/textual_summary.rb:682 msgid "Unused/Overcommited Allocation" msgstr "" @@ -22689,7 +23403,7 @@ msgstr "" msgid "Up" msgstr "" -#: ../app/controllers/ops_controller/settings/rhn.rb:304 ../app/views/ops/_settings_replication_tab.html.haml:356 +#: ../app/controllers/ops_controller/settings/rhn.rb:304 ../app/views/ops/_settings_replication_tab.html.haml:277 msgid "Update" msgstr "" @@ -22701,7 +23415,7 @@ msgstr "" msgid "Update Status" msgstr "" -#: ../app/controllers/host_aggregate_controller.rb:279 +#: ../app/controllers/host_aggregate_controller.rb:268 msgid "Update aggregate not supported by %{model} \"%{name}\"" msgstr "" @@ -22713,11 +23427,11 @@ msgstr "" msgid "Update this LDAP Server" msgstr "" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:28 ../app/views/ops/_ap_form_nteventlog.html.haml:166 ../app/views/ops/_ap_form_registry.html.haml:121 ../app/views/ops/_ldap_forest_entries.html.haml:108 ../app/views/ops/_ldap_forest_entries.html.haml:108 ../app/views/ops/_classification_entry.html.haml:51 ../app/views/ops/_ap_form_file.html.haml:112 +#: ../app/views/ops/_ap_form_registry.html.haml:121 ../app/views/ops/_ap_form_file.html.haml:112 ../app/views/ops/_classification_entry.html.haml:51 ../app/views/ops/_ap_form_nteventlog.html.haml:166 ../app/views/ops/_ldap_forest_entries.html.haml:108 ../app/views/ops/_ldap_forest_entries.html.haml:108 ../app/views/miq_ae_customization/_field_value_entry.html.haml:28 msgid "Update this entry" msgstr "" -#: ../app/views/dashboard/_widget_footer.html.haml:6 +#: ../app/views/shared/views/_alerts_list.html.haml:65 ../app/views/dashboard/_widget_footer.html.haml:6 msgid "Updated" msgstr "" @@ -22729,15 +23443,11 @@ msgstr "" msgid "Updated - %{update_time}, Last valid connection - %{valid_time}" msgstr "" -#: ../app/views/miq_ae_customization/_dialog_info.html.haml:60 ../app/views/catalog/_ot_tree_show.html.haml:76 ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 ../app/views/report/_report_info.html.haml:96 +#: ../app/helpers/ansible_playbook_helper/textual_summary.rb:19 ../app/helpers/ansible_repository_helper/textual_summary.rb:18 ../app/helpers/ansible_credential_helper/textual_summary.rb:25 ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 ../app/views/report/_report_info.html.haml:96 ../app/views/miq_ae_customization/_dialog_info.html.haml:60 ../app/views/catalog/_ot_tree_show.html.haml:76 msgid "Updated On" msgstr "" -#: ../app/controllers/cloud_volume_controller.rb:331 -msgid "Updating %{model} \"%{name}\"" -msgstr "" - -#: ../app/views/miq_policy/_export.html.haml:74 ../app/views/miq_request/_prov_field.html.haml:677 ../app/views/miq_request/_prov_field.html.haml:695 ../app/views/miq_ae_customization/_dialog_import_export.html.haml:89 ../app/views/miq_ae_tools/_import_export.html.haml:44 ../app/views/catalog/_sandt_tree_show.html.haml:216 ../app/views/ops/_settings_import_tags_tab.html.haml:37 ../app/views/ops/_settings_import_tab.html.haml:52 ../app/views/ops/_settings_custom_logos_tab.html.haml:26 ../app/views/ops/_settings_custom_logos_tab.html.haml:89 ../app/views/report/_export_widgets.html.haml:93 ../app/views/report/_export_custom_reports.html.haml:43 +#: ../app/views/miq_policy/_export.html.haml:74 ../app/views/ops/_settings_import_tab.html.haml:52 ../app/views/ops/_settings_import_tags_tab.html.haml:37 ../app/views/ops/_settings_custom_logos_tab.html.haml:26 ../app/views/ops/_settings_custom_logos_tab.html.haml:89 ../app/views/miq_request/_prov_field.html.haml:681 ../app/views/miq_request/_prov_field.html.haml:699 ../app/views/report/_export_widgets.html.haml:93 ../app/views/report/_export_custom_reports.html.haml:43 ../app/views/miq_ae_customization/_dialog_import_export.html.haml:89 ../app/views/miq_ae_tools/_import_export.html.haml:44 ../app/views/catalog/_sandt_tree_show.html.haml:232 msgid "Upload" msgstr "" @@ -22757,19 +23467,19 @@ msgstr "" msgid "Uploaded File '%{filename}'" msgstr "" -#: ../app/views/provider_foreman/_form.html.haml:108 +#: ../app/views/provider_foreman/_form.html.haml:111 ../app/views/automation_manager/_form.html.haml:75 msgid "Url" msgstr "" -#: ../app/helpers/ui_constants.rb:399 +#: ../app/helpers/ui_constants.rb:396 msgid "Usage" msgstr "" -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:90 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:108 +#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:90 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:166 msgid "Usage: " msgstr "" -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:87 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:105 +#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:87 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:163 msgid "Usage: Unknown" msgstr "" @@ -22777,15 +23487,15 @@ msgstr "" msgid "Use" msgstr "" -#: ../app/views/layouts/exp_atom/_edit_count.html.haml:24 ../app/views/layouts/exp_atom/_edit_field.html.haml:31 ../app/views/layouts/exp_atom/_edit_find.html.haml:27 ../app/views/layouts/exp_atom/_edit_tag.html.haml:34 +#: ../app/views/layouts/exp_atom/_edit_find.html.haml:27 ../app/views/layouts/exp_atom/_edit_count.html.haml:24 ../app/views/layouts/exp_atom/_edit_field.html.haml:31 ../app/views/layouts/exp_atom/_edit_tag.html.haml:30 msgid "Use Alias" msgstr "" -#: ../app/views/vm_common/console_vmrc.html.haml:485 +#: ../app/views/vm_common/console_vmrc.html.haml:466 msgid "Use CTRL-ALT-Enter to toggle full screen" msgstr "" -#: ../app/views/vm_common/console_vmrc.html.haml:481 +#: ../app/views/vm_common/console_vmrc.html.haml:462 msgid "Use CTRL-ALT-INS for CTRL-ALT-DEL" msgstr "" @@ -22794,7 +23504,7 @@ msgid "Use Configuration Settings" msgstr "" #: ../app/views/ops/_settings_custom_logos_tab.html.haml:107 -msgid "Use Custom Login Background Image" +msgid "Use Custom Login & 'About' Screen Background Image" msgstr "" #: ../app/views/ops/_settings_custom_logos_tab.html.haml:145 @@ -22805,6 +23515,10 @@ msgstr "" msgid "Use Custom Logo Image" msgstr "" +#: ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:366 +msgid "Use Existing" +msgstr "" + #: ../app/views/ops/_settings_rhn_edit_tab.html.haml:101 msgid "Use HTTP Proxy" msgstr "" @@ -22825,11 +23539,11 @@ msgstr "" msgid "Use the Choose file button to locate CSV file" msgstr "" -#: ../app/controllers/catalog_controller.rb:408 +#: ../app/controllers/catalog_controller.rb:415 msgid "Use the Choose file button to locate a .png or .jpg image file" msgstr "" -#: ../app/controllers/miq_ae_tools_controller.rb:292 ../app/controllers/miq_policy_controller.rb:150 ../app/controllers/report_controller.rb:86 +#: ../app/controllers/report_controller.rb:86 ../app/controllers/miq_policy_controller.rb:150 ../app/controllers/miq_ae_tools_controller.rb:292 msgid "Use the Choose file button to locate an Import file" msgstr "" @@ -22837,31 +23551,19 @@ msgstr "" msgid "Use the Choose file button to locate an Upload file" msgstr "" -#: ../app/controllers/miq_ae_customization_controller.rb:43 ../app/controllers/miq_ae_tools_controller.rb:184 +#: ../app/controllers/miq_ae_tools_controller.rb:184 ../app/controllers/miq_ae_customization_controller.rb:44 msgid "Use the Choose file button to locate an import file" msgstr "" -#: ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:274 -msgid "Use the Ops Tenant Metrics" -msgstr "" - -#: ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:268 -msgid "Use the System Tenant Metrics" -msgstr "" - -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:39 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:48 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:47 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:56 +#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:39 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:48 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:64 ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:74 msgid "Used" msgstr "" -#: ../app/helpers/storage_helper/textual_summary.rb:70 +#: ../app/helpers/storage_helper/textual_summary.rb:69 msgid "Used + Uncommitted Space" msgstr "" -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:167 -msgid "Used Files" -msgstr "" - -#: ../app/helpers/ops_helper/textual_summary.rb:91 +#: ../app/helpers/ops_helper/textual_summary.rb:101 msgid "Used Index Nodes" msgstr "" @@ -22869,53 +23571,53 @@ msgstr "" msgid "Used Size" msgstr "" -#: ../app/helpers/storage_helper/textual_summary.rb:48 +#: ../app/helpers/storage_helper/textual_summary.rb:47 msgid "Used Space" msgstr "" -#: ../app/helpers/ops_helper/textual_summary.rb:81 +#: ../app/helpers/ops_helper/textual_summary.rb:91 msgid "Used Space on Volume" msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:388 ../app/views/layouts/_multi_auth_credentials.html.haml:118 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:393 ../app/views/layouts/_multi_auth_credentials.html.haml:118 msgid "Used for SSH connection to all %{hosts} in this provider." msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:510 ../app/views/layouts/_multi_auth_credentials.html.haml:176 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:515 ../app/views/layouts/_multi_auth_credentials.html.haml:176 msgid "Used for access to IPMI." msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:483 ../app/views/layouts/_multi_auth_credentials.html.haml:157 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:488 ../app/views/layouts/_multi_auth_credentials.html.haml:157 msgid "Used for access to Web Services." msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:191 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:194 msgid "Used to authenticate as a service account against your provider." msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:330 ../app/views/layouts/_multi_auth_credentials.html.haml:100 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:335 ../app/views/layouts/_multi_auth_credentials.html.haml:100 msgid "Used to authenticate with OpenStack AMQP Messaging Bus for event handling. Configure AMQP if eventing is not enabled on Ceilometer." msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:248 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:430 ../app/views/layouts/_multi_auth_credentials.html.haml:81 +#: ../app/views/layouts/angular/_multi_tab_ansible_form_options.html.haml:35 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:253 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:435 ../app/views/layouts/_multi_auth_credentials.html.haml:81 msgid "Used to gather Capacity & Utilization metrics." msgstr "" -#: ../app/controllers/vm_common.rb:1654 ../app/views/report/_report_info.html.haml:76 ../app/views/report/_report_list.html.haml:137 ../app/views/miq_task/_tasks_options.html.haml:39 +#: ../app/controllers/vm_common.rb:1462 ../app/helpers/ansible_credential_helper/textual_summary.rb:17 ../app/views/miq_task/_tasks_options.html.haml:39 ../app/views/shared/views/_alerts_list.html.haml:174 ../app/views/report/_report_list.html.haml:137 ../app/views/report/_report_info.html.haml:76 msgid "User" msgid_plural "Users" msgstr[0] "" msgstr[1] "" -#: ../app/controllers/application_controller.rb:2217 +#: ../app/controllers/application_controller.rb:2223 msgid "User '%{user_id}' is not authorized to access '%{model}' record id '%{record_id}'" msgstr "" -#: ../app/controllers/storage_controller.rb:49 ../app/controllers/vm_common.rb:224 ../app/controllers/infra_networking_controller.rb:38 +#: ../app/controllers/vm_common.rb:171 ../app/controllers/storage_controller.rb:48 ../app/controllers/infra_networking_controller.rb:40 msgid "User '%{username}' is not authorized to access '%{controller_name}'" msgstr "" -#: ../app/helpers/ui_constants.rb:440 +#: ../app/helpers/ui_constants.rb:437 msgid "User Accounts" msgstr "" @@ -22931,23 +23633,23 @@ msgstr "" msgid "User Group Sequencing for LDAP Look Up:" msgstr "" -#: ../app/views/ops/_rbac_user_details.html.haml:17 +#: ../app/views/ops/_rbac_user_details.html.haml:16 msgid "User Information" msgstr "" -#: ../app/controllers/configuration_controller.rb:495 +#: ../app/controllers/configuration_controller.rb:486 msgid "User Interface Configuration" msgstr "" -#: ../app/controllers/configuration_controller.rb:191 ../app/controllers/configuration_controller.rb:204 +#: ../app/controllers/configuration_controller.rb:174 ../app/controllers/configuration_controller.rb:187 msgid "User Interface settings saved for User %{name}" msgstr "" -#: ../app/controllers/configuration_controller.rb:193 ../app/controllers/configuration_controller.rb:206 +#: ../app/controllers/configuration_controller.rb:176 ../app/controllers/configuration_controller.rb:189 msgid "User Interface settings saved for this session" msgstr "" -#: ../app/views/ops/_settings_server_tab.html.haml:496 ../app/views/middleware_server/_add_datasource_step3.html.haml:47 ../app/views/layouts/_about_modal.html.haml:26 +#: ../app/views/ops/_settings_server_tab.html.haml:460 ../app/views/layouts/_about_modal.html.haml:26 ../app/views/middleware_server/_add_datasource_step3.html.haml:47 msgid "User Name" msgstr "" @@ -22955,7 +23657,7 @@ msgstr "" msgid "User Password must be entered to perform LDAP Group Look Up" msgstr "" -#: ../app/views/_ldap_domain_form.html.haml:44 ../app/views/ops/_ldap_domain_show.html.haml:61 ../app/views/ops/_ldap_domain_form.html.haml:44 +#: ../app/views/ops/_ldap_domain_show.html.haml:61 ../app/views/ops/_ldap_domain_form.html.haml:44 ../app/views/_ldap_domain_form.html.haml:44 msgid "User Principal Name" msgstr "" @@ -22971,23 +23673,15 @@ msgstr "" msgid "User Suffix" msgstr "" -#: ../app/views/_ldap_domain_form.html.haml:63 ../app/views/ops/_ldap_domain_show.html.haml:70 ../app/views/ops/_settings_authentication_tab.html.haml:174 ../app/views/ops/_ldap_domain_form.html.haml:63 +#: ../app/views/ops/_ldap_domain_show.html.haml:70 ../app/views/ops/_ldap_domain_form.html.haml:63 ../app/views/ops/_settings_authentication_tab.html.haml:174 ../app/views/_ldap_domain_form.html.haml:63 msgid "User Suffix:" msgstr "" -#: ../app/views/_ldap_domain_form.html.haml:39 ../app/views/ops/_ldap_domain_show.html.haml:42 ../app/views/ops/_settings_authentication_tab.html.haml:130 ../app/views/ops/_ldap_domain_form.html.haml:39 ../app/views/ops/_ldap_region_show.html.haml:75 +#: ../app/views/ops/_ldap_region_show.html.haml:75 ../app/views/ops/_ldap_domain_show.html.haml:42 ../app/views/ops/_ldap_domain_form.html.haml:39 ../app/views/ops/_settings_authentication_tab.html.haml:130 ../app/views/_ldap_domain_form.html.haml:39 msgid "User Type" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:679 -msgid "User [Administrator] can not be copied" -msgstr "" - -#: ../app/helpers/application_helper/toolbar_builder.rb:681 -msgid "User [Administrator] can not be deleted" -msgstr "" - -#: ../app/controllers/vm_common.rb:1123 +#: ../app/controllers/vm_common.rb:981 msgid "User is not authorized to view %{model} \"%{name}\"" msgstr "" @@ -22999,15 +23693,15 @@ msgstr "" msgid "User no longer exists" msgstr "" -#: ../app/views/ops/_rbac_group_details.html.haml:157 ../app/views/ops/_rbac_group_details.html.haml:191 +#: ../app/views/ops/_rbac_group_details.html.haml:156 ../app/views/ops/_rbac_group_details.html.haml:190 msgid "User to Look Up" msgstr "" -#: ../app/views/layouts/exp_atom/_editor.html.haml:94 +#: ../app/views/layouts/exp_atom/_editor.html.haml:91 msgid "User will input the value" msgstr "" -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:20 ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:69 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:33 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:33 ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:25 ../app/views/configuration/_ui_4.html.haml:16 ../app/views/ops/_settings_replication_tab.html.haml:140 ../app/views/ops/_zone_form.html.haml:133 ../app/views/ops/_rbac_user_details.html.haml:55 ../app/views/ops/_diagnostics_database_tab.html.haml:67 ../app/views/ops/_diagnostics_savedreports.html.haml:18 ../app/views/ops/_rbac_group_details.html.haml:210 ../app/views/storage_manager/_form.html.haml:156 ../app/views/dashboard/login.html.haml:83 ../app/views/dashboard/login.html.haml:87 ../app/views/report/_report_info.html.haml:155 ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:4 ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:4 ../app/views/layouts/_auth_credentials_keypair.html.haml:7 ../app/views/layouts/_discover_credentials.html.haml:13 ../app/views/layouts/angular/_auth_credentials_angular.html.haml:3 ../app/views/layouts/_auth_credentials.html.haml:9 +#: ../app/views/configuration/_ui_4.html.haml:16 ../app/views/ops/_rbac_group_details.html.haml:209 ../app/views/ops/_zone_form.html.haml:133 ../app/views/ops/_diagnostics_database_tab.html.haml:67 ../app/views/ops/_settings_replication_tab.html.haml:68 ../app/views/ops/_diagnostics_savedreports.html.haml:18 ../app/views/ops/_rbac_user_details.html.haml:54 ../app/views/storage_manager/_form.html.haml:156 ../app/views/report/_report_info.html.haml:155 ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:25 ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:33 ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:20 ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:69 ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:33 ../app/views/layouts/angular/_auth_credentials_angular.html.haml:3 ../app/views/layouts/_auth_credentials_keypair.html.haml:7 ../app/views/layouts/_auth_credentials.html.haml:9 ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:4 ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:4 ../app/views/layouts/_discover_credentials.html.haml:13 ../app/views/dashboard/login.html.haml:83 ../app/views/dashboard/login.html.haml:87 msgid "Username" msgstr "" @@ -23019,11 +23713,11 @@ msgstr "" msgid "Username and matching password fields are needed to run a database backup" msgstr "" -#: ../app/controllers/pxe_controller/pxe_servers.rb:305 ../app/controllers/application_controller/ci_processing.rb:1400 +#: ../app/controllers/pxe_controller/pxe_servers.rb:298 ../app/controllers/application_controller/ci_processing.rb:1376 msgid "Username is required" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:1405 ../app/controllers/ops_controller/settings/ldap.rb:171 ../app/controllers/ops_controller/settings/zones.rb:123 ../app/controllers/storage_manager_controller.rb:243 ../app/controllers/ems_common.rb:696 +#: ../app/controllers/ems_common.rb:580 ../app/controllers/storage_manager_controller.rb:246 ../app/controllers/application_controller/ci_processing.rb:1381 ../app/controllers/ops_controller/settings/zones.rb:123 ../app/controllers/ops_controller/settings/ldap.rb:164 msgid "Username must be entered if Password is entered" msgstr "" @@ -23035,7 +23729,7 @@ msgstr "" msgid "Username:" msgstr "" -#: ../app/presenters/tree_builder_ops_rbac.rb:31 ../app/helpers/host_helper/textual_summary.rb:386 ../app/helpers/vm_helper/textual_summary.rb:486 ../app/helpers/vm_cloud_helper/textual_summary.rb:121 ../app/controllers/ops_controller.rb:669 ../app/controllers/ops_controller.rb:678 ../app/views/layouts/listnav/_host.html.haml:185 ../app/views/layouts/_item.html.haml:112 +#: ../app/presenters/tree_builder_ops_rbac.rb:35 ../app/helpers/host_helper/textual_summary.rb:349 ../app/helpers/vm_cloud_helper/textual_summary.rb:132 ../app/helpers/vm_helper/textual_summary.rb:525 ../app/controllers/ops_controller.rb:708 ../app/controllers/ops_controller.rb:717 ../app/views/layouts/listnav/_host.html.haml:154 ../app/views/layouts/_item.html.haml:54 msgid "Users" msgstr "" @@ -23043,15 +23737,15 @@ msgstr "" msgid "Users (%{users_count})" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:598 +#: ../app/helpers/application_helper/button/miq_request_delete.rb:8 msgid "Users are only allowed to delete their own requests" msgstr "" -#: ../app/views/ops/_rbac_group_details.html.haml:120 +#: ../app/views/ops/_rbac_group_details.html.haml:119 msgid "Users in this Group" msgstr "" -#: ../app/presenters/menu/default_menu.rb:241 ../app/helpers/application_helper/toolbar/container_center.rb:21 ../app/helpers/application_helper/toolbar/host_center.rb:127 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:112 ../app/helpers/application_helper/toolbar/ontap_storage_system_center.rb:43 ../app/helpers/application_helper/toolbar/container_replicator_center.rb:22 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:163 ../app/helpers/application_helper/toolbar/miq_template_center.rb:106 ../app/helpers/application_helper/toolbar/ontap_storage_volume_center.rb:28 ../app/helpers/application_helper/toolbar/container_node_center.rb:22 ../app/helpers/application_helper/toolbar/ontap_logical_disk_center.rb:28 ../app/helpers/application_helper/toolbar/container_project_center.rb:22 ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:13 ../app/helpers/application_helper/toolbar/middleware_messaging_center.rb:14 ../app/helpers/application_helper/toolbar/ems_container_center.rb:55 ../app/helpers/application_helper/toolbar/ontap_file_share_center.rb:43 ../app/helpers/application_helper/toolbar/container_group_center.rb:22 ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:56 ../app/helpers/application_helper/toolbar/x_vm_center.rb:157 ../app/helpers/application_helper/toolbar/availability_zone_center.rb:28 ../app/helpers/application_helper/toolbar/middleware_server_center.rb:14 ../app/helpers/application_helper/toolbar/container_service_center.rb:13 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:112 ../app/helpers/application_helper/toolbar/storage_center.rb:52 ../app/controllers/application_controller.rb:339 ../app/controllers/miq_capacity_controller.rb:19 ../app/controllers/miq_capacity_controller.rb:773 ../app/views/ops/_all_tabs.html.haml:187 ../app/views/ops/_all_tabs.html.haml:295 +#: ../app/presenters/menu/default_menu.rb:262 ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:113 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:116 ../app/helpers/application_helper/toolbar/container_replicator_center.rb:22 ../app/helpers/application_helper/toolbar/ems_container_center.rb:55 ../app/helpers/application_helper/toolbar/host_center.rb:130 ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:13 ../app/helpers/application_helper/toolbar/x_vm_center.rb:158 ../app/helpers/application_helper/toolbar/container_node_center.rb:22 ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:56 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:167 ../app/helpers/application_helper/toolbar/container_project_center.rb:22 ../app/helpers/application_helper/toolbar/container_service_center.rb:13 ../app/helpers/application_helper/toolbar/availability_zone_center.rb:28 ../app/helpers/application_helper/toolbar/container_group_center.rb:22 ../app/helpers/application_helper/toolbar/container_center.rb:21 ../app/helpers/application_helper/toolbar/middleware_server_center.rb:14 ../app/helpers/application_helper/toolbar/storage_center.rb:55 ../app/helpers/application_helper/toolbar/middleware_messaging_center.rb:14 ../app/controllers/miq_capacity_controller.rb:19 ../app/controllers/miq_capacity_controller.rb:773 ../app/controllers/application_controller.rb:342 ../app/views/ops/_all_tabs.html.haml:187 ../app/views/ops/_all_tabs.html.haml:295 msgid "Utilization" msgstr "" @@ -23059,11 +23753,11 @@ msgstr "" msgid "Utilization Summary" msgstr "" -#: ../app/views/vm_common/_main.html.haml:22 ../app/views/vm_cloud/_main.html.haml:21 ../app/views/host/_main.html.haml:29 +#: ../app/helpers/host_helper/textual_summary.rb:49 ../app/helpers/vm_cloud_helper/textual_summary.rb:58 ../app/helpers/vm_helper/textual_summary.rb:104 msgid "VC Custom Attributes" msgstr "" -#: ../app/views/configuration/_ui_1.html.haml:25 +#: ../app/presenters/tree_builder_datacenter.rb:15 ../app/presenters/tree_builder_policy_simulation_results.rb:43 ../app/views/configuration/_ui_1.html.haml:24 msgid "VM" msgstr "" @@ -23075,7 +23769,7 @@ msgstr "" msgid "VM %{name} Remote Console" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:620 +#: ../app/controllers/ops_controller/settings/schedules.rb:615 msgid "VM Analysis" msgstr "" @@ -23083,15 +23777,15 @@ msgstr "" msgid "VM Analysis Collectors" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:628 +#: ../app/controllers/ops_controller/settings/schedules.rb:623 msgid "VM Compliance Check" msgstr "" -#: ../app/helpers/ui_constants.rb:441 +#: ../app/helpers/ui_constants.rb:438 msgid "VM Configuration" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:244 ../app/helpers/application_helper/toolbar/x_vm_center.rb:251 ../app/helpers/application_helper/toolbar/x_vm_center.rb:257 +#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:114 ../app/helpers/application_helper/toolbar/x_vm_center.rb:253 ../app/helpers/application_helper/toolbar/x_vm_center.rb:261 ../app/helpers/application_helper/toolbar/x_vm_center.rb:268 msgid "VM Console" msgstr "" @@ -23099,7 +23793,7 @@ msgstr "" msgid "VM Counts per %{model}" msgstr "" -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:73 +#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:74 msgid "VM Hardware" msgstr "" @@ -23107,7 +23801,7 @@ msgstr "" msgid "VM Limits" msgstr "" -#: ../app/helpers/storage_helper/textual_summary.rb:219 ../app/controllers/storage_controller.rb:222 ../app/views/layouts/listnav/_storage.html.haml:110 +#: ../app/helpers/storage_helper/textual_summary.rb:174 ../app/controllers/storage_controller.rb:193 ../app/views/layouts/listnav/_storage.html.haml:71 msgid "VM Memory Files" msgstr "" @@ -23119,23 +23813,23 @@ msgstr "" msgid "VM Options" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:172 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:181 msgid "VM Power Functions" msgstr "" -#: ../app/helpers/storage_helper/textual_summary.rb:183 ../app/controllers/storage_controller.rb:204 ../app/views/layouts/listnav/_storage.html.haml:94 +#: ../app/helpers/storage_helper/textual_summary.rb:138 ../app/controllers/storage_controller.rb:175 ../app/views/layouts/listnav/_storage.html.haml:55 msgid "VM Provisioned Disk Files" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:900 +#: ../app/controllers/application_controller/ci_processing.rb:937 msgid "VM Reconfigure Request was cancelled by the user" msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:956 +#: ../app/controllers/application_controller/ci_processing.rb:993 msgid "VM Reconfigure Request was saved" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:237 +#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:107 ../app/helpers/application_helper/toolbar/x_vm_center.rb:246 msgid "VM Remote Access" msgstr "" @@ -23143,27 +23837,27 @@ msgstr "" msgid "VM Reservations" msgstr "" -#: ../app/views/miq_policy/_rsop_form.html.haml:45 ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:161 +#: ../app/views/miq_policy/_rsop_form.html.haml:45 ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:168 msgid "VM Selection" msgstr "" -#: ../app/helpers/storage_helper/textual_summary.rb:201 ../app/controllers/storage_controller.rb:213 ../app/views/layouts/listnav/_storage.html.haml:102 +#: ../app/helpers/storage_helper/textual_summary.rb:156 ../app/controllers/storage_controller.rb:184 ../app/views/layouts/listnav/_storage.html.haml:63 msgid "VM Snapshot Files" msgstr "" -#: ../app/controllers/application_controller/compare.rb:871 +#: ../app/controllers/application_controller/compare.rb:767 msgid "VM Templates" msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:710 +#: ../app/helpers/application_helper/button/vm_vmrc_console.rb:17 msgid "VM VMRC Console error: %{error}" msgstr "" -#: ../app/views/configuration/_ui_2.html.haml:108 +#: ../app/views/configuration/_ui_2.html.haml:109 msgid "VM Visibility" msgstr "" -#: ../app/presenters/tree_builder_condition.rb:21 +#: ../app/presenters/tree_builder_condition.rb:24 msgid "VM and Instance Conditions" msgstr "" @@ -23171,11 +23865,15 @@ msgstr "" msgid "VM data will be collected for VMs under selected %{hosts} only. Data is collected for a %{cluster} and all of its %{hosts} when at least one %{host} is selected." msgstr "" +#: ../app/controllers/vm_common.rb:231 +msgid "VM has too many parents." +msgstr "" + #: ../app/helpers/application_helper/button/vm_retire_now.rb:9 msgid "VM is already retired" msgstr "" -#: ../app/controllers/vm_common.rb:866 +#: ../app/controllers/vm_common.rb:720 msgid "VM successfully removed from service \"%{name}\"" msgstr "" @@ -23183,51 +23881,47 @@ msgstr "" msgid "VM/Instance Name" msgstr "" -#: ../app/presenters/tree_node_builder_datacenter.rb:37 -msgid "VM: %{name}" -msgstr "" - -#: ../app/presenters/tree_node_builder.rb:315 ../app/controllers/vm_common.rb:403 +#: ../app/presenters/tree_builder_genealogy.rb:50 ../app/presenters/tree_builder_genealogy.rb:53 ../app/presenters/tree_node/vm_or_template.rb:6 msgid "VM: %{name} (Click to view)" msgstr "" -#: ../app/presenters/tree_builder_ops_vmdb.rb:19 +#: ../app/presenters/tree_builder_ops_vmdb.rb:20 msgid "VMDB" msgstr "" -#: ../app/controllers/ops_controller/db.rb:147 +#: ../app/controllers/ops_controller/db.rb:139 msgid "VMDB \"%{name}\" Table Utilization" msgstr "" -#: ../app/controllers/ops_controller/db.rb:116 +#: ../app/controllers/ops_controller/db.rb:108 msgid "VMDB Client Connections" msgstr "" -#: ../app/controllers/ops_controller/db.rb:122 +#: ../app/controllers/ops_controller/db.rb:114 msgid "VMDB Settings" msgstr "" -#: ../app/controllers/ops_controller/db.rb:106 +#: ../app/controllers/ops_controller/db.rb:98 msgid "VMDB Summary" msgstr "" -#: ../app/controllers/ops_controller/db.rb:112 +#: ../app/controllers/ops_controller/db.rb:104 msgid "VMDB Utilization" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:134 ../app/views/layouts/listnav/_host.html.haml:65 +#: ../app/helpers/host_helper/textual_summary.rb:141 ../app/views/layouts/listnav/_host.html.haml:65 msgid "VMM Information" msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:320 ../app/controllers/application_controller/miq_request_methods.rb:613 ../app/controllers/vm_infra_controller.rb:27 ../app/controllers/host_controller.rb:95 ../app/controllers/vm_common.rb:1262 ../app/controllers/ems_common.rb:72 ../app/views/miq_capacity/_planning_summary.html.haml:20 ../app/views/container_topology/show.html.haml:139 ../app/views/configuration/_ui_2.html.haml:210 ../app/views/middleware_topology/show.html.haml:108 ../app/views/service/_svcs_show.html.haml:30 ../app/views/network_topology/show.html.haml:52 ../app/views/cloud_topology/show.html.haml:33 ../app/views/ems_infra/scaledown.html.haml:46 ../app/views/layouts/listnav/_ems_infra.html.haml:63 ../app/views/layouts/listnav/_host.html.haml:128 ../app/views/layouts/listnav/_storage.html.haml:37 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:35 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:69 +#: ../app/helpers/host_helper/textual_summary.rb:327 ../app/controllers/vm_common.rb:1073 ../app/controllers/host_controller.rb:78 ../app/controllers/application_controller/miq_request_methods.rb:616 ../app/controllers/vm_infra_controller.rb:28 ../app/views/cloud_topology/show.html.haml:33 ../app/views/configuration/_ui_2.html.haml:211 ../app/views/miq_capacity/_planning_summary.html.haml:20 ../app/views/container_topology/show.html.haml:139 ../app/views/infra_topology/show.html.haml:52 ../app/views/ems_infra/scaledown.html.haml:46 ../app/views/layouts/listnav/_host.html.haml:128 ../app/views/layouts/listnav/_storage.html.haml:37 ../app/views/layouts/listnav/_ems_infra.html.haml:63 ../app/views/middleware_topology/show.html.haml:108 ../app/views/network_topology/show.html.haml:71 ../app/views/service/_svcs_show.html.haml:44 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:35 ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:69 msgid "VMs" msgstr "" -#: ../app/controllers/vm_or_template_controller.rb:17 ../app/views/configuration/_ui_2.html.haml:49 +#: ../app/controllers/vm_or_template_controller.rb:18 ../app/views/configuration/_ui_2.html.haml:50 msgid "VMs & Instances" msgstr "" -#: ../app/helpers/ems_infra_helper/textual_summary.rb:84 ../app/controllers/vm_infra_controller.rb:22 ../app/controllers/vm_common.rb:1254 ../app/controllers/vm_common.rb:1334 ../app/views/configuration/_ui_2.html.haml:210 ../app/views/ops/_rbac_group_details.html.haml:282 ../app/views/layouts/listnav/_ems_infra.html.haml:34 +#: ../app/helpers/ems_infra_helper/textual_summary.rb:95 ../app/controllers/vm_common.rb:1065 ../app/controllers/vm_common.rb:1145 ../app/controllers/vm_infra_controller.rb:23 ../app/views/configuration/_ui_2.html.haml:211 ../app/views/ops/_rbac_group_details.html.haml:280 ../app/views/layouts/listnav/_ems_infra.html.haml:34 msgid "VMs & Templates" msgstr "" @@ -23235,7 +23929,7 @@ msgstr "" msgid "VMs And Templates" msgstr "" -#: ../app/views/vm_common/_main.html.haml:16 ../app/views/vm_cloud/_main.html.haml:17 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:48 ../app/helpers/vm_helper/textual_summary.rb:94 msgid "VMsafe" msgstr "" @@ -23267,23 +23961,11 @@ msgstr "" msgid "VNC" msgstr "" -#: ../app/views/vm_common/console_vnc.html.haml:9 -msgid "VNC Console" +#: ../app/helpers/application_helper/button/vm_vnc_console.rb:11 +msgid "VNC consoles are unsupported on VMware ESXi 6.5 and later." msgstr "" -#: ../app/views/ops/_settings_server_tab.html.haml:294 -msgid "VNC Proxy Address" -msgstr "" - -#: ../app/views/ops/_settings_server_tab.html.haml:311 -msgid "VNC Proxy Port" -msgstr "" - -#: ../app/controllers/ops_controller/settings/common.rb:608 -msgid "VNC Proxy Port must be numeric" -msgstr "" - -#: ../app/presenters/tree_builder_orchestration_templates.rb:37 ../app/presenters/tree_builder_orchestration_templates.rb:39 +#: ../app/presenters/tree_builder_orchestration_templates.rb:40 ../app/presenters/tree_builder_orchestration_templates.rb:42 msgid "VNF Templates" msgstr "" @@ -23291,7 +23973,7 @@ msgstr "" msgid "Valid" msgstr "" -#: ../app/views/ops/_settings_replication_tab.html.haml:229 ../app/views/ops/_settings_replication_tab.html.haml:237 ../app/views/ops/_settings_replication_tab.html.haml:385 ../app/views/ops/_settings_replication_tab.html.haml:441 ../app/views/ops/_settings_replication_tab.html.haml:449 ../app/views/ops/_ldap_verify_button.html.haml:4 ../app/views/ops/_ldap_verify_button.html.haml:18 ../app/views/ops/_ldap_server_entry.html.haml:135 ../app/views/ops/_amazon_verify_button.html.haml:2 ../app/views/ops/_amazon_verify_button.html.haml:16 ../app/views/layouts/_form_buttons_verify.html.haml:19 ../app/views/layouts/_form_buttons_verify.html.haml:28 ../app/views/layouts/_form_buttons_verify.html.haml:46 ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:13 ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:20 ../app/views/layouts/_auth_credentials2.html.haml:64 +#: ../app/views/ops/_amazon_verify_button.html.haml:2 ../app/views/ops/_amazon_verify_button.html.haml:16 ../app/views/ops/_settings_replication_tab.html.haml:157 ../app/views/ops/_settings_replication_tab.html.haml:165 ../app/views/ops/_settings_replication_tab.html.haml:306 ../app/views/ops/_settings_replication_tab.html.haml:338 ../app/views/ops/_settings_replication_tab.html.haml:346 ../app/views/ops/_ldap_server_entry.html.haml:134 ../app/views/ops/_ldap_verify_button.html.haml:4 ../app/views/ops/_ldap_verify_button.html.haml:18 ../app/views/layouts/_form_buttons_verify.html.haml:19 ../app/views/layouts/_form_buttons_verify.html.haml:28 ../app/views/layouts/_form_buttons_verify.html.haml:46 ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:15 ../app/views/layouts/_auth_credentials2.html.haml:64 msgid "Validate" msgstr "" @@ -23299,7 +23981,7 @@ msgstr "" msgid "Validate the Amazon Settings" msgstr "" -#: ../app/views/ops/_ldap_verify_button.html.haml:4 ../app/views/ops/_ldap_verify_button.html.haml:4 ../app/views/ops/_ldap_server_entry.html.haml:135 +#: ../app/views/ops/_ldap_server_entry.html.haml:134 ../app/views/ops/_ldap_verify_button.html.haml:4 ../app/views/ops/_ldap_verify_button.html.haml:4 msgid "Validate the LDAP Settings by binding with the %{host}" msgstr "" @@ -23319,11 +24001,11 @@ msgstr "" msgid "Validate the credentials by logging into the selected %{title_for_host}" msgstr "" -#: ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:44 +#: ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:40 msgid "Validation Required" msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:144 ../app/controllers/cloud_volume_controller.rb:295 ../app/controllers/cloud_volume_controller.rb:356 +#: ../app/controllers/cloud_volume_controller.rb:325 ../app/controllers/cloud_volume_controller.rb:400 ../app/controllers/auth_key_pair_cloud_controller.rb:137 msgid "Validation successful" msgstr "" @@ -23335,7 +24017,7 @@ msgstr "" msgid "Validator Type" msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:280 ../app/helpers/container_helper/textual_summary.rb:121 ../app/helpers/container_template_helper/textual_summary.rb:26 ../app/helpers/container_image_helper/textual_summary.rb:105 ../app/helpers/container_group_helper/textual_summary.rb:57 ../app/controllers/miq_capacity_controller.rb:321 ../app/views/miq_policy/_action_options.html.haml:455 ../app/views/miq_policy/_alert_details.html.haml:405 ../app/views/miq_policy/_action_details.html.haml:400 ../app/views/miq_policy/_alert_snmp.html.haml:110 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:252 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:350 ../app/views/miq_ae_customization/_field_values.html.haml:18 ../app/views/miq_ae_customization/_tag_field_values.html.haml:11 ../app/views/miq_ae_class/_instance_fields.html.haml:17 ../app/views/miq_ae_class/_instance_form.html.haml:89 ../app/views/ops/_tenant_quota_form.html.haml:32 ../app/views/report/_form_columns_trend.html.haml:61 +#: ../app/helpers/container_image_helper/textual_summary.rb:120 ../app/helpers/container_group_helper/textual_summary.rb:67 ../app/helpers/container_helper/textual_summary.rb:135 ../app/helpers/container_template_helper/textual_summary.rb:27 ../app/helpers/provider_foreman_helper.rb:285 ../app/helpers/automation_manager_helper.rb:121 ../app/controllers/miq_capacity_controller.rb:321 ../app/views/miq_policy/_action_options.html.haml:447 ../app/views/miq_policy/_alert_snmp.html.haml:110 ../app/views/miq_policy/_alert_details.html.haml:405 ../app/views/miq_policy/_action_details.html.haml:400 ../app/views/ops/_tenant_quota_form.html.haml:32 ../app/views/miq_ae_class/_instance_fields.html.haml:17 ../app/views/miq_ae_class/_instance_form.html.haml:89 ../app/views/report/_form_columns_trend.html.haml:61 ../app/views/miq_ae_customization/_tag_field_values.html.haml:11 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:249 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:347 ../app/views/miq_ae_customization/_field_values.html.haml:18 ../app/views/middleware_server/_add_datasource_step3.html.haml:158 msgid "Value" msgstr "" @@ -23343,19 +24025,19 @@ msgstr "" msgid "Value Threshold must be an integer" msgstr "" -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:71 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:226 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:324 +#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:71 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:223 ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:321 msgid "Value Type" msgstr "" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:486 +#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:476 msgid "Value and Description fields can't be blank" msgstr "" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:380 ../app/controllers/miq_policy_controller.rb:1009 ../app/controllers/miq_policy_controller.rb:1014 +#: ../app/controllers/miq_policy_controller.rb:1012 ../app/controllers/miq_policy_controller.rb:1017 ../app/controllers/miq_policy_controller/miq_actions.rb:376 msgid "Value missing for %{field}" msgstr "" -#: ../app/views/miq_policy/_action_options.html.haml:85 ../app/views/miq_policy/_action_details.html.haml:246 +#: ../app/views/miq_policy/_action_options.html.haml:84 ../app/views/miq_policy/_action_details.html.haml:246 msgid "Value to Set" msgstr "" @@ -23367,22 +24049,30 @@ msgstr "" msgid "Values" msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:257 ../app/views/chargeback/_cb_rate_edit_table.html.haml:31 ../app/views/chargeback/_cb_rate_show.html.haml:57 +#: ../app/helpers/provider_foreman_helper.rb:262 ../app/helpers/automation_manager_helper.rb:98 ../app/views/chargeback/_cb_rate_show.html.haml:57 ../app/views/chargeback/_cb_rate_edit_table.html.haml:31 ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:269 ../app/views/catalog/_sandt_tree_show.html.haml:458 ../app/views/catalog/_sandt_tree_show.html.haml:617 msgid "Variable" msgstr "" -#: ../app/views/miq_policy/_alert_details.html.haml:401 ../app/views/miq_policy/_alert_snmp.html.haml:106 +#: ../app/views/miq_policy/_alert_snmp.html.haml:106 ../app/views/miq_policy/_alert_details.html.haml:401 msgid "Variable Object ID" msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:279 ../app/views/miq_policy/_action_options.html.haml:434 ../app/views/miq_policy/_action_details.html.haml:383 ../app/views/provider_foreman/_configuration_script.html.haml:12 +#: ../app/helpers/provider_foreman_helper.rb:284 ../app/helpers/automation_manager_helper.rb:120 ../app/views/miq_policy/_action_options.html.haml:426 ../app/views/miq_policy/_action_details.html.haml:383 ../app/views/provider_foreman/_configuration_script.html.haml:12 ../app/views/automation_manager/_configuration_script.html.haml:12 msgid "Variables" msgstr "" -#: ../app/helpers/ops_helper/textual_summary.rb:45 ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:21 ../app/helpers/ontap_storage_system_helper/textual_summary.rb:35 ../app/controllers/application_controller.rb:1321 ../app/controllers/application_controller.rb:1334 +#: ../app/views/layouts/angular/_ansible_form_options_angular.html.haml:217 ../app/views/catalog/_sandt_tree_show.html.haml:447 ../app/views/catalog/_sandt_tree_show.html.haml:606 +msgid "Variables & Default Values" +msgstr "" + +#: ../app/helpers/ops_helper/textual_summary.rb:55 ../app/controllers/application_controller.rb:1328 ../app/controllers/application_controller.rb:1341 msgid "Vendor" msgstr "" +#: ../app/helpers/service_helper/textual_summary.rb:212 +msgid "Verbosity" +msgstr "" + #: ../app/views/ops/_email_verify_button.html.haml:3 ../app/views/ops/_email_verify_button.html.haml:19 ../app/views/layouts/_edit_buttons.html.haml:61 msgid "Verify" msgstr "" @@ -23391,15 +24081,19 @@ msgstr "" msgid "Verify %{password_label}" msgstr "" -#: ../app/views/ops/_zone_form.html.haml:167 ../app/views/dashboard/_login_more.html.haml:24 ../app/views/layouts/_discover_credentials.html.haml:47 +#: ../app/views/ops/_zone_form.html.haml:167 ../app/views/layouts/_discover_credentials.html.haml:47 ../app/views/dashboard/_login_more.html.haml:24 msgid "Verify Password" msgstr "" -#: ../app/views/miq_ae_tools/_import_export.html.haml:107 ../app/views/provider_foreman/_form.html.haml:139 +#: ../app/views/provider_foreman/_form.html.haml:142 ../app/views/miq_ae_tools/_import_export.html.haml:107 ../app/views/automation_manager/_form.html.haml:106 msgid "Verify Peer Certificate" msgstr "" -#: ../app/helpers/ops_helper/textual_summary.rb:49 ../app/controllers/application_controller/miq_request_methods.rb:446 ../app/controllers/application_controller.rb:1293 ../app/controllers/application_controller.rb:1325 ../app/controllers/application_controller.rb:1338 ../app/views/miq_policy/_action_options.html.haml:395 ../app/views/miq_policy/_alert_details.html.haml:362 ../app/views/miq_policy/_action_details.html.haml:355 ../app/views/miq_policy/_alert_snmp.html.haml:64 ../app/views/layouts/_about_modal.html.haml:26 +#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:205 +msgid "Verify TLS Certificates" +msgstr "" + +#: ../app/helpers/ops_helper/textual_summary.rb:59 ../app/controllers/application_controller.rb:1300 ../app/controllers/application_controller.rb:1332 ../app/controllers/application_controller.rb:1345 ../app/controllers/application_controller/miq_request_methods.rb:449 ../app/views/miq_policy/_action_options.html.haml:387 ../app/views/miq_policy/_alert_snmp.html.haml:64 ../app/views/miq_policy/_alert_details.html.haml:362 ../app/views/miq_policy/_action_details.html.haml:355 ../app/views/layouts/_about_modal.html.haml:26 msgid "Version" msgstr "" @@ -23435,7 +24129,7 @@ msgstr "" msgid "View Examples (read only)' Folder" msgstr "" -#: ../app/views/ems_container/_show_ad_hoc_metrics.html.haml:24 +#: ../app/views/ems_container/ad_hoc/_list_view_form.html.haml:48 msgid "View Graph" msgstr "" @@ -23455,23 +24149,23 @@ msgstr "" msgid "View Parent Tenant" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:86 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:77 +#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:77 ../app/helpers/application_helper/toolbar/template_infras_center.rb:86 msgid "View Policy Simulation for the selected Templates" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:121 ../app/helpers/application_helper/toolbar/vms_center.rb:78 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:97 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:113 +#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:113 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:98 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:122 ../app/helpers/application_helper/toolbar/vms_center.rb:78 msgid "View Policy Simulation for the selected items" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:86 +#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:88 msgid "View Policy Simulation for this Image" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:99 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:64 +#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:66 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:101 msgid "View Policy Simulation for this Instance" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:60 ../app/helpers/application_helper/toolbar/miq_template_center.rb:61 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:60 msgid "View Policy Simulation for this Template" msgstr "" @@ -23483,6 +24177,10 @@ msgstr "" msgid "View Roles" msgstr "" +#: ../app/views/shared/views/_alerts_list.html.haml:128 +msgid "View SOP" +msgstr "" + #: ../app/views/ops/_settings_details_tab.html.haml:94 ../app/views/ops/_settings_details_tab.html.haml:99 msgid "View Schedules" msgstr "" @@ -23527,11 +24225,11 @@ msgstr "" msgid "View this Alert" msgstr "" -#: ../app/views/miq_policy/_alert_profile_list.html.haml:16 ../app/views/miq_policy/_alert_details.html.haml:503 +#: ../app/views/miq_policy/_alert_details.html.haml:503 ../app/views/miq_policy/_alert_profile_list.html.haml:16 msgid "View this Alert Profile" msgstr "" -#: ../app/views/miq_policy/_condition_list.html.haml:19 ../app/views/miq_policy/_policy_details.html.haml:234 +#: ../app/views/miq_policy/_policy_details.html.haml:234 ../app/views/miq_policy/_condition_list.html.haml:19 msgid "View this Condition" msgstr "" @@ -23539,11 +24237,11 @@ msgstr "" msgid "View this Event" msgstr "" -#: ../app/views/miq_policy/_event_details.html.haml:228 ../app/views/miq_policy/_event_details.html.haml:408 ../app/views/miq_policy/_policy_details.html.haml:352 ../app/views/miq_policy/_policy_details.html.haml:367 +#: ../app/views/miq_policy/_event_details.html.haml:211 ../app/views/miq_policy/_event_details.html.haml:391 ../app/views/miq_policy/_policy_details.html.haml:352 ../app/views/miq_policy/_policy_details.html.haml:367 msgid "View this Event Action" msgstr "" -#: ../app/views/ops/_rbac_role_details.html.haml:86 ../app/views/ops/_rbac_tenant_details.html.haml:68 ../app/views/ops/_rbac_user_details.html.haml:167 +#: ../app/views/ops/_rbac_role_details.html.haml:85 ../app/views/ops/_rbac_tenant_details.html.haml:68 ../app/views/ops/_rbac_user_details.html.haml:166 msgid "View this Group" msgstr "" @@ -23559,7 +24257,7 @@ msgstr "" msgid "View this Orchestration Template in Catalogs" msgstr "" -#: ../app/views/pxe/_pxe_server_details.html.haml:72 +#: ../app/views/pxe/_pxe_server_details.html.haml:44 msgid "View this PXE Image" msgstr "" @@ -23567,11 +24265,11 @@ msgstr "" msgid "View this Policy Event" msgstr "" -#: ../app/views/miq_policy/_policy_details.html.haml:424 ../app/views/miq_policy/_profile_list.html.haml:16 ../app/views/report/_role_list.html.haml:31 +#: ../app/views/miq_policy/_profile_list.html.haml:16 ../app/views/miq_policy/_policy_details.html.haml:424 ../app/views/report/_role_list.html.haml:31 msgid "View this Profile" msgstr "" -#: ../app/views/ops/_rbac_group_details.html.haml:100 +#: ../app/views/ops/_rbac_group_details.html.haml:99 msgid "View this Project" msgstr "" @@ -23579,7 +24277,7 @@ msgstr "" msgid "View this Report" msgstr "" -#: ../app/views/ops/_rbac_user_details.html.haml:202 ../app/views/ops/_rbac_group_details.html.haml:63 +#: ../app/views/ops/_rbac_group_details.html.haml:62 ../app/views/ops/_rbac_user_details.html.haml:201 msgid "View this Role" msgstr "" @@ -23587,11 +24285,11 @@ msgstr "" msgid "View this Schedule" msgstr "" -#: ../app/views/ops/_rbac_group_details.html.haml:100 +#: ../app/views/ops/_rbac_group_details.html.haml:99 msgid "View this Tenant" msgstr "" -#: ../app/views/ops/_rbac_group_details.html.haml:127 +#: ../app/views/ops/_rbac_group_details.html.haml:126 msgid "View this User" msgstr "" @@ -23599,7 +24297,7 @@ msgstr "" msgid "View this Widget" msgstr "" -#: ../app/views/pxe/_pxe_server_details.html.haml:119 +#: ../app/views/pxe/_pxe_server_details.html.haml:91 msgid "View this Windows Image" msgstr "" @@ -23611,15 +24309,15 @@ msgstr "" msgid "View this Zone's settings" msgstr "" -#: ../app/controllers/application_controller.rb:877 +#: ../app/controllers/application_controller.rb:880 msgid "View this item" msgstr "" -#: ../app/helpers/middleware_server_helper/textual_summary.rb:60 ../app/helpers/container_node_helper/textual_summary.rb:78 ../app/helpers/container_group_helper/textual_summary.rb:101 +#: ../app/helpers/container_group_helper/textual_summary.rb:111 ../app/helpers/middleware_server_helper/textual_summary.rb:67 ../app/helpers/container_node_helper/textual_summary.rb:91 msgid "Virtual Machine" msgstr "" -#: ../app/presenters/menu/default_menu.rb:68 ../app/helpers/ems_infra_helper/textual_summary.rb:149 ../app/controllers/application_controller/compare.rb:869 ../app/controllers/vm_common.rb:244 ../app/controllers/vm_controller.rb:22 +#: ../app/presenters/menu/default_menu.rb:69 ../app/helpers/ems_infra_helper/textual_summary.rb:144 ../app/helpers/ems_physical_infra_helper/textual_summary.rb:80 ../app/controllers/vm_common.rb:191 ../app/controllers/vm_controller.rb:23 ../app/controllers/application_controller/compare.rb:765 msgid "Virtual Machines" msgstr "" @@ -23627,7 +24325,7 @@ msgstr "" msgid "Virtual Private Cloud" msgstr "" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:311 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:322 msgid "Virtualization Type" msgstr "" @@ -23639,7 +24337,7 @@ msgstr "" msgid "Visible" msgstr "" -#: ../app/controllers/configuration_controller.rb:501 +#: ../app/controllers/configuration_controller.rb:492 msgid "Visual" msgstr "" @@ -23659,31 +24357,31 @@ msgstr "" msgid "Volume" msgstr "" -#: ../app/presenters/menu/default_menu.rb:176 +#: ../app/presenters/menu/default_menu.rb:178 msgid "Volume Backups" msgstr "" -#: ../app/views/persistent_volume/_main.html.haml:10 +#: ../app/helpers/persistent_volume_helper/textual_summary.rb:22 msgid "Volume Claim" msgstr "" -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:155 ../app/helpers/container_group_helper/textual_summary.rb:51 +#: ../app/helpers/container_group_helper/textual_summary.rb:61 ../app/helpers/persistent_volume_helper/textual_summary.rb:163 msgid "Volume ID" msgstr "" -#: ../app/views/cloud_volume/edit.html.haml:16 ../app/views/cloud_volume/new.html.haml:16 +#: ../app/views/cloud_volume/edit.html.haml:16 ../app/views/cloud_volume/new.html.haml:98 msgid "Volume Name" msgstr "" -#: ../app/helpers/container_group_helper/textual_summary.rb:48 +#: ../app/helpers/container_group_helper/textual_summary.rb:58 msgid "Volume Path" msgstr "" -#: ../app/presenters/menu/default_menu.rb:171 ../app/helpers/cloud_tenant_helper/textual_summary.rb:66 ../app/views/layouts/listnav/_cloud_tenant.html.haml:56 +#: ../app/presenters/menu/default_menu.rb:173 ../app/helpers/cloud_tenant_helper/textual_summary.rb:73 ../app/views/layouts/listnav/_cloud_tenant.html.haml:56 msgid "Volume Snapshots" msgstr "" -#: ../app/presenters/menu/default_menu.rb:105 ../app/presenters/menu/default_menu.rb:166 ../app/helpers/cloud_tenant_helper/textual_summary.rb:55 ../app/controllers/persistent_volume_controller.rb:12 ../app/controllers/ems_common.rb:107 ../app/views/container_group/_main.html.haml:15 ../app/views/configuration/_ui_2.html.haml:175 ../app/views/shared/views/_prov_dialog.html.haml:82 ../app/views/layouts/listnav/_cloud_tenant.html.haml:49 +#: ../app/presenters/menu/default_menu.rb:108 ../app/presenters/menu/default_menu.rb:168 ../app/helpers/container_group_helper/textual_summary.rb:76 ../app/helpers/cloud_tenant_helper/textual_summary.rb:62 ../app/controllers/persistent_volume_controller.rb:17 ../app/views/configuration/_ui_2.html.haml:176 ../app/views/shared/views/_prov_dialog.html.haml:82 ../app/views/layouts/listnav/_cloud_tenant.html.haml:49 msgid "Volumes" msgstr "" @@ -23691,15 +24389,23 @@ msgstr "" msgid "WINS Server" msgstr "" -#: ../app/helpers/ui_constants.rb:413 +#: ../app/helpers/ui_constants.rb:410 msgid "Waiting to Start" msgstr "" -#: ../app/views/miq_task/_tasks_options.html.haml:130 +#: ../app/views/miq_task/_tasks_options.html.haml:140 msgid "Warn" msgstr "" -#: ../app/views/configuration/_ui_2.html.haml:127 +#: ../app/assets/javascripts/services/alerts_center_service.js:46 +msgid "Warning" +msgstr "" + +#: ../app/assets/javascripts/controllers/alerts/alerts_overview_controller.js:80 +msgid "Warning Count" +msgstr "" + +#: ../app/views/configuration/_ui_2.html.haml:128 msgid "Warning: Enabling this option may cause performance issues in large environments (i.e. thousands of VMs)" msgstr "" @@ -23707,11 +24413,11 @@ msgstr "" msgid "Warning: Finished tasks will be permanently removed from the database!" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:97 +#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:106 msgid "Warning: Selected node will be restarted, do you want to continue?" msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:91 +#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:99 msgid "Warning: Server will be restarted, do you want to continue?" msgstr "" @@ -23727,11 +24433,11 @@ msgstr "" msgid "Warning: The selected Block Storage Managers and ALL of their components will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/custom_buttons_center.rb:28 ../app/helpers/application_helper/toolbar/catalogitem_buttons_center.rb:29 +#: ../app/helpers/application_helper/toolbar/catalogitem_buttons_center.rb:29 ../app/helpers/application_helper/toolbar/custom_buttons_center.rb:28 msgid "Warning: The selected Button Group will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/servicetemplatecatalogs_center.rb:28 +#: ../app/helpers/application_helper/toolbar/servicetemplatecatalogs_center.rb:29 msgid "Warning: The selected Catalogs will be permanently removed!" msgstr "" @@ -23739,15 +24445,15 @@ msgstr "" msgid "Warning: The selected Chargeback Rate will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/arbitration_profiles_center.rb:29 +#: ../app/helpers/application_helper/toolbar/arbitration_profiles_center.rb:30 msgid "Warning: The selected Cloud Providers and ALL of their components will be permanently removed from the Virtual Management Database. Are you sure you want to remove the selected Cloud Providers?" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:46 +#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:48 msgid "Warning: The selected Cloud Providers and ALL related components will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:28 +#: ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:29 msgid "Warning: The selected Cloud Tenants will be permanently deleted!" msgstr "" @@ -23755,7 +24461,7 @@ msgstr "" msgid "Warning: The selected Cloud Volume and ALL of their components will be removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:46 +#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:47 msgid "Warning: The selected Containers Providers and ALL of their components will be permanently removed!" msgstr "" @@ -23767,7 +24473,7 @@ msgstr "" msgid "Warning: The selected Datastores and ALL of their components will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:39 +#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:40 msgid "Warning: The selected Datawarehouse Providers and ALL of their components will be permanently removed!" msgstr "" @@ -23775,23 +24481,23 @@ msgstr "" msgid "Warning: The selected Dialog will be permanently removed from the Virtual Management Database!" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_dialogs_center.rb:38 +#: ../app/helpers/application_helper/toolbar/miq_dialogs_center.rb:39 msgid "Warning: The selected Dialog will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:42 ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:45 +#: ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:42 ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:46 msgid "Warning: The selected Host Aggregates will be permanently deleted!" msgstr "" -#: ../app/helpers/application_helper/toolbar/iso_datastores_center.rb:20 +#: ../app/helpers/application_helper/toolbar/iso_datastores_center.rb:21 msgid "Warning: The selected ISO Datastores and ALL of their components will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:46 +#: ../app/helpers/application_helper/toolbar/ems_physical_infras_center.rb:46 ../app/helpers/application_helper/toolbar/ems_infras_center.rb:48 msgid "Warning: The selected Infrastructure Providers and ALL of their components will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:33 +#: ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:35 msgid "Warning: The selected Items and ALL of their components will be permanently removed!" msgstr "" @@ -23807,7 +24513,7 @@ msgstr "" msgid "Warning: The selected Key Pairs and ALL of their components will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:39 +#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:40 msgid "Warning: The selected Middleware Providers and ALL of their components will be permanently removed!" msgstr "" @@ -23815,19 +24521,31 @@ msgstr "" msgid "Warning: The selected Network Providers and ALL of their components will be permanently removed!" msgstr "" +#: ../app/helpers/application_helper/toolbar/cloud_object_store_container_center.rb:17 +msgid "Warning: The selected Object Storage Container and ALL related Objects will be permanently removed!" +msgstr "" + +#: ../app/helpers/application_helper/toolbar/cloud_object_store_containers_center.rb:19 +msgid "Warning: The selected Object Storage Containers and ALL related Objects will be permanently removed!" +msgstr "" + #: ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:25 msgid "Warning: The selected Object Storage Managers and ALL of their components will be permanently removed!" msgstr "" +#: ../app/helpers/application_helper/toolbar/cloud_object_store_objects_center.rb:19 ../app/helpers/application_helper/toolbar/cloud_object_store_object_center.rb:17 +msgid "Warning: The selected Object Storage Object will be permanently removed!" +msgstr "" + #: ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:15 msgid "Warning: The selected Orchestration Stacks and ALL of their components will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:28 +#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:29 msgid "Warning: The selected PXE Servers and ALL of their components will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/inventory_group_center.rb:30 ../app/helpers/application_helper/toolbar/configuration_manager_provider_center.rb:30 +#: ../app/helpers/application_helper/toolbar/inventory_group_center.rb:30 ../app/helpers/application_helper/toolbar/automation_manager_provider_center.rb:32 ../app/helpers/application_helper/toolbar/configuration_manager_provider_center.rb:30 msgid "Warning: The selected Provider and ALL of their components will be permanently removed!" msgstr "" @@ -23839,11 +24557,11 @@ msgstr "" msgid "Warning: The selected Resource Pools and ALL of their components will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/network_routers_center.rb:33 +#: ../app/helpers/application_helper/toolbar/network_routers_center.rb:50 msgid "Warning: The selected Routers and ALL of their components will be removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/saved_reports_center.rb:34 ../app/helpers/application_helper/toolbar/miq_report_center.rb:43 +#: ../app/helpers/application_helper/toolbar/saved_reports_center.rb:35 ../app/helpers/application_helper/toolbar/miq_report_center.rb:43 msgid "Warning: The selected Saved Reports will be permanently removed from the database!" msgstr "" @@ -23851,35 +24569,35 @@ msgstr "" msgid "Warning: The selected Schedules and ALL of their components will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/services_center.rb:25 +#: ../app/helpers/application_helper/toolbar/service/vmdb_mixin.rb:27 msgid "Warning: The selected Services and ALL of their components will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:48 ../app/helpers/application_helper/toolbar/ems_storages_center.rb:25 +#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:49 ../app/helpers/application_helper/toolbar/ems_storages_center.rb:25 msgid "Warning: The selected Storage Managers and ALL of their components will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/pxe_image_types_center.rb:28 +#: ../app/helpers/application_helper/toolbar/pxe_image_types_center.rb:29 msgid "Warning: The selected System Image Types will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:60 ../app/helpers/application_helper/toolbar/miq_templates_center.rb:51 +#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:51 ../app/helpers/application_helper/toolbar/template_infras_center.rb:60 msgid "Warning: The selected Templates and ALL of their components will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/time_profiles_center.rb:37 +#: ../app/helpers/application_helper/toolbar/time_profiles_center.rb:38 msgid "Warning: The selected Time Profiles will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:32 +#: ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:33 msgid "Warning: The selected Volumes and ALL of their components will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:60 ../app/helpers/application_helper/toolbar/vms_center.rb:51 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:62 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:70 ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:44 +#: ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:44 ../app/helpers/application_helper/toolbar/vm_infras_center.rb:70 ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:63 ../app/helpers/application_helper/toolbar/template_clouds_center.rb:60 ../app/helpers/application_helper/toolbar/vms_center.rb:51 ../app/helpers/application_helper/toolbar/automation_manager_providers_center.rb:47 msgid "Warning: The selected items and ALL of their components will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:35 ../app/helpers/application_helper/toolbar/hosts_center.rb:97 +#: ../app/helpers/application_helper/toolbar/hosts_center.rb:99 ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:35 msgid "Warning: The selected items and ALL of their components will be permanently removed!?" msgstr "" @@ -23891,19 +24609,15 @@ msgstr "" msgid "Warning: The selected tasks will be permanently removed from the database!" msgstr "" -#: ../app/controllers/ops_controller/settings/schedules.rb:459 ../app/controllers/report_controller/schedules.rb:308 +#: ../app/controllers/report_controller/schedules.rb:308 ../app/controllers/ops_controller/settings/schedules.rb:454 msgid "Warning: This 'Run Once' timer is in the past and will never run as currently configured" msgstr "" -#: ../app/helpers/application_helper/toolbar/scan_profile_center.rb:26 +#: ../app/helpers/application_helper/toolbar/scan_profile_center.rb:27 msgid "Warning: This Analysis Profile and ALL of its components will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/arbitration_profile_center.rb:23 -msgid "Warning: This Arbitration Profile will be permanently removed from the Virtual Management Database. Are you sure you want to remove this Arbitration Profile?" -msgstr "" - -#: ../app/helpers/application_helper/toolbar/custom_button_center.rb:21 ../app/helpers/application_helper/toolbar/catalogitem_button_center.rb:23 +#: ../app/helpers/application_helper/toolbar/catalogitem_button_center.rb:23 ../app/helpers/application_helper/toolbar/custom_button_center.rb:21 msgid "Warning: This Button will be permanently removed from the Virtual Management Database!" msgstr "" @@ -23947,7 +24661,7 @@ msgstr "" msgid "Warning: This Dashboard and ALL of its components will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/storage_center.rb:22 +#: ../app/helpers/application_helper/toolbar/storage_center.rb:24 msgid "Warning: This Datastore and ALL of its components will be permanently removed!" msgstr "" @@ -23963,19 +24677,23 @@ msgstr "" msgid "Warning: This Dialog will be permanently removed!" msgstr "" +#: ../app/helpers/application_helper/toolbar/floating_ip_center.rb:26 +msgid "Warning: This Floating IP and ALL of its components will be removed!" +msgstr "" + #: ../app/helpers/application_helper/toolbar/iso_datastore_center.rb:15 msgid "Warning: This ISO Datastore and ALL of its components will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:39 +#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:41 msgid "Warning: This Image and ALL of its components will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:53 +#: ../app/helpers/application_helper/toolbar/ems_physical_infra_center.rb:32 ../app/helpers/application_helper/toolbar/ems_infra_center.rb:53 msgid "Warning: This Infrastructure Provider and ALL of its components will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:39 ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:40 +#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:42 ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:40 msgid "Warning: This Instance and ALL of its components will be permanently removed!" msgstr "" @@ -24003,18 +24721,22 @@ msgstr "" msgid "Warning: This Resource Pool and ALL of its components will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/network_router_center.rb:24 +#: ../app/helpers/application_helper/toolbar/network_router_center.rb:42 msgid "Warning: This Router and ALL of its components will be removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/saved_report_center.rb:23 +#: ../app/helpers/application_helper/toolbar/saved_report_center.rb:24 msgid "Warning: This Saved Report and ALL of its components will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_schedule_center.rb:20 ../app/helpers/application_helper/toolbar/miq_report_schedule_center.rb:20 +#: ../app/helpers/application_helper/toolbar/miq_report_schedule_center.rb:20 ../app/helpers/application_helper/toolbar/miq_schedule_center.rb:20 msgid "Warning: This Schedule and ALL of its components will be permanently removed!" msgstr "" +#: ../app/helpers/application_helper/toolbar/security_group_center.rb:26 +msgid "Warning: This Security Group and ALL of its components will be removed!" +msgstr "" + #: ../app/helpers/application_helper/toolbar/service_center.rb:21 msgid "Warning: This Service and ALL of their components will be permanently removed!" msgstr "" @@ -24027,7 +24749,7 @@ msgstr "" msgid "Warning: This System Image Type will be permanently removed!" msgstr "" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:40 ../app/helpers/application_helper/toolbar/miq_template_center.rb:41 +#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:40 msgid "Warning: This Template and ALL of its components will be permanently removed!" msgstr "" @@ -24051,11 +24773,11 @@ msgstr "" msgid "Warning: This item and ALL of its components will be permanently removed!?" msgstr "" -#: ../app/helpers/ops_helper/textual_summary.rb:117 ../app/views/ops/_db_info.html.haml:75 ../app/views/ops/_db_info.html.haml:168 ../app/views/ops/_db_info.html.haml:219 +#: ../app/helpers/ops_helper/textual_summary.rb:127 ../app/views/ops/_db_info.html.haml:75 ../app/views/ops/_db_info.html.haml:168 ../app/views/ops/_db_info.html.haml:219 msgid "Wasted" msgstr "" -#: ../app/helpers/application_helper/toolbar/container_node_center.rb:59 ../app/helpers/application_helper/toolbar/x_vm_center.rb:264 +#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:276 ../app/helpers/application_helper/toolbar/container_node_center.rb:68 msgid "Web Console" msgstr "" @@ -24063,15 +24785,15 @@ msgstr "" msgid "Web Service Workers" msgstr "" -#: ../app/helpers/textual_summary_helper.rb:172 ../app/views/ops/_settings_server_tab.html.haml:575 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:45 ../app/views/layouts/_multi_auth_credentials.html.haml:36 +#: ../app/helpers/textual_summary_helper.rb:186 ../app/views/ops/_settings_server_tab.html.haml:539 ../app/views/layouts/angular/_multi_auth_credentials.html.haml:47 ../app/views/layouts/_multi_auth_credentials.html.haml:36 msgid "Web Services" msgstr "" -#: ../app/controllers/host_controller.rb:632 +#: ../app/controllers/host_controller.rb:595 msgid "Web Services Listen Port must be numeric" msgstr "" -#: ../app/controllers/host_controller.rb:622 +#: ../app/controllers/host_controller.rb:585 msgid "Web Services Password and Verify Password fields do not match" msgstr "" @@ -24079,11 +24801,11 @@ msgstr "" msgid "Websocket Workers" msgstr "" -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 +#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 msgid "Wednesday" msgstr "" -#: ../app/helpers/ui_constants.rb:307 ../app/views/report/_form_filter_chargeback.html.haml:254 +#: ../app/helpers/ui_constants.rb:304 ../app/views/report/_form_filter_chargeback.html.haml:282 msgid "Week" msgstr "" @@ -24091,7 +24813,7 @@ msgstr "" msgid "Weekly" msgstr "" -#: ../app/views/layouts/_tl_options.html.haml:116 +#: ../app/views/layouts/_tl_options.html.haml:116 ../app/assets/javascripts/controllers/live_metrics/util/metrics-config-factory.js:65 msgid "Weeks" msgstr "" @@ -24099,10 +24821,6 @@ msgstr "" msgid "What to Evaluate" msgstr "" -#: ../app/controllers/ops_controller/settings/common.rb:614 -msgid "When configuring a VNC Proxy, both Address and Port are required" -msgstr "" - #: ../app/controllers/report_controller/widgets.rb:116 msgid "Widget content generation error: %{message}" msgstr "" @@ -24111,7 +24829,7 @@ msgstr "" msgid "Widget has to be assigned to a dashboard to generate content" msgstr "" -#: ../app/controllers/report_controller.rb:249 +#: ../app/controllers/report_controller.rb:253 msgid "Widget import cancelled" msgstr "" @@ -24119,25 +24837,25 @@ msgstr "" msgid "Widget name" msgstr "" -#: ../app/presenters/tree_builder_report_export.rb:28 ../app/views/report/_export_widgets.html.haml:75 ../app/views/report/_report_info.html.haml:228 +#: ../app/presenters/tree_builder_report_export.rb:32 ../app/views/report/_export_widgets.html.haml:75 ../app/views/report/_report_info.html.haml:228 msgid "Widgets" msgstr "" -#: ../app/controllers/report_controller.rb:243 +#: ../app/controllers/report_controller.rb:247 msgid "Widgets imported successfully" msgstr "" -#: ../app/controllers/vm_common.rb:1658 +#: ../app/controllers/vm_common.rb:1466 msgid "Win32 Service" msgid_plural "Win32 Services" msgstr[0] "" msgstr[1] "" -#: ../app/helpers/vm_helper/textual_summary.rb:525 ../app/helpers/vm_cloud_helper/textual_summary.rb:167 ../app/controllers/vm_common.rb:486 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:178 ../app/helpers/vm_helper/textual_summary.rb:564 ../app/controllers/vm_common.rb:340 msgid "Win32 Services" msgstr "" -#: ../app/views/pxe/_pxe_server_details.html.haml:65 +#: ../app/views/pxe/_pxe_server_details.html.haml:37 msgid "Windows Boot Env" msgstr "" @@ -24145,7 +24863,7 @@ msgstr "" msgid "Windows Boot Environment" msgstr "" -#: ../app/presenters/tree_builder_pxe_servers.rb:44 ../app/presenters/tree_builder_pxe_servers.rb:46 ../app/views/pxe/_pxe_server_details.html.haml:98 +#: ../app/presenters/tree_builder_pxe_servers.rb:47 ../app/presenters/tree_builder_pxe_servers.rb:49 ../app/views/pxe/_pxe_server_details.html.haml:70 msgid "Windows Images" msgstr "" @@ -24157,7 +24875,7 @@ msgstr "" msgid "Windows Options" msgstr "" -#: ../app/views/report/_form_sort.html.haml:163 +#: ../app/views/report/_form_sort.html.haml:141 msgid "Within Above Field, Sort By" msgstr "" @@ -24173,7 +24891,7 @@ msgstr "" msgid "Workgroup Information" msgstr "" -#: ../app/presenters/menu/default_menu.rb:41 +#: ../app/presenters/menu/default_menu.rb:42 msgid "Workloads" msgstr "" @@ -24181,6 +24899,14 @@ msgstr "" msgid "Wrap this expression element with a NOT" msgstr "" +#: ../app/views/middleware_server/_choose_datasource.html.haml:15 +msgid "XA Datasource:" +msgstr "" + +#: ../app/views/middleware_server/_add_datasource_step3.html.haml:106 +msgid "XA Properties" +msgstr "" + #: ../app/views/miq_ae_tools/_results_tabs.html.haml:7 msgid "XML View" msgstr "" @@ -24197,15 +24923,15 @@ msgstr "" msgid "Yellow Text" msgstr "" -#: ../app/views/cloud_subnet/_common_new_edit.haml:49 ../app/views/miq_policy/_alert_details.html.haml:57 ../app/views/miq_policy/_policy_details.html.haml:70 ../app/views/configuration/_ui_1.html.haml:41 ../app/views/configuration/_ui_2.html.haml:120 ../app/views/ops/_settings_server_tab.html.haml:442 ../app/views/ops/_settings_cu_collection_tab.html.haml:30 ../app/views/ops/_settings_cu_collection_tab.html.haml:89 ../app/views/ops/_category_form.html.haml:78 ../app/views/ops/_category_form.html.haml:97 ../app/views/ops/_category_form.html.haml:182 ../app/views/ops/_category_form.html.haml:200 ../app/views/ops/_category_form.html.haml:219 ../app/views/ops/_settings_custom_logos_tab.html.haml:150 ../app/views/middleware_server/_deploy.html.haml:69 ../app/views/middleware_server/_deploy.html.haml:104 ../app/views/cloud_network/_common_new_edit.html.haml:36 ../app/views/cloud_network/_common_new_edit.html.haml:74 ../app/views/report/_report_list.html.haml:161 ../app/views/report/_form_sort.html.haml:78 +#: ../app/views/miq_policy/_alert_details.html.haml:57 ../app/views/miq_policy/_policy_details.html.haml:70 ../app/views/configuration/_ui_1.html.haml:40 ../app/views/configuration/_ui_2.html.haml:121 ../app/views/ops/_category_form.html.haml:78 ../app/views/ops/_category_form.html.haml:97 ../app/views/ops/_category_form.html.haml:182 ../app/views/ops/_category_form.html.haml:200 ../app/views/ops/_category_form.html.haml:219 ../app/views/ops/_settings_custom_logos_tab.html.haml:150 ../app/views/ops/_settings_cu_collection_tab.html.haml:30 ../app/views/ops/_settings_cu_collection_tab.html.haml:89 ../app/views/ops/_settings_server_tab.html.haml:406 ../app/views/middleware_shared/_deploy.html.haml:72 ../app/views/middleware_shared/_deploy.html.haml:107 ../app/views/cloud_subnet/_common_new_edit.haml:49 ../app/views/cloud_volume/new.html.haml:211 ../app/views/report/_form_sort.html.haml:78 ../app/views/report/_form_filter_chargeback.html.haml:19 ../app/views/report/_report_list.html.haml:161 ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:214 ../app/views/middleware_server/_choose_datasource.html.haml:22 ../app/views/cloud_network/_common_new_edit.html.haml:36 ../app/views/cloud_network/_common_new_edit.html.haml:74 msgid "Yes" msgstr "" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:84 +#: ../app/helpers/vm_cloud_helper/textual_summary.rb:95 msgid "Yes; VM will run at most 24 hours." msgstr "" -#: ../app/helpers/ui_constants.rb:580 ../app/views/report/_form_filter_chargeback.html.haml:276 +#: ../app/helpers/ui_constants.rb:547 ../app/views/report/_form_filter_chargeback.html.haml:304 msgid "Yesterday" msgstr "" @@ -24213,7 +24939,7 @@ msgstr "" msgid "You are about to enter fullscreen mode. Press Ctl+Alt to return to windowed mode." msgstr "" -#: ../app/controllers/application_controller.rb:2282 +#: ../app/controllers/application_controller.rb:2288 msgid "You are not authorized to view %{model_name} '%{resource_name}'" msgstr "" @@ -24253,7 +24979,7 @@ msgstr "" msgid "Your deployment %{name} is currently in progress. Updates will be posted here shortly." msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:52 ../app/helpers/provider_foreman_helper.rb:133 ../app/helpers/storage_manager_helper/textual_summary.rb:31 ../app/helpers/provider_configuration_manager_helper.rb:41 ../app/views/ems_container/_form.html.haml:75 ../app/views/shared/views/ems_common/_form.html.haml:120 ../app/views/shared/views/ems_common/angular/_form.html.haml:295 ../app/views/ems_datawarehouse/_form.html.haml:74 ../app/views/provider_foreman/_form.html.haml:77 ../app/views/ops/_ldap_region_form.html.haml:55 ../app/views/ops/rhn/_server_table.html.haml:91 ../app/views/ops/_ldap_region_show.html.haml:44 ../app/views/ops/_schedule_show.html.haml:229 ../app/views/ops/_all_tabs.html.haml:8 ../app/views/ems_middleware/_form.html.haml:74 ../app/views/storage_manager/_form.html.haml:116 ../app/views/report/_report_info.html.haml:160 ../app/views/report/_show_schedule.html.haml:120 ../app/views/ems_infra/_form.html.haml:92 ../app/views/miq_task/_tasks_options.html.haml:16 +#: ../app/helpers/storage_manager_helper/textual_summary.rb:31 ../app/helpers/provider_foreman_helper.rb:51 ../app/helpers/provider_foreman_helper.rb:136 ../app/helpers/provider_configuration_manager_helper.rb:41 ../app/helpers/automation_manager_helper.rb:37 ../app/views/miq_task/_tasks_options.html.haml:16 ../app/views/ops/_ldap_region_show.html.haml:44 ../app/views/ops/rhn/_server_table.html.haml:91 ../app/views/ops/_ldap_region_form.html.haml:55 ../app/views/ops/_all_tabs.html.haml:8 ../app/views/ops/_schedule_show.html.haml:229 ../app/views/storage_manager/_form.html.haml:116 ../app/views/shared/views/ems_common/angular/_form.html.haml:295 ../app/views/shared/views/ems_common/_form.html.haml:120 ../app/views/report/_show_schedule.html.haml:120 ../app/views/report/_report_info.html.haml:160 ../app/views/ems_infra/_form.html.haml:92 ../app/views/ems_physical_infra/_form.html.haml:74 ../app/views/ems_datawarehouse/_form.html.haml:74 ../app/views/provider_foreman/_form.html.haml:80 ../app/views/ems_container/_form.html.haml:75 ../app/views/ems_middleware/_form.html.haml:74 ../app/views/automation_manager/_form.html.haml:44 msgid "Zone" msgstr "" @@ -24261,10 +24987,6 @@ msgstr "" msgid "Zone Information" msgstr "" -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:39 ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:42 ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:25 ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:49 ../app/helpers/ontap_storage_system_helper/textual_summary.rb:39 -msgid "Zone Name" -msgstr "" - #: ../app/controllers/ops_controller/settings/zones.rb:19 msgid "Zone name is required" msgstr "" @@ -24277,7 +24999,7 @@ msgstr "" msgid "Zone:" msgstr "" -#: ../app/presenters/tree_builder_ops_settings.rb:28 ../app/views/ops/_settings_details_tab.html.haml:86 +#: ../app/presenters/tree_builder_ops_settings.rb:32 ../app/views/ops/_settings_details_tab.html.haml:86 msgid "Zones" msgstr "" @@ -24289,23 +25011,23 @@ msgstr "" msgid "[%{name}] Policy Profile %{mode} (db:[%{db}]" msgstr "" -#: ../app/controllers/ops_controller.rb:755 ../app/controllers/host_controller.rb:429 ../app/controllers/ops_controller/settings/schedules.rb:271 ../app/controllers/miq_policy_controller.rb:949 +#: ../app/controllers/ops_controller.rb:794 ../app/controllers/miq_policy_controller.rb:952 ../app/controllers/host_controller.rb:381 ../app/controllers/ops_controller/settings/schedules.rb:265 msgid "[%{name}] Record added (" msgstr "" -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:167 +#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:158 msgid "[%{name}] Record created (" msgstr "" -#: ../app/controllers/ems_common.rb:1011 +#: ../app/controllers/ems_common.rb:900 msgid "[%{name}] Record delete initiated" msgstr "" -#: ../app/controllers/catalog_controller.rb:623 ../app/controllers/ops_controller/diagnostics.rb:708 ../app/controllers/ops_controller/settings/tags.rb:18 ../app/controllers/storage_manager_controller.rb:437 ../app/controllers/miq_request_controller.rb:552 ../app/controllers/miq_task_controller.rb:203 +#: ../app/controllers/miq_request_controller.rb:549 ../app/controllers/catalog_controller.rb:630 ../app/controllers/miq_task_controller.rb:183 ../app/controllers/storage_manager_controller.rb:440 ../app/controllers/ops_controller/diagnostics.rb:699 ../app/controllers/ops_controller/settings/tags.rb:18 msgid "[%{name}] Record deleted" msgstr "" -#: ../app/controllers/ops_controller.rb:757 ../app/controllers/host_controller.rb:431 ../app/controllers/ops_controller/settings/schedules.rb:273 ../app/controllers/ops_controller/settings/analysis_profiles.rb:185 ../app/controllers/miq_policy_controller.rb:951 +#: ../app/controllers/ops_controller.rb:796 ../app/controllers/miq_policy_controller.rb:954 ../app/controllers/host_controller.rb:383 ../app/controllers/ops_controller/settings/analysis_profiles.rb:176 ../app/controllers/ops_controller/settings/schedules.rb:267 msgid "[%{name}] Record updated (" msgstr "" @@ -24325,7 +25047,7 @@ msgstr "" msgid "[New Tab]" msgstr "" -#: ../app/controllers/ops_controller.rb:443 +#: ../app/controllers/ops_controller.rb:482 msgid "[Region: %{description} [%{region}]]" msgstr "" @@ -24333,7 +25055,11 @@ msgstr "" msgid "active" msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:22 +#: ../app/views/shared/views/_show_alerts_most_recent.html.haml:47 +msgid "alerts" +msgstr "" + +#: ../app/controllers/automation_manager_controller.rb:25 msgid "ansible_tower" msgstr "" @@ -24341,11 +25067,11 @@ msgstr "" msgid "at" msgstr "" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:45 ../app/views/ops/_selected_by_servers.html.haml:186 +#: ../app/views/ops/_selected_by_servers.html.haml:186 ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:45 msgid "available" msgstr "" -#: ../app/views/layouts/_perf_options.html.haml:68 ../app/views/layouts/_perf_options.html.haml:113 +#: ../app/views/layouts/_perf_options.html.haml:67 ../app/views/layouts/_perf_options.html.haml:112 msgid "back" msgstr "" @@ -24397,15 +25123,15 @@ msgstr "" msgid "every" msgstr "" -#: ../app/views/miq_request/_pre_prov.html.haml:81 ../app/views/miq_request/_prov_vm_grid.html.haml:91 ../app/views/miq_request/_prov_vm_grid.html.haml:161 ../app/views/report/_form_styling.html.haml:79 ../app/views/layouts/exp_atom/_edit_field.html.haml:63 ../app/views/layouts/exp_atom/_edit_find.html.haml:48 ../app/views/layouts/exp_atom/_edit_find.html.haml:178 +#: ../app/views/miq_request/_pre_prov.html.haml:88 ../app/views/miq_request/_prov_vm_grid.html.haml:91 ../app/views/miq_request/_prov_vm_grid.html.haml:161 ../app/views/report/_form_styling.html.haml:79 ../app/views/layouts/exp_atom/_edit_find.html.haml:48 ../app/views/layouts/exp_atom/_edit_find.html.haml:178 ../app/views/layouts/exp_atom/_edit_field.html.haml:63 msgid "false" msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:24 +#: ../app/controllers/provider_foreman_controller.rb:21 msgid "foreman" msgstr "" -#: ../app/views/report/_form_filter_performance.html.haml:32 ../app/views/report/_form_filter_chargeback.html.haml:290 +#: ../app/views/report/_form_filter_performance.html.haml:32 ../app/views/report/_form_filter_chargeback.html.haml:318 msgid "going back" msgstr "" @@ -24413,7 +25139,7 @@ msgstr "" msgid "h" msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:413 +#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:417 msgid "hawkular URL and API port fields are needed to perform validation." msgstr "" @@ -24425,7 +25151,7 @@ msgstr "" msgid "invalid button action" msgstr "" -#: ../app/controllers/middleware_server_controller.rb:85 +#: ../app/controllers/middleware_server_controller.rb:87 msgid "killing" msgstr "" @@ -24449,11 +25175,11 @@ msgstr "" msgid "name:[%{session}] to [%{name}]" msgstr "" -#: ../lib/report_formatter/chart_common.rb:394 ../lib/report_formatter/chart_common.rb:424 ../lib/report_formatter/chart_common.rb:469 ../lib/report_formatter/chart_common.rb:498 ../lib/report_formatter/chart_common.rb:501 +#: ../lib/report_formatter/chart_common.rb:368 ../lib/report_formatter/chart_common.rb:398 ../lib/report_formatter/chart_common.rb:443 ../lib/report_formatter/chart_common.rb:472 ../lib/report_formatter/chart_common.rb:475 msgid "no value" msgstr "" -#: ../app/views/ops/_rbac_role_details.html.haml:62 +#: ../app/views/ops/_rbac_role_details.html.haml:61 msgid "none" msgstr "" @@ -24461,7 +25187,7 @@ msgstr "" msgid "normal" msgstr "" -#: ../app/helpers/middleware_server_helper/textual_summary.rb:20 ../app/helpers/middleware_server_helper/textual_summary.rb:32 ../app/helpers/middleware_server_helper/textual_summary.rb:47 +#: ../app/helpers/middleware_server_helper/textual_summary.rb:23 ../app/helpers/middleware_server_helper/textual_summary.rb:35 ../app/helpers/middleware_server_helper/textual_summary.rb:54 msgid "not yet available" msgstr "" @@ -24469,7 +25195,7 @@ msgstr "" msgid "primary" msgstr "" -#: ../app/presenters/tree_node_builder.rb:532 +#: ../app/presenters/tree_node/assigned_server_role.rb:15 msgid "primary, " msgstr "" @@ -24477,7 +25203,7 @@ msgstr "" msgid "red italics" msgstr "" -#: ../app/controllers/middleware_server_controller.rb:15 +#: ../app/controllers/middleware_server_controller.rb:17 msgid "reloading" msgstr "" @@ -24485,7 +25211,7 @@ msgstr "" msgid "removed datasources" msgstr "" -#: ../app/controllers/middleware_server_controller.rb:45 ../app/controllers/middleware_server_controller.rb:80 +#: ../app/controllers/middleware_server_controller.rb:47 ../app/controllers/middleware_server_controller.rb:82 msgid "restarting" msgstr "" @@ -24493,11 +25219,11 @@ msgstr "" msgid "restarting deployment" msgstr "" -#: ../app/controllers/middleware_server_controller.rb:26 +#: ../app/controllers/middleware_server_controller.rb:28 msgid "resuming" msgstr "" -#: ../app/controllers/application_controller/performance.rb:289 +#: ../app/controllers/application_controller/performance.rb:218 msgid "running" msgstr "" @@ -24505,11 +25231,11 @@ msgstr "" msgid "secondary" msgstr "" -#: ../app/presenters/tree_node_builder.rb:534 +#: ../app/presenters/tree_node/assigned_server_role.rb:17 msgid "secondary, " msgstr "" -#: ../app/views/middleware_server/_ops_params.html.haml:64 +#: ../app/views/middleware_shared/_ops_params.html.haml:64 msgid "seconds" msgstr "" @@ -24517,23 +25243,23 @@ msgstr "" msgid "selected to copy" msgstr "" -#: ../app/controllers/middleware_server_controller.rb:39 +#: ../app/controllers/middleware_server_controller.rb:41 msgid "shutting down" msgstr "" -#: ../app/controllers/middleware_server_controller.rb:70 ../app/views/layouts/_tl_options.html.haml:124 +#: ../app/controllers/middleware_server_controller.rb:72 ../app/views/layouts/_tl_options.html.haml:124 msgid "starting" msgstr "" -#: ../app/controllers/application_controller/performance.rb:289 +#: ../app/controllers/application_controller/performance.rb:218 msgid "stopped" msgstr "" -#: ../app/controllers/middleware_server_controller.rb:34 ../app/controllers/middleware_server_controller.rb:75 +#: ../app/controllers/middleware_server_controller.rb:36 ../app/controllers/middleware_server_controller.rb:77 msgid "stopping" msgstr "" -#: ../app/controllers/middleware_server_controller.rb:20 +#: ../app/controllers/middleware_server_controller.rb:22 msgid "suspending" msgstr "" @@ -24545,7 +25271,7 @@ msgstr "" msgid "to top" msgstr "" -#: ../app/views/miq_request/_pre_prov.html.haml:81 ../app/views/miq_request/_prov_vm_grid.html.haml:91 ../app/views/miq_request/_prov_vm_grid.html.haml:161 ../app/views/report/_form_styling.html.haml:79 ../app/views/layouts/exp_atom/_edit_field.html.haml:63 ../app/views/layouts/exp_atom/_edit_find.html.haml:48 ../app/views/layouts/exp_atom/_edit_find.html.haml:178 +#: ../app/views/miq_request/_pre_prov.html.haml:88 ../app/views/miq_request/_prov_vm_grid.html.haml:91 ../app/views/miq_request/_prov_vm_grid.html.haml:161 ../app/views/report/_form_styling.html.haml:79 ../app/views/layouts/exp_atom/_edit_find.html.haml:48 ../app/views/layouts/exp_atom/_edit_find.html.haml:178 ../app/views/layouts/exp_atom/_edit_field.html.haml:63 msgid "true" msgstr "" @@ -24573,19 +25299,19 @@ msgstr "" msgid "up" msgstr "" -#: ../app/views/layouts/exp_atom/_edit_count.html.haml:46 ../app/views/layouts/exp_atom/_edit_field.html.haml:157 ../app/views/layouts/exp_atom/_edit_tag.html.haml:54 +#: ../app/views/layouts/exp_atom/_edit_count.html.haml:46 ../app/views/layouts/exp_atom/_edit_field.html.haml:157 ../app/views/layouts/exp_atom/_edit_tag.html.haml:50 msgid "user input" msgstr "" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:27 +#: ../app/helpers/resource_pool_helper/textual_summary.rb:42 msgid "vApp" msgstr "" -#: ../app/presenters/tree_builder_orchestration_templates.rb:42 ../app/presenters/tree_builder_orchestration_templates.rb:44 +#: ../app/presenters/tree_builder_orchestration_templates.rb:45 ../app/presenters/tree_builder_orchestration_templates.rb:47 msgid "vApp Templates" msgstr "" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:25 ../app/views/miq_capacity/_planning_options.html.haml:177 +#: ../app/views/miq_capacity/_planning_options.html.haml:177 ../app/views/miq_capacity/_planning_vm_profile.html.haml:25 msgid "vCPU Count" msgstr "" diff --git a/locale/en/ManageIQ_UI_Classic.po b/locale/en/ManageIQ_UI_Classic.po index 9a03f3ada9b..1bb55413b51 100644 --- a/locale/en/ManageIQ_UI_Classic.po +++ b/locale/en/ManageIQ_UI_Classic.po @@ -44,27 +44,9 @@ msgstr "" msgid " (%{priority}unavailable)" msgstr "" -msgid " (Active)" -msgstr "" - msgid " (Ad hoc Metrics)" msgstr "" -msgid " (All %{file_shares})" -msgstr "" - -msgid " (All %{storage_volumes})" -msgstr "" - -msgid " (All %{storages})" -msgstr "" - -msgid " (All %{tables})" -msgstr "" - -msgid " (All %{title})" -msgstr "" - msgid " (All Descendant %{table}(s))" msgstr "" @@ -122,13 +104,13 @@ msgstr "" msgid " (OS Information)" msgstr "" -msgid " (Properties)" +msgid " (Parent)" msgstr "" -msgid " (Resources)" +msgid " (Properties)" msgstr "" -msgid " (Selected)" +msgid " (Resources)" msgstr "" msgid " (Snapshots)" @@ -289,7 +271,7 @@ msgstr "" msgid "\"%{task}\": not available for %{hostname}" msgstr "" -msgid "\"%{task}\": not available for %{hostname}. %{hostname}'s provision state must be in \"available\", \"adoptfail\", \"cleanfail\", or \"inspectfail\"" +msgid "\"%{task}\": not available for %{hostname}. %{hostname}'s provision state must be in \"available\", \"adoptfail\", \"cleanfail\", \"enroll\", or \"inspectfail\"" msgstr "" msgid "\"%{task}\": not available for %{hostname}. %{hostname}'s provision state needs to be in \"manageable\"" @@ -301,6 +283,12 @@ msgstr "" msgid "\"%{type}\" is not a valid Orchestration Template type" msgstr "" +msgid "\"A route named '#{route_name}' is configured to connect to the \"external logging server but it doesn't exist" +msgstr "" + +msgid "\"There is no server with the #{role} role enabled\"" +msgstr "" + msgid "# CPUS" msgstr "" @@ -319,9 +307,18 @@ msgstr "" msgid "%d Months Ago" msgstr "" +msgid "%d Note" +msgstr "" + +msgid "%d Notes" +msgstr "" + msgid "%d Weeks Ago" msgstr "" +msgid "%d%% in use of %d %s total" +msgstr "" + msgid "%d%% in use of %d total" msgstr "" @@ -331,9 +328,6 @@ msgstr "" msgid "%{action} \"%{item_name}\" for %{vm_or_template} \"%{name}\"" msgstr "" -msgid "%{agent} record no longer exists" -msgstr "" - msgid "%{alert_profiles} with %{type} Tags" msgstr "" @@ -363,6 +357,9 @@ msgstr "" msgid "%{count} unread notifications" msgstr "" +msgid "%{current_tenant} Tags" +msgstr "" + msgid "%{date_from} to %{date_to}" msgstr "" @@ -390,6 +387,9 @@ msgstr "" msgid "%{instance_model} \"%{instance_name}\" has no attached %{volumes}" msgstr "" +msgid "%{item} (Selected)" +msgstr "" + msgid "%{item} has been initiated for the selected Servers" msgstr "" @@ -459,9 +459,6 @@ msgstr "" msgid "%{model} \"%{name}\" created" msgstr "" -msgid "%{model} \"%{name}\" has no attached %{volumes}" -msgstr "" - msgid "%{model} \"%{name}\" is not attached to any %{instances}" msgstr "" @@ -483,9 +480,6 @@ msgstr "" msgid "%{model} \"%{name}\": %{task} successfully initiated" msgstr "" -msgid "%{model} \"%{name}\": Create Logical Disk successfully initiated" -msgstr "" - msgid "%{model} \"%{name}\": Delete successful" msgstr "" @@ -504,7 +498,7 @@ msgstr "" msgid "%{model} \"%{name}\": Error during 'Analysis': %{message}" msgstr "" -msgid "%{model} \"%{name}\": Error during 'Check Compliance': " +msgid "%{model} \"%{name}\": Error during 'Check Compliance': %{error}" msgstr "" msgid "%{model} \"%{name}\": Error during 'delete': %{error_message}" @@ -573,9 +567,6 @@ msgstr "" msgid "%{model}: Discovery successfully initiated" msgstr "" -msgid "%{name} %{text} (Summary)" -msgstr "" - msgid "%{name} '%{vm_name}' Drift Report" msgstr "" @@ -612,18 +603,12 @@ msgstr "" msgid "%{name} (Applications)" msgstr "" -msgid "%{name} (Arbitration Profiles)" -msgstr "" - msgid "%{name} (Compliance History - Last %{number} Checks)" msgstr "" msgid "%{name} (Devices)" msgstr "" -msgid "%{name} (Direct VMs)" -msgstr "" - msgid "%{name} (Disks)" msgstr "" @@ -751,9 +736,15 @@ msgstr "" msgid "%{object} Conditions" msgstr "" +msgid "%{operation} initiated for given server group." +msgstr "" + msgid "%{operation} initiated for selected server(s)" msgstr "" +msgid "%{operation} was not initiated for given group." +msgstr "" + msgid "%{product} Appliance restart initiated successfully" msgstr "" @@ -808,9 +799,6 @@ msgstr "" msgid "%{storage} Type" msgstr "" -msgid "%{tables} (Click to open)" -msgstr "" - msgid "%{table} (%{count})" msgstr "" @@ -826,6 +814,9 @@ msgstr "" msgid "%{task} does not apply to at least one of the selected items" msgstr "" +msgid "%{task} does not apply to this item" +msgstr "" + msgid "%{task} initiated for %{count} %{model} from the %{product} Database" msgid_plural "%{task} initiated for %{count} %{models} from the %{product} Database" msgstr[0] "" @@ -841,8 +832,8 @@ msgid_plural "%{task} initiated for %{count} Storage Managers from the %{product msgstr[0] "" msgstr[1] "" -msgid "%{task} initiated for %{count} provider (%{controller})" -msgid_plural "%{task} initiated for %{count} providers (%{controller})" +msgid "%{task} initiated for %{count} provider" +msgid_plural "%{task} initiated for %{count} providers)" msgstr[0] "" msgstr[1] "" @@ -929,9 +920,6 @@ msgstr "" msgid "%{volume} \"%{volume_name}\" is not attached to any %{instances}" msgstr "" -msgid "%{zone}: %{zone_description} (current)" -msgstr "" - msgid "'%{model}' Policy Assignment" msgstr "" @@ -1001,9 +989,6 @@ msgstr "" msgid "(optional) your HTTP proxy information" msgstr "" -msgid "(vApp)" -msgstr "" - msgid "* 'Name' and 'Single Value' fields cannot be edited after adding a category." msgstr "" @@ -1466,13 +1451,19 @@ msgstr "" msgid "9-10" msgstr "" +msgid ": About" +msgstr "" + msgid ": All UI Tasks" msgstr "" msgid ": Analysis Profiles" msgstr "" -msgid ": Automate" +msgid ": Automation" +msgstr "" + +msgid ": Chargeback" msgstr "" msgid ": Configuration" @@ -1484,6 +1475,12 @@ msgstr "" msgid ": Control" msgstr "" +msgid ": Credentials" +msgstr "" + +msgid ": Dashboard" +msgstr "" + msgid ": Instances" msgstr "" @@ -1499,19 +1496,22 @@ msgstr "" msgid ": PXE" msgstr "" +msgid ": Playbooks (Ansible Tower)" +msgstr "" + msgid ": Policy Simulation" msgstr "" msgid ": RSS" msgstr "" -msgid ": Requests" +msgid ": Repositories" msgstr "" -msgid ": Servers" +msgid ": Requests" msgstr "" -msgid ": Storage - %{tables}" +msgid ": Servers" msgstr "" msgid ": Storage - Storage Managers" @@ -1637,6 +1637,9 @@ msgstr "" msgid "A User must be assigned to a Group" msgstr "" +msgid "A User must be assigned to an allowed Group" +msgstr "" + msgid "A check field must be chosen to commit this expression element" msgstr "" @@ -1781,6 +1784,15 @@ msgstr "" msgid "Account Policies" msgstr "" +msgid "Acknowledge" +msgstr "" + +msgid "Acknowledge Alert" +msgstr "" + +msgid "Acknowledged" +msgstr "" + msgid "Action" msgstr "" @@ -1811,6 +1823,9 @@ msgstr "" msgid "Active" msgstr "" +msgid "Active Services" +msgstr "" + msgid "Activity" msgstr "" @@ -1847,6 +1862,9 @@ msgstr "" msgid "Add Existing Containers Provider" msgstr "" +msgid "Add Filter" +msgstr "" + msgid "Add Host" msgstr "" @@ -1871,6 +1889,27 @@ msgstr "" msgid "Add Host to Selected Host Aggregate" msgstr "" +msgid "Add Interface not supported by Router \"%{name}\"" +msgstr "" + +msgid "Add Interface on Subnet to Router \"%{name}\" failed: Task start failed: ID [%{id}]" +msgstr "" + +msgid "Add Interface on Subnet to Router \"%{name}\" was cancelled by the user" +msgstr "" + +msgid "Add Interface to Router" +msgstr "" + +msgid "Add Interface to Router \"%{name}\"" +msgstr "" + +msgid "Add Interface to selected Router" +msgstr "" + +msgid "Add Interface to this Router" +msgstr "" + msgid "Add JDBC Driver" msgstr "" @@ -1892,18 +1931,33 @@ msgstr "" msgid "Add New Cloud Network " msgstr "" +msgid "Add New Cloud Tenant" +msgstr "" + +msgid "Add New Floating IP" +msgstr "" + msgid "Add New Host" msgstr "" msgid "Add New Router" msgstr "" +msgid "Add New Security Group" +msgstr "" + +msgid "Add New Security Group " +msgstr "" + msgid "Add New Storage Manager" msgstr "" msgid "Add New Subnet" msgstr "" +msgid "Add Note" +msgstr "" + msgid "Add Project to this Tenant" msgstr "" @@ -2021,6 +2075,9 @@ msgstr "" msgid "Add a new Arbitration Profile to this Cloud Provider" msgstr "" +msgid "Add a new Automation Manager Provider" +msgstr "" + msgid "Add a new Box to this Tab" msgstr "" @@ -2045,10 +2102,10 @@ msgstr "" msgid "Add a new Configuration Management Provider" msgstr "" -msgid "Add a new Configuration Manager Provider" +msgid "Add a new Dashboard" msgstr "" -msgid "Add a new Dashboard" +msgid "Add a new Deployment" msgstr "" msgid "Add a new Dialog" @@ -2057,6 +2114,9 @@ msgstr "" msgid "Add a new Element to this Box" msgstr "" +msgid "Add a new Floating IP" +msgstr "" + msgid "Add a new Group" msgstr "" @@ -2096,6 +2156,9 @@ msgstr "" msgid "Add a new Schedule" msgstr "" +msgid "Add a new Security Group" +msgstr "" + msgid "Add a new System Image Type" msgstr "" @@ -2135,10 +2198,10 @@ msgstr "" msgid "Add of %{model} was cancelled by the user" msgstr "" -msgid "Add of Arbitration Profile was cancelled by the user" +msgid "Add of %{provider} was cancelled by the user" msgstr "" -msgid "Add of Configuration Manager %{provider} was cancelled by the user" +msgid "Add of Catalog Item was cancelled by the user" msgstr "" msgid "Add of new %{model_name} was cancelled by the user" @@ -2171,21 +2234,30 @@ msgstr "" msgid "Add of new Cloud Network was cancelled by the user" msgstr "" +msgid "Add of new Cloud Tenenat was cancelled by the user" +msgstr "" + msgid "Add of new Dashboard was cancelled by the user" msgstr "" +msgid "Add of new Floating IP was cancelled by the user" +msgstr "" + msgid "Add of new Router was cancelled by the user" msgstr "" -msgid "Add subfolder to selected folder" +msgid "Add of new Security Group was cancelled by the user" msgstr "" -msgid "Add tags and click the Apply button to view available metrics" +msgid "Add subfolder to selected folder" msgstr "" msgid "Add tags individually for each VM or select multiple rows and edit tags as a group." msgstr "" +msgid "Add tags to view available metrics" +msgstr "" + msgid "Add this %{provider}" msgstr "" @@ -2299,6 +2371,9 @@ msgstr "" msgid "Affected VMs" msgstr "" +msgid "Age" +msgstr "" + msgid "Agent Address" msgstr "" @@ -2320,18 +2395,12 @@ msgstr "" msgid "Aggregate %{title} Memory" msgstr "" -msgid "Aggregate (free space)" -msgstr "" - msgid "Aggregate Node CPU Cores" msgstr "" msgid "Aggregate Node Memory" msgstr "" -msgid "Aggregate is required" -msgstr "" - msgid "Aggregated Node Utilization" msgstr "" @@ -2380,9 +2449,6 @@ msgstr "" msgid "All %{tables}" msgstr "" -msgid "All %{template} - %{type}" -msgstr "" - msgid "All %{titles} with %{name}" msgstr "" @@ -2395,9 +2461,6 @@ msgstr "" msgid "All %{title} Configured Systems" msgstr "" -msgid "All %{title} Datastores" -msgstr "" - msgid "All %{title} Providers" msgstr "" @@ -2422,9 +2485,15 @@ msgstr "" msgid "All Alerts" msgstr "" +msgid "All Ansible Tower Configured Systems" +msgstr "" + msgid "All Ansible Tower Job Templates" msgstr "" +msgid "All Ansible Tower Providers" +msgstr "" + msgid "All Assignments" msgstr "" @@ -2467,6 +2536,9 @@ msgstr "" msgid "All Containers (by Pods)" msgstr "" +msgid "All Customization Templates - System Image Types" +msgstr "" + msgid "All Dashboards" msgstr "" @@ -2491,6 +2563,9 @@ msgstr "" msgid "All Distributed Switches" msgstr "" +msgid "All EVM Grouops" +msgstr "" + msgid "All Events" msgstr "" @@ -2560,6 +2635,9 @@ msgstr "" msgid "All Sections" msgstr "" +msgid "All Service Catalog Items" +msgstr "" + msgid "All Services" msgstr "" @@ -2677,6 +2755,9 @@ msgstr "" msgid "Amazon access key and secret are needed to validate Amazon Settings" msgstr "" +msgid "An Ansible Playbook must be selected" +msgstr "" + msgid "An Owner must be selected" msgstr "" @@ -2733,19 +2814,19 @@ msgstr "" msgid "Analyze then Check Compliance for this item?" msgstr "" -msgid "Ansible Tower Configured Systems" +msgid "Ansible" msgstr "" -msgid "Ansible Tower Job Template" +msgid "Ansible Tower" msgstr "" -msgid "Ansible Tower Job Template: %{name}" +msgid "Ansible Tower Configured Systems" msgstr "" -msgid "Ansible Tower Job Templates" +msgid "Ansible Tower Job Template" msgstr "" -msgid "Ansible Tower Providers" +msgid "Ansible Tower Job Template: %{name}" msgstr "" msgid "Any" @@ -2783,6 +2864,9 @@ msgstr "" msgid "Apply %{product} Update" msgstr "" +msgid "Apply Filters" +msgstr "" + msgid "Apply sections" msgstr "" @@ -2822,15 +2906,6 @@ msgstr "" msgid "Approved/Denied on" msgstr "" -msgid "Arbitration Profile %s was added" -msgstr "" - -msgid "Arbitration Profile %s was saved" -msgstr "" - -msgid "Arbitration Profiles" -msgstr "" - msgid "Architecture" msgstr "" @@ -2891,6 +2966,9 @@ msgstr "" msgid "Are you sure you want to delete this Alert?" msgstr "" +msgid "Are you sure you want to delete this Generic Object Definition?" +msgstr "" + msgid "Are you sure you want to delete this Group?" msgstr "" @@ -2978,6 +3056,12 @@ msgstr "" msgid "Ascending" msgstr "" +msgid "Assign" +msgstr "" + +msgid "Assign Alert" +msgstr "" + msgid "Assign Buttons" msgstr "" @@ -3017,18 +3101,30 @@ msgstr "" msgid "Associate Floating IP" msgstr "" +msgid "Associate Floating IP \"%{name}\"" +msgstr "" + msgid "Associate Floating IP with Instance '%{name}'" msgstr "" msgid "Associate a Floating IP with this Instance" msgstr "" +msgid "Associate or disassociate a Port - Blank the field to disassociate" +msgstr "" + +msgid "Associated Port (optional)" +msgstr "" + msgid "Associating Floating IP %{address} with Instance \"%{name}\"" msgstr "" msgid "Associating Floating IP with %{model} \"%{name}\"" msgstr "" +msgid "Association Information" +msgstr "" + msgid "Association of Floating IP with Instance \"%{name}\" was cancelled by the user" msgstr "" @@ -3092,12 +3188,18 @@ msgstr "" msgid "At least one VM Option must be selected" msgstr "" +msgid "At least one action must be selected to save this Policy Event" +msgstr "" + msgid "At least one day needs to be selected" msgstr "" msgid "At least one domain should be enabled and unlocked" msgstr "" +msgid "At least one host must be specified for manual mode" +msgstr "" + msgid "At least one hour needs to be selected" msgstr "" @@ -3143,7 +3245,10 @@ msgstr "" msgid "Attaching %{volume_model} to %{instance_model} \"%{instance_name}\" was cancelled by the user" msgstr "" -msgid "Attaching %{volume} \"%{volume_name}\" to %{vm_name}" +msgid "Attaching Cloud Volume \"%{volume_name}\" to %{vm_name} finished" +msgstr "" + +msgid "Attaching Cloud volume failed: Task start failed" msgstr "" msgid "Attachments" @@ -3224,10 +3329,10 @@ msgstr "" msgid "Automate Task" msgstr "" -msgid "Automate Tasks" +msgid "Automate Tasks Selection" msgstr "" -msgid "Automate Tasks Selection" +msgid "Automation" msgstr "" msgid "Automation Error: %{error_message}" @@ -3236,6 +3341,9 @@ msgstr "" msgid "Automation Simulation has been run" msgstr "" +msgid "Automation Tasks" +msgstr "" + msgid "Automation log downloaded" msgstr "" @@ -3326,6 +3434,9 @@ msgstr "" msgid "Backing Ref (Container ID)" msgstr "" +msgid "Backlog" +msgstr "" + msgid "Backup Name" msgstr "" @@ -3350,9 +3461,6 @@ msgstr "" msgid "Based On" msgstr "" -msgid "Based On Underlying Redundancy" -msgstr "" - msgid "Basic (SSL)" msgstr "" @@ -3404,18 +3512,12 @@ msgstr "" msgid "Block Migration" msgstr "" -msgid "Block Size" -msgstr "" - msgid "Block Storage" msgstr "" msgid "Block Storage Based" msgstr "" -msgid "Block Storage Managers" -msgstr "" - msgid "Blue" msgstr "" @@ -3521,12 +3623,6 @@ msgstr "" msgid "Button not yet implemented" msgstr "" -msgid "Button not yet implemented %{model_name}:%{action_name}" -msgstr "" - -msgid "Button not yet implemented %{model}: %{action}" -msgstr "" - msgid "Button not yet implemented %{model}:%{action}" msgstr "" @@ -3677,6 +3773,9 @@ msgstr "" msgid "Calculations" msgstr "" +msgid "Can not change description of 'Default Container Image Rate'" +msgstr "" + msgid "Can not delete folder, one or more reports in the selected folder are not owned by your group" msgstr "" @@ -3767,9 +3866,6 @@ msgstr "" msgid "Cannot start log collection, requires a started server" msgstr "" -msgid "Canvas not supported." -msgstr "" - msgid "Capacity" msgstr "" @@ -3779,13 +3875,13 @@ msgstr "" msgid "Capacity & Utilization data for %{vm_or_template} \"%{name}\"" msgstr "" -msgid "Capacity Data" +msgid "Capacity & Utilization data for Container \"%{container_name}\"" msgstr "" -msgid "Capacity and Utilization Collection settings saved" +msgid "Capacity Data" msgstr "" -msgid "Caption" +msgid "Capacity and Utilization Collection settings saved" msgstr "" msgid "Capture C & U Data" @@ -3803,6 +3899,12 @@ msgstr "" msgid "Catalog Bundle \"%{name}\" was saved" msgstr "" +msgid "Catalog Item %s was added" +msgstr "" + +msgid "Catalog Item %s was saved" +msgstr "" + msgid "Catalog Item Type" msgstr "" @@ -3851,12 +3953,6 @@ msgstr "" msgid "Caution: Manual changes to configuration files can disable the Server!" msgstr "" -msgid "Central Admin Enabled" -msgstr "" - -msgid "Central Admin has been disabled" -msgstr "" - msgid "Challenge URL" msgstr "" @@ -3866,9 +3962,6 @@ msgstr "" msgid "Change Group" msgstr "" -msgid "Change Metrics" -msgstr "" - msgid "Change Password / Confirm Password" msgstr "" @@ -3911,6 +4004,15 @@ msgstr "" msgid "Chargeback Interval" msgstr "" +msgid "Chargeback Preview" +msgstr "" + +msgid "Chargeback Resources" +msgstr "" + +msgid "Chargeback preview for \"%{vm_name}\"" +msgstr "" + msgid "Chart" msgstr "" @@ -3974,6 +4076,9 @@ msgstr "" msgid "Check Compliance of the last known configuration for these Nodes" msgstr "" +msgid "Check Compliance of the last known configuration for these Physical Infra Managers" +msgstr "" + msgid "Check Compliance of the last known configuration for these Pods" msgstr "" @@ -3998,6 +4103,9 @@ msgstr "" msgid "Check Compliance of the last known configuration for this Node" msgstr "" +msgid "Check Compliance of the last known configuration for this Physical Infra Manager" +msgstr "" + msgid "Check Compliance of the last known configuration for this Pod" msgstr "" @@ -4058,6 +4166,9 @@ msgstr "" msgid "Choose Provider" msgstr "" +msgid "Choose Tenants" +msgstr "" + msgid "Choose a %{cluster}" msgstr "" @@ -4109,7 +4220,7 @@ msgstr "" msgid "Choose a chart type" msgstr "" -msgid "Choose a container entity and label" +msgid "Choose a resource entity and label" msgstr "" msgid "Choose a saved %{model} filter:" @@ -4250,9 +4361,6 @@ msgstr "" msgid "Click to view %{group} " msgstr "" -msgid "Click to view %{record}" -msgstr "" - msgid "Click to view '%{title}'" msgstr "" @@ -4349,10 +4457,16 @@ msgstr "" msgid "Close any duplicate browser sessions, then select an option from the menu." msgstr "" -msgid "Cloud Intel" +msgid "Cloud" +msgstr "" + +msgid "Cloud Credential" +msgstr "" + +msgid "Cloud Credentials" msgstr "" -msgid "Cloud Network" +msgid "Cloud Intel" msgstr "" msgid "Cloud Network \"%{name}\" created" @@ -4373,9 +4487,6 @@ msgstr "" msgid "Cloud Networks" msgstr "" -msgid "Cloud Object Store Containers" -msgstr "" - msgid "Cloud Object Stores" msgstr "" @@ -4424,18 +4535,48 @@ msgstr "" msgid "Cloud Tenant" msgstr "" +msgid "Cloud Tenant \"%{name}\" cannot be removed because it is attached to one or more %{instances}" +msgstr "" + +msgid "Cloud Tenant \"%{name}\" created" +msgstr "" + +msgid "Cloud Tenant \"%{name}\" updated" +msgstr "" + +msgid "Cloud Tenant no longer exists." +msgstr "" + msgid "Cloud Tenant:" msgstr "" msgid "Cloud Tenants" msgstr "" +msgid "Cloud Type" +msgstr "" + +msgid "Cloud Volume \"%{name}\" created" +msgstr "" + +msgid "Cloud Volume \"%{name}\" updated" +msgstr "" + msgid "Cloud Volume Backup" msgstr "" msgid "Cloud Volume Snapshot no longer exists." msgstr "" +msgid "Cloud Volume Type" +msgstr "" + +msgid "Cloud Volume creation failed: Task start failed" +msgstr "" + +msgid "Cloud Volume update failed: Task start failed" +msgstr "" + msgid "Cloud Volumes" msgstr "" @@ -4472,6 +4613,9 @@ msgstr "" msgid "Cluster / Deployment Role (Click to open)" msgstr "" +msgid "Cluster / Deployment Role: %{name}" +msgstr "" + msgid "Cluster Selection" msgstr "" @@ -4625,24 +4769,18 @@ msgstr "" msgid "Compliance Check" msgstr "" -msgid "Compliance Check on: " -msgstr "" - msgid "Compliance Policies" msgstr "" msgid "Compliant as of %{time} Ago" msgstr "" -msgid "Compressed Data" +msgid "Component Statuses" msgstr "" msgid "Compressed View" msgstr "" -msgid "Compression Saved Percentage" -msgstr "" - msgid "Compute" msgstr "" @@ -4658,6 +4796,9 @@ msgstr "" msgid "Compute Rate Assignments" msgstr "" +msgid "Condition" +msgstr "" + msgid "Condition \"%{cond_name}\" has been removed from Policy \"%{pol_name}\"" msgstr "" @@ -4667,9 +4808,6 @@ msgstr "" msgid "Condition record ID %{param_id} was removed from Policy ID %{policy_id}" msgstr "" -msgid "Condition: " -msgstr "" - msgid "Conditions" msgstr "" @@ -4754,7 +4892,7 @@ msgstr "" msgid "Connect to this VM in its Region" msgstr "" -msgid "Connecting (unencrypted) to: %{url}" +msgid "Connected" msgstr "" msgid "Connection Broker" @@ -4784,9 +4922,6 @@ msgstr "" msgid "Consolidation tab is not available until at least 1 field has been selected" msgstr "" -msgid "Consumable Blocks" -msgstr "" - msgid "Consumption" msgstr "" @@ -4801,9 +4936,6 @@ msgstr[1] "" msgid "Container Builds" msgstr "" -msgid "Container Entity" -msgstr "" - msgid "Container Image Analysis" msgstr "" @@ -4819,15 +4951,9 @@ msgstr "" msgid "Container Image Control Policies" msgstr "" -msgid "Container Image Registries" -msgstr "" - msgid "Container Images" msgstr "" -msgid "Container Label" -msgstr "" - msgid "Container Node Compliance Policies" msgstr "" @@ -4840,18 +4966,6 @@ msgstr "" msgid "Container Nodes" msgstr "" -msgid "Container Projects" -msgstr "" - -msgid "Container Provider Conditions" -msgstr "" - -msgid "Container Replicators" -msgstr "" - -msgid "Container Routes" -msgstr "" - msgid "Container Services" msgstr "" @@ -4861,9 +4975,6 @@ msgstr "" msgid "Container Templates" msgstr "" -msgid "Container entity and label" -msgstr "" - msgid "Containers" msgstr "" @@ -5044,9 +5155,15 @@ msgstr "" msgid "Couldn't initiate deletion of Network \"%{name}\": %{details}" msgstr "" +msgid "Couldn't initiate deletion of Security Group \"%{name}\": %{details}" +msgstr "" + msgid "Couldn't initiate update of Network \"%{name}\": %{details}" msgstr "" +msgid "Couldn't initiate update of Security Group \"%{name}\": %{details}" +msgstr "" + msgid "Count" msgstr "" @@ -5074,16 +5191,7 @@ msgstr "" msgid "Create Datasource" msgstr "" -msgid "Create Datastore" -msgstr "" - -msgid "Create Datastore was cancelled by the user" -msgstr "" - -msgid "Create Logical Disk" -msgstr "" - -msgid "Create Logical Disk was cancelled by the user" +msgid "Create New" msgstr "" msgid "Create New %{model}" @@ -5104,12 +5212,6 @@ msgstr "" msgid "Create a Backup of this Cloud Volume" msgstr "" -msgid "Create a Datastore based on this File Share" -msgstr "" - -msgid "Create a Logical Disk (NetApp Flexible Volume) on this Filer" -msgstr "" - msgid "Create a Snapshot of this Cloud Volume" msgstr "" @@ -5140,12 +5242,6 @@ msgstr "" msgid "Created On" msgstr "" -msgid "Creating %{model} %{name}" -msgstr "" - -msgid "Creating %{volume} \"%{volume_name}\"" -msgstr "" - msgid "Creation of a Cloud Subnet was cancelled by the user" msgstr "" @@ -5161,6 +5257,9 @@ msgstr "" msgid "Creation timestamp" msgstr "" +msgid "Credential" +msgstr "" + msgid "Credential validation returned: %{message}" msgstr "" @@ -5206,6 +5305,9 @@ msgstr "" msgid "Current pods" msgstr "" +msgid "Current user lacks permissions to create a new snapshot for this VM" +msgstr "" + msgid "Currently Selected Group" msgstr "" @@ -5233,7 +5335,7 @@ msgstr "" msgid "Custom Image successfully removed" msgstr "" -msgid "Custom Login Background Image" +msgid "Custom Login & 'About' Screen Background Image" msgstr "" msgid "Custom Login Panel Text (" @@ -5350,9 +5452,6 @@ msgstr "" msgid "Data Disk" msgstr "" -msgid "Data Redundancy" -msgstr "" - msgid "Data Type" msgstr "" @@ -5404,9 +5503,6 @@ msgstr "" msgid "Datacenter: %{datacenter_name}" msgstr "" -msgid "Datacenter: %{name}" -msgstr "" - msgid "Datasource \"%s\" already exists on this server." msgstr "" @@ -5451,6 +5547,9 @@ msgstr "" msgid "Datastores" msgstr "" +msgid "Datastores (Click to open)" +msgstr "" + msgid "Datastores in cluster %{name}" msgstr "" @@ -5472,15 +5571,6 @@ msgstr "" msgid "Days" msgstr "" -msgid "Dedup Percent Saved" -msgstr "" - -msgid "Dedup Size Saved" -msgstr "" - -msgid "Dedup Size Shared" -msgstr "" - msgid "Default" msgstr "" @@ -5499,6 +5589,9 @@ msgstr "" msgid "Default Adapter" msgstr "" +msgid "Default Administrator can not be deleted" +msgstr "" + msgid "Default Authentication" msgstr "" @@ -5577,6 +5670,9 @@ msgstr "" msgid "Default dialogs cannot be removed from the VMDB" msgstr "" +msgid "Default value" +msgstr "" + msgid "Delay (mins)" msgstr "" @@ -5657,9 +5753,6 @@ msgstr "" msgid "Delete if older than" msgstr "" -msgid "Delete initiated for %{count_model} from the Database" -msgstr "" - msgid "Delete initiated for %{count} %{model} from the %{product} Database" msgid_plural "Delete initiated for %{count} %{models} from the %{product} Database" msgstr[0] "" @@ -5695,6 +5788,11 @@ msgid_plural "Delete initiated for %{number} Cloud Volumes." msgstr[0] "" msgstr[1] "" +msgid "Delete initiated for %{number} Floating IP." +msgid_plural "Delete initiated for %{number} Floating IPs." +msgstr[0] "" +msgstr[1] "" + msgid "Delete initiated for %{number} Host Aggregate." msgid_plural "Delete initiated for %{number} Host Aggregates." msgstr[0] "" @@ -5710,6 +5808,11 @@ msgid_plural "Delete initiated for %{number} Network Routers." msgstr[0] "" msgstr[1] "" +msgid "Delete initiated for %{number} Security Group." +msgid_plural "Delete initiated for %{number} Security Groups." +msgstr[0] "" +msgstr[1] "" + msgid "Delete initiated for Datastore from the %{product} Database" msgid_plural "Delete initiated for Datastores from the %{product} Database" msgstr[0] "" @@ -5820,6 +5923,12 @@ msgstr "" msgid "Delete this Dashboard from the Database" msgstr "" +msgid "Delete this Floating IP" +msgstr "" + +msgid "Delete this Generic Object Definition" +msgstr "" + msgid "Delete this Group" msgstr "" @@ -5856,6 +5965,9 @@ msgstr "" msgid "Delete this Schedule from the Database" msgstr "" +msgid "Delete this Security Group" +msgstr "" + msgid "Delete this User" msgstr "" @@ -5877,9 +5989,6 @@ msgstr "" msgid "Deleting the '%{hostname}' LDAP Server, are you sure?" msgstr "" -msgid "Delta Reservation" -msgstr "" - msgid "Demote Server" msgstr "" @@ -5901,10 +6010,16 @@ msgstr "" msgid "Deploy Smartproxy" msgstr "" -msgid "Deployment \"%s\" already exists on this server." +msgid "Deployment \"%{deployment}\" already exists on this server group." +msgstr "" + +msgid "Deployment \"%{deployment}\" already exists on this server." msgstr "" -msgid "Deployment \"%s\" has been initiated on this server." +msgid "Deployment \"%{deployment}\" has been initiated on this group." +msgstr "" + +msgid "Deployment \"%{deployment}\" has been initiated on this server." msgstr "" msgid "Deployment %{name} was sucessful." @@ -5922,6 +6037,9 @@ msgstr "" msgid "Deployment in Progress" msgstr "" +msgid "Deployment initiated for selected server group(s)" +msgstr "" + msgid "Deployment initiated for selected server(s)" msgstr "" @@ -5988,7 +6106,10 @@ msgstr "" msgid "Detaching %{model} \"%{name}\" was cancelled by the user" msgstr "" -msgid "Detaching %{volume} \"%{volume_name}\" from %{vm_name}" +msgid "Detaching Cloud Volume \"%{volume_name}\" from %{vm_name} finished" +msgstr "" + +msgid "Detaching Cloud volume failed: Task start failed" msgstr "" msgid "Detaching a %{volume} from %{instance_model} \"%{instance_name}\" was cancelled by the user" @@ -6006,9 +6127,6 @@ msgstr "" msgid "Development" msgstr "" -msgid "Device ID" -msgstr "" - msgid "Device Mountpoint (optional)" msgstr "" @@ -6060,9 +6178,6 @@ msgstr "" msgid "Disable" msgstr "" -msgid "Disable Central Admin" -msgstr "" - msgid "Disable Local Login" msgstr "" @@ -6117,6 +6232,9 @@ msgstr "" msgid "Discard this new %{dialog_type}" msgstr "" +msgid "Disconnected" +msgstr "" + msgid "Discover" msgstr "" @@ -6168,6 +6286,9 @@ msgstr "" msgid "Disks Aligned" msgstr "" +msgid "Display" +msgstr "" + msgid "Display Name" msgstr "" @@ -6225,7 +6346,7 @@ msgstr "" msgid "Do you want to remove these Datasources? Some Applications could be using these Datasources and may malfunction if they are deleted." msgstr "" -msgid "Do you want to remove this datasource?" +msgid "Do you want to remove this Datasource? Some Applications could be using this Datasource and may malfunction if it is deleted." msgstr "" msgid "Do you want to restart these deployments ?" @@ -6234,9 +6355,15 @@ msgstr "" msgid "Do you want to restart this deployment ?" msgstr "" +msgid "Do you want to restart this server group?" +msgstr "" + msgid "Do you want to restart this server?" msgstr "" +msgid "Do you want to resume this server group?" +msgstr "" + msgid "Do you want to resume this server?" msgstr "" @@ -6246,12 +6373,18 @@ msgstr "" msgid "Do you want to trigger a kill of this server?" msgstr "" +msgid "Do you want to trigger a reload of this server group?" +msgstr "" + msgid "Do you want to trigger a reload of this server?" msgstr "" msgid "Do you want to trigger a restart of this server?" msgstr "" +msgid "Do you want to trigger a start of this server group?" +msgstr "" + msgid "Do you want to trigger a start of this server?" msgstr "" @@ -6518,15 +6651,18 @@ msgstr "" msgid "Edit Cloud Tenant" msgstr "" -msgid "Edit Compute Rate Assignments" +msgid "Edit Cloud Tenant \"%{name}\"" msgstr "" -msgid "Edit Configuration Manager Provider" +msgid "Edit Compute Rate Assignments" msgstr "" msgid "Edit Event cancelled by user" msgstr "" +msgid "Edit Generic Object Definition" +msgstr "" + msgid "Edit Host '%{name}'" msgstr "" @@ -6545,6 +6681,9 @@ msgstr "" msgid "Edit Priority Order of Domains" msgstr "" +msgid "Edit Provider" +msgstr "" + msgid "Edit Registration" msgstr "" @@ -6560,6 +6699,9 @@ msgstr "" msgid "Edit Router \"%{name}\"" msgstr "" +msgid "Edit Security Group \"%{name}\"" +msgstr "" + msgid "Edit Selected Arbitration Profile" msgstr "" @@ -6647,15 +6789,18 @@ msgstr "" msgid "Edit Tags" msgstr "" -msgid "Edit Tags for %{model}" +msgid "Edit Tags for %{vm_or_template}" msgstr "" -msgid "Edit Tags for %{vm_or_template}" +msgid "Edit Tags for Container" msgstr "" msgid "Edit Tags for Datastore" msgstr "" +msgid "Edit Tags for Service" +msgstr "" + msgid "Edit Tags for selected Containers" msgstr "" @@ -6713,6 +6858,9 @@ msgstr "" msgid "Edit Tags for the selected Orchestration Stacks" msgstr "" +msgid "Edit Tags for the selected Physical Infrastructure Providers" +msgstr "" + msgid "Edit Tags for the selected Resource Pools" msgstr "" @@ -6815,12 +6963,6 @@ msgstr "" msgid "Edit Tags for this Distributed Switch" msgstr "" -msgid "Edit Tags for this File Share" -msgstr "" - -msgid "Edit Tags for this Filer" -msgstr "" - msgid "Edit Tags for this Flavor" msgstr "" @@ -6851,9 +6993,6 @@ msgstr "" msgid "Edit Tags for this Load Balancer" msgstr "" -msgid "Edit Tags for this Logical Disk" -msgstr "" - msgid "Edit Tags for this Middleware Datasource" msgstr "" @@ -6893,6 +7032,9 @@ msgstr "" msgid "Edit Tags for this Orchestration Template" msgstr "" +msgid "Edit Tags for this Physical Infrastructure Provider" +msgstr "" + msgid "Edit Tags for this Pod" msgstr "" @@ -6956,10 +7098,10 @@ msgstr "" msgid "Edit of %{name} was cancelled by the user" msgstr "" -msgid "Edit of '%{description}' Button" +msgid "Edit of %{provider} was cancelled by the user" msgstr "" -msgid "Edit of Arbitration Profile %s was cancelled by the user" +msgid "Edit of '%{description}' Button" msgstr "" msgid "Edit of Button" @@ -6968,6 +7110,9 @@ msgstr "" msgid "Edit of Catalog Bundle \"%{name}\" was cancelled by the user" msgstr "" +msgid "Edit of Catalog Item %s was cancelled by the user" +msgstr "" + msgid "Edit of Class Schema Sequence '%{name}'" msgstr "" @@ -6977,7 +7122,7 @@ msgstr "" msgid "Edit of Cloud Network \"%{name}\" was cancelled by the user" msgstr "" -msgid "Edit of Configuration Manager %{provider} was cancelled by the user" +msgid "Edit of Cloud Tenant \"%{name}\" was cancelled by the user" msgstr "" msgid "Edit of Customer Information was cancelled" @@ -6989,6 +7134,9 @@ msgstr "" msgid "Edit of Dashboard Sequence was cancelled by the user" msgstr "" +msgid "Edit of Floating IP \"%{name}\" was cancelled by the user" +msgstr "" + msgid "Edit of Orchestration Template \"%{name}\" was cancelled by the user" msgstr "" @@ -7001,6 +7149,9 @@ msgstr "" msgid "Edit of Router \"%{name}\" was cancelled by the user" msgstr "" +msgid "Edit of Security Group \"%{name}\" was cancelled by the user" +msgstr "" + msgid "Edit of Service \"%{name}\" was cancelled by the user" msgstr "" @@ -7037,24 +7188,12 @@ msgstr "" msgid "Edit sequence of Class Schema" msgstr "" -msgid "Edit tags for the selected File Shares" -msgstr "" - msgid "Edit tags for the selected Items" msgstr "" -msgid "Edit tags for the selected Logical Disks" -msgstr "" - -msgid "Edit tags for the selected Systems" -msgstr "" - msgid "Edit tags for the selected Templates" msgstr "" -msgid "Edit tags for the selected Volumes" -msgstr "" - msgid "Edit tags for the selected items" msgstr "" @@ -7133,9 +7272,6 @@ msgstr "" msgid "Edit this Analysis Profile" msgstr "" -msgid "Edit this Arbitration Profile" -msgstr "" - msgid "Edit this Button" msgstr "" @@ -7184,6 +7320,9 @@ msgstr "" msgid "Edit this Expression" msgstr "" +msgid "Edit this Generic Object Definition" +msgstr "" + msgid "Edit this Group" msgstr "" @@ -7259,6 +7398,9 @@ msgstr "" msgid "Edit this Scope" msgstr "" +msgid "Edit this Security Group" +msgstr "" + msgid "Edit this Service" msgstr "" @@ -7340,9 +7482,15 @@ msgstr "" msgid "Editing Sequence of User Groups" msgstr "" +msgid "Editing Service \"%{name}\"" +msgstr "" + msgid "Editing tag mapping from label \"%{name}\"" msgstr "" +msgid "Elapsed" +msgstr "" + msgid "Element" msgstr "" @@ -7352,9 +7500,6 @@ msgstr "" msgid "Element Label is required" msgstr "" -msgid "Element Name" -msgstr "" - msgid "Element Name must be alphanumeric characters and underscores without spaces" msgstr "" @@ -7379,12 +7524,6 @@ msgstr "" msgid "Enable CDN Channel" msgstr "" -msgid "Enable Central Admin" -msgstr "" - -msgid "Enable Central Admin has been successfully initiated" -msgstr "" - msgid "Enable Collection by %{clusters}" msgstr "" @@ -7421,7 +7560,7 @@ msgstr "" msgid "Enabled" msgstr "" -msgid "Enabled State" +msgid "Encryption" msgstr "" msgid "End Date" @@ -7484,6 +7623,9 @@ msgstr "" msgid "Enter Username" msgstr "" +msgid "Enter a comma separated list of IP or DNS names" +msgstr "" + msgid "Enter a name or IP address" msgstr "" @@ -7523,6 +7665,9 @@ msgstr "" msgid "Error" msgstr "" +msgid "Error Count" +msgstr "" + msgid "Error Generating Report" msgstr "" @@ -7658,9 +7803,6 @@ msgstr "" msgid "Error during 'workers restart': %{message}" msgstr "" -msgid "Error during Add: [%s - %s]" -msgstr "" - msgid "Error during Analysis Affinity save: %{message}" msgstr "" @@ -7670,9 +7812,6 @@ msgstr "" msgid "Error during Orphaned Records delete for user %{id}: %{message}" msgstr "" -msgid "Error during Save: [%s - %s]" -msgstr "" - msgid "Error during Saved Report delete from the %{product} Database" msgid_plural "Error during Saved Reports delete from the %{product} Database" msgstr[0] "" @@ -7887,6 +8026,12 @@ msgstr "" msgid "Execute Methods" msgstr "" +msgid "Existing Driver" +msgstr "" + +msgid "Existing JDBC Driver:" +msgstr "" + msgid "Exists Mode" msgstr "" @@ -7938,12 +8083,6 @@ msgstr "" msgid "Expression (Press the \"Edit\" button to edit the expression)" msgstr "" -msgid "Expression: " -msgstr "" - -msgid "Extent Status" -msgstr "" - msgid "External" msgstr "" @@ -7959,6 +8098,12 @@ msgstr "" msgid "External Database" msgstr "" +msgid "External Logging" +msgstr "" + +msgid "External Network" +msgstr "" + msgid "External RSS Feed/URL" msgstr "" @@ -8065,6 +8210,33 @@ msgstr "" msgid "Filter by %s..." msgstr "" +msgid "Filter by Acknowledged" +msgstr "" + +msgid "Filter by Host Name" +msgstr "" + +msgid "Filter by Message Text" +msgstr "" + +msgid "Filter by Name" +msgstr "" + +msgid "Filter by Owner" +msgstr "" + +msgid "Filter by Provider Name" +msgstr "" + +msgid "Filter by Provider Type" +msgstr "" + +msgid "Filter by Severity" +msgstr "" + +msgid "Filter by Type" +msgstr "" + msgid "Filter must be selected" msgstr "" @@ -8116,7 +8288,7 @@ msgstr "" msgid "Fixed" msgstr "" -msgid "Flavor" +msgid "Fixed IP Address" msgstr "" msgid "Flavors" @@ -8125,6 +8297,24 @@ msgstr "" msgid "Floating IP" msgstr "" +msgid "Floating IP \"%{name}\" created" +msgstr "" + +msgid "Floating IP \"%{name}\" updated" +msgstr "" + +msgid "Floating IP Address (optional)" +msgstr "" + +msgid "Floating IP creation failed: Task start failed: ID [%{id}]" +msgstr "" + +msgid "Floating IP no longer exists." +msgstr "" + +msgid "Floating IP update failed: Task start failed: ID [%{id}]" +msgstr "" + msgid "Floating IPs" msgstr "" @@ -8143,9 +8333,6 @@ msgstr "" msgid "Folder: %{folder_name}" msgstr "" -msgid "Folder: %{name}" -msgstr "" - msgid "Follow Referrals" msgstr "" @@ -8206,9 +8393,6 @@ msgstr "" msgid "Full Name" msgstr "" -msgid "Full Screen" -msgstr "" - msgid "GB" msgstr "" @@ -8247,6 +8431,12 @@ msgstr "" msgid "Generic Object Definition created successfully" msgstr "" +msgid "Generic Object Definition deleted" +msgstr "" + +msgid "Generic Object Definition saved successfully" +msgstr "" + msgid "Generic Objects" msgstr "" @@ -8307,6 +8497,9 @@ msgstr "" msgid "Go to my start page" msgstr "" +msgid "Go to summary page" +msgstr "" + msgid "Go to this item" msgstr "" @@ -8348,6 +8541,9 @@ msgid_plural "Groups" msgstr[0] "" msgstr[1] "" +msgid "Group By" +msgstr "" + msgid "Group Information" msgstr "" @@ -8446,9 +8642,6 @@ msgstr "" msgid "Headers:" msgstr "" -msgid "Health State" -msgstr "" - msgid "Healthy" msgstr "" @@ -8490,7 +8683,7 @@ msgstr "" msgid "Host / Node" msgstr "" -msgid "Host Aggregate" +msgid "Host / Node: %{name}" msgstr "" msgid "Host Aggregate Name" @@ -8529,6 +8722,9 @@ msgstr "" msgid "Host Default VNC Start Port" msgstr "" +msgid "Host Name" +msgstr "" + msgid "Host Protocol" msgstr "" @@ -8609,6 +8805,9 @@ msgstr "" msgid "ID:" msgstr "" +msgid "IOPS" +msgstr "" + msgid "IP Address" msgid_plural "IP Addresses" msgstr[0] "" @@ -8677,6 +8876,9 @@ msgstr "" msgid "Image Id" msgstr "" +msgid "Image Registries" +msgstr "" + msgid "Image Type" msgstr "" @@ -8746,6 +8948,9 @@ msgstr "" msgid "In use by %s reports, cannot be disabled" msgstr "" +msgid "Include Capacity & Utilization Metrics" +msgstr "" + msgid "Include Domain prefix in the path" msgstr "" @@ -8773,6 +8978,12 @@ msgstr "" msgid "Info/Settings" msgstr "" +msgid "Information" +msgstr "" + +msgid "Information Count" +msgstr "" + msgid "Information for Registered VMs" msgstr "" @@ -8785,9 +8996,6 @@ msgstr "" msgid "Infrastructure Providers" msgstr "" -msgid "Infrastructure Relationships" -msgstr "" - msgid "Infrastructure can only be assigned to Nodes" msgstr "" @@ -8862,9 +9070,6 @@ msgstr "" msgid "Instance \"%{name}\" does not have any associated Floating IPs" msgstr "" -msgid "Instance ID" -msgstr "" - msgid "Instance Power Functions" msgstr "" @@ -8874,6 +9079,9 @@ msgstr "" msgid "Instance is already retired" msgstr "" +msgid "Instance live migration task failed." +msgstr "" + msgid "Instances" msgstr "" @@ -8928,16 +9136,13 @@ msgstr "" msgid "Invalid Single Sign-On credentials" msgstr "" -msgid "Invalid chart data. Try regenerating the widgets." -msgstr "" - -msgid "Invalid chart definition" +msgid "Invalid Stack" msgstr "" -msgid "Invalid data for disabling Central Admin" +msgid "Invalid chart data. Try regenerating the widgets." msgstr "" -msgid "Invalid data for enabling Central Admin" +msgid "Invalid chart definition" msgstr "" msgid "Invalid input" @@ -8949,16 +9154,13 @@ msgstr "" msgid "Invalid input format, please enter a GUID" msgstr "" -msgid "Is Compression Enabled" +msgid "Invalid items passed" msgstr "" -msgid "Is Inconsistent" +msgid "Invalid items selected." msgstr "" -msgid "Is Invalid" -msgstr "" - -msgid "Is Unrecoverable" +msgid "Inventory" msgstr "" msgid "Item" @@ -8966,6 +9168,9 @@ msgid_plural "Items" msgstr[0] "" msgstr[1] "" +msgid "Item Type" +msgstr "" + msgid "Items out of scope" msgstr "" @@ -8990,6 +9195,9 @@ msgstr "" msgid "Job" msgstr "" +msgid "Job Templates" +msgstr "" + msgid "Jobs" msgstr "" @@ -9010,7 +9218,10 @@ msgstr[1] "" msgid "Kernel Drivers" msgstr "" -msgid "Key Pair" +msgid "Key Pair \"%{name}\" created" +msgstr "" + +msgid "Key Pair creation failed: Task start failed" msgstr "" msgid "Key Pairs" @@ -9100,10 +9311,7 @@ msgstr "" msgid "Label is required" msgstr "" -msgid "Label on Summary Row" -msgstr "" - -msgid "Labeled %{tables}" +msgid "Labeled Container Images" msgstr "" msgid "Labels" @@ -9118,6 +9326,9 @@ msgstr "" msgid "Last" msgstr "" +msgid "Last 10 minutes" +msgstr "" + msgid "Last 1000 lines from server %{name} [%{id}] in zone %{zone}" msgstr "" @@ -9130,9 +9341,15 @@ msgstr "" msgid "Last 24 Hours" msgstr "" +msgid "Last 24 hours" +msgstr "" + msgid "Last 30 Days" msgstr "" +msgid "Last 30 days" +msgstr "" + msgid "Last 7 Days" msgstr "" @@ -9238,15 +9455,15 @@ msgstr "" msgid "Live Migrate Instance '%{name}'" msgstr "" -msgid "Live Migrating %{instance} \"%{name}\"" -msgstr "" - msgid "Live Migrating %{model} \"%{name}\"" msgstr "" msgid "Live Migration of %{model} \"%{name}\" was cancelled by the user" msgstr "" +msgid "Live migration of Instance \"%{name}\" complete." +msgstr "" + msgid "Load" msgstr "" @@ -9271,12 +9488,6 @@ msgstr "" msgid "Load the filter shown above" msgstr "" -msgid "Load..." -msgstr "" - -msgid "Loading ..." -msgstr "" - msgid "Loading available tags" msgstr "" @@ -9286,6 +9497,9 @@ msgstr "" msgid "Locale" msgstr "" +msgid "Localhost" +msgstr "" + msgid "Locate and upload a file to start the import process" msgstr "" @@ -9399,6 +9613,15 @@ msgstr "" msgid "Mac address" msgstr "" +msgid "Machine" +msgstr "" + +msgid "Machine Credential" +msgstr "" + +msgid "Machine Credentials" +msgstr "" + msgid "Machine ID" msgstr "" @@ -9450,6 +9673,9 @@ msgstr "" msgid "Manage Policies for the selected Object Storage Managers" msgstr "" +msgid "Manage Policies for the selected Physical Infrastructure Providers" +msgstr "" + msgid "Manage Policies for the selected Resource Pools" msgstr "" @@ -9498,6 +9724,9 @@ msgstr "" msgid "Manage Policies for this Node" msgstr "" +msgid "Manage Policies for this Physical Infrastructure Provider" +msgstr "" + msgid "Manage Policies for this Pod" msgstr "" @@ -9534,9 +9763,15 @@ msgstr "" msgid "Manage quotas for %{model} \"%{name}\" was cancelled by the user" msgstr "" +msgid "Manage the port association of this Floating" +msgstr "" + msgid "ManageIQ" msgstr "" +msgid "ManageIQ HTML5 Remote Console" +msgstr "" + msgid "ManageIQ-Blue" msgstr "" @@ -9546,9 +9781,6 @@ msgstr "" msgid "Managed %{tables}" msgstr "" -msgid "Managed Datastores" -msgstr "" - msgid "Managed Hosts" msgstr "" @@ -9705,6 +9937,9 @@ msgstr "" msgid "Message Filter" msgstr "" +msgid "Message Text" +msgstr "" + msgid "Messages" msgstr "" @@ -9744,9 +9979,6 @@ msgstr "" msgid "Middleware Messaging" msgstr "" -msgid "Middleware Messagings" -msgstr "" - msgid "Middleware Providers" msgstr "" @@ -9786,6 +10018,15 @@ msgstr "" msgid "Min Password Length" msgstr "" +msgid "Min interval 1 Minute" +msgstr "" + +msgid "Min interval 20 Minutes" +msgstr "" + +msgid "Min interval 5 Minutes" +msgstr "" + msgid "Minor Version" msgstr "" @@ -9804,6 +10045,9 @@ msgstr "" msgid "Monday" msgstr "" +msgid "Monitor" +msgstr "" + msgid "Monitoring" msgstr "" @@ -9819,6 +10063,9 @@ msgstr "" msgid "Most Recent" msgstr "" +msgid "Most Recent Alerts" +msgstr "" + msgid "Most Recent Hour" msgstr "" @@ -9930,13 +10177,16 @@ msgstr "" msgid "Move selected reports up" msgstr "" +msgid "Multiselect" +msgstr "" + msgid "Must be a number (greater than 0)" msgstr "" msgid "Must start with 'jdbc:'" msgstr "" -msgid "My %{models}" +msgid "My EVM Groups" msgstr "" msgid "My Filters" @@ -10020,6 +10270,12 @@ msgstr "" msgid "Network Adapter Information" msgstr "" +msgid "Network Credential" +msgstr "" + +msgid "Network Credentials" +msgstr "" + msgid "Network I/O" msgstr "" @@ -10107,6 +10363,9 @@ msgstr "" msgid "New name?" msgstr "" +msgid "New object" +msgstr "" + msgid "New setting will affect Orchestration Stack" msgid_plural "New setting will affect Orchestration Stacks" msgstr[0] "" @@ -10197,6 +10456,9 @@ msgstr "" msgid "No %{model} were selected for Analysis" msgstr "" +msgid "No %{model} were selected for Compliance Check" +msgstr "" + msgid "No %{model} were selected for cancellation" msgstr "" @@ -10233,9 +10495,6 @@ msgstr "" msgid "No %{records} were selected for deletion" msgstr "" -msgid "No %{record} were selected for %{task}" -msgstr "" - msgid "No %{record} were selected for deletion" msgstr "" @@ -10311,9 +10570,6 @@ msgstr "" msgid "No Capacity & Utilization data has been collected for this Host" msgstr "" -msgid "No Capacity & Utilization data has been collected for this Logical Disk" -msgstr "" - msgid "No Capacity & Utilization data has been collected for this Template" msgstr "" @@ -10338,6 +10594,9 @@ msgstr "" msgid "No Cloud Subnet were selected for deletion." msgstr "" +msgid "No Cloud Tenants were selected for deletion." +msgstr "" + msgid "No Cloud Volume Snapshots were selected for deletion." msgstr "" @@ -10374,6 +10633,9 @@ msgstr "" msgid "No Events are defined that match the entered search string '%s'" msgstr "" +msgid "No Floating IPs were selected for deletion." +msgstr "" + msgid "No Hourly or Daily data is available, real time data from the Most Recent Hour is being displayed" msgstr "" @@ -10446,6 +10708,12 @@ msgstr "" msgid "No Schedules available." msgstr "" +msgid "No Security Group were selected for deletion." +msgstr "" + +msgid "No Server Groups selected" +msgstr "" + msgid "No Server was selected" msgstr "" @@ -10461,13 +10729,7 @@ msgstr "" msgid "No Servers with the SmartProxy role are in Zone: \"%{zone_description}\"" msgstr "" -msgid "No Single Point Of Failure" -msgstr "" - -msgid "No Statistics Collected" -msgstr "" - -msgid "No Statistics collected for this Logical Disk" +msgid "No Services were selected for deletion" msgstr "" msgid "No System Image Types available, Customization Template cannot be added" @@ -10631,6 +10893,9 @@ msgstr "" msgid "No file chosen" msgstr "" +msgid "No filter available" +msgstr "" + msgid "No filters defined." msgstr "" @@ -10640,6 +10905,9 @@ msgstr "" msgid "No hosts to remove from %{model} \"%{name}\"" msgstr "" +msgid "No input to apply" +msgstr "" + msgid "No instances found" msgstr "" @@ -10697,6 +10965,12 @@ msgstr "" msgid "No shortcuts are authorized for this user, contact your Administrator" msgstr "" +msgid "No subnets available to add interfaces to Router \"%{name}\"" +msgstr "" + +msgid "No subnets to remove interfaces to Router \"%{name}\"" +msgstr "" + msgid "No task target captured" msgstr "" @@ -10763,6 +11037,9 @@ msgstr "" msgid "None Available or All Selected" msgstr "" +msgid "None of the selected items allow ownership changes" +msgstr "" + msgid "Normal" msgstr "" @@ -10802,6 +11079,9 @@ msgstr "" msgid "Not deploying to Hawkular server" msgstr "" +msgid "Note" +msgstr "" + msgid "Note:" msgstr "" @@ -10817,6 +11097,9 @@ msgstr "" msgid "Note: Only Time Profiles with 'Roll Up Performance' set are shown." msgstr "" +msgid "Note: Some items might be hidden due to the possibility of an ownership change" +msgstr "" + msgid "Note: Total quota can be restricted by quotas defined at upper levels" msgstr "" @@ -10856,9 +11139,6 @@ msgstr "" msgid "Number List" msgstr "" -msgid "Number of Blocks" -msgstr "" - msgid "Number of CPU Cores" msgstr "" @@ -10897,6 +11177,9 @@ msgstr "" msgid "Number of VMs" msgstr "" +msgid "OK" +msgstr "" + msgid "OR with a new expression element" msgstr "" @@ -10938,13 +11221,13 @@ msgstr "" msgid "Object Info" msgstr "" -msgid "Object Selection" +msgid "Object Name" msgstr "" -msgid "Object Storage" +msgid "Object Selection" msgstr "" -msgid "Object Storage Managers" +msgid "Object Storage" msgstr "" msgid "Object Store" @@ -11043,6 +11326,9 @@ msgstr "" msgid "Open a new browser window with Cockpit for this VM. This requires that Cockpit is pre-configured on the VM." msgstr "" +msgid "Open a new browser window with the External Logging Presentation UI. This requires the External Logging to be deployed on this Proider." +msgstr "" + msgid "Open a web-based VMRC console for this VM. This requires that VMRC is pre-configured to work in your browser." msgstr "" @@ -11106,9 +11392,6 @@ msgstr "" msgid "Operating System Distribution" msgstr "" -msgid "Operational Status" -msgstr "" - msgid "Operations" msgstr "" @@ -11226,9 +11509,6 @@ msgstr "" msgid "Other" msgstr "" -msgid "Other Identifying Info" -msgstr "" - msgid "Other VM Files" msgstr "" @@ -11253,6 +11533,9 @@ msgstr "" msgid "Owner" msgstr "" +msgid "Ownership is controlled by tenant mapping" +msgstr "" + msgid "Ownership saved for selected %{object_types}" msgstr "" @@ -11392,6 +11675,9 @@ msgstr "" msgid "Passwords do not match" msgstr "" +msgid "Paste here the trusted CA certificates, in PEM format." +msgstr "" + msgid "Paste is not available, no object information has been copied from the Simulation screen" msgstr "" @@ -11517,9 +11803,15 @@ msgstr "" msgid "Phase" msgstr "" +msgid "Physical Infrastructure" +msgstr "" + msgid "Physical NIC: %{name}" msgstr "" +msgid "Physical Servers" +msgstr "" + msgid "Placement" msgstr "" @@ -11550,6 +11842,18 @@ msgstr "" msgid "Platform Updates Available" msgstr "" +msgid "Playbook" +msgstr "" + +msgid "Playbook Catalog Item" +msgstr "" + +msgid "Playbooks" +msgstr "" + +msgid "Plays" +msgstr "" + msgid "Please contact your administrator for assistance." msgstr "" @@ -11607,7 +11911,7 @@ msgstr "" msgid "Policy Events" msgstr "" -msgid "Policy Profile:" +msgid "Policy Profile" msgstr "" msgid "Policy Profiles" @@ -11656,10 +11960,7 @@ msgstr "" msgid "Policy no longer exists" msgstr "" -msgid "Policy%{caption}: " -msgstr "" - -msgid "Policy: " +msgid "Policy%{caption}" msgstr "" msgid "Port" @@ -11671,6 +11972,9 @@ msgstr "" msgid "Port Group: %{name}" msgstr "" +msgid "Port id" +msgstr "" + msgid "Portal IP" msgstr "" @@ -11785,9 +12089,6 @@ msgstr "" msgid "Primary (Record) Filter - Filters the %{model} table records" msgstr "" -msgid "Primordial" -msgstr "" - msgid "Priority" msgstr "" @@ -11842,6 +12143,9 @@ msgstr "" msgid "Production" msgstr "" +msgid "Profile" +msgstr "" + msgid "Profile Alerts:" msgstr "" @@ -11902,12 +12206,21 @@ msgstr "" msgid "Provider Compliance Policies" msgstr "" +msgid "Provider Conditions" +msgstr "" + msgid "Provider Control Policies" msgstr "" +msgid "Provider Name" +msgstr "" + msgid "Provider Network Type" msgstr "" +msgid "Provider Type" +msgstr "" + msgid "Provider is required" msgstr "" @@ -11926,6 +12239,9 @@ msgstr "" msgid "Providers" msgstr "" +msgid "Providers (Click to open)" +msgstr "" + msgid "Provision" msgstr "" @@ -12010,6 +12326,9 @@ msgstr "" msgid "Provisioning Entry Point is required" msgstr "" +msgid "Provisioning Info" +msgstr "" + msgid "Provisioning State" msgstr "" @@ -12145,9 +12464,6 @@ msgstr "" msgid "Rates" msgstr "" -msgid "Re-Enable Central Admin" -msgstr "" - msgid "Re-apply the previous change" msgstr "" @@ -12169,6 +12485,9 @@ msgstr "" msgid "Re-check Authentication Status for the selected Middleware Providers" msgstr "" +msgid "Re-check Authentication Status for the selected Physical Infrastructure Providers" +msgstr "" + msgid "Re-check Authentication Status for this Cloud Provider" msgstr "" @@ -12184,6 +12503,9 @@ msgstr "" msgid "Re-check Authentication Status for this Middleware Provider" msgstr "" +msgid "Re-check Authentication Status for this Physical Infrastructure Provider" +msgstr "" + msgid "Re-checking Authentication status for the selected %{controller_name} %{name} was not successful: %{details}" msgstr "" @@ -12232,6 +12554,9 @@ msgstr "" msgid "Recent VMs" msgstr "" +msgid "Recent values" +msgstr "" + msgid "Recommended" msgstr "" @@ -12241,9 +12566,6 @@ msgstr "" msgid "Reconfigure" msgstr "" -msgid "Reconfigure %{model} \"%{name}\"" -msgstr "" - msgid "Reconfigure %{vm_or_template}" msgstr "" @@ -12268,6 +12590,9 @@ msgstr "" msgid "Reconfigure Selected items" msgstr "" +msgid "Reconfigure Service \"%{name}\"" +msgstr "" + msgid "Reconfigure does not apply because you selected at least one %{model}" msgstr "" @@ -12594,9 +12919,6 @@ msgstr "" msgid "Region Information" msgstr "" -msgid "Region Not found" -msgstr "" - msgid "Region based nodes shown as %{dimmed} text." msgstr "" @@ -12674,6 +12996,12 @@ msgstr "" msgid "Reload Server" msgstr "" +msgid "Reload Server Group" +msgstr "" + +msgid "Reload Servers in this Server Group" +msgstr "" + msgid "Reload Widgets" msgstr "" @@ -12800,6 +13128,27 @@ msgstr "" msgid "Remove Instances" msgstr "" +msgid "Remove Interface from Router" +msgstr "" + +msgid "Remove Interface from Router \"%{name}\"" +msgstr "" + +msgid "Remove Interface from selected Router" +msgstr "" + +msgid "Remove Interface from this Router" +msgstr "" + +msgid "Remove Interface not supported by Router \"%{name}\"" +msgstr "" + +msgid "Remove Interface on Subnet from Router \"%{name}\" failed: Task start failed: ID [%{id}]" +msgstr "" + +msgid "Remove Interface on Subnet from Router \"%{name}\" was cancelled by the user" +msgstr "" + msgid "Remove Jobs" msgstr "" @@ -12821,9 +13170,21 @@ msgstr "" msgid "Remove Network Providers" msgstr "" +msgid "Remove Object Storage Container" +msgstr "" + +msgid "Remove Object Storage Containers" +msgstr "" + msgid "Remove Object Storage Managers" msgstr "" +msgid "Remove Object Storage Object" +msgstr "" + +msgid "Remove Object Storage Objects" +msgstr "" + msgid "Remove Orchestration Stacks" msgstr "" @@ -12899,6 +13260,9 @@ msgstr "" msgid "Remove items" msgstr "" +msgid "Remove resources?" +msgstr "" + msgid "Remove selected Actions from this Event" msgstr "" @@ -12977,9 +13341,15 @@ msgstr "" msgid "Remove selected Network Providers" msgstr "" +msgid "Remove selected Object Storage Containers" +msgstr "" + msgid "Remove selected Object Storage Managers" msgstr "" +msgid "Remove selected Object Storage Objects" +msgstr "" + msgid "Remove selected Orchestration Stacks" msgstr "" @@ -13028,9 +13398,6 @@ msgstr "" msgid "Remove this %{type}" msgstr "" -msgid "Remove this Arbitration Profile from the VMDB" -msgstr "" - msgid "Remove this Button" msgstr "" @@ -13277,6 +13644,12 @@ msgstr "" msgid "Reports Currently Using This Time Profile" msgstr "" +msgid "Repositories" +msgstr "" + +msgid "Repository" +msgstr "" + msgid "Repository Name" msgstr "" @@ -13406,9 +13779,6 @@ msgstr "" msgid "Reset all options" msgstr "" -msgid "Reset changes" -msgstr "" - msgid "Reset filter changes" msgstr "" @@ -13456,10 +13826,13 @@ msgid_plural "Resources" msgstr[0] "" msgstr[1] "" -msgid "Resource Pool" +msgid "Resource Entity" +msgstr "" + +msgid "Resource Label" msgstr "" -msgid "Resource Pool: #%{name}" +msgid "Resource Pool" msgstr "" msgid "Resource Pool: %{name}" @@ -13471,6 +13844,9 @@ msgstr "" msgid "Resource Quota" msgstr "" +msgid "Resource entity and label" +msgstr "" + msgid "Resource must be selected" msgstr "" @@ -13486,6 +13862,12 @@ msgstr "" msgid "Restart Server" msgstr "" +msgid "Restart Server Group" +msgstr "" + +msgid "Restart Servers in this Server Group" +msgstr "" + msgid "Restart initiated for selected deployment(s)" msgstr "" @@ -13540,12 +13922,21 @@ msgstr "" msgid "Restoring %{model} \"%{name}\" from backup" msgstr "" +msgid "Results" +msgstr "" + msgid "Resume" msgstr "" msgid "Resume Server" msgstr "" +msgid "Resume Server Group" +msgstr "" + +msgid "Resume Servers in this Server Group" +msgstr "" + msgid "Resume the selected items" msgstr "" @@ -13612,6 +14003,9 @@ msgstr "" msgid "Retire this VM?" msgstr "" +msgid "Retired Services" +msgstr "" + msgid "Retirement" msgstr "" @@ -13624,6 +14018,9 @@ msgstr "" msgid "Retirement Entry Point (NameSpace/Class/Instance)" msgstr "" +msgid "Retirement Info" +msgstr "" + msgid "Retirement State" msgstr "" @@ -13648,6 +14045,9 @@ msgstr "" msgid "Retry state machine simulation, with preserved attributes" msgstr "" +msgid "Return to list view" +msgstr "" + msgid "Revert to selected snapshot" msgstr "" @@ -13762,6 +14162,15 @@ msgstr "" msgid "Run a Database backup now" msgstr "" +msgid "Run an Ansible Playbook" +msgstr "" + +msgid "Run on localhost" +msgstr "" + +msgid "Run on the target machine of the alert" +msgstr "" + msgid "Running" msgstr "" @@ -13815,9 +14224,6 @@ msgstr "" msgid "SNMP Trap Settings" msgstr "" -msgid "SPICE Console" -msgstr "" - msgid "SSH Key Pair" msgstr "" @@ -13830,6 +14236,9 @@ msgstr "" msgid "SSL Verify Mode" msgstr "" +msgid "SSL trusting custom CA" +msgstr "" + msgid "SSL without validation" msgstr "" @@ -13869,9 +14278,6 @@ msgstr "" msgid "Save Changes" msgstr "" -msgid "Save changes" -msgstr "" - msgid "Save the current filter" msgstr "" @@ -13881,9 +14287,6 @@ msgstr "" msgid "Save this %{model} search as:" msgstr "" -msgid "Save..." -msgstr "" - msgid "Saved Chargeback Report \"%{last_run_on}\"" msgstr "" @@ -13970,9 +14373,6 @@ msgstr "" msgid "Scope (Press the \"Edit\" button to edit the scope)" msgstr "" -msgid "Scope: " -msgstr "" - msgid "Scopes / Expressions" msgstr "" @@ -14024,7 +14424,28 @@ msgstr "" msgid "Security Domain" msgstr "" -msgid "Security Group" +msgid "Security Group \"%{name}\" created" +msgstr "" + +msgid "Security Group \"%{name}\" updated" +msgstr "" + +msgid "Security Group Description" +msgstr "" + +msgid "Security Group Information" +msgstr "" + +msgid "Security Group Name" +msgstr "" + +msgid "Security Group creation: Task start failed: ID [%{id}]" +msgstr "" + +msgid "Security Group no longer exists." +msgstr "" + +msgid "Security Group update failed: Task start failed: ID [%{id}]" msgstr "" msgid "Security Groups" @@ -14222,9 +14643,6 @@ msgstr "" msgid "Select a single service to edit" msgstr "" -msgid "Select a snapshot that is not the active one" -msgstr "" - msgid "Select a worker to restart" msgstr "" @@ -14291,9 +14709,6 @@ msgstr "" msgid "Select only one or consecutive fields to move up" msgstr "" -msgid "Select the Active snapshot to create a new snapshot for this VM" -msgstr "" - msgid "Select the file to deploy" msgstr "" @@ -14318,10 +14733,13 @@ msgstr "" msgid "Selected %{model_name} no longer exists" msgstr "" -msgid "Selected %{tables}" +msgid "Selected Chargeback Report no longer exists" msgstr "" -msgid "Selected Chargeback Report no longer exists" +msgid "Selected Cluster / Deployment Roles" +msgstr "" + +msgid "Selected Containers Providers" msgstr "" msgid "Selected Custom Button Group cannot be deleted" @@ -14330,27 +14748,45 @@ msgstr "" msgid "Selected Custom Button Group cannot be edited" msgstr "" +msgid "Selected Datastores" +msgstr "" + msgid "Selected Day" msgstr "" msgid "Selected Fields:" msgstr "" +msgid "Selected Folders" +msgstr "" + +msgid "Selected Host / Nodes" +msgstr "" + msgid "Selected Item" msgstr "" +msgid "Selected Middleware Servers" +msgstr "" + msgid "Selected Providers" msgstr "" msgid "Selected Reports:" msgstr "" +msgid "Selected Resource Pools" +msgstr "" + msgid "Selected Resources" msgstr "" msgid "Selected Saved Chargeback Report no longer exists" msgstr "" +msgid "Selected Servers" +msgstr "" + msgid "Selected Template Contents" msgstr "" @@ -14369,7 +14805,7 @@ msgstr "" msgid "Selections" msgstr "" -msgid "Selector" +msgid "Send CTRL+ALT+DEL" msgstr "" msgid "Send E-mail" @@ -14396,9 +14832,6 @@ msgstr "" msgid "Send test email" msgstr "" -msgid "Send Ctrl-Alt-Delete" -msgstr "" - msgid "Server" msgstr "" @@ -14513,10 +14946,10 @@ msgstr "" msgid "Set Ownership" msgstr "" -msgid "Set Ownership for %{model}" +msgid "Set Ownership for %{vms_or_templates}" msgstr "" -msgid "Set Ownership for %{vms_or_templates}" +msgid "Set Ownership for Service" msgstr "" msgid "Set Ownership for the selected Services" @@ -14552,6 +14985,9 @@ msgstr "" msgid "Set Retirement Date does not apply to selected %{model}" msgstr "" +msgid "Set Retirement Date for this Service" +msgstr "" + msgid "Set Retirement Dates" msgstr "" @@ -14567,10 +15003,13 @@ msgstr "" msgid "Set Retirement Dates for this Orchestration Stack" msgstr "" -msgid "Set Retirement Dates for this Service" +msgid "Set Retirement Dates for this VM" +msgstr "" + +msgid "Set Retirement this Service?" msgstr "" -msgid "Set Retirement Dates for this VM" +msgid "Set Tenant" msgstr "" msgid "Set filters to default" @@ -14603,10 +15042,10 @@ msgstr "" msgid "Set/Remove Retirement Date" msgstr "" -msgid "Set/Remove retirement date for %{model}" +msgid "Set/Remove retirement date for %{vm_or_template}" msgstr "" -msgid "Set/Remove retirement date for %{vm_or_template}" +msgid "Set/Remove retirement date for Service" msgstr "" msgid "Set/remove retirement date was cancelled by the user" @@ -14633,10 +15072,10 @@ msgstr "" msgid "Settings %{text}" msgstr "" -msgid "Shared" +msgid "Severity" msgstr "" -msgid "Sharing Directory" +msgid "Shared" msgstr "" msgid "Shelve" @@ -14705,9 +15144,6 @@ msgstr "" msgid "Show %{label}" msgstr "" -msgid "Show %{label} '%{name}'" -msgstr "" - msgid "Show %{label} '%{value}'" msgstr "" @@ -14738,11 +15174,6 @@ msgstr "" msgid "Show Ad hoc Metrics for this Provider" msgstr "" -msgid "Show Arbitration Profiles for this Provider" -msgid_plural "Show Arbitration Profiles for this Provider" -msgstr[0] "" -msgstr[1] "" - msgid "Show Capacity & Utilization" msgstr "" @@ -14764,9 +15195,6 @@ msgstr "" msgid "Show Capacity & Utilization data for this Instance" msgstr "" -msgid "Show Capacity & Utilization data for this Logical Disk" -msgstr "" - msgid "Show Capacity & Utilization data for this Middleware messaging" msgstr "" @@ -14797,6 +15225,9 @@ msgstr "" msgid "Show Capacity & Utilization data for this item" msgstr "" +msgid "Show Chargeback preview" +msgstr "" + msgid "Show Compliance History of this %{model} (Last 10 Checks)" msgstr "" @@ -14821,6 +15252,9 @@ msgstr "" msgid "Show Costs by must be selected" msgstr "" +msgid "Show Credential" +msgstr "" + msgid "Show Detailed Events" msgstr "" @@ -14835,12 +15269,6 @@ msgstr[1] "" msgid "Show Event Logs on this VM" msgstr "" -msgid "Show File Shares" -msgstr "" - -msgid "Show Filer" -msgstr "" - msgid "Show Host Events" msgstr "" @@ -14874,6 +15302,9 @@ msgstr "" msgid "Show Refresh Button" msgstr "" +msgid "Show Repository" +msgstr "" + msgid "Show Resource Pools" msgstr "" @@ -14922,6 +15353,9 @@ msgstr "" msgid "Show Timelines for this Node" msgstr "" +msgid "Show Timelines for this Physical Infrastructure Provider" +msgstr "" + msgid "Show Timelines for this Project" msgstr "" @@ -14940,21 +15374,6 @@ msgstr "" msgid "Show Timelines for this item" msgstr "" -msgid "Show Utilization Statistics for this Logical Disk" -msgstr "" - -msgid "Show Utilization for this File Share" -msgstr "" - -msgid "Show Utilization for this Filer" -msgstr "" - -msgid "Show Utilization for this Storage System" -msgstr "" - -msgid "Show VM" -msgstr "" - msgid "Show VM Memory Files installed on this %{storage}" msgstr "" @@ -15006,39 +15425,24 @@ msgstr "" msgid "Show Virtual Machines & Templates" msgstr "" -msgid "Show all %{base_storage_extent}" -msgstr "" - msgid "Show all %{children}" msgstr "" msgid "Show all %{label}" msgstr "" -msgid "Show all %{label} '%{name}'" -msgstr "" - msgid "Show all %{models}" msgstr "" msgid "Show all %{names}" msgstr "" -msgid "Show all %{ontap_file_share}" -msgstr "" - -msgid "Show all %{ontap_storage_system}" -msgstr "" - msgid "Show all %{title}" msgstr "" msgid "Show all %{volumes} based on this Snapshot." msgstr "" -msgid "Show all Base Extents" -msgstr "" - msgid "Show all Cloud Networks" msgstr "" @@ -15051,31 +15455,28 @@ msgstr "" msgid "Show all Cloud Volumes based on this Snapshot" msgstr "" -msgid "Show all Datastores" -msgstr "" - -msgid "Show all File Shares" +msgid "Show all Images" msgstr "" -msgid "Show all Filers" +msgid "Show all Instances" msgstr "" -msgid "Show all Hosts" +msgid "Show all Outputs" msgstr "" -msgid "Show all Images" +msgid "Show all Parameters" msgstr "" -msgid "Show all Instances" +msgid "Show all Playbooks" msgstr "" -msgid "Show all LUNs" +msgid "Show all Repositories" msgstr "" -msgid "Show all Outputs" +msgid "Show all Resource Pools" msgstr "" -msgid "Show all Parameters" +msgid "Show all Resource Pools in this Resource Pool" msgstr "" msgid "Show all Resources" @@ -15385,9 +15786,6 @@ msgstr "" msgid "Show this Cloud Volume's parent %{parent}" msgstr "" -msgid "Show this Datastore's %{label}" -msgstr "" - msgid "Show this Flavor's parent Cloud Provider" msgstr "" @@ -15469,10 +15867,7 @@ msgstr "" msgid "Show virtual machine genealogy" msgstr "" -msgid "Showing %{start_number} of %{total_items} items" -msgstr "" - -msgid "Showing %{start_number}-%{end_number} of %{total_items} items" +msgid "Showing first" msgstr "" msgid "Shutdown" @@ -15541,7 +15936,7 @@ msgstr "" msgid "Single Select" msgstr "" -msgid "Single VM" +msgid "Single VM/Instance" msgstr "" msgid "Single Value" @@ -15550,27 +15945,9 @@ msgstr "" msgid "Size" msgstr "" -msgid "Size (GB)" -msgstr "" - msgid "Size (in gigabytes)" msgstr "" -msgid "Size Available" -msgstr "" - -msgid "Size Total" -msgstr "" - -msgid "Size Used" -msgstr "" - -msgid "Size is required" -msgstr "" - -msgid "Size must be an integer" -msgstr "" - msgid "Small Trees" msgstr "" @@ -15583,6 +15960,9 @@ msgstr "" msgid "SmartProxy Server IP" msgstr "" +msgid "SmartState Analysis cannot be performed when there is no active Host" +msgstr "" + msgid "Smartstate Analysis" msgstr "" @@ -15597,9 +15977,6 @@ msgstr "" msgid "Snapshot Age must be selected" msgstr "" -msgid "Snapshot Blocks Reserved" -msgstr "" - msgid "Snapshot Create" msgstr "" @@ -15660,6 +16037,9 @@ msgstr "" msgid "Software updates have not yet been configured. Select Edit Registration to register appliances in this region with Red Hat to receive software updates and other benefits." msgstr "" +msgid "Something is wrong, try reloading the page" +msgstr "" + msgid "Sorry, the username or password you entered is incorrect." msgstr "" @@ -15681,6 +16061,9 @@ msgstr "" msgid "Spaces are prohibited" msgstr "" +msgid "Specific Hosts" +msgstr "" + msgid "Specified NTP settings applied here will override Zone NTP settings." msgstr "" @@ -15699,6 +16082,9 @@ msgstr "" msgid "Specify Column Styles" msgstr "" +msgid "Specify Driver" +msgstr "" + msgid "Specify a list of machines to deploy on (No existing provider)" msgstr "" @@ -15729,6 +16115,12 @@ msgstr "" msgid "Start Server" msgstr "" +msgid "Start Server Group" +msgstr "" + +msgid "Start Servers in this Server Group" +msgstr "" + msgid "Start TLS Automatically" msgstr "" @@ -15744,9 +16136,6 @@ msgstr "" msgid "Start the %{host} Discovery" msgstr "" -msgid "Start the %{server_role_description} Role on Server %{server.name} [%{server.id}]" -msgstr "" - msgid "Start the %{server_role_description} Role on Server %{server_name} [%{server_id}]" msgstr "" @@ -15768,6 +16157,9 @@ msgstr "" msgid "Start this server" msgstr "" +msgid "Started" +msgstr "" + msgid "Started At" msgstr "" @@ -15807,15 +16199,18 @@ msgstr "" msgid "States of Root Orchestration Stacks" msgstr "" -msgid "Statistics" -msgstr "" - msgid "Status" msgstr "" msgid "Status = %{row}" msgstr "" +msgid "Status = Queued" +msgstr "" + +msgid "Status = Running" +msgstr "" + msgid "Status of Regional Roles for Servers in %{kind} %{description}" msgstr "" @@ -15840,6 +16235,12 @@ msgstr "" msgid "Stop Server" msgstr "" +msgid "Stop Server Group" +msgstr "" + +msgid "Stop Servers in this Server Group" +msgstr "" + msgid "Stop the selected items" msgstr "" @@ -15876,6 +16277,9 @@ msgstr "" msgid "Storage Clusters" msgstr "" +msgid "Storage Manager" +msgstr "" + msgid "Storage Managers" msgstr "" @@ -15888,9 +16292,6 @@ msgstr "" msgid "Storage Rate Assignments" msgstr "" -msgid "Storage Relationships" -msgstr "" - msgid "String" msgstr "" @@ -15939,13 +16340,16 @@ msgstr "" msgid "Submit Policy Simulation for the selected VMs" msgstr "" -msgid "Submit this Create Datastore request" +msgid "Submit this provisioning request" msgstr "" -msgid "Submit this Create Logical Disk request" +msgid "Subnet" msgstr "" -msgid "Submit this provisioning request" +msgid "Subnet \"%{subnetname}\" added to Router \"%{name}\"" +msgstr "" + +msgid "Subnet \"%{subnetname}\" removed from Router \"%{name}\"" msgstr "" msgid "Subnet CIDR" @@ -16010,6 +16414,9 @@ msgstr "" msgid "Summary" msgstr "" +msgid "Summary Screens" +msgstr "" + msgid "Summary View" msgstr "" @@ -16019,6 +16426,9 @@ msgstr "" msgid "Sunday" msgstr "" +msgid "Super Administrator can not be copied" +msgstr "" + msgid "Support Case must be provided to collect logs" msgstr "" @@ -16034,6 +16444,12 @@ msgstr "" msgid "Suspend Server" msgstr "" +msgid "Suspend Server Group" +msgstr "" + +msgid "Suspend Server in this Server Group" +msgstr "" + msgid "Suspend is not allowed for the selected item" msgstr "" @@ -16067,6 +16483,9 @@ msgstr "" msgid "Suspend this server" msgstr "" +msgid "Switch" +msgstr "" + msgid "Switch: %{name}" msgstr "" @@ -16103,9 +16522,6 @@ msgstr "" msgid "System Image Types" msgstr "" -msgid "System Name" -msgstr "" - msgid "System Type" msgstr "" @@ -16169,18 +16585,36 @@ msgstr "" msgid "Tag edits were successfully saved" msgstr "" +msgid "Tag list" +msgstr "" + msgid "Tag to Apply" msgstr "" msgid "Tag: %{description}" msgstr "" -msgid "Tagged %{tables}" +msgid "Tagged Cluster / Deployment Roles" +msgstr "" + +msgid "Tagged Container Images" +msgstr "" + +msgid "Tagged Datastores" +msgstr "" + +msgid "Tagged Host / Nodes" msgstr "" msgid "Tagged Providers" msgstr "" +msgid "Tagged Resource Pools" +msgstr "" + +msgid "Tagged VMs and Instances" +msgstr "" + msgid "Tagging" msgstr "" @@ -16193,6 +16627,9 @@ msgstr "" msgid "Take this item out of Maintenance Mode?" msgstr "" +msgid "Target Machine" +msgstr "" + msgid "Target Options / Limits" msgstr "" @@ -16277,6 +16714,9 @@ msgstr "" msgid "Text (REGEX)" msgstr "" +msgid "Textual View" +msgstr "" + msgid "The %{product} Server is still starting, you have been redirected to the diagnostics page for problem determination" msgstr "" @@ -16359,6 +16799,9 @@ msgstr "" msgid "The selected Filter record was not found" msgstr "" +msgid "The selected Floating IP was deleted" +msgstr "" + msgid "The selected Router was deleted" msgstr "" @@ -16377,6 +16820,9 @@ msgstr "" msgid "The selected Schedules were enabled" msgstr "" +msgid "The selected Security Group was deleted" +msgstr "" + msgid "The selected Task was cancelled" msgstr "" @@ -16413,13 +16859,22 @@ msgstr "" msgid "The widget \"%{widget_name}\" is already part of the edited dashboard" msgstr "" +msgid "There are no Cloud Volumes available to attach to this Instance." +msgstr "" + msgid "There are no Floating IPs available to this Instance." msgstr "" +msgid "There are no running Hosts with valid credentials for this Datastore" +msgstr "" + msgid "There is an error in the selected expression element, perhaps it was imported or edited manually." msgstr "" -msgid "There should be atleast 2 Dashboards to Edit Sequence" +msgid "There should be at least 2 Dashboards to Edit Sequence" +msgstr "" + +msgid "These VMs can not be migrated together." msgstr "" msgid "Thin Provisioning Used" @@ -16467,6 +16922,9 @@ msgstr "" msgid "This Hour" msgstr "" +msgid "This Instance has no attached Cloud Volumes." +msgstr "" + msgid "This Month" msgstr "" @@ -16527,12 +16985,18 @@ msgstr "" msgid "This element should be removed and recreated or you can report the error to your %{product} administrator." msgstr "" +msgid "This object already exists in the database with the same name" +msgstr "" + msgid "This page requires the VMware MKS plugin. Install the plugin and try again." msgstr "" msgid "This policy does not currently respond to any Events." msgstr "" +msgid "This report isn't generated yet. It cannot be rendered." +msgstr "" + msgid "This role can only be managed at the Region level" msgstr "" @@ -16560,6 +17024,9 @@ msgstr "" msgid "Tile View" msgstr "" +msgid "Time" +msgstr "" + msgid "Time Profile" msgstr "" @@ -16605,6 +17072,9 @@ msgstr "" msgid "Timelines for %{virtual_machine} \"%{name}\"" msgstr "" +msgid "Timelines for Container \"%{container_name}\"" +msgstr "" + msgid "Timeout" msgstr "" @@ -16668,6 +17138,9 @@ msgstr "" msgid "Toggle All/None" msgstr "" +msgid "Toggle Fullscreen" +msgstr "" + msgid "Toggle Maintenance" msgstr "" @@ -16704,12 +17177,18 @@ msgstr "" msgid "Tokens do not match" msgstr "" +msgid "Top Level" +msgstr "" + msgid "Top values to show" msgstr "" msgid "Topology" msgstr "" +msgid "Topology Default Items in View" +msgstr "" + msgid "Topology View" msgstr "" @@ -16749,9 +17228,6 @@ msgstr "" msgid "Total Datastore Used Space" msgstr "" -msgid "Total Files" -msgstr "" - msgid "Total Index Nodes" msgstr "" @@ -16845,6 +17321,9 @@ msgstr "" msgid "Truncate Long Text" msgstr "" +msgid "Trusted CA Certificates" +msgstr "" + msgid "Trusted Forest Settings" msgstr "" @@ -16872,6 +17351,9 @@ msgstr "" msgid "UI Worker" msgstr "" +msgid "UNUSED?" +msgstr "" + msgid "URI" msgstr "" @@ -16914,6 +17396,9 @@ msgstr "" msgid "US Tabloid - 11.0in x 17.0in" msgstr "" +msgid "Unable to add Subnet \"%{name}\": %{details}" +msgstr "" + msgid "Unable to add nodes: %{error}" msgstr "" @@ -16923,22 +17408,31 @@ msgstr "" msgid "Unable to associate Floating IP with Instance \"%{name}\": %{details}" msgstr "" -msgid "Unable to attach %{volume} \"%{volume_name}\" to %{vm_name}: %{details}" +msgid "Unable to attach Cloud Volume \"%{volume_name}\" to %{vm_name}: %{details}" msgstr "" msgid "Unable to create %{model} \"%{name}\": %{details}" msgstr "" -msgid "Unable to create %{model} %{name}. %{error}" +msgid "Unable to create Cloud Network \"%{name}\": %{details}" msgstr "" -msgid "Unable to create %{volume} \"%{volume_name}\": %{details}" +msgid "Unable to create Cloud Subnet: %{details}" msgstr "" -msgid "Unable to create Cloud Network \"%{name}\": %{details}" +msgid "Unable to create Cloud Tenant \"%{name}\": %{details}" msgstr "" -msgid "Unable to create Cloud Subnet: %{details}" +msgid "Unable to create Cloud Volume \"%{name}\": %{details}" +msgstr "" + +msgid "Unable to create Floating IP \"%{name}\": %{details}" +msgstr "" + +msgid "Unable to create Key Pair \"%{name}\": %{details}" +msgstr "" + +msgid "Unable to create Security Group \"%{name}\": %{details}" msgstr "" msgid "Unable to create a new template copy \"%{name}\": new template content cannot be empty." @@ -16953,7 +17447,10 @@ msgstr "" msgid "Unable to create snapshot for Cloud Volume \"%{name}\": %{details}" msgstr "" -msgid "Unable to detach %{volume} \"%{volume_name}\" from %{vm_name}: %{details}" +msgid "Unable to deploy %s on this server %s\"" +msgstr "" + +msgid "Unable to detach Cloud Volume \"%{volume_name}\" from %{vm_name}: %{details}" msgstr "" msgid "Unable to disassociate Floating IP %{address} from Instance \"%{name}\": %{details}" @@ -16974,9 +17471,15 @@ msgstr "" msgid "Unable to live migrate %{instance} \"%{name}\": %{details}" msgstr "" +msgid "Unable to live migrate Instance \"%{name}\": %{details}" +msgstr "" + msgid "Unable to reconfigure %{instance} \"%{name}\": %{details}" msgstr "" +msgid "Unable to remove Subnet \"%{name}\": %{details}" +msgstr "" + msgid "Unable to restore %{model} \"%{name}\" from backup: %{details}" msgstr "" @@ -16989,9 +17492,33 @@ msgstr "" msgid "Unable to update Cloud Subnet \"%{name}\": %{details}" msgstr "" +msgid "Unable to update Cloud Tenant \"%{name}\": %{details}" +msgstr "" + +msgid "Unable to update Cloud Volume \"%{name}\": %{details}" +msgstr "" + +msgid "Unable to update Floating IP \"%{name}\": %{details}" +msgstr "" + +msgid "Unable to update Security Group \"%{name}\": %{details}" +msgstr "" + msgid "Unable to update stack, obtaining of status failed: %{message}" msgstr "" +msgid "Unacknowledge" +msgstr "" + +msgid "Unacknowledged" +msgstr "" + +msgid "Unassign" +msgstr "" + +msgid "Unassign Alert" +msgstr "" + msgid "Unassigned" msgstr "" @@ -17007,6 +17534,9 @@ msgstr "" msgid "Unauthorized object or action" msgstr "" +msgid "Uncknowledge Alert" +msgstr "" + msgid "Uncommitted Space" msgstr "" @@ -17031,6 +17561,9 @@ msgstr "" msgid "Unexpected error encountered" msgstr "" +msgid "Ungrouped" +msgstr "" + msgid "Units" msgstr "" @@ -17043,7 +17576,10 @@ msgstr "" msgid "Unknown error has occurred" msgstr "" -msgid "Unknown server operation: " +msgid "Unknown server group operation: " +msgstr "" + +msgid "Unknown server operation: %{operation}" msgstr "" msgid "Unlimited" @@ -17097,9 +17633,6 @@ msgstr "" msgid "Updated On" msgstr "" -msgid "Updating %{model} \"%{name}\"" -msgstr "" - msgid "Upload" msgstr "" @@ -17142,7 +17675,7 @@ msgstr "" msgid "Use Configuration Settings" msgstr "" -msgid "Use Custom Login Background Image" +msgid "Use Custom Login & 'About' Screen Background Image" msgstr "" msgid "Use Custom Login Text" @@ -17151,6 +17684,9 @@ msgstr "" msgid "Use Custom Logo Image" msgstr "" +msgid "Use Existing" +msgstr "" + msgid "Use HTTP Proxy" msgstr "" @@ -17178,21 +17714,12 @@ msgstr "" msgid "Use the Choose file button to locate an import file" msgstr "" -msgid "Use the Ops Tenant Metrics" -msgstr "" - -msgid "Use the System Tenant Metrics" -msgstr "" - msgid "Used" msgstr "" msgid "Used + Uncommitted Space" msgstr "" -msgid "Used Files" -msgstr "" - msgid "Used Index Nodes" msgstr "" @@ -17282,12 +17809,6 @@ msgstr "" msgid "User Type" msgstr "" -msgid "User [Administrator] can not be copied" -msgstr "" - -msgid "User [Administrator] can not be deleted" -msgstr "" - msgid "User is not authorized to view %{model} \"%{name}\"" msgstr "" @@ -17426,6 +17947,9 @@ msgstr "" msgid "VM data will be collected for VMs under selected %{hosts} only. Data is collected for a %{cluster} and all of its %{hosts} when at least one %{host} is selected." msgstr "" +msgid "VM has too many parents." +msgstr "" + msgid "VM is already retired" msgstr "" @@ -17435,9 +17959,6 @@ msgstr "" msgid "VM/Instance Name" msgstr "" -msgid "VM: %{name}" -msgstr "" - msgid "VM: %{name} (Click to view)" msgstr "" @@ -17498,16 +18019,7 @@ msgstr "" msgid "VNC" msgstr "" -msgid "VNC Console" -msgstr "" - -msgid "VNC Proxy Address" -msgstr "" - -msgid "VNC Proxy Port" -msgstr "" - -msgid "VNC Proxy Port must be numeric" +msgid "VNC consoles are unsupported on VMware ESXi 6.5 and later." msgstr "" msgid "VNF Templates" @@ -17582,9 +18094,15 @@ msgstr "" msgid "Variables" msgstr "" +msgid "Variables & Default Values" +msgstr "" + msgid "Vendor" msgstr "" +msgid "Verbosity" +msgstr "" + msgid "Verify" msgstr "" @@ -17597,6 +18115,9 @@ msgstr "" msgid "Verify Peer Certificate" msgstr "" +msgid "Verify TLS Certificates" +msgstr "" + msgid "Version" msgstr "" @@ -17660,6 +18181,9 @@ msgstr "" msgid "View Roles" msgstr "" +msgid "View SOP" +msgstr "" + msgid "View Schedules" msgstr "" @@ -17822,6 +18346,12 @@ msgstr "" msgid "Warn" msgstr "" +msgid "Warning" +msgstr "" + +msgid "Warning Count" +msgstr "" + msgid "Warning: Enabling this option may cause performance issues in large environments (i.e. thousands of VMs)" msgstr "" @@ -17909,9 +18439,18 @@ msgstr "" msgid "Warning: The selected Network Providers and ALL of their components will be permanently removed!" msgstr "" +msgid "Warning: The selected Object Storage Container and ALL related Objects will be permanently removed!" +msgstr "" + +msgid "Warning: The selected Object Storage Containers and ALL related Objects will be permanently removed!" +msgstr "" + msgid "Warning: The selected Object Storage Managers and ALL of their components will be permanently removed!" msgstr "" +msgid "Warning: The selected Object Storage Object will be permanently removed!" +msgstr "" + msgid "Warning: The selected Orchestration Stacks and ALL of their components will be permanently removed!" msgstr "" @@ -17972,9 +18511,6 @@ msgstr "" msgid "Warning: This Analysis Profile and ALL of its components will be permanently removed!" msgstr "" -msgid "Warning: This Arbitration Profile will be permanently removed from the Virtual Management Database. Are you sure you want to remove this Arbitration Profile?" -msgstr "" - msgid "Warning: This Button will be permanently removed from the Virtual Management Database!" msgstr "" @@ -18020,6 +18556,9 @@ msgstr "" msgid "Warning: This Dialog will be permanently removed!" msgstr "" +msgid "Warning: This Floating IP and ALL of its components will be removed!" +msgstr "" + msgid "Warning: This ISO Datastore and ALL of its components will be permanently removed!" msgstr "" @@ -18059,6 +18598,9 @@ msgstr "" msgid "Warning: This Schedule and ALL of its components will be permanently removed!" msgstr "" +msgid "Warning: This Security Group and ALL of its components will be removed!" +msgstr "" + msgid "Warning: This Service and ALL of their components will be permanently removed!" msgstr "" @@ -18122,9 +18664,6 @@ msgstr "" msgid "What to Evaluate" msgstr "" -msgid "When configuring a VNC Proxy, both Address and Port are required" -msgstr "" - msgid "Widget content generation error: %{message}" msgstr "" @@ -18184,6 +18723,12 @@ msgstr "" msgid "Wrap this expression element with a NOT" msgstr "" +msgid "XA Datasource:" +msgstr "" + +msgid "XA Properties" +msgstr "" + msgid "XML View" msgstr "" @@ -18244,9 +18789,6 @@ msgstr "" msgid "Zone Information" msgstr "" -msgid "Zone Name" -msgstr "" - msgid "Zone name is required" msgstr "" @@ -18298,6 +18840,9 @@ msgstr "" msgid "active" msgstr "" +msgid "alerts" +msgstr "" + msgid "ansible_tower" msgstr "" diff --git a/locale/es/ManageIQ_UI_Classic.po b/locale/es/ManageIQ_UI_Classic.po index caf2fe3abf7..af6968538a0 100644 --- a/locale/es/ManageIQ_UI_Classic.po +++ b/locale/es/ManageIQ_UI_Classic.po @@ -18,7 +18,6 @@ msgid "" msgstr "" "Project-Id-Version: manageiq 1.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-20 15:56+0100\n" "PO-Revision-Date: 2016-12-19 09:37-0500\n" "Last-Translator: Copied by Zanata \n" "Language-Team: Spanish\n" @@ -29,32496 +28,19036 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Zanata 3.9.6\n" -#: -#: ../app/assets/javascripts/controllers/auth_key_pair_cloud/auth_key_pair_cloud_controller.js:53 -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:202 -#: ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:57 -#: ../app/assets/javascripts/controllers/ems_common/ems_common_form_controller.js:276 -#: ../app/assets/javascripts/controllers/host/host_form_controller.js:137 -#: ../app/assets/javascripts/controllers/ops/log_collection_form_controller.js:101 -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:43 -#: ../app/assets/javascripts/controllers/ops/tenant_form_controller.js:63 -#: ../app/assets/javascripts/controllers/ops/tenant_quota_form_controller.js:60 -#: ../app/assets/javascripts/controllers/ownership/ownership_form_controller.js:58 -#: ../app/assets/javascripts/controllers/provider_foreman/provider_foreman_form_controller.js:100 -#: ../app/assets/javascripts/controllers/reconfigure/reconfigure_form_controller.js:275 -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:318 -#: ../app/assets/javascripts/controllers/service/service_form_controller.js:41 -#: ../app/controllers/application_controller/automate.rb:115 -#: ../app/controllers/application_controller/buttons.rb:50 -#: ../app/controllers/application_controller/buttons.rb:401 -#: ../app/controllers/application_controller/buttons.rb:536 -#: ../app/controllers/application_controller/ci_processing.rb:177 -#: ../app/controllers/application_controller/ci_processing.rb:181 -#: ../app/controllers/application_controller/dialog_runner.rb:67 -#: ../app/controllers/application_controller/policy_support.rb:32 -#: ../app/controllers/application_controller/tags.rb:161 -#: ../app/controllers/catalog_controller.rb:104 -#: ../app/controllers/catalog_controller.rb:352 -#: ../app/controllers/catalog_controller.rb:597 -#: ../app/controllers/catalog_controller.rb:1013 -#: ../app/controllers/catalog_controller.rb:2045 -#: ../app/controllers/chargeback_controller.rb:178 -#: ../app/controllers/chargeback_controller.rb:297 -#: ../app/controllers/configuration_controller.rb:224 -#: ../app/controllers/ems_common.rb:340 -#: ../app/controllers/host_controller.rb:394 -#: ../app/controllers/miq_ae_class_controller.rb:605 -#: ../app/controllers/miq_ae_class_controller.rb:1000 -#: ../app/controllers/miq_ae_class_controller.rb:1043 -#: ../app/controllers/miq_ae_class_controller.rb:1084 -#: ../app/controllers/miq_ae_class_controller.rb:1133 -#: ../app/controllers/miq_ae_class_controller.rb:1451 -#: ../app/controllers/miq_ae_class_controller.rb:1490 -#: ../app/controllers/miq_ae_class_controller.rb:1682 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:254 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:302 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:22 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:104 -#: ../app/controllers/miq_policy_controller/alerts.rb:44 -#: ../app/controllers/miq_policy_controller/conditions.rb:25 -#: ../app/controllers/miq_policy_controller/events.rb:17 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:23 -#: ../app/controllers/miq_policy_controller/policies.rb:23 -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:22 -#: ../app/controllers/ops_controller/ops_rbac.rb:155 -#: ../app/controllers/ops_controller/ops_rbac.rb:220 -#: ../app/controllers/ops_controller/ops_rbac.rb:426 -#: ../app/controllers/ops_controller/ops_rbac.rb:606 -#: ../app/controllers/ops_controller/ops_rbac.rb:694 -#: ../app/controllers/ops_controller/settings.rb:173 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:338 -#: ../app/controllers/ops_controller/settings/cap_and_u.rb:44 -#: ../app/controllers/ops_controller/settings/common.rb:583 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:47 -#: ../app/controllers/ops_controller/settings/ldap.rb:87 -#: ../app/controllers/ops_controller/settings/ldap.rb:237 -#: ../app/controllers/ops_controller/settings/schedules.rb:113 -#: ../app/controllers/ops_controller/settings/tags.rb:118 -#: ../app/controllers/ops_controller/settings/zones.rb:51 -#: ../app/controllers/pxe_controller/iso_datastores.rb:73 -#: ../app/controllers/pxe_controller/iso_datastores.rb:201 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:143 -#: ../app/controllers/pxe_controller/pxe_image_types.rb:64 -#: ../app/controllers/pxe_controller/pxe_servers.rb:83 -#: ../app/controllers/pxe_controller/pxe_servers.rb:221 -#: ../app/controllers/pxe_controller/pxe_servers.rb:271 -#: ../app/controllers/report_controller/dashboards.rb:42 -#: ../app/controllers/report_controller/dashboards.rb:99 -#: ../app/controllers/report_controller/menus.rb:210 -#: ../app/controllers/report_controller/reports/editor.rb:95 -#: ../app/controllers/report_controller/schedules.rb:269 -#: ../app/controllers/report_controller/widgets.rb:82 -#: ../app/controllers/storage_manager_controller.rb:183 -#: ../app/controllers/vm_common.rb:783 ../app/controllers/vm_common.rb:786 -#: ../app/controllers/vm_common.rb:974 -msgid "All changes have been reset" -msgstr "Todos los cambios han sido restaurados" - -#: ../app/assets/javascripts/controllers/buttons/button_group_controller.js:5 -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:3 -#: ../app/helpers/application_helper/toolbar/dialog_center.rb:38 -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:6 -#: ../app/views/chargeback/_cb_rate_edit_table.html.haml:85 -#: ../app/views/chargeback/_tier_first_row.haml:46 -#: ../app/views/cloud_volume/new.html.haml:86 -#: ../app/views/host_aggregate/add_host_select.html.haml:40 -#: ../app/views/host_aggregate/new.html.haml:85 -#: ../app/views/layouts/_edit_buttons.html.haml:15 -#: ../app/views/layouts/_edit_buttons.html.haml:15 -#: ../app/views/layouts/_edit_buttons.html.haml:52 -#: ../app/views/layouts/_edit_buttons.html.haml:52 -#: ../app/views/layouts/_edit_to_email.html.haml:92 -#: ../app/views/layouts/_x_edit_buttons.html.haml:46 -#: ../app/views/layouts/_x_edit_buttons.html.haml:141 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:3 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:3 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:3 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:11 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:11 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:11 -#: ../app/views/ops/_ap_form_file.html.haml:33 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:45 -#: ../app/views/ops/_ap_form_registry.html.haml:38 -#: ../app/views/ops/_classification_entry.html.haml:25 -#: ../app/views/ops/_classification_entry.html.haml:78 -#: ../app/views/ops/_settings_co_categories_tab.html.haml:49 -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:34 -#: ../app/views/shared/views/ems_common/_form.html.haml:181 -#: ../app/views/static/buttons.html.haml:3 -#: ../app/views/static/buttons.html.haml:4 -#: ../app/views/static/buttons.html.haml:13 -#: ../app/views/static/buttons.html.haml:14 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:451 -#: ../app/views/storage_manager/_form.html.haml:240 -#: ../app/views/vm_common/_add_to_service.html.haml:49 -msgid "Add" -msgstr "Añadir" +msgid " # of Days" +msgstr "# de días" -#: ../app/assets/javascripts/controllers/buttons/button_group_controller.js:6 -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:4 -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:15 -#: ../app/views/cloud_volume/backup_new.html.haml:57 -#: ../app/views/cloud_volume/backup_select.html.haml:41 -#: ../app/views/cloud_volume/edit.html.haml:40 -#: ../app/views/cloud_volume/new.html.haml:93 -#: ../app/views/cloud_volume/snapshot_new.html.haml:40 -#: ../app/views/host_aggregate/edit.html.haml:39 -#: ../app/views/host_aggregate/new.html.haml:92 -#: ../app/views/layouts/_adv_search_footer.html.haml:84 -#: ../app/views/layouts/_edit_buttons.html.haml:23 -#: ../app/views/layouts/_edit_buttons.html.haml:58 -#: ../app/views/layouts/_edit_form_buttons.html.haml:25 -#: ../app/views/layouts/_edit_form_buttons.html.haml:47 -#: ../app/views/layouts/_edit_form_buttons.html.haml:56 -#: ../app/views/layouts/_edit_form_buttons.html.haml:76 -#: ../app/views/layouts/_edit_form_buttons.html.haml:148 -#: ../app/views/layouts/_form_buttons.html.haml:14 -#: ../app/views/layouts/_form_buttons.html.haml:21 -#: ../app/views/layouts/_form_buttons.html.haml:29 -#: ../app/views/layouts/_form_buttons.html.haml:39 -#: ../app/views/layouts/_form_buttons.html.haml:77 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:18 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:59 -#: ../app/views/layouts/_x_edit_buttons.html.haml:101 -#: ../app/views/layouts/_x_edit_buttons.html.haml:108 -#: ../app/views/layouts/_x_edit_buttons.html.haml:157 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:19 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:27 -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:149 -#: ../app/views/ops/_ap_form_file.html.haml:62 -#: ../app/views/ops/_ap_form_file.html.haml:119 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:106 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:173 -#: ../app/views/ops/_ap_form_registry.html.haml:81 -#: ../app/views/ops/_ap_form_registry.html.haml:128 -#: ../app/views/ops/_classification_entry.html.haml:58 -#: ../app/views/ops/_settings_replication_tab.html.haml:488 -#: ../app/views/ops/_settings_replication_tab.html.haml:488 -#: ../app/views/ops/_settings_replication_tab.html.haml:494 -#: ../app/views/ops/_settings_replication_tab.html.haml:494 -#: ../app/views/shared/dialogs/_dialog_field.html.haml:48 -#: ../app/views/shared/views/_retire.html.haml:99 -#: ../app/views/shared/views/_retire.html.haml:99 -msgid "Save" -msgstr "Guardar" +msgid " %{host_uid_ems} is not a compute node " +msgstr "%{host_uid_ems} no es un nodo de computo" -#: ../app/assets/javascripts/controllers/buttons/button_group_controller.js:7 -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:8 -#: ../app/helpers/application_helper/toolbar/host_center.rb:215 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:237 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:265 -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:22 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:225 -#: ../app/views/cloud_volume/attach.html.haml:64 -#: ../app/views/cloud_volume/backup_new.html.haml:63 -#: ../app/views/cloud_volume/backup_select.html.haml:47 -#: ../app/views/cloud_volume/edit.html.haml:46 -#: ../app/views/cloud_volume/new.html.haml:99 -#: ../app/views/cloud_volume/snapshot_new.html.haml:46 -#: ../app/views/host_aggregate/edit.html.haml:45 -#: ../app/views/host_aggregate/new.html.haml:98 -#: ../app/views/layouts/_adv_search_footer.html.haml:54 -#: ../app/views/layouts/_adv_search_footer.html.haml:57 -#: ../app/views/layouts/_edit_buttons.html.haml:32 -#: ../app/views/layouts/_edit_form_buttons.html.haml:87 -#: ../app/views/layouts/_edit_form_buttons.html.haml:103 -#: ../app/views/layouts/_edit_form_buttons.html.haml:112 -#: ../app/views/layouts/_edit_form_buttons.html.haml:151 -#: ../app/views/layouts/_form_buttons.html.haml:49 -#: ../app/views/layouts/_form_buttons.html.haml:56 -#: ../app/views/layouts/_form_buttons.html.haml:79 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:39 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:68 -#: ../app/views/layouts/_x_edit_buttons.html.haml:116 -#: ../app/views/layouts/_x_edit_buttons.html.haml:161 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:19 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:27 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:35 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:43 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:25 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:51 -#: ../app/views/miq_capacity/planning.html.haml:19 -#: ../app/views/miq_capacity/planning.html.haml:36 -#: ../app/views/miq_policy/_rsop_options.html.haml:22 -#: ../app/views/miq_policy/_rsop_options.html.haml:40 -#: ../app/views/miq_request/_prov_options.html.haml:127 -#: ../app/views/miq_request/_prov_options.html.haml:153 -#: ../app/views/miq_task/_tasks_options.html.haml:160 -#: ../app/views/miq_task/_tasks_options.html.haml:185 -#: ../app/views/ops/_settings_replication_tab.html.haml:500 -#: ../app/views/ops/_settings_replication_tab.html.haml:506 -#: ../app/views/vm_common/_reconfigure.html.haml:413 -msgid "Reset" -msgstr "Reiniciar" +msgid " %{host_uid_ems} needs to be evacuated before it can be removed " +msgstr "%{host_uid_ems} necesita estar evacuado antes de poder ser removido" -#: ../app/assets/javascripts/controllers/buttons/button_group_controller.js:8 -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:10 -#: ../app/assets/javascripts/controllers/container_deployment/wizard/wizard-directive.js:46 -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:31 -#: ../app/views/cloud_volume/attach.html.haml:70 -#: ../app/views/cloud_volume/backup_new.html.haml:69 -#: ../app/views/cloud_volume/backup_select.html.haml:53 -#: ../app/views/cloud_volume/detach.html.haml:46 -#: ../app/views/cloud_volume/edit.html.haml:52 -#: ../app/views/cloud_volume/new.html.haml:105 -#: ../app/views/cloud_volume/snapshot_new.html.haml:52 -#: ../app/views/ems_cloud/discover.html.haml:61 -#: ../app/views/ems_cloud/discover.html.haml:61 -#: ../app/views/ems_infra/register_nodes.html.haml:23 -#: ../app/views/ems_infra/scaledown.html.haml:96 -#: ../app/views/ems_infra/scaledown.html.haml:96 -#: ../app/views/ems_infra/scaling.html.haml:66 -#: ../app/views/ems_infra/scaling.html.haml:66 -#: ../app/views/host_aggregate/edit.html.haml:51 -#: ../app/views/host_aggregate/new.html.haml:104 -#: ../app/views/layouts/_adv_search_footer.html.haml:77 -#: ../app/views/layouts/_adv_search_footer.html.haml:90 -#: ../app/views/layouts/_ae_tree_select.html.haml:66 -#: ../app/views/layouts/_ae_tree_select.html.haml:80 -#: ../app/views/layouts/_discover.html.haml:110 -#: ../app/views/layouts/_discover.html.haml:110 -#: ../app/views/layouts/_edit_buttons.html.haml:40 -#: ../app/views/layouts/_edit_buttons.html.haml:40 -#: ../app/views/layouts/_edit_buttons.html.haml:63 -#: ../app/views/layouts/_edit_buttons.html.haml:63 -#: ../app/views/layouts/_edit_form_buttons.html.haml:123 -#: ../app/views/layouts/_edit_form_buttons.html.haml:132 -#: ../app/views/layouts/_edit_form_buttons.html.haml:163 -#: ../app/views/layouts/_edit_form_buttons.html.haml:172 -#: ../app/views/layouts/_form_buttons.html.haml:65 -#: ../app/views/layouts/_form_buttons.html.haml:83 -#: ../app/views/layouts/_user_input_filter.html.haml:123 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:46 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:71 -#: ../app/views/layouts/_x_edit_buttons.html.haml:130 -#: ../app/views/layouts/_x_edit_buttons.html.haml:173 -#: ../app/views/layouts/_x_edit_buttons.html.haml:193 -#: ../app/views/layouts/_x_edit_buttons.html.haml:211 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:35 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:35 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:35 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:51 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:51 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:51 -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:80 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:115 -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:107 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:188 -#: ../app/views/middleware_server/_choose_datasource.html.haml:42 -#: ../app/views/middleware_server/_deploy.html.haml:116 -#: ../app/views/middleware_server/_ops_params.html.haml:93 -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:67 -#: ../app/views/miq_ae_tools/_import_export.html.haml:234 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:37 -#: ../app/views/miq_policy/_export.html.haml:33 -#: ../app/views/miq_policy/import.html.haml:73 -#: ../app/views/miq_request/_prov_form_buttons.html.haml:15 -#: ../app/views/miq_request/_prov_form_buttons.html.haml:46 -#: ../app/views/ontap_file_share/_create_datastore.html.haml:73 -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:70 -#: ../app/views/report/_export_widgets.html.haml:68 -#: ../app/views/shared/views/_retire.html.haml:106 -#: ../app/views/shared/views/_retire.html.haml:106 -#: ../app/views/shared/views/ems_common/_form.html.haml:187 -#: ../app/views/static/buttons.html.haml:52 -#: ../app/views/static/buttons.html.haml:53 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:445 -#: ../app/views/storage_manager/_form.html.haml:246 -#: ../app/views/vm_common/_add_to_service.html.haml:56 -#: ../app/views/vm_common/_associate_floating_ip.html.haml:48 -#: ../app/views/vm_common/_disassociate_floating_ip.html.haml:48 -#: ../app/views/vm_common/_evacuate.html.haml:115 -#: ../app/views/vm_common/_live_migrate.html.haml:119 -#: ../app/views/vm_common/_reconfigure.html.haml:422 -#: ../app/views/vm_common/_reconfigure.html.haml:422 -#: ../app/views/vm_common/_resize.html.haml:70 -#: ../app/views/vm_common/_resize.html.haml:83 -#: ../app/views/vm_common/_snap.html.haml:70 -msgid "Cancel" -msgstr "Cancelar" +msgid " %{host_uid_ems} needs to be in maintenance mode before it can be removed " +msgstr "%{host_uid_ems} necesita estar en modo mantenimiento antes de poder ser removido" -#: -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:5 -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:14 -#: ../app/views/layouts/_edit_buttons.html.haml:23 -#: ../app/views/layouts/_edit_form_buttons.html.haml:1 -#: ../app/views/layouts/_form_buttons.html.haml:1 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:18 -#: ../app/views/layouts/_x_edit_buttons.html.haml:108 -msgid "Save Changes" -msgstr "Guardar cambios" +msgid " %{model} Assignments" +msgstr "Asignaciones %{model}" -#: -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:6 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:25 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:62 -#: ../app/views/layouts/_x_edit_buttons.html.haml:71 -#: ../app/views/layouts/_x_edit_buttons.html.haml:148 -#: ../app/views/layouts/angular/_form_button_submit_angular.html.haml:8 -#: ../app/views/layouts/angular/_form_button_submit_angular.html.haml:15 -#: ../app/views/miq_ae_tools/_import_export.html.haml:122 -#: ../app/views/miq_ae_tools/_import_export.html.haml:232 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:6 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:47 -#: ../app/views/miq_capacity/planning.html.haml:9 -#: ../app/views/miq_capacity/planning.html.haml:32 -#: ../app/views/miq_policy/_rsop_options.html.haml:12 -#: ../app/views/miq_policy/_rsop_options.html.haml:35 -#: ../app/views/miq_request/_prov_form_buttons.html.haml:18 -#: ../app/views/miq_request/_prov_form_buttons.html.haml:42 -#: ../app/views/miq_request/_request.html.haml:266 -#: ../app/views/ontap_file_share/_create_datastore.html.haml:67 -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:64 -#: ../app/views/ops/_diagnostics_database_tab.html.haml:217 -#: ../app/views/vm_common/_associate_floating_ip.html.haml:42 -#: ../app/views/vm_common/_disassociate_floating_ip.html.haml:42 -#: ../app/views/vm_common/_evacuate.html.haml:109 -#: ../app/views/vm_common/_live_migrate.html.haml:113 -#: ../app/views/vm_common/_reconfigure.html.haml:401 -#: ../app/views/vm_common/_reconfigure.html.haml:401 -#: ../app/views/vm_common/_reconfigure.html.haml:407 -#: ../app/views/vm_common/_reconfigure.html.haml:407 -#: ../app/views/vm_common/_resize.html.haml:62 -#: ../app/views/vm_common/_resize.html.haml:81 -msgid "Submit" -msgstr "Enviar" +msgid " %{name} from %{value} to %{parameters} " +msgstr "%{name} de %{value} a %{parameters}" -#: -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:7 -msgid "Submit Changes" -msgstr "Enviar cambios" +msgid " (%{priority}active, PID=%{number})" +msgstr " (%{priority} activo, PID=%{number})" -#: -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:9 -#: ../app/views/layouts/_edit_buttons.html.haml:32 -#: ../app/views/layouts/_edit_form_buttons.html.haml:87 -#: ../app/views/layouts/_edit_form_buttons.html.haml:103 -#: ../app/views/layouts/_edit_form_buttons.html.haml:112 -#: ../app/views/layouts/_form_buttons.html.haml:49 -#: ../app/views/layouts/_form_buttons.html.haml:56 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:39 -#: ../app/views/layouts/_x_edit_buttons.html.haml:116 -msgid "Reset Changes" -msgstr "Restablecer los cambios" +msgid " (%{priority}available, PID=%{number})" +msgstr " (%{priority} disponible, PID=%{number})" -#: -#: ../app/assets/javascripts/controllers/cloud_topology/cloud_topology_controller.js:41 -#: ../app/assets/javascripts/controllers/container_topology/container_topology_controller.js:48 -#: ../app/assets/javascripts/controllers/infra_topology/infra_topology_controller.js:41 -#: ../app/assets/javascripts/controllers/network_topology/network_topology_controller.js:41 -msgid "Click here to show/hide entities of this type" -msgstr "Haga clic aquí para mostrar/ocultar entidades de este tipo." +msgid " (%{priority}unavailable)" +msgstr " (%{priority} no disponible)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Friday" -msgstr "Viernes" +msgid " (Ad hoc Metrics)" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Monday" -msgstr "Lunes" +msgid " (All Descendant %{table}(s))" +msgstr " (Todos los hijos de %{table})" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Saturday" -msgstr "Sábado" +msgid " (All Resource Pools)" +msgstr "(Todos los grupos de recursos)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Sunday" -msgstr "Domingo" +msgid " (All VMs - Tree View)" +msgstr "(Todas las MV - Vista de árbol)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Thursday" -msgstr "Jueves" +msgid " (All VMs)" +msgstr "(Todas las MV)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Tuesday" -msgstr "Martes" +msgid " (Analysis History)" +msgstr "(Histórico de análisis)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Wednesday" -msgstr "Miércoles" +msgid " (Click to view)" +msgstr " (Hacer clic para ver)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 -msgid "1-2" -msgstr "1-2" +msgid " (Compliance History - Last %{number} Checks)" +msgstr "(Histórico de cumplimiento - Últimas %{number} verificaciones)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 -msgid "12-1" -msgstr "12-1" +msgid " (Container)" +msgstr "(Contenedor)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 -msgid "2-3" -msgstr "2-3" +msgid " (Dashboard)" +msgstr " (Dashboard)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 -msgid "3-4" -msgstr "3-4" +msgid " (Devices)" +msgstr " (Dispositivos)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 -msgid "4-5" -msgstr "4-5" +msgid " (Direct %{title})" +msgstr " (%{title} directo)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 -msgid "5-6" -msgstr "5-6" +msgid " (Genealogy)" +msgstr "(Genealogía)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 -msgid "10-11" -msgstr "10-11" +msgid " (Hosts & Clusters)" +msgstr "(Hosts & Clusters)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 -msgid "11-12" -msgstr "11-12" +msgid " (Inactive)" +msgstr "(Inactivo)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 -msgid "6-7" -msgstr "6-7" +msgid " (Latest Compliance Check)" +msgstr "(Última comprobación de integridad)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 -msgid "7-8" -msgstr "7-8" +msgid " (Names with \"%{search_text}\")" +msgstr "(Nombres con \"%{search_text}\")" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 -msgid "8-9" -msgstr "8-9" +msgid " (Names with \"%{text}\")" +msgstr " (Nombres con \"%{text}\")" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 -msgid "9-10" -msgstr "9-10" +msgid " (Networks)" +msgstr "(Redes)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:48 -msgid "In use by %s reports, cannot be disabled" -msgstr "En uso por %s informes, no puede ser inhabilitado" +msgid " (OS Information)" +msgstr "(Información de SO)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/container_dashboard_controller.js:25 -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:45 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/ems_infra_dashboard_controller.js:22 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:37 -#: ../app/controllers/miq_capacity_controller.rb:766 -#: ../app/helpers/chargeback_helper.rb:4 -#: ../app/helpers/service_helper/textual_summary.rb:39 -#: ../app/helpers/vm_helper/textual_summary.rb:788 -#: ../app/views/miq_capacity/_utilization_report.html.haml:33 -#: ../app/views/miq_capacity/_utilization_summary.html.haml:18 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:55 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:132 -#: ../app/views/vm_common/_right_size.html.haml:44 -msgid "CPU" -msgstr "CPU" +msgid " (Parent)" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/container_dashboard_controller.js:31 -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:54 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:35 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/ems_infra_dashboard_controller.js:28 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:46 -#: ../app/controllers/application_controller.rb:1163 -#: ../app/controllers/application_controller/miq_request_methods.rb:410 -#: ../app/controllers/miq_capacity_controller.rb:767 -#: ../app/helpers/chargeback_helper.rb:7 -#: ../app/helpers/container_node_helper/textual_summary.rb:51 -#: ../app/helpers/host_helper/textual_summary.rb:247 -#: ../app/helpers/service_helper/textual_summary.rb:43 -#: ../app/helpers/vm_helper/textual_summary.rb:605 -#: ../app/helpers/vm_helper/textual_summary.rb:807 -#: ../app/views/miq_capacity/_utilization_report.html.haml:33 -#: ../app/views/miq_capacity/_utilization_summary.html.haml:18 -#: ../app/views/miq_request/_reconfigure_show.html.haml:17 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:48 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:125 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:163 -#: ../app/views/vm_common/_reconfigure.html.haml:15 -#: ../app/views/vm_common/_right_size.html.haml:114 -#: ../app/views/vm_common/_right_size.html.haml:241 -#: ../app/views/vm_common/_right_size.html.haml:325 -#: ../app/views/vm_common/_right_size.html.haml:408 -msgid "Memory" -msgstr "Memoria" +msgid " (Properties)" +msgstr "(Propiedades)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:46 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:38 -msgid "Cores" -msgstr "Núcleos" +msgid " (Resources)" +msgstr "(Recursos)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:47 -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:56 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:39 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:48 -msgid "Used" -msgstr "Utilizado" +msgid " (Snapshots)" +msgstr " (Snapshots)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:48 -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:57 -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:64 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:40 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:49 -#: ../app/helpers/ui_constants.rb:429 -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:128 -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:146 -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:195 -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:239 -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:95 -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:113 -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:151 -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:173 -msgid "Last 30 Days" -msgstr "Últimos 30 días" +msgid " (Summary)" +msgstr "(Resumen)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:55 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:47 -#: ../app/views/miq_capacity/_planning_options.html.haml:251 -msgid "GB" -msgstr "GB" +msgid " (Topology)" +msgstr " (Topología)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:63 -msgid "Network Utilization Trend" -msgstr "Tendendia de utilización de red" +msgid " (VMs & Templates)" +msgstr " (MVs y Plantillas)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:65 -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:66 -#: ../app/assets/javascripts/miq_application.js:95 -msgid "KBps" -msgstr "KBps" +msgid " (current)" +msgstr "(actual)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:71 -msgid "Pod Creation and Deletion Trends" -msgstr "Tendencias de creación y eliminación de Pod" +msgid " (filtered)" +msgstr "(filtrado)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:72 -#: ../app/views/miq_policy/_policy_details.html.haml:76 -msgid "Created" -msgstr "Creado" +msgid " * Multiple UI workers can not be configured with session store as memory" +msgstr " * Múltiples workers de la IU no pueden ser configurados en la sesión almacenada en memoria" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:73 -msgid "Deleted" -msgstr "Eliminado" +msgid " - %{last_refresh_date} Ago" +msgstr " - %{last_refresh_date} atrás" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:86 -msgid "New Image Usage Trend" -msgstr "Tendencia de uso de imagen nueva" +msgid " - Filtered by \"%{text}\"" +msgstr " - Filtrado por \"%{text}\"" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:87 -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:59 -#: ../app/controllers/ems_common.rb:61 -#: ../app/controllers/vm_cloud_controller.rb:165 -#: ../app/controllers/vm_common.rb:1246 -#: ../app/views/configuration/_ui_2.html.haml:175 -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:42 -msgid "Images" -msgstr "Imágenes" +msgid " - Filtered by \"%{text}\" report" +msgstr " - Filtrado por informe \"%{text}\"" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:103 -msgid "Node: " -msgstr "Nodo: " +msgid " - Filtered by %{filter}" +msgstr " - Filtrado por %{filter}" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:103 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:85 -#: ../app/assets/javascripts/services/topology_service.js:10 -msgid "Provider: " -msgstr "Proveedor: " +msgid " - Filtered by custom search" +msgstr "- Filtrado por búsqueda del cliente" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:105 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:87 -msgid "Usage: Unknown" -msgstr "Uso: desconocido" +msgid " Add " +msgstr "Añadir" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:108 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:90 -msgid "%d%% in use of %d total" -msgstr "%d%% en uso de %d total" +msgid " Address" +msgstr " Dirección" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:108 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:90 -msgid "Usage: " -msgstr "Uso: " +msgid " Build %{number}" +msgstr " Build %{number}" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:4 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:4 -#: ../app/controllers/provider_foreman_controller.rb:518 -#: ../app/controllers/provider_foreman_controller.rb:1169 -#: ../app/presenters/menu/default_menu.rb:48 -#: ../app/presenters/menu/default_menu.rb:65 -#: ../app/presenters/menu/default_menu.rb:97 -#: ../app/presenters/menu/default_menu.rb:117 -#: ../app/presenters/menu/default_menu.rb:125 -#: ../app/presenters/menu/default_menu.rb:138 -msgid "Providers" -msgstr "Proveedores" +msgid " Day" +msgstr "Día" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:11 -#: ../app/helpers/application_helper.rb:1525 -#: ../app/presenters/menu/default_menu.rb:61 -#: ../app/views/container_topology/show.html.haml:120 -#: ../app/views/infra_topology/show.html.haml:33 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:303 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:25 -msgid "Nodes" -msgstr "Nodos" +msgid " Days" +msgstr "Días" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:19 -#: ../app/controllers/ems_common.rb:76 -#: ../app/presenters/menu/default_menu.rb:95 -#: ../app/views/configuration/_ui_2.html.haml:74 -#: ../app/views/container_topology/show.html.haml:63 -msgid "Containers" -msgstr "Contenedores" +msgid " Download PDF" +msgstr " Descargar PDF" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:27 -msgid "Registries" -msgstr "Registros" +msgid " Full Screen" +msgstr "Pantalla completa" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:35 -#: ../app/views/ops/_rbac_tenant_details.html.haml:111 -msgid "Projects" -msgstr "Proyectos" +msgid " Hour" +msgstr "Hora" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:43 -#: ../app/controllers/ems_common.rb:79 -#: ../app/views/container_topology/show.html.haml:44 -msgid "Pods" -msgstr "Pods" +msgid " Hours" +msgstr "Horas" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:51 -#: ../app/controllers/host_controller.rb:190 -#: ../app/controllers/service_controller.rb:150 -#: ../app/helpers/host_helper/textual_summary.rb:448 -#: ../app/helpers/ui_constants.rb:437 ../app/presenters/menu/default_menu.rb:38 -#: ../app/views/configuration/_ui_2.html.haml:46 -#: ../app/views/container_topology/show.html.haml:82 -#: ../app/views/layouts/listnav/_host.html.haml:224 -msgid "Services" -msgstr "Servicios" +msgid " Maximize" +msgstr "Maximizar" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:67 -#: ../app/views/container_topology/show.html.haml:101 -msgid "Routes" -msgstr "Rutas" +msgid " Memory value not in range or not a multiple of 4" +msgstr "El valor de memoria no pertenece el rango o no es múltiplo de 4" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:23 -#: ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:213 -#: ../app/assets/javascripts/controllers/container_deployment/wizard/wizard-directive.js:52 -msgid "Next >" -msgstr "Siguiente >" +msgid " Minimize" +msgstr "Minimizar" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:191 -msgid "An unknown error has occurred." -msgstr "Se produjo un error desconocido." +msgid " Processor Options" +msgstr "Opciones del procesador" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:209 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:196 -#: ../app/views/middleware_server/_deploy.html.haml:124 -msgid "Deploy" -msgstr "Implementar" +msgid " Remove Widget" +msgstr " Remover asistente" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:211 -#: ../app/views/dashboard/_zoomed_chart.html.haml:14 -#: ../app/views/middleware_server/_add_datasource.html.haml:29 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:29 -#: ../app/views/middleware_server/_ops_params.html.haml:31 -msgid "Close" -msgstr "Cerrar" +msgid " Scaling down to %{a} compute nodes" +msgstr "Escalando hacia abajo a %{a} nodos de computo" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:20 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-no-provider-controller.js:89 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:238 -#: ../app/controllers/application_controller/miq_request_methods.rb:323 -#: ../app/controllers/application_controller/miq_request_methods.rb:335 -#: ../app/controllers/application_controller/miq_request_methods.rb:346 -#: ../app/controllers/application_controller/miq_request_methods.rb:358 -#: ../app/controllers/application_controller/miq_request_methods.rb:375 -#: ../app/controllers/application_controller/miq_request_methods.rb:390 -#: ../app/controllers/application_controller/miq_request_methods.rb:406 -#: ../app/controllers/application_controller/miq_request_methods.rb:437 -#: ../app/controllers/application_controller/miq_request_methods.rb:443 -#: ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:17 -#: ../app/helpers/container_build_helper/textual_summary.rb:23 -#: ../app/helpers/container_group_helper/textual_summary.rb:16 -#: ../app/helpers/container_group_helper/textual_summary.rb:57 -#: ../app/helpers/container_helper/textual_summary.rb:121 -#: ../app/helpers/container_image_helper/textual_summary.rb:105 -#: ../app/helpers/container_node_helper/textual_summary.rb:17 -#: ../app/helpers/container_project_helper/textual_summary.rb:22 -#: ../app/helpers/container_project_helper/textual_summary.rb:43 -#: ../app/helpers/container_service_helper/textual_summary.rb:18 -#: ../app/helpers/container_template_helper/textual_summary.rb:20 -#: ../app/helpers/container_template_helper/textual_summary.rb:26 -#: ../app/helpers/ems_container_helper/textual_summary.rb:28 -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:27 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:37 -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:27 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:30 -#: ../app/helpers/ops_helper/textual_summary.rb:37 -#: ../app/helpers/ops_helper/textual_summary.rb:101 -#: ../app/helpers/ops_helper/textual_summary.rb:109 -#: ../app/helpers/ops_helper/textual_summary.rb:117 -#: ../app/helpers/ops_helper/textual_summary.rb:139 -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:168 -#: ../app/helpers/provider_foreman_helper.rb:125 -#: ../app/helpers/provider_foreman_helper.rb:205 -#: ../app/helpers/provider_foreman_helper.rb:234 -#: ../app/helpers/provider_foreman_helper.rb:280 -#: ../app/helpers/pxe_helper/textual_summary.rb:48 -#: ../app/helpers/pxe_helper/textual_summary.rb:72 -#: ../app/helpers/pxe_helper/textual_summary.rb:96 -#: ../app/helpers/pxe_helper/textual_summary.rb:116 -#: ../app/helpers/pxe_helper/textual_summary.rb:140 -#: ../app/views/_ldap_domain_form.html.haml:16 -#: ../app/views/auth_key_pair_cloud/_form.html.haml:24 -#: ../app/views/catalog/_form_resources_info.html.haml:55 -#: ../app/views/catalog/_ot_add.html.haml:14 -#: ../app/views/catalog/_ot_copy.html.haml:21 -#: ../app/views/catalog/_ot_edit.html.haml:14 -#: ../app/views/catalog/_ot_tree_show.html.haml:11 -#: ../app/views/catalog/_sandt_tree_show.html.haml:261 -#: ../app/views/catalog/_stcat_form.html.haml:20 -#: ../app/views/catalog/_stcat_tree_show.html.haml:11 -#: ../app/views/catalog/_svccat_tree_show.html.haml:28 -#: ../app/views/chargeback/_cb_assignments.html.haml:94 -#: ../app/views/chargeback/_cb_assignments.html.haml:155 -#: ../app/views/chargeback/_cb_assignments.html.haml:192 -#: ../app/views/chargeback/_cb_assignments.html.haml:229 -#: ../app/views/chargeback/_reports_list.html.haml:52 -#: ../app/views/configuration/_timeprofile_form.html.haml:384 -#: ../app/views/ems_container/_form.html.haml:13 -#: ../app/views/ems_datawarehouse/_form.html.haml:13 -#: ../app/views/ems_infra/_form.html.haml:13 -#: ../app/views/ems_middleware/_form.html.haml:13 -#: ../app/views/generic_object/explorer.html.haml:21 -#: ../app/views/generic_object/explorer.html.haml:52 -#: ../app/views/generic_object/explorer.html.haml:108 -#: ../app/views/host/_form.html.haml:25 -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:15 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:15 -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_class_form.html.haml:27 -#: ../app/views/miq_ae_class/_class_props.html.haml:29 -#: ../app/views/miq_ae_class/_inputs.html.haml:14 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:15 -#: ../app/views/miq_ae_class/_instance_form.html.haml:27 -#: ../app/views/miq_ae_class/_instance_form.html.haml:87 -#: ../app/views/miq_ae_class/_method_form.html.haml:31 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:32 -#: ../app/views/miq_ae_class/_ns_list.html.haml:20 -#: ../app/views/miq_ae_class/_ns_list.html.haml:104 -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:35 -#: ../app/views/miq_ae_customization/_old_dialogs_details.html.haml:20 -#: ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:17 -#: ../app/views/miq_capacity/_planning_summary.html.haml:49 -#: ../app/views/miq_policy/_action_details.html.haml:76 -#: ../app/views/ontap_file_share/_create_datastore.html.haml:18 -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:12 -#: ../app/views/ops/_ap_form.html.haml:18 -#: ../app/views/ops/_ap_form_file.html.haml:12 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:12 -#: ../app/views/ops/_ap_show.html.haml:16 -#: ../app/views/ops/_ap_show.html.haml:94 -#: ../app/views/ops/_category_form.html.haml:118 -#: ../app/views/ops/_classification_entries.html.haml:13 -#: ../app/views/ops/_db_info.html.haml:15 -#: ../app/views/ops/_db_info.html.haml:118 -#: ../app/views/ops/_db_info.html.haml:213 -#: ../app/views/ops/_ldap_domain_form.html.haml:16 -#: ../app/views/ops/_ldap_domain_show.html.haml:16 -#: ../app/views/ops/_ldap_region_form.html.haml:19 -#: ../app/views/ops/_ldap_region_show.html.haml:18 -#: ../app/views/ops/_ldap_region_show.html.haml:71 -#: ../app/views/ops/_rbac_role_details.html.haml:23 -#: ../app/views/ops/_rbac_tenant_details.html.haml:17 -#: ../app/views/ops/_rbac_tenant_details.html.haml:93 -#: ../app/views/ops/_rbac_tenant_details.html.haml:119 -#: ../app/views/ops/_schedule_form.html.haml:19 -#: ../app/views/ops/_settings_co_categories_tab.html.haml:10 -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:13 -#: ../app/views/ops/_tenant_form.html.haml:17 -#: ../app/views/ops/_zone_form.html.haml:16 -#: ../app/views/orchestration_stack/_copy_orchestration_template.html.haml:16 -#: ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 -#: ../app/views/provider_foreman/_form.html.haml:18 -#: ../app/views/pxe/_iso_datastore_details.html.haml:24 -#: ../app/views/pxe/_pxe_form.html.haml:17 -#: ../app/views/pxe/_pxe_image_type_form.html.haml:17 -#: ../app/views/pxe/_pxe_server_details.html.haml:59 -#: ../app/views/pxe/_pxe_server_details.html.haml:106 -#: ../app/views/pxe/_template_form.html.haml:15 -#: ../app/views/report/_db_form.html.haml:20 -#: ../app/views/report/_db_show.html.haml:12 -#: ../app/views/report/_report_info.html.haml:124 -#: ../app/views/report/_report_list.html.haml:49 -#: ../app/views/report/_report_list.html.haml:82 -#: ../app/views/report/_report_list.html.haml:112 -#: ../app/views/report/_schedule_form.html.haml:17 -#: ../app/views/service/_service_form.html.haml:27 -#: ../app/views/shared/views/ems_common/_form.html.haml:18 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:13 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:63 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:9 -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:7 -#: ../app/views/storage_manager/_form.html.haml:23 -#: ../app/views/vm_common/_reconfigure.html.haml:201 -#: ../app/views/vm_common/_snap.html.haml:17 -msgid "Name" -msgstr "Nombre" +msgid " Selected Actions:" +msgstr "Acciones seleccionadas:" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:25 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-no-provider-controller.js:94 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:244 -#: ../app/views/ops/_rbac_group_details.html.haml:55 -#: ../app/views/ops/_rbac_user_details.html.haml:195 -#: ../app/views/ops/_selected_by_roles.html.haml:7 -#: ../app/views/ops/_selected_by_servers.html.haml:168 -msgid "Role" -msgstr "Rol" +msgid " Selected Alerts:" +msgstr "Notificaciones seleccionadas:" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:30 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:158 -msgid "# CPUS" -msgstr "# CPU" +msgid " Total processors value larger than the maximum allowed" +msgstr "El valor total de procesadores es mayor que el máximo permitido" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:40 -#: ../app/controllers/application_controller/miq_request_methods.rb:411 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:62 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:139 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:168 -msgid "Disk Size" -msgstr "Tamaño del disco" +msgid " Valid memory value required" +msgstr "Valor válido de memoria requerido" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-no-provider-controller.js:67 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:126 -msgid "Remove Roles" -msgstr "Eliminar roles" +msgid " Valid numeric disk size required " +msgstr "Se requiere un valor numérico de tamaño de disco" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-no-provider-controller.js:71 -msgid "Remove VM(s)" -msgstr "Eliminar máquinas virtuales" +msgid " Valid numeric quota value required " +msgstr "Se requiere un valor numérico válido de cuota" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:76 -msgid "The number of Masters must be 1, 3, or 5" -msgstr "El número de Másters debe ser 1, 3 o 5" +msgid " Week" +msgstr "Semana" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:85 -msgid "You must select at least one Node" -msgstr "Debe seleccionar al menos un nodo" +msgid " Weeks" +msgstr "Semanas" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:94 -msgid "You must select one Storage Node when using Integrated NFS storage" -msgstr "" -"Debe seleccionar un nodo de almacenamiento cuando utilice almacenamiento de NF" -"S integrado" +msgid " Zoom in" +msgstr " Acercar" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:97 -msgid "You can only specify one Storage Node" -msgstr "Solo puede especificar un nodo de almacenamiento" +msgid " [%{text} Information]" +msgstr " [%{text} Información]" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:106 -msgid "You can specify at most one DNS Node" -msgstr "Puede especificar un nodo DNS como máximo" +msgid " by %{user}" +msgstr " por %{user}" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:120 -msgid "Load balancers can only be assigned to Masters or Nodes" -msgstr "Los equilibradores de carga solo se pueden asignar a maestros o a nodos" +msgid "\"%{action}\" for %{switch} \"%{name}\"" +msgstr "\"%{action}\" para %{switch} \"%{name}\"" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:128 -msgid "DNS can only be assigned to Masters or Nodes" -msgstr "DNS solo se puede asignar a maestros o nodos" +msgid "\"%{action}\" for %{vm_or_template} \"%{name}\"" +msgstr "\"%{action}\" para %{vm_or_template} \"%{name}\"" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:136 -msgid "Etcd can only be assigned to Masters or Nodes" -msgstr "Etcd solo se puede asignar a maestros o nodos" +msgid "\"%{datastore_name}\": cannot be removed, has vms or hosts" +msgstr "\"%{datastore_name}\": no puede eliminarse, tiene vms o hosts" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:144 -msgid "Infrastructure can only be assigned to Nodes" -msgstr "La infraestructura solo se puede asignar a nodos" +msgid "\"%{field}\" %{model} cannot be deleted" +msgstr "\"%{field}\" %{model} no puede ser eliminado" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:30 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:36 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:47 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:54 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:73 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:85 -#: ../app/helpers/cloud_volume_backup_helper/textual_summary.rb:37 -#: ../app/helpers/cloud_volume_helper/textual_summary.rb:37 -#: ../app/helpers/cloud_volume_helper/textual_summary.rb:52 -#: ../app/helpers/cloud_volume_helper/textual_summary.rb:64 -#: ../app/helpers/cloud_volume_snapshot_helper/textual_summary.rb:45 -#: ../app/helpers/configuration_job_helper/textual_summary.rb:36 -#: ../app/helpers/configuration_job_helper/textual_summary.rb:49 -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:124 -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:190 -#: ../app/helpers/host_helper/textual_summary.rb:136 -#: ../app/helpers/host_helper/textual_summary.rb:225 -#: ../app/helpers/host_helper/textual_summary.rb:265 -#: ../app/helpers/host_helper/textual_summary.rb:304 -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:61 -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:74 -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:86 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:189 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:211 -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:47 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:60 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:67 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:79 -#: ../app/helpers/service_helper/textual_summary.rb:77 -#: ../app/helpers/storage_helper/textual_summary.rb:61 -#: ../app/helpers/storage_helper/textual_summary.rb:144 -#: ../app/helpers/storage_helper/textual_summary.rb:155 -#: ../app/helpers/textual_mixins/textual_authentications_status.rb:12 -#: ../app/helpers/textual_mixins/textual_authentications_status.rb:38 -#: ../app/helpers/textual_mixins/textual_drift.rb:7 -#: ../app/helpers/textual_mixins/textual_metrics_status.rb:5 -#: ../app/helpers/textual_mixins/textual_metrics_status.rb:6 -#: ../app/helpers/textual_mixins/textual_scan_history.rb:6 -#: ../app/helpers/textual_summary_helper.rb:163 -#: ../app/helpers/textual_summary_helper.rb:178 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:100 -#: ../app/helpers/vm_helper.rb:24 ../app/helpers/vm_helper.rb:29 -#: ../app/helpers/vm_helper/textual_summary.rb:127 -#: ../app/helpers/vm_helper/textual_summary.rb:160 -#: ../app/helpers/vm_helper/textual_summary.rb:221 -#: ../app/helpers/vm_helper/textual_summary.rb:232 -#: ../app/helpers/vm_helper/textual_summary.rb:243 -#: ../app/helpers/vm_helper/textual_summary.rb:256 -#: ../app/helpers/vm_helper/textual_summary.rb:288 -#: ../app/helpers/vm_helper/textual_summary.rb:299 -#: ../app/helpers/vm_helper/textual_summary.rb:310 -#: ../app/helpers/vm_helper/textual_summary.rb:323 -#: ../app/helpers/vm_helper/textual_summary.rb:337 -#: ../app/helpers/vm_helper/textual_summary.rb:349 -#: ../app/helpers/vm_helper/textual_summary.rb:447 -#: ../app/helpers/vm_helper/textual_summary.rb:831 -#: ../app/views/catalog/_form_resources_info.html.haml:121 -#: ../app/views/layouts/_edit_to_email.html.haml:22 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:269 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:126 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:209 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:252 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:350 -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:121 -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:155 -#: ../app/views/miq_capacity/_utilization_options.html.haml:45 -#: ../app/views/miq_policy/_action_options.html.haml:477 -#: ../app/views/miq_policy/_action_options.html.haml:489 -#: ../app/views/miq_policy/_alert_snmp.html.haml:129 -#: ../app/views/miq_request/_prov_ds_grid.html.haml:29 -#: ../app/views/miq_request/_prov_field.html.haml:285 -#: ../app/views/miq_request/_prov_field.html.haml:337 -#: ../app/views/miq_request/_prov_field.html.haml:456 -#: ../app/views/miq_request/_prov_field.html.haml:549 -#: ../app/views/miq_request/_prov_host_grid.html.haml:33 -#: ../app/views/miq_request/_prov_iso_img_grid.html.haml:26 -#: ../app/views/miq_request/_prov_pxe_img_grid.html.haml:26 -#: ../app/views/miq_request/_prov_template_grid.html.haml:26 -#: ../app/views/miq_request/_prov_vc_grid.html.haml:27 -#: ../app/views/miq_request/_prov_vm_grid.html.haml:31 -#: ../app/views/miq_request/_prov_vm_grid.html.haml:108 -#: ../app/views/miq_request/_prov_windows_image_grid.html.haml:26 -#: ../app/views/ops/_rbac_role_details.html.haml:59 -#: ../app/views/ops/_rbac_role_details.html.haml:62 -#: ../app/views/ops/_settings_replication_tab.html.haml:91 -#: ../app/views/report/_form_columns_trend.html.haml:42 -#: ../app/views/report/_form_columns_trend.html.haml:86 -#: ../app/views/report/_form_columns_trend.html.haml:86 -#: ../app/views/report/_form_formatting.html.haml:88 -#: ../app/views/report/_form_sort.html.haml:119 -#: ../app/views/shared/dialogs/_dialog_field_radio_button.html.haml:6 -#: ../app/views/shared/views/_retire.html.haml:49 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:175 -msgid "None" -msgstr "Nada" +msgid "\"%{name}\": Global %{model} cannot be deleted" +msgstr "\"%{name}\": Global %{model} no puede ser eliminado" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:30 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:36 -msgid "Use existing VMs from an existing provider: " -msgstr "Usar máquinas virtuales existentes de un proveedor existente: " +msgid "\"%{name}\": In use by %{rep_count} Report, cannot be deleted" +msgid_plural "\"%{name}\": In use by %{rep_count} Reports, cannot be deleted" +msgstr[0] "\"%{name}\": en uso por el informe %{rep_count}, no se puede eliminar" +msgstr[1] "\"%{name}\": en uso por los informes %{rep_count}, no se puede eliminar" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:39 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:76 -msgid "Specify a list of machines to deploy on (No existing provider)" -msgstr "Especificar una lista de máquinas para desplegar (proveedor no existente)" +msgid "\"%{record}\": %{task} invalid" +msgstr "\"%{record}\": %{task} no válida" -#: -#: ../app/assets/javascripts/controllers/container_deployment/wizard/wizard-directive.js:49 -msgid "< Back" -msgstr "< Atrás" +msgid "\"%{record}\": %{task} successfully initiated" +msgstr "\"%{record}\": %{task} inicializada con éxito" -#: -#: ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:89 -msgid "Filter by %s..." -msgstr "" +msgid "\"%{record}\": Analysis successfully initiated" +msgstr "\"%{record}\": Análisis iniciado con éxito" -#: -#: ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:226 -#: ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:248 -msgid "MM/DD/YYYY HH:mm" -msgstr "" +msgid "\"%{record}\": Compliance check successfully initiated" +msgstr "\"%{record}\": Control de cumplimiento iniciado con éxito" -#: -#: ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:268 -msgid "Use the System Tenant Metrics" -msgstr "" +msgid "\"%{record}\": Refresh successfully initiated" +msgstr "\"%{record}\": Actualización iniciada con éxito" -#: -#: ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:274 -msgid "Use the Ops Tenant Metrics" -msgstr "" +msgid "\"%{record}\": Scheduling is %{status} now." +msgstr "\"%{record}\": El estado de la programación es %{status} ahora." -#: -#: ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:45 -msgid "Add of Arbitration Profile was cancelled by the user" -msgstr "El usuario canceló la adición de un perfil de arbitraje." +msgid "\"%{task_description}\" was executed" +msgstr "\"%{task_description}\" fue ejecutada" -#: -#: ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:47 -msgid "Edit of Arbitration Profile %s was cancelled by the user" -msgstr "El usuario canceló la edición de un perfil de arbitraje." +msgid "\"%{task}\": not available for %{hostname}" +msgstr "\"%{task}\": no disponible para %{hostname}" -#: -#: ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:61 -msgid "Arbitration Profile %s was saved" -msgstr "Se guardó el perfil de arbitraje %s." +msgid "\"%{task}\": not available for %{hostname}. %{hostname}'s provision state must be in \"available\", \"adoptfail\", \"cleanfail\", \"enroll\", or \"inspectfail\"" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:70 -msgid "Arbitration Profile %s was added" -msgstr "Se agregó el perfil de arbitraje %s." +msgid "\"%{task}\": not available for %{hostname}. %{hostname}'s provision state needs to be in \"manageable\"" +msgstr "\"%{task}\": no está disponible para %{hostname}. El estado de aprovisionamiento de %{hostname} debe ser \"manageable\"" -#: -#: ../app/assets/javascripts/controllers/ems_common/ems_common_form_controller.js:57 -#: ../app/views/layouts/_auth_credentials.html.haml:30 -msgid "Note: Username must be in the format: name@realm" -msgstr "Nota: El nombre del usuario debe estar en el formato: name@realm" +msgid "\"%{task}\": not supported for %{hostname}" +msgstr "\"%{task}\": no soportada para %{hostname}" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:55 -msgid "Recent Hosts" -msgstr "Hosts recientes" +msgid "\"%{type}\" is not a valid Orchestration Template type" +msgstr "\"%{type}\" no es un tipo válido de plantilla de orquestación" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:56 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:19 -#: ../app/controllers/application_controller/miq_request_methods.rb:617 -#: ../app/controllers/host_controller.rb:31 -#: ../app/controllers/host_controller.rb:686 -#: ../app/helpers/application_helper.rb:1523 ../app/helpers/ui_constants.rb:359 -#: ../app/presenters/menu/default_menu.rb:61 -#: ../app/views/configuration/_ui_2.html.haml:210 -#: ../app/views/container_topology/show.html.haml:158 -msgid "Hosts" -msgstr "Equipos" +msgid "\"A route named '#{route_name}' is configured to connect to the \"external logging server but it doesn't exist" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:68 -msgid "Recent VMs" -msgstr "MV recientes" +msgid "\"There is no server with the #{role} role enabled\"" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:69 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:35 -#: ../app/controllers/application_controller/miq_request_methods.rb:613 -#: ../app/controllers/ems_common.rb:72 ../app/controllers/host_controller.rb:95 -#: ../app/controllers/vm_common.rb:1262 -#: ../app/controllers/vm_infra_controller.rb:27 -#: ../app/helpers/host_helper/textual_summary.rb:320 -#: ../app/views/cloud_topology/show.html.haml:33 -#: ../app/views/configuration/_ui_2.html.haml:210 -#: ../app/views/container_topology/show.html.haml:139 -#: ../app/views/ems_infra/scaledown.html.haml:46 -#: ../app/views/layouts/listnav/_ems_infra.html.haml:63 -#: ../app/views/layouts/listnav/_host.html.haml:128 -#: ../app/views/layouts/listnav/_storage.html.haml:37 -#: ../app/views/middleware_topology/show.html.haml:108 -#: ../app/views/miq_capacity/_planning_summary.html.haml:20 -#: ../app/views/network_topology/show.html.haml:52 -#: ../app/views/service/_svcs_show.html.haml:30 -msgid "VMs" -msgstr "VM" +msgid "# CPUS" +msgstr "# CPU" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:85 -msgid "Cluster: " -msgstr "Clúster:" +msgid "% Complete" +msgstr "% completo" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:11 -#: ../app/controllers/application_controller/compare.rb:867 -#: ../app/controllers/ems_cluster_controller.rb:28 -#: ../app/controllers/ems_cluster_controller.rb:261 -#: ../app/helpers/application_helper.rb:1538 ../app/helpers/ui_constants.rb:358 -#: ../app/presenters/menu/default_menu.rb:62 -#: ../app/views/configuration/_ui_2.html.haml:210 -msgid "Clusters" -msgstr "Clusters" +msgid "% Matched" +msgstr "% Coincidente" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:27 -#: ../app/controllers/storage_controller.rb:416 -#: ../app/controllers/storage_controller.rb:629 -#: ../app/views/configuration/_ui_2.html.haml:210 -msgid "Datastores" -msgstr "Almacenes de datos" +msgid "% Matched:" +msgstr "% Coincidente:" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:43 -#: ../app/controllers/application_controller/miq_request_methods.rb:615 -#: ../app/controllers/ems_common.rb:71 ../app/controllers/host_controller.rb:95 -#: ../app/controllers/miq_template_controller.rb:20 -#: ../app/controllers/vm_common.rb:1260 -#: ../app/controllers/vm_infra_controller.rb:32 -#: ../app/helpers/ems_infra_helper/textual_summary.rb:153 -#: ../app/views/configuration/_ui_2.html.haml:210 -#: ../app/views/layouts/listnav/_ems_infra.html.haml:70 -#: ../app/views/layouts/listnav/_host.html.haml:136 -msgid "Templates" -msgstr "Plantillas" +msgid "% Savings" +msgstr "% Ahorro" -#: ../app/assets/javascripts/controllers/header/header_controller.js:43 -msgid "%{count} unread notifications" -msgstr "%{count} notificaciones sin leer" +msgid "%d Months Ago" +msgstr "Hace %d meses" -#: -#: ../app/assets/javascripts/controllers/middleware_datasource/middleware_datasource_controller.js:58 -msgid "Unable to install the Datasource on this server." +msgid "%d Note" msgstr "" -#: -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:25 -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:83 -msgid "No replication role has been set" -msgstr "No se estableció el rol de réplica" - -#: -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:85 -msgid "Replication will be disabled for this region" -msgstr "Se inhabilitará la replicación para esta región" - -#: -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:87 -msgid "All current subscriptions will be removed" -msgstr "Todas las suscripciones actuales serán eliminadas" - -#: -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:89 -msgid "Changing to remote replication role will remove all current subscriptions" +msgid "%d Notes" msgstr "" -"Cambiar al rol de replicación remota eliminará todas las suscripciones actuale" -"s." -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:161 -#: ../app/views/miq_policy/_rsop_form.html.haml:45 -msgid "VM Selection" -msgstr "Selección de máquina virtual" +msgid "%d Weeks Ago" +msgstr "Hace %d semanas" -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:163 -msgid "Host Selection" -msgstr "Selección del host" +msgid "%d%% in use of %d %s total" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:165 -msgid "Template Selection" -msgstr "Selección de plantilla" +msgid "%d%% in use of %d total" +msgstr "%d%% en uso de %d total" -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:167 -msgid "Cluster Selection" -msgstr "Selección de clúster" +msgid "%{action} \"%{item_name}\" for %{switch} \"%{name}\"" +msgstr "%{action} \"%{item_name}\" para %{switch} \"%{name}\"" -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:169 -msgid "Datastore Selection" -msgstr "Selección del almacén de datos" +msgid "%{action} \"%{item_name}\" for %{vm_or_template} \"%{name}\"" +msgstr "%{action} \"%{item_name}\" para %{vm_or_template} \"%{name}\"" -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:171 -msgid "Database Backup Selection" -msgstr "Selección de copia de seguridad de la base de datos" +msgid "%{alert_profiles} with %{type} Tags" +msgstr "%{alert_profiles} con etiquetas %{type}" -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:173 -msgid "Automate Tasks Selection" -msgstr "Automatizar selección de tareas" +msgid "%{amount} %{object} Being Tagged" +msgid_plural "%{amount} %{objects} Being Tagged" +msgstr[0] "%{amount} %{object} se está etiquetando." +msgstr[1] "%{amount} %{objects} se están etiquetando." -#: ../app/assets/javascripts/dialog_field_refresh.js:97 -#: ../app/assets/javascripts/dialog_field_refresh.js:178 -#: ../app/helpers/application_helper/dialogs.rb:133 -msgid "This element is disabled because it is read only" -msgstr "Este ítem está inhabilitado porque es de solo lectura" +msgid "%{approval_states} requests cannot be deleted" +msgstr "Las peticiones %{approval_states} no pueden ser eliminadas" -#: ../app/assets/javascripts/miq_application.js:86 -msgid "true/false" -msgstr "verdadero/falso" +msgid "%{button_group_name} (Group)" +msgstr "%{button_group_name} (Grupo)" -#: ../app/assets/javascripts/miq_application.js:87 -msgid "Number (Bytes)" -msgstr "Número (Bytes)" +msgid "%{button_name} Button not yet implemented" +msgstr "El botón %{button_name} no implementado aún" -#: ../app/assets/javascripts/miq_application.js:88 -#: ../app/views/layouts/_perf_options.html.haml:82 -#: ../app/views/report/_form_filter_chargeback.html.haml:200 -msgid "Date" -msgstr "Fecha" +msgid "%{chargeback_interval} Ending with" +msgstr "%{chargeback_interval} termina por" -#: ../app/assets/javascripts/miq_application.js:89 -msgid "Date/Time" -msgstr "Fecha/Hora" +msgid "%{children} (%{count})" +msgstr "%{children} (%{count})" -#: ../app/assets/javascripts/miq_application.js:90 -#: ../app/assets/javascripts/miq_application.js:91 -#: ../app/assets/javascripts/miq_application.js:94 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:76 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:231 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:329 -msgid "Integer" -msgstr "Número entero" +msgid "%{children} (0)" +msgstr "%{children} (0)" -#: ../app/assets/javascripts/miq_application.js:92 -msgid "Number" -msgstr "Número" +msgid "%{count} unread notifications" +msgstr "%{count} notificaciones sin leer" -#: ../app/assets/javascripts/miq_application.js:93 -msgid "Number (GB)" -msgstr "Número (GB)" +msgid "%{current_tenant} Tags" +msgstr "" -#: ../app/assets/javascripts/miq_application.js:96 -msgid "Number (kB)" -msgstr "Número (kB)" +msgid "%{date_from} to %{date_to}" +msgstr "Desde %{date_from} hasta %{date_to}" -#: ../app/assets/javascripts/miq_application.js:97 -msgid "Number (MB)" -msgstr "Número (MB)" +msgid "%{description} category Scan" +msgstr "Escaneo de categoría %{description} " -#: ../app/assets/javascripts/miq_application.js:98 -#: ../app/assets/javascripts/miq_application.js:99 -#: ../app/views/miq_capacity/_planning_options.html.haml:168 -msgid "MHz" -msgstr "MHz" +msgid "%{description} registry Scan" +msgstr "Escaneo de registro %{description}" -#: ../app/assets/javascripts/miq_application.js:100 -msgid "Number List" -msgstr "Lista de número" +msgid "%{entry_point} Entry Point (NameSpace/Class/Instance)" +msgstr "Punto de entrada %{entry_point} (espacio de nombres/clase/instancia)" -#: ../app/assets/javascripts/miq_application.js:101 -msgid "Percent" -msgstr "Porcentaje" +msgid "%{field} '%{value}' is already in use" +msgstr "%{field} '%{value}' está ya en uso" -#: ../app/assets/javascripts/miq_application.js:102 -msgid "Text (REGEX)" -msgstr "Texto (REGEX)" +msgid "%{field} is required" +msgstr "" -#: ../app/assets/javascripts/miq_application.js:103 -msgid "Ruby Script" -msgstr "Script de Ruby" +msgid "%{hosts} & %{clusters}" +msgstr "%{hosts} y %{clusters}" -#: ../app/assets/javascripts/miq_application.js:104 -#: ../app/assets/javascripts/miq_application.js:106 -#: ../app/views/report/_schedule_email_options.html.haml:41 -#: ../app/views/shared/buttons/_ab_list.html.haml:45 -#: ../app/views/shared/buttons/_ab_list.html.haml:193 -msgid "Text" -msgstr "Texto" +msgid "%{host} to validate against, Username and matching password fields are needed to perform verification of credentials" +msgstr "%{host} con el cual validar, se necesitan los campos de nombre de usuario y contraseña para realizar la verificación de credenciales" -#: ../app/assets/javascripts/miq_application.js:105 -msgid "String List" -msgstr "Lista de cadenas" +msgid "%{instance_model} \"%{instance_name}\" has no attached %{volumes}" +msgstr "%{instance_model} \"%{instance_name}\" no tiene %{volumes} asociados" -#: ../app/assets/javascripts/miq_application.js:125 -#: ../app/views/ops/_ap_form_registry.html.haml:14 -msgid "Registry Key" -msgstr "Clave de registro" +msgid "%{item} (Selected)" +msgstr "" -#: ../app/assets/javascripts/miq_application.js:131 -msgid "Registry Key Value" -msgstr "Valor de clave de registro" +msgid "%{item} has been initiated for the selected Servers" +msgstr "%{item} ha sido iniciado para los servidores seleccionados" -#: ../app/assets/javascripts/miq_application.js:297 -#: ../app/assets/javascripts/miq_application.js:307 -msgid "Abandon changes?" -msgstr "¿Abandonar los cambios?" +msgid "%{key} changed to %{value}" +msgstr "%{key} cambió a %{value}" -#: ../app/assets/javascripts/miq_application.js:744 -#: ../app/assets/javascripts/miq_application.js:1063 -#: ../app/assets/javascripts/miq_application.js:1197 -msgid "Error requesting data from server" -msgstr "" +msgid "%{labels} are not in the current region and will be skipped" +msgstr "%{labels} no se encuentran en la región actual y serán omitidas" -#: ../app/assets/javascripts/miq_application.js:830 -msgid "Incorrect username or password" -msgstr "Nombre de usuario o contraseña incorrectos" +msgid "%{label} Authentication" +msgstr "%{label} Autenticación" -#: ../app/assets/javascripts/miq_application.js:907 -#: ../app/views/dashboard/login.html.haml:32 -msgid "Click to remove message" -msgstr "Haz clic para eliminar el mensaje" +msgid "%{label} Credentials" +msgstr "%{label} Credentials" -#: ../app/assets/javascripts/miq_application.js:1559 -msgid "Enter Support Case:" -msgstr "Ingresar caso de soporte:" +msgid "%{label} is not in the current region and will be skipped" +msgstr "%{label} no se encuentra en la región actual y será omitida" -#: ../app/assets/javascripts/miq_application.js:1563 -msgid "Support Case must be provided to collect logs" -msgstr "Se debe suministrar el caso de asistencia para recopilar registros" +msgid "%{log_description} log downloaded" +msgstr "%{log_description} log descargado" -#: ../app/assets/javascripts/miq_application.js:1575 -msgid "Are you sure you want to reset this Dashboard's Widgets to the defaults?" +msgid "%{message} %{key}:[%{old_value}] to [%{new_value}]" msgstr "" -"¿Está seguro de que desea restablecer los asistentes de este panel de control " -"a los valores predeterminados?" - -#: ../app/assets/javascripts/miq_formatters.js:253 -#: ../app/helpers/ui_constants.rb:290 -#: ../app/views/report/_form_filter_chargeback.html.haml:254 -msgid "Day" -msgstr "Día" -#: ../app/assets/javascripts/miq_formatters.js:253 -#: ../app/helpers/ui_constants.rb:298 -msgid "Hour" -msgstr "Hora" - -#: ../app/assets/javascripts/miq_formatters.js:253 -msgid "Minute" -msgstr "Minuto" - -#: ../app/assets/javascripts/miq_formatters.js:253 -msgid "Second" -msgstr "Segundo" - -#: ../app/assets/javascripts/miq_tree.js:336 -msgid "New name?" -msgstr "¿Nuevo nombre?" +msgid "%{message} %{key}:[%{old_value}] to [new_value]" +msgstr "%{message} %{key}:[%{old_value}] a [new_value]" -#: ../app/assets/javascripts/miq_tree.js:360 -msgid "New Folder" -msgstr "Nueva carpeta" +msgid "%{message} %{key}:[*] to [*]" +msgstr "%{message} %{key}:[*] a [*]" -#: ../app/assets/javascripts/miq_tree.js:409 -msgid "Collapse All" -msgstr "Contraer todo" +msgid "%{missing_field_name} is required" +msgstr "" -#: ../app/assets/javascripts/miq_tree.js:414 -#: ../app/views/configuration/_ui_3.html.haml:17 -#: ../app/views/miq_policy/_rsop_results.html.haml:86 -#: ../app/views/shared/views/_compliance_history.html.haml:5 -#: ../app/views/vm_common/_policies.html.haml:15 -msgid "Expand All" -msgstr "Expandir todo" +msgid "%{model_name} Group Reorder cancelled" +msgstr "%{model_name} Reordenamiento de grupos cancelado" -#: ../app/assets/javascripts/services/event_notifications_service.js:54 -#: ../app/controllers/miq_policy_controller.rb:1104 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:27 -#: ../app/views/miq_policy/_policy_details.html.haml:303 -msgid "Events" -msgstr "Eventos" +msgid "%{model_name} Group Reorder saved" +msgstr "%{model_name} Reordenamiento de grupos guardado" -#: ../app/assets/javascripts/services/event_notifications_service.js:62 -#: ../app/presenters/menu/default_menu.rb:250 -msgid "Tasks" -msgstr "Tareas" +msgid "%{models} Group Reorder" +msgstr "%{models} Reordenamiento de grupos " -#: ../app/assets/javascripts/services/miq_service.js:47 -msgid "Click to remove messages" -msgstr "Haga clic para eliminar mensajes" +msgid "%{models} can not be deleted" +msgstr "%{models} no pueden ser eliminados" -#: ../app/assets/javascripts/services/post_service.js:18 -msgid "Error during Save: [%s - %s]" -msgstr "Error durante el guardado: [%s - %s]" +msgid "%{models} no longer exists" +msgstr "%{models} ya no existe" -#: ../app/assets/javascripts/services/post_service.js:40 -msgid "Error during Add: [%s - %s]" -msgstr "Error durante la adición [%s - %s]" +msgid "%{model} \"%{name}\"" +msgstr " %{model} \"%{name}\"" -#: ../app/assets/javascripts/services/topology_service.js:4 -msgid "Name: " -msgstr "Nombre: " +msgid "%{model} \"%{name}\" (Summary)" +msgstr "%{model} \"%{name}\" (Resumen)" -#: ../app/assets/javascripts/services/topology_service.js:5 -msgid "Type: " -msgstr "Clase: " +msgid "%{model} \"%{name}\" Bottlenecks Summary" +msgstr "%{model} \"%{name}\" resumen de cuellos de botella" -#: ../app/assets/javascripts/services/topology_service.js:6 -msgid "Status: " -msgstr "Estado: " +msgid "%{model} \"%{name}\" Utilization Trend Summary" +msgstr "%{model} \"%{name}\" resumen de tendencias de uso" -#: ../app/controllers/alert_controller.rb:22 -msgid "All RSS Feeds" -msgstr "Todas las Fuentes RSS" +msgid "%{model} \"%{name}\" already exists" +msgstr "%{model} \"%{name}\" ya existe" -#: ../app/controllers/alert_controller.rb:25 -msgid "%{name} RSS Feeds" -msgstr "%{name} Fuentes RSS" +msgid "%{model} \"%{name}\" cannot be removed because it is attached to one or more %{instances}" +msgstr "%{model} \"%{name}\" no puede ser eliminado porque está asociado a una o más %{instances}" -#: ../app/controllers/alert_controller.rb:42 -msgid "Requested feed is invalid" -msgstr "La fuente solicitada no es válida" +msgid "%{model} \"%{name}\" created" +msgstr "%{model} \"%{name}\" creado" -#: ../app/controllers/alert_controller.rb:66 -#: ../app/presenters/menu/default_menu.rb:27 -msgid "RSS" -msgstr "RSS" +msgid "%{model} \"%{name}\" is not attached to any %{instances}" +msgstr "%{model} \"%{name}\" no está asociado a ninguna %{instances}" -#: ../app/controllers/application_controller.rb:119 -msgid "Action not implemented" -msgstr "Accion no implementada" +msgid "%{model} \"%{name}\" successfully added to Service \"%{to_name}\"" +msgstr "%{model} \"%{name}\" ha sido agregado al servicio \"%{to_name}\"" -#: ../app/controllers/application_controller.rb:121 -msgid "Unknown Action" -msgstr "Acción desconocida" +msgid "%{model} \"%{name}\" updated" +msgstr "%{model} \"%{name}\" ha sido actualizado" -#: ../app/controllers/application_controller.rb:204 -msgid "Invalid input for \"wait_for_task\"." -msgstr "Entrada no válida para \"wait_for_task\"." +msgid "%{model} \"%{name}\" was added" +msgstr "%{model} \"%{name}\" ha sido agregado" -#: ../app/controllers/application_controller.rb:256 -#: ../app/helpers/host_helper/textual_summary.rb:481 -#: ../app/views/layouts/listnav/_host.html.haml:84 -msgid "ESX Logs" -msgstr "Registros ESX" +msgid "%{model} \"%{name}\" was saved" +msgstr "%{model} \"%{name}\" ha sido almacenado" -#: ../app/controllers/application_controller.rb:256 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:240 -#: ../app/helpers/vm_helper/textual_summary.rb:673 -msgid "Event Logs" -msgstr "Registros de eventos" +msgid "%{model} \"%{name}\" was updated" +msgstr "%{model} \"%{name}\" fue actualizado" -#: ../app/controllers/application_controller.rb:339 -#: ../app/controllers/miq_capacity_controller.rb:19 -#: ../app/controllers/miq_capacity_controller.rb:773 -#: ../app/helpers/application_helper/toolbar/availability_zone_center.rb:28 -#: ../app/helpers/application_helper/toolbar/container_center.rb:21 -#: ../app/helpers/application_helper/toolbar/container_group_center.rb:22 -#: ../app/helpers/application_helper/toolbar/container_node_center.rb:22 -#: ../app/helpers/application_helper/toolbar/container_project_center.rb:22 -#: ../app/helpers/application_helper/toolbar/container_replicator_center.rb:22 -#: ../app/helpers/application_helper/toolbar/container_service_center.rb:13 -#: ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:56 -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:55 -#: ../app/helpers/application_helper/toolbar/host_center.rb:127 -#: ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:13 -#: ../app/helpers/application_helper/toolbar/middleware_messaging_center.rb:14 -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:14 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:106 -#: ../app/helpers/application_helper/toolbar/ontap_file_share_center.rb:43 -#: ../app/helpers/application_helper/toolbar/ontap_logical_disk_center.rb:28 -#: ../app/helpers/application_helper/toolbar/ontap_storage_system_center.rb:43 -#: ../app/helpers/application_helper/toolbar/ontap_storage_volume_center.rb:28 -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:163 -#: ../app/helpers/application_helper/toolbar/storage_center.rb:52 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:112 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:157 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:112 -#: ../app/presenters/menu/default_menu.rb:241 -#: ../app/views/ops/_all_tabs.html.haml:187 -#: ../app/views/ops/_all_tabs.html.haml:295 -msgid "Utilization" -msgstr "Utilización" +msgid "%{model} \"%{name}\": %{task} successfully initiated" +msgstr "%{model} \"%{name}\": %{task} ha sido inicializado correctamente" -#: ../app/controllers/application_controller.rb:375 -msgid "PXE Credentials successfuly validated" -msgstr "Credenciales de PXE validadas con éxito" +msgid "%{model} \"%{name}\": Delete successful" +msgstr "\"%{name}\" %{model}: Eliminado con éxito" -#: ../app/controllers/application_controller.rb:378 -#: ../app/controllers/ops_controller/settings/schedules.rb:261 -msgid "Depot Settings successfuly validated" -msgstr "La configuración del almacén se validó correctamente." +msgid "%{model} \"%{name}\": Error during '%{task}': " +msgstr "\"%{name}\" %{model}: Error durante '%{task}': " -#: ../app/controllers/application_controller.rb:382 -msgid "Error during 'Validate': %{error_message}" -msgstr "Error durante 'Validar': %{error_message}" +msgid "%{model} \"%{name}\": Error during '%{task}': %{error_message}" +msgstr "\"%{name}\" %{model}: Error durante '%{task}': %{error_message}" -#: ../app/controllers/application_controller.rb:420 -#: ../app/controllers/report_controller/menus.rb:358 -msgid "No fields were selected to move left" -msgstr "No se seleccionaron campos para mover a la izquierda" +msgid "%{model} \"%{name}\": Error during '%{task}': %{error_msg}" +msgstr "%{model} \"%{name}\": Error durante '%{task}': %{error_msg}" -#: ../app/controllers/application_controller.rb:421 -#: ../app/controllers/report_controller/menus.rb:373 -msgid "No fields were selected to move right" -msgstr "No se seleccionaron campos para mover a la derecha" +msgid "%{model} \"%{name}\": Error during '%{task}': %{message}" +msgstr " \"%{name}\" %{model}: Error durante '%{task}': %{message}" -#: ../app/controllers/application_controller.rb:595 -#: ../app/controllers/chargeback_controller.rb:381 -#: ../app/controllers/report_controller/saved_reports.rb:77 -#: ../app/helpers/application_helper/button/chargeback_download_choice.rb:3 -#: ../app/helpers/application_helper/button/chargeback_report_only.rb:3 -#: ../app/helpers/application_helper/button/utilization_download.rb:13 -#: ../app/helpers/application_helper/toolbar_builder.rb:809 -#: ../app/helpers/application_helper/toolbar_builder.rb:815 -msgid "No records found for this report" -msgstr "No hay registros para este informe" +msgid "%{model} \"%{name}\": Error during 'Analysis': %{message}" +msgstr "%{model} \"%{name}\": Error durante 'Analysis': %{message}" -#: ../app/controllers/application_controller.rb:617 -msgid "" -"Edit aborted! %{product} does not support the browser's back button or access" -" from multiple tabs or windows of the same browser. Please close any duplicat" -"e sessions before proceeding." +msgid "%{model} \"%{name}\": Error during 'Check Compliance': %{error}" msgstr "" -"Se anuló la edición. %{product} no soporta el botón Atrás del navegador ni el " -"acceso desde varias pestañas o ventanas del mismo navegador. Cierre las sesion" -"es duplicadas antes de continuar." -#: ../app/controllers/application_controller.rb:719 -msgid "%{tenant_name} (All %{groups})" -msgstr "%{tenant_name} (Todos los %{groups})" +msgid "%{model} \"%{name}\": Error during 'delete': %{error_message}" +msgstr "\"%{name}\" %{model}: Error al 'eliminar': %{error_message}" -#: ../app/controllers/application_controller.rb:721 -msgid "%{tenant_name} (%{group}): %{group_description}" -msgstr "%{tenant_name} (%{group}): %{group_description}" +msgid "%{model} \"%{name}\": Error during 'miq_report_delete': %{message}" +msgstr "%{model} \"%{name}\": Error durante 'miq_report_delete': %{message}" -#: ../app/controllers/application_controller.rb:877 -msgid "View this item" -msgstr "Ver este ítem" +msgid "%{model} \"%{name}\": Error during delete: %{error_msg}" +msgstr "%{model} \"%{name}\": Error durante la eliminación: %{error_msg}" -#: ../app/controllers/application_controller.rb:1037 -#: ../app/controllers/vm_common.rb:1355 -msgid " (Names with \"%{search_text}\")" -msgstr "(Nombres con \"%{search_text}\")" +msgid "%{model} (%{tag} running %{time})" +msgstr "%{model} (%{tag} en ejecución a las %{time})" -#: ../app/controllers/application_controller.rb:1077 -#: ../app/controllers/application_controller.rb:2303 -#: ../app/controllers/dashboard_controller.rb:599 -#: ../app/controllers/ontap_file_share_controller.rb:48 -#: ../app/controllers/ontap_storage_system_controller.rb:53 -msgid "The user is not authorized for this task or item." -msgstr "El usuario no está autorizado para esta tarea o ítem" +msgid "%{model} Alert Profiles" +msgstr "Perfiles de alertas %{model} " -#: ../app/controllers/application_controller.rb:1152 -#: ../app/views/vm_common/_reconfigure.html.haml:78 -#: ../app/views/vm_common/_right_size.html.haml:213 -#: ../app/views/vm_common/_right_size.html.haml:297 -#: ../app/views/vm_common/_right_size.html.haml:380 -msgid "Processors" -msgstr "Procesadores" +msgid "%{model} Analysis" +msgstr "Análisis de %{model} " -#: ../app/controllers/application_controller.rb:1157 -msgid "CPU Type" -msgstr "Tipo de CPU" +msgid "%{model} Condition \"%{name}\"" +msgstr "%{model} Condición \"%{name}\"" -#: ../app/controllers/application_controller.rb:1160 -#: ../app/views/miq_capacity/_planning_options.html.haml:148 -#: ../app/views/miq_capacity/_planning_options.html.haml:320 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:16 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:67 -msgid "CPU Speed" -msgstr "Velocidad de la CPU" +msgid "%{model} Order was cancelled by the user" +msgstr "%{model} La orden fue cancelada por el usuario" -#: ../app/controllers/application_controller.rb:1182 -msgid ", Connect at Power On = No" -msgstr "Conectar al arrancar = No" +msgid "%{model} [%{name} - Updated %{time}%{update}]" +msgstr "%{model} [%{name} - Actualizado a las %{time})%{update}]" -#: ../app/controllers/application_controller.rb:1182 -msgid ", Connect at Power On = Yes" -msgstr "Conectar al arrancar = Si" +msgid "%{model} for %{group} \"%{name}\"" +msgstr "%{model} para %{group} \"%{name}\"" -#: ../app/controllers/application_controller.rb:1186 -msgid "CD-ROM (IDE %{location})%{connection}" -msgstr "CD-ROM (IDE %{location})%{connection}" +msgid "%{model} must contain at least one %{field}" +msgstr "%{model} debe contener al menos un %{field}" -#: ../app/controllers/application_controller.rb:1189 -msgid "ATAPI CD-ROM (IDE %{location})%{connection}" -msgstr "ATAPI CD-ROM (IDE %{location})%{connection}" +msgid "%{model} no longer exists" +msgstr "%{model} ya no existe" -#: ../app/controllers/application_controller.rb:1192 -msgid "CD-ROM Image (IDE %{location})%{connection}" -msgstr "Imagen del CD-ROM (IDE %{location})%{connection}" +msgid "%{model} no longer exists." +msgstr "%{model} ya no existe." -#: ../app/controllers/application_controller.rb:1197 -#: ../app/controllers/application_controller.rb:1215 -msgid "Hard Disk (IDE %{location})" -msgstr "Disco duro (IDE %{location})" +msgid "%{model} search \"%{name}\" was saved" +msgstr "%{model} \"%{name}\" buscado fue almacenado" -#: ../app/controllers/application_controller.rb:1199 -#: ../app/controllers/application_controller.rb:1229 -msgid "Hard Disk (SCSI %{location})" -msgstr "Disco duro (SCSI %{location})" +msgid "%{model} search \"%{name}\" was successfully loaded" +msgstr "%{model} \"%{name}\" buscado fue cargado con éxito" -#: ../app/controllers/application_controller.rb:1203 -#: ../app/controllers/application_controller.rb:1217 -#: ../app/controllers/application_controller.rb:1231 -msgid ", Size: %{number}" -msgstr ", Tamaño: %{number}" +msgid "%{model} search \"%{name}\": Delete successful" +msgstr "%{model} \"%{name}\" buscado: Eliminado con éxito" -#: ../app/controllers/application_controller.rb:1206 -#: ../app/controllers/application_controller.rb:1220 -#: ../app/controllers/application_controller.rb:1234 -msgid ", Size on disk: %{number}" -msgstr ", Tamaño en el disco: %{number}" +msgid "%{model} under %{record_model} \"%{name}\"" +msgstr "%{model} bajo %{record_model} \"%{name}\"" -#: ../app/controllers/application_controller.rb:1210 -#: ../app/controllers/application_controller.rb:1223 -#: ../app/controllers/application_controller.rb:1238 -msgid ", Percent Used Provisioned Space: %{number}%%" -msgstr ", Porcentaje usado de espacio provisionado: %{number}%%" +msgid "%{model} under Inventory Group \"%{name}\"" +msgstr "%{model} en Grupo de inventario \"%{name}\"" -#: ../app/controllers/application_controller.rb:1213 -#: ../app/controllers/application_controller.rb:1226 -#: ../app/controllers/application_controller.rb:1241 -msgid ", Mode: %{mode}" -msgstr "Modo: %{mode}" +msgid "%{model} under Unassigned Profiles Group" +msgstr "%{model} bajo Perfiles de Grupo no ha sido asignado" -#: ../app/controllers/application_controller.rb:1244 -msgid "Generic SCSI (%{location})" -msgstr "SCSI genérico (%{location})" +msgid "%{model}: %{name}" +msgstr "%{model}: %{name}" -#: ../app/controllers/application_controller.rb:1271 -msgid "Default Adapter" -msgstr "Adaptador predeterminado" +msgid "%{model}: %{task} successfully initiated" +msgstr "%{model}: %{task} inicializada con éxito" -#: ../app/controllers/application_controller.rb:1287 -#: ../app/controllers/application_controller/miq_request_methods.rb:311 -#: ../app/controllers/application_controller/miq_request_methods.rb:407 -#: ../app/helpers/host_helper/textual_summary.rb:166 -#: ../app/helpers/textual_mixins/textual_os_info.rb:3 -#: ../app/views/provider_foreman/_main.html.haml:11 -#: ../app/views/provider_foreman/_main_configuration_profile.html.haml:11 -msgid "Operating System" -msgstr "Sistema operativo" +msgid "%{model}: Discovery successfully initiated" +msgstr "%{model}: La detección ha iniciado" -#: ../app/controllers/application_controller.rb:1289 -msgid "Service Pack" -msgstr "Paquete de servicio" +msgid "%{name} '%{vm_name}' Drift Report" +msgstr "%{name} '%{vm_name}' Informe de desviación" -#: ../app/controllers/application_controller.rb:1291 -msgid "Product ID" -msgstr "ID del producto" +msgid "%{name} (%{table}(s))" +msgstr "%{name} (%{table}(s))" -#: ../app/controllers/application_controller.rb:1293 -#: ../app/controllers/application_controller.rb:1325 -#: ../app/controllers/application_controller.rb:1338 -#: ../app/controllers/application_controller/miq_request_methods.rb:446 -#: ../app/helpers/ops_helper/textual_summary.rb:49 -#: ../app/views/layouts/_about_modal.html.haml:26 -#: ../app/views/miq_policy/_action_details.html.haml:355 -#: ../app/views/miq_policy/_action_options.html.haml:395 -#: ../app/views/miq_policy/_alert_details.html.haml:362 -#: ../app/views/miq_policy/_alert_snmp.html.haml:64 -msgid "Version" -msgstr "Versión" +msgid "%{name} (All %{children})" +msgstr "%{name} (Todos los %{children})" -#: ../app/controllers/application_controller.rb:1295 -#: ../app/controllers/application_controller.rb:1327 -msgid "Build Number" -msgstr "Número de compilación" +msgid "%{name} (All %{tables})" +msgstr "%{name} (Todas las %{tables})" -#: ../app/controllers/application_controller.rb:1297 -msgid "System Type" -msgstr "Tipo de sistema" +msgid "%{name} (All %{titles})" +msgstr "%{name} (Todos los %{titles})" -#: ../app/controllers/application_controller.rb:1299 -msgid "Password History" -msgstr "Historial de contraseña" +msgid "%{name} (All %{title})" +msgstr "%{name} (Todos los %{title})" -#: ../app/controllers/application_controller.rb:1301 -msgid "Max Password Age" -msgstr "Antigüedad máx. de la contraseña" +msgid "%{name} (All Registered %{title})" +msgstr "%{name} (Todos los %{title} registrados)" -#: ../app/controllers/application_controller.rb:1303 -msgid "Min Password Age" -msgstr "Antigüedad mín. de la contraseña" +msgid "%{name} (All Registered Hosts)" +msgstr "%{name} (Todos los Hosts registrados)" -#: ../app/controllers/application_controller.rb:1305 -msgid "Min Password Length" -msgstr "Longitud mín. de la contraseña" +msgid "%{name} (All Resource Pools)" +msgstr "%{name} (Todo el repositorio de recursos)" -#: ../app/controllers/application_controller.rb:1307 -msgid "Password Complex" -msgstr "Complejidad de la contraseña" +msgid "%{name} (All VMs - Tree View)" +msgstr "%{name} (Todas las MV - Vista de árbol)" -#: ../app/controllers/application_controller.rb:1309 -msgid "Password Encrypt" -msgstr "Cifrado de contraseña" +msgid "%{name} (All cloud tenants present on this host)" +msgstr "%{name} (Todos los inquilinos de nube presentes en este host)" -#: ../app/controllers/application_controller.rb:1311 -msgid "Lockout Threshold" -msgstr "Umbral de bloqueo" +msgid "%{name} (Applications)" +msgstr "%{name} (Aplicaciones)" -#: ../app/controllers/application_controller.rb:1313 -msgid "Lockout Duration" -msgstr "Duración del bloqueo" +msgid "%{name} (Compliance History - Last %{number} Checks)" +msgstr "%{name} Histórico de Cumplimiento- Últimas %{number} comprobaciones)" -#: ../app/controllers/application_controller.rb:1315 -msgid "Reset Lockout Counter" -msgstr "Restablecer el contador de bloqueos" +msgid "%{name} (Devices)" +msgstr "%{name} (Dispositivos)" -#: ../app/controllers/application_controller.rb:1321 -#: ../app/controllers/application_controller.rb:1334 -#: ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:21 -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:35 -#: ../app/helpers/ops_helper/textual_summary.rb:45 -msgid "Vendor" -msgstr "Proveedor" +msgid "%{name} (Disks)" +msgstr "%{name} (Discos)" -#: ../app/controllers/application_controller.rb:1323 -msgid "Product" -msgstr "Producto" +msgid "%{name} (Groups)" +msgstr "%{name} (Grupos)" -#: ../app/controllers/application_controller.rb:1336 -#: ../app/views/report/_form_formatting.html.haml:58 -msgid "Format" -msgstr "Formato" +msgid "%{name} (Hosts)" +msgstr "%{name} (Hosts)" -#: ../app/controllers/application_controller.rb:1342 -msgid "" -msgstr "" +msgid "%{name} (Latest Compliance Check)" +msgstr "%{name} (Último conttrol de cumplimiento)" -#: ../app/controllers/application_controller.rb:1346 -#: ../app/views/miq_policy/_alert_profile_details.html.haml:150 -#: ../app/views/miq_policy/_alert_profile_details.html.haml:174 -#: ../app/views/miq_policy/_condition_details.html.haml:95 -#: ../app/views/miq_policy/_condition_details.html.haml:112 -#: ../app/views/miq_policy/_policy_details.html.haml:385 -#: ../app/views/miq_policy/_policy_details.html.haml:402 -#: ../app/views/miq_policy/_profile_details.html.haml:161 -#: ../app/views/miq_policy/_profile_details.html.haml:180 -msgid "Notes" -msgstr "Notas" +msgid "%{name} (Network)" +msgstr "%{name} (Red)" -#: ../app/controllers/application_controller.rb:1390 -#: ../app/controllers/application_controller/ci_processing.rb:2345 -#: ../app/controllers/application_controller/ci_processing.rb:2355 -#: ../app/controllers/application_controller/ci_processing.rb:2363 -#: ../app/controllers/application_controller/ci_processing.rb:2394 -#: ../app/controllers/application_controller/ci_processing.rb:2403 -#: ../app/controllers/application_controller/ci_processing.rb:2412 -#: ../app/controllers/application_controller/ci_processing.rb:2421 -#: ../app/controllers/application_controller/ci_processing.rb:2611 -#: ../app/controllers/miq_task_controller.rb:222 -msgid "\"%{record}\": %{task} successfully initiated" -msgstr "\"%{record}\": %{task} inicializada con éxito" +msgid "%{name} (OS Information)" +msgstr "%{name} (Información del SO)" -#: ../app/controllers/application_controller.rb:1395 -msgid "Successfully deleted Saved Report from the %{product} Database" -msgid_plural "Successfully deleted Saved Reports from the %{product} Database" -msgstr[0] "Informe guardado eliminado con éxito desde la base de datos del %{product}" -msgstr[1] "Informes guardados eliminados con éxito desde la base de datos del %{product}" +msgid "%{name} (Packages)" +msgstr "%{name} (Paquetes)" -#: ../app/controllers/application_controller.rb:1399 -msgid "Error during Saved Report delete from the %{product} Database" -msgid_plural "Error during Saved Reports delete from the %{product} Database" -msgstr[0] "" -"Error durante la eliminación del informe guardado de la base de datos del %{pr" -"oduct}" -msgstr[1] "" -"Error durante la eliminación de informes guardados de la base de datos del %{p" -"roduct}" +msgid "%{name} (Patches)" +msgstr "%{name} (Parches)" -#: ../app/controllers/application_controller.rb:1412 -msgid "The selected %{label} is not in the current region" -msgstr "La %{label} seleccionada no está en la región actual" +msgid "%{name} (Storage Adapters)" +msgstr "%{name} (Adaptadores de Almacenamiento)" -#: ../app/controllers/application_controller.rb:1414 -msgid "All selected %{labels} are not in the current region" -msgstr "Todas las %{labels} seleccionadas no están en la región actual" +msgid "%{name} (Summary)" +msgstr "%{name} (Resumen)" -#: ../app/controllers/application_controller.rb:1417 -msgid "%{label} is not in the current region and will be skipped" -msgstr "%{label} no se encuentra en la región actual y será omitida" +msgid "%{name} (Users)" +msgstr "%{name} (Usuarios)" -#: ../app/controllers/application_controller.rb:1419 -msgid "%{labels} are not in the current region and will be skipped" -msgstr "%{labels} no se encuentran en la región actual y serán omitidas" +msgid "%{name} (VM Monitor Information)" +msgstr "%{name} (Información de seguimiento de MV)" -#: ../app/controllers/application_controller.rb:2208 -#: ../app/controllers/infra_networking_controller.rb:723 -#: ../app/controllers/provider_foreman_controller.rb:1155 -#: ../app/controllers/storage_controller.rb:337 -msgid "Invalid input" -msgstr "Entrada no válida" +msgid "%{name} (no longer exists)" +msgstr "%{name} (ya no existe)" -#: ../app/controllers/application_controller.rb:2212 -msgid "Selected %{model_name} no longer exists" -msgstr "El %{model_name} seleccionado ya no existe" +msgid "%{name} Capacity & Utilization" +msgstr "%{name} Capacidad y Uso" -#: ../app/controllers/application_controller.rb:2217 -msgid "" -"User '%{user_id}' is not authorized to access '%{model}' record id '%{record_i" -"d}'" -msgstr "" -"El usuario '%{user_id}' no está autorizado para acceder al registro '%{model}'" -" id de registro '%{record_id}'" +msgid "%{name} Capacity & Utilization (by %{option}:%{model})" +msgstr "%{name} Capacidad y Uso (para %{option}:%{model})" -#: ../app/controllers/application_controller.rb:2280 -msgid "%{record_name} no longer exists in the database" -msgstr "%{record_name} ya no existe en la base de datos" +msgid "%{name} Compare Report (* = Value does not match base)" +msgstr "%{name} Report comparado (* = El valor no coincide)" -#: ../app/controllers/application_controller.rb:2282 -msgid "You are not authorized to view %{model_name} '%{resource_name}'" -msgstr "No está autorizado a ver %{model_name} '%{resource_name}'" +msgid "%{name} Configured Systems" +msgstr "%{name} Sistemas configurados" -#: ../app/controllers/application_controller.rb:2308 -msgid "Unauthorized object or action" -msgstr "El objeto o acción no están autorizados" +msgid "%{name} Providers" +msgstr "%{name} Proveedores" -#: ../app/controllers/application_controller.rb:2346 -msgid "%{task} does not apply to at least one of the selected %{model}" -msgstr "%{task} no se aplica por lo menos a uno de los %{model} seleccionados" +msgid "%{name} RSS Feeds" +msgstr "%{name} Fuentes RSS" -#: ../app/controllers/application_controller.rb:2350 -msgid "%{task} does not apply to at least one of the selected items" -msgstr "" +msgid "%{name} Tags" +msgstr "%{name} Etiquetas" -#: ../app/controllers/application_controller/automate.rb:6 -msgid "Automation Simulation has been run" -msgstr "La simulación automatizada ha sido ejecutada" +msgid "%{name} dashboard for user %{id} in group id %{current_group_id}" +msgstr "%{name} panel de control para el usuario %{id} con id de grupo %{current_group_id}" -#: ../app/controllers/application_controller/automate.rb:21 -msgid "Automation Error: %{error_message}" -msgstr "Automatización Error: %{error_message}" +msgid "%{name} domain: Current version - %{version}, Available version - %{available_version}" +msgstr "Dominio %{name}:Versión actual - %{version}, Versión disponible - %{available_version}" -#: ../app/controllers/application_controller/automate.rb:102 -#: ../app/controllers/miq_policy_controller/rsop.rb:51 -#: ../app/views/layouts/_tl_options.html.haml:16 -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:110 -#: ../app/views/miq_capacity/_bottlenecks_options.html.haml:6 -#: ../app/views/miq_capacity/_utilization_options.html.haml:7 -#: ../app/views/miq_request/_reconfigure_show.html.haml:7 -#: ../app/views/ontap_file_share/_create_datastore.html.haml:9 -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:6 -#: ../app/views/vm_common/_policy_options.html.haml:7 -#: ../app/views/vm_common/_reconfigure.html.haml:9 -msgid "Options" -msgstr "Opciones" +msgid "%{name} is currently being used in the Display Filter" +msgstr "%{name} está siendo utilizado por el filtro de visualización" -#: ../app/controllers/application_controller/automate.rb:129 -msgid "Resolve" -msgstr "Resolver" +msgid "%{name} is required" +msgstr "%{name} es obligatorio" -#: ../app/controllers/application_controller/automate.rb:131 -#: ../app/presenters/menu/default_menu.rb:216 -#: ../app/presenters/menu/default_menu.rb:230 -msgid "Simulation" -msgstr "Simulación" +msgid "%{name} is the base" +msgstr "%{name} es la base" -#: ../app/controllers/application_controller/buttons.rb:18 -msgid "%{model_name} Group Reorder cancelled" -msgstr "%{model_name} Reordenamiento de grupos cancelado" +msgid "%{name}: '%{task}' successfully initiated" +msgstr "%{name}: '%{task}' se inició con éxito" -#: ../app/controllers/application_controller/buttons.rb:43 -msgid "%{model_name} Group Reorder saved" -msgstr "%{model_name} Reordenamiento de grupos guardado" +msgid "%{name}: Delete successful" +msgstr "%{name}: Borrado con éxito" -#: ../app/controllers/application_controller/buttons.rb:75 -msgid "No Button Group was selected!" -msgstr "No se seleccionó ningún grupo de botones" +msgid "%{name}: Error during '%{task}': %{message}" +msgstr "%{name}: Error durante '%{task}': %{message}" -#: ../app/controllers/application_controller/buttons.rb:151 -#: ../app/controllers/application_controller/buttons.rb:228 -#: ../app/controllers/application_controller/ci_processing.rb:1583 -#: ../app/controllers/miq_ae_class_controller.rb:2590 -#: ../app/controllers/miq_request_controller.rb:569 -#: ../app/controllers/miq_task_controller.rb:219 -#: ../app/controllers/ops_controller/diagnostics.rb:713 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:194 -#: ../app/controllers/ops_controller/settings/tags.rb:24 -#: ../app/controllers/ops_controller/settings/zones.rb:70 -#: ../app/controllers/report_controller/reports.rb:101 -#: ../app/controllers/storage_manager_controller.rb:458 -msgid "%{model} \"%{name}\": Delete successful" -msgstr "\"%{name}\" %{model}: Eliminado con éxito" +msgid "%{name}:[%{key}] to [%{new_key}]" +msgstr "%{name}:[%{key}] a [%{new_key}]" -#: ../app/controllers/application_controller/buttons.rb:210 -msgid "'Unassigned Buttons Group' can not be deleted" -msgstr "'Unassigned Buttons Group' no puede ser eliminado" +msgid "%{number} (%{percentage} of Used Space, %{amount} file)" +msgid_plural "%{number} (%{percentage} of Used Space, %{amount} files)" +msgstr[0] "%{number} (%{percentage} de espacio utilizado, %{amount} archivo)" +msgstr[1] "%{number} (%{percentage} de espacio utilizado, %{amount} archivos)" -#: ../app/controllers/application_controller/buttons.rb:260 -msgid "No url was returned from automate." -msgstr "" +msgid "%{number} (Virtual to Real Ratio: %{ratio})" +msgstr "%{number} (Virtual a Proporción real : %{ratio})" -#: ../app/controllers/application_controller/buttons.rb:272 -msgid "%{record} - \"%{button_text}\"" -msgstr "%{record} - \"%{button_text}\"" +msgid "%{number} Day" +msgid_plural "%{number} Days" +msgstr[0] "%{number} día" +msgstr[1] "%{number} días" -#: ../app/controllers/application_controller/buttons.rb:286 -msgid "Error executing: \"%{task_description}\" %{error_message}" -msgstr "Error al ejecutar: \"%{task_description}\" %{error_message}" +msgid "%{number} Days Ago" +msgstr "%{number} días atrás" -#: ../app/controllers/application_controller/buttons.rb:289 -msgid "\"%{task_description}\" was executed" -msgstr "\"%{task_description}\" fue ejecutada" +msgid "%{number} Hour" +msgid_plural "%{number} Hours" +msgstr[0] "%{number} hora" +msgstr[1] "%{number} horas" -#: ../app/controllers/application_controller/buttons.rb:304 -#: ../app/controllers/application_controller/buttons.rb:426 -#: ../app/controllers/catalog_controller.rb:89 -#: ../app/controllers/catalog_controller.rb:558 -#: ../app/controllers/chargeback_controller.rb:105 -#: ../app/controllers/cloud_tenant_controller.rb:142 -#: ../app/controllers/cloud_volume_controller.rb:320 -#: ../app/controllers/configuration_controller.rb:398 -#: ../app/controllers/ems_common.rb:288 -#: ../app/controllers/host_aggregate_controller.rb:253 -#: ../app/controllers/host_controller.rb:347 -#: ../app/controllers/miq_ae_class_controller.rb:571 -#: ../app/controllers/miq_ae_class_controller.rb:974 -#: ../app/controllers/miq_ae_class_controller.rb:1061 -#: ../app/controllers/miq_ae_class_controller.rb:1101 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:194 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:247 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:13 -#: ../app/controllers/miq_policy_controller/alerts.rb:13 -#: ../app/controllers/miq_policy_controller/conditions.rb:11 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:11 -#: ../app/controllers/miq_policy_controller/policies.rb:11 -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:13 -#: ../app/controllers/mixins/ems_common_angular.rb:17 -#: ../app/controllers/ops_controller/ops_rbac.rb:111 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:226 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:12 -#: ../app/controllers/ops_controller/settings/ldap.rb:39 -#: ../app/controllers/ops_controller/settings/ldap.rb:156 -#: ../app/controllers/ops_controller/settings/schedules.rb:50 -#: ../app/controllers/ops_controller/settings/tags.rb:44 -#: ../app/controllers/ops_controller/settings/zones.rb:9 -#: ../app/controllers/pxe_controller/iso_datastores.rb:171 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:102 -#: ../app/controllers/pxe_controller/pxe_image_types.rb:29 -#: ../app/controllers/pxe_controller/pxe_servers.rb:46 -#: ../app/controllers/pxe_controller/pxe_servers.rb:191 -#: ../app/controllers/pxe_controller/pxe_servers.rb:242 -#: ../app/controllers/report_controller/reports/editor.rb:43 -#: ../app/controllers/report_controller/schedules.rb:227 -#: ../app/controllers/report_controller/widgets.rb:49 -#: ../app/controllers/storage_manager_controller.rb:158 -#: ../app/controllers/vm_common.rb:919 ../app/controllers/vm_common.rb:923 -msgid "Edit of %{model} \"%{name}\" was cancelled by the user" -msgstr "La edición de %{model} \"%{name}\" fue cancelado por el usuario" +msgid "%{number} Month" +msgid_plural "%{number} Months" +msgstr[0] "%{number} mes" +msgstr[1] "%{number} meses" -#: ../app/controllers/application_controller/buttons.rb:307 -#: ../app/controllers/application_controller/buttons.rb:428 -msgid "Add of new %{model_name} was cancelled by the user" -msgstr "La adición de un nuevo %{model_name} fue cancelado por el usuario" +msgid "%{number} Week" +msgid_plural "%{number} Weeks" +msgstr[0] "%{number} semana" +msgstr[1] "%{number} semanas" -#: ../app/controllers/application_controller/buttons.rb:318 -#: ../app/controllers/catalog_controller.rb:310 -#: ../app/controllers/catalog_controller.rb:854 -#: ../app/controllers/miq_ae_class_controller.rb:576 -#: ../app/controllers/miq_ae_class_controller.rb:624 -#: ../app/controllers/miq_ae_class_controller.rb:2079 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:255 -#: ../app/controllers/ontap_file_share_controller.rb:100 -#: ../app/controllers/ontap_storage_system_controller.rb:108 -#: ../app/controllers/ops_controller/settings/ldap.rb:50 -#: ../app/controllers/ops_controller/settings/ldap.rb:167 -#: ../app/controllers/ops_controller/settings/tags.rb:55 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:115 -#: ../app/controllers/pxe_controller/pxe_image_types.rb:164 -#: ../app/controllers/pxe_controller/pxe_servers.rb:292 -msgid "Name is required" -msgstr "El nombre es obligatorio" +msgid "%{number} bytes" +msgstr "%{number} bytes" -#: ../app/controllers/application_controller/buttons.rb:322 -#: ../app/controllers/chargeback_controller.rb:118 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:370 -#: ../app/controllers/ops_controller/settings/tags.rb:58 -#: ../app/controllers/ops_controller/settings/zones.rb:22 -msgid "Description is required" -msgstr "Se requiere la descripción." +msgid "%{object_types} under %{datastore_or_provider} \"%{provider_or_datastore_name}\"" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:326 -#: ../app/controllers/application_controller/buttons.rb:732 -msgid "Button Image must be selected" -msgstr "Se debe seleccionar la imagen del botón." +msgid "%{object} Conditions" +msgstr "Condiciones de %{object}" -#: ../app/controllers/application_controller/buttons.rb:347 -#: ../app/controllers/application_controller/buttons.rb:517 -#: ../app/controllers/catalog_controller.rb:579 -#: ../app/controllers/catalog_controller.rb:913 -#: ../app/controllers/catalog_controller.rb:1001 -#: ../app/controllers/catalog_controller.rb:1054 -#: ../app/controllers/catalog_controller.rb:1100 -#: ../app/controllers/chargeback_controller.rb:141 -#: ../app/controllers/configuration_controller.rb:426 -#: ../app/controllers/ems_common.rb:193 ../app/controllers/ems_common.rb:310 -#: ../app/controllers/host_controller.rb:358 -#: ../app/controllers/miq_ae_class_controller.rb:599 -#: ../app/controllers/miq_ae_class_controller.rb:990 -#: ../app/controllers/miq_ae_class_controller.rb:1075 -#: ../app/controllers/miq_ae_class_controller.rb:1121 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:227 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:285 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:53 -#: ../app/controllers/miq_policy_controller/alerts.rb:25 -#: ../app/controllers/miq_policy_controller/conditions.rb:60 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:45 -#: ../app/controllers/miq_policy_controller/policies.rb:62 -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:53 -#: ../app/controllers/mixins/ems_common_angular.rb:33 -#: ../app/controllers/mixins/ems_common_angular.rb:87 -#: ../app/controllers/ops_controller/ops_rbac.rb:132 -#: ../app/controllers/ops_controller/ops_rbac.rb:731 -#: ../app/controllers/ops_controller/settings.rb:165 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:271 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:174 -#: ../app/controllers/ops_controller/settings/ldap.rb:61 -#: ../app/controllers/ops_controller/settings/ldap.rb:182 -#: ../app/controllers/ops_controller/settings/schedules.rb:80 -#: ../app/controllers/ops_controller/settings/tags.rb:100 -#: ../app/controllers/ops_controller/settings/zones.rb:32 -#: ../app/controllers/orchestration_stack_controller.rb:259 -#: ../app/controllers/pxe_controller/iso_datastores.rb:180 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:128 -#: ../app/controllers/pxe_controller/pxe_servers.rb:66 -#: ../app/controllers/pxe_controller/pxe_servers.rb:200 -#: ../app/controllers/pxe_controller/pxe_servers.rb:251 -#: ../app/controllers/report_controller/reports.rb:33 -#: ../app/controllers/report_controller/reports/editor.rb:72 -#: ../app/controllers/report_controller/schedules.rb:246 -#: ../app/controllers/report_controller/widgets.rb:63 -#: ../app/controllers/storage_manager_controller.rb:167 -#: ../app/controllers/vm_common.rb:958 -msgid "%{model} \"%{name}\" was saved" -msgstr "%{model} \"%{name}\" ha sido almacenado" +msgid "%{operation} initiated for given server group." +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:353 -#: ../app/controllers/application_controller/buttons.rb:523 -msgid "Error during 'edit': %{field_name} %{error_message}" -msgstr "Error durante \"Modificar\": %{field_name} %{error_message}" +msgid "%{operation} initiated for selected server(s)" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:382 -#: ../app/controllers/application_controller/buttons.rb:465 -#: ../app/controllers/catalog_controller.rb:913 -#: ../app/controllers/chargeback_controller.rb:138 -#: ../app/controllers/host_controller.rb:276 -#: ../app/controllers/miq_ae_class_controller.rb:644 -#: ../app/controllers/miq_ae_class_controller.rb:1191 -#: ../app/controllers/miq_ae_class_controller.rb:1226 -#: ../app/controllers/miq_ae_class_controller.rb:1255 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:225 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:283 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:54 -#: ../app/controllers/miq_policy_controller/alerts.rb:26 -#: ../app/controllers/miq_policy_controller/conditions.rb:61 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:46 -#: ../app/controllers/miq_policy_controller/policies.rb:63 -#: ../app/controllers/miq_policy_controller/policies.rb:108 -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:54 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:156 -#: ../app/controllers/ops_controller/settings/tags.rb:81 -#: ../app/controllers/ops_controller/settings/zones.rb:33 -#: ../app/controllers/provider_foreman_controller.rb:181 -#: ../app/controllers/pxe_controller/iso_datastores.rb:57 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:128 -#: ../app/controllers/pxe_controller/pxe_image_types.rb:52 -#: ../app/controllers/pxe_controller/pxe_servers.rb:66 -#: ../app/controllers/report_controller/reports/editor.rb:73 -#: ../app/controllers/report_controller/schedules.rb:247 -#: ../app/controllers/storage_manager_controller.rb:84 -msgid "%{model} \"%{name}\" was added" -msgstr "%{model} \"%{name}\" ha sido agregado" +msgid "%{operation} was not initiated for given group." +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:388 -msgid "Error during 'add': %{field_name} %{error_name}" -msgstr "Error durante \"agregar\": %{field_name} %{error_name}" +msgid "%{product} Appliance restart initiated successfully" +msgstr "El reinicio del aparato %{product} se inició correctamente." -#: ../app/controllers/application_controller/buttons.rb:440 -#: ../app/controllers/application_controller/buttons.rb:510 -#: ../app/controllers/application_controller/buttons.rb:539 -msgid "Edit of Button" -msgstr "Edición de botón" +msgid "%{product} Log" +msgstr "Registro de %{product}" -#: ../app/controllers/application_controller/buttons.rb:489 -#: ../app/controllers/miq_ae_class_controller.rb:1184 -#: ../app/controllers/miq_ae_class_controller.rb:1222 -msgid "Error during 'add': %{error_message}" -msgstr "Error durante \"agregar\": %{error_message}" +msgid "%{product} Region: %{region_description} [%{region}]" +msgstr "Región de %{product}: %{region_description} [%{region}]" -#: ../app/controllers/application_controller/buttons.rb:582 -msgid "'Unassigned Buttons Group' can not be edited" -msgstr "'Unassigned Buttons Group' no puede ser editado" +msgid "%{product} Server \"%{name}\" set as %{priority} for Role \"%{role_description}\"" +msgstr "Servidor de %{product} \"%{name}\" configurado como %{priority} para el rol \"%{role_description}\"" -#: ../app/controllers/application_controller/buttons.rb:605 -msgid "Add Button" -msgstr "Añadir botón" +msgid "%{product} Version" +msgstr "Versión de %{product}" -#: ../app/controllers/application_controller/buttons.rb:607 -msgid "Edit of '%{description}' Button" -msgstr "Edición del botón \"%{description}\"" +msgid "%{protocol} port %{port} to pods on target port:'%{target_port}'" +msgstr "%{protocol} puerto %{port} contenido en el puerto destino:'%{target_port}'" -#: ../app/controllers/application_controller/buttons.rb:686 -msgid "No fields were selected to move top" -msgstr "No se seleccionaron campos para mover hacia la parte superior" +msgid "%{record_name} has no snapshots" +msgstr "%{record_name} no tiene instantáneas." -#: ../app/controllers/application_controller/buttons.rb:691 -msgid "Select only one or consecutive fields to move to the top" -msgstr "" -"Seleccionar solo un campo o campos consecutivos para mover hacia la parte supe" -"rior" +msgid "%{record_name} no longer exists in the database" +msgstr "%{record_name} ya no existe en la base de datos" -#: ../app/controllers/application_controller/buttons.rb:707 -msgid "No fields were selected to move bottom" -msgstr "No se seleccionaron campos para mover hacia la parte inferior" +msgid "%{record} - \"%{button_text}\"" +msgstr "%{record} - \"%{button_text}\"" -#: ../app/controllers/application_controller/buttons.rb:712 -msgid "Select only one or consecutive fields to move to the bottom" -msgstr "" -"Seleccionar solo un campo o campos consecutivos para mover hacia la parte infe" -"rior" +msgid "%{record} no longer exists" +msgstr "%{record} ya no existe" -#: ../app/controllers/application_controller/buttons.rb:729 -msgid "Button Text is required" -msgstr "Se requiere texto del botón" +msgid "%{role} on %{model}: %{name} [%{id}]" +msgstr "%{role} en %{model}: %{name} [%{id}]" -#: ../app/controllers/application_controller/buttons.rb:734 -msgid "Button Hover Text is required" -msgstr "Se requiere activación de texto del botón" +msgid "%{schedule} %{name} was deleted" +msgstr "%{schedule} %{name} fue eliminado" -#: ../app/controllers/application_controller/buttons.rb:736 -#: ../app/controllers/miq_ae_tools_controller.rb:407 -msgid "Starting Process is required" -msgstr "Se requiere el proceso de inicio" +msgid "%{server}: %{server_name} [%{server_id}] (current)" +msgstr "%{server}: %{server_name} [%{server_id}] (actual)" -#: ../app/controllers/application_controller/buttons.rb:737 -#: ../app/controllers/miq_ae_tools_controller.rb:409 -msgid "Request is required" -msgstr "La solicitud es obligatoria" +msgid "%{start_number} of %{total_items}" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:739 -msgid "At least one Role must be selected" -msgstr "Al menos un Rol debe ser seleccionado" +msgid "%{start_number}-%{end_number} of %{total_items}" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:913 -msgid "Buttons for \"%{record}\"" -msgstr "Botones para \"%{record}\"" +msgid "%{start_number}-%{total_items} of %{total_items}" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:941 -msgid "Button Group \"%{name}\"" -msgstr "Grupo de botones \"%{name}\"" +msgid "%{status} - %{time}" +msgstr "%{status} - %{time}" -#: ../app/controllers/application_controller/buttons.rb:982 -#: ../app/controllers/catalog_controller.rb:1720 -#: ../app/views/catalog/_form_basic_info.html.haml:85 -msgid "No Dialog" -msgstr "Ningún cuadro de diálogo" +msgid "%{storage} Type" +msgstr "Tipo de %{storage}" -#: ../app/controllers/application_controller/buttons.rb:983 -#: ../app/controllers/miq_ae_customization_controller/custom_buttons.rb:101 -msgid "Button \"%{name}\"" -msgstr "Botón \"%{name}\"" +msgid "%{table} (%{count})" +msgstr "%{table} (%{count})" -#: ../app/controllers/application_controller/buttons.rb:1017 -msgid "Simulation unavailable: Required Class \"System/Process\" is missing" -msgstr "Simulación no disponible: La clase requerida \"Sistema/Proceso\" no se encuentra" +msgid "%{table} no longer exists" +msgstr "%{table} ya no existe" -#: ../app/controllers/application_controller/buttons.rb:1023 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:655 -#: ../app/controllers/ops_controller/ops_rbac.rb:453 -#: ../app/controllers/report_controller/dashboards.rb:435 -#: ../app/controllers/report_controller/menus.rb:402 -#: ../app/controllers/report_controller/menus.rb:446 -#: ../app/controllers/report_controller/reports/editor.rb:824 -msgid "No fields were selected to move up" -msgstr "No se seleccionaron campos para mover hacia arriba" +msgid "%{table}: %{name}" +msgstr "%{table}: %{name}" -#: ../app/controllers/application_controller/buttons.rb:1028 -#: ../app/controllers/ops_controller/ops_rbac.rb:458 -#: ../app/controllers/report_controller/dashboards.rb:442 -#: ../app/controllers/report_controller/menus.rb:407 -#: ../app/controllers/report_controller/menus.rb:451 -msgid "Select only one or consecutive fields to move up" -msgstr "Seleccionar solo un campo o campos consecutivos para mover hacia arriba" +msgid "%{task} does not apply to at least one of the selected %{model}" +msgstr "%{task} no se aplica por lo menos a uno de los %{model} seleccionados" -#: ../app/controllers/application_controller/buttons.rb:1044 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:664 -#: ../app/controllers/ops_controller/ops_rbac.rb:475 -#: ../app/controllers/report_controller/dashboards.rb:459 -#: ../app/controllers/report_controller/menus.rb:423 -#: ../app/controllers/report_controller/menus.rb:467 -#: ../app/controllers/report_controller/reports/editor.rb:796 -msgid "No fields were selected to move down" -msgstr "No se seleccionaron campos para mover hacia abajo" +msgid "%{task} does not apply to at least one of the selected items" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:1049 -#: ../app/controllers/ops_controller/ops_rbac.rb:480 -#: ../app/controllers/report_controller/dashboards.rb:466 -#: ../app/controllers/report_controller/menus.rb:428 -#: ../app/controllers/report_controller/menus.rb:472 -msgid "Select only one or consecutive fields to move down" -msgstr "Seleccionar solo un campo o campos consecutivos para mover hacia abajo" +msgid "%{task} does not apply to this item" +msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:35 -msgid "One or more %{model} must be selected to Set Ownership" -msgstr "Se deben seleccionar uno o más %{model} para para Configurar propiedad" +msgid "%{task} initiated for %{count} %{model} from the %{product} Database" +msgid_plural "%{task} initiated for %{count} %{models} from the %{product} Database" +msgstr[0] "%{task} iniciada para %{count} %{model} desde la base de datos de %{product}" +msgstr[1] "%{task} iniciada para %{count} %{models} desde la base de datos de %{product}" -#: ../app/controllers/application_controller/ci_processing.rb:49 -#: ../app/controllers/application_controller/ci_processing.rb:77 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:34 -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:41 -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:32 -#: ../app/helpers/application_helper/toolbar/service_center.rb:27 -#: ../app/helpers/application_helper/toolbar/services_center.rb:33 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:50 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:50 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:51 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:60 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:41 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:33 -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:32 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:41 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:32 -msgid "Set Ownership" -msgstr "Establecer propiedad" +msgid "%{task} initiated for %{count} Host from the %{product} Database" +msgid_plural "%{task} initiated for %{count} Hosts from the %{product} Database" +msgstr[0] "%{task} iniciada para %{count} host desde la base de datos de %{product}" +msgstr[1] "%{task} iniciada para %{count} hosts desde la base de datos de %{product}" -#: ../app/controllers/application_controller/ci_processing.rb:128 -msgid "Set Ownership was cancelled by the user" -msgstr "El usuario canceló el establecimiento de propiedad" +msgid "%{task} initiated for %{count} Storage Manager from the %{product} Database" +msgid_plural "%{task} initiated for %{count} Storage Managers from the %{product} Database" +msgstr[0] "%{task} iniciada para %{count} administrador de almacenamiento desde la base de datos de %{product}" +msgstr[1] "%{task} iniciada para %{count} administradores de almacenamiento desde la base de datos de %{product}" -#: ../app/controllers/application_controller/ci_processing.rb:163 -msgid "Ownership saved for selected %{object_types}" -msgstr "Propiedad guardada para %{object_types} seleccionados" +msgid "%{task} initiated for %{count} provider" +msgid_plural "%{task} initiated for %{count} providers)" +msgstr[0] "" +msgstr[1] "" -#: ../app/controllers/application_controller/ci_processing.rb:194 -msgid "Set Retirement Date does not apply to selected %{model}" -msgstr "El establecimiento de la fecha de retiro no se aplica al %{model} seleccionado" +msgid "%{task} initiated for %{number} %{model} from the %{product} Database" +msgid_plural "%{task} initiated for %{number} %{models} from the %{product} Database" +msgstr[0] "%{task} iniciada para %{number} %{model} desde la base de datos de %{product}" +msgstr[1] "%{task} iniciada para %{number} %{models} desde la base de datos de %{product}" -#: ../app/controllers/application_controller/ci_processing.rb:202 -msgid "Retire VM or Instance" -msgstr "Retirar máquina virtual o instancia" +msgid "%{tenant_name} (%{group}): %{group_description}" +msgstr "%{tenant_name} (%{group}): %{group_description}" -#: ../app/controllers/application_controller/ci_processing.rb:205 -msgid "Retire Service" -msgstr "Retirar servicio" +msgid "%{tenant_name} (All %{groups})" +msgstr "%{tenant_name} (Todos los %{groups})" -#: ../app/controllers/application_controller/ci_processing.rb:208 -msgid "Retire Orchestration Stack" -msgstr "Retirar pila de orquestación" +msgid "%{time} Ago" +msgstr "Hace %{time} " -#: ../app/controllers/application_controller/ci_processing.rb:214 -msgid "At least one %{model} must be selected for tagging" -msgstr "Al menos un %{model} debe ser seleccionado para el etiquetado" +msgid "%{title_for_hosts} & %{title_for_clusters}" +msgstr "%{title_for_hosts} y %{title_for_clusters}" -#: ../app/controllers/application_controller/ci_processing.rb:272 -msgid "Set/remove retirement date was cancelled by the user" -msgstr "El usuario canceló la operación de establecer o eliminar fecha de retiro" +msgid "%{title} '%{description}'" +msgstr "%{title} '%{description}'" -#: ../app/controllers/application_controller/ci_processing.rb:280 -msgid "Retirement date removed" -msgstr "Fecha de vencimiento eliminada" +msgid "%{title} Default VNC Port Range" +msgstr "%{title} Rango de puertos VNC predeterminados" -#: ../app/controllers/application_controller/ci_processing.rb:282 -msgid "Retirement dates removed" -msgstr "Fechas de vencimiento eliminadas" +msgid "%{title} Discovery" +msgstr "%{title} Detección" -#: ../app/controllers/application_controller/ci_processing.rb:290 -msgid "Retirement date set to %{date}" -msgstr "Fecha de retiro establecida en %{date}" +msgid "%{title} Discovery returned: %{error_message}" +msgstr "%{title} Detección devuelta: %{error_message}" -#: ../app/controllers/application_controller/ci_processing.rb:292 -msgid "Retirement dates set to %{date}" -msgstr "Fechas de retiro establecidas en %{date}" +msgid "%{title} Discovery was cancelled by the user" +msgstr "%{title} La detección fue cancelada por el usuario" -#: ../app/controllers/application_controller/ci_processing.rb:308 -msgid "Retire %{name}" -msgstr "Retirar %{name}" +msgid "%{title} Guide" +msgstr "Guía %{title}" -#: ../app/controllers/application_controller/ci_processing.rb:330 -msgid "Reconfigure Instance '%{name}'" -msgstr "Reconfigurar instancia '%{name}'" +msgid "%{title} Main Tab" +msgstr "%{title} Pestaña Principal" -#: ../app/controllers/application_controller/ci_processing.rb:370 -#: ../app/controllers/application_controller/ci_processing.rb:401 -#: ../app/controllers/application_controller/ci_processing.rb:407 -msgid "Unable to reconfigure %{instance} \"%{name}\": %{details}" -msgstr "No se puede volver a configurar %{instance} \"%{name}\": %{details}" +msgid "%{type} Information" +msgstr "Información de %{type}" -#: ../app/controllers/application_controller/ci_processing.rb:387 -msgid "Reconfigure of %{model} \"%{name}\" was cancelled by the user" -msgstr "El usuario canceló la reconfiguración de %{model} \"%{name}\"" +msgid "%{type} Storage Adapter: %{name}" +msgstr "%{type} adaptador de almacenamiento: %{name}" -#: ../app/controllers/application_controller/ci_processing.rb:395 -msgid "Reconfiguring %{instance} \"%{name}\" from %{old_flavor} to %{new_flavor}" -msgstr "" -"Reconfiguración de %{instance} \"%{name}\" de %{old_flavor} a %{new_flavor} en c" -"urso" +msgid "%{typ} %{model}" +msgstr "%{typ} %{model}" -#: ../app/controllers/application_controller/ci_processing.rb:452 -#: ../app/controllers/application_controller/ci_processing.rb:525 -#: ../app/controllers/application_controller/ci_processing.rb:531 -msgid "Unable to live migrate %{instance} \"%{name}\": %{details}" -msgstr "No se puede migrar en vivo %{instance} \"%{name}\": %{details}" +msgid "%{typ} %{model} \"%{name}\"" +msgstr "%{typ} %{model} \"%{name}\"" -#: ../app/controllers/application_controller/ci_processing.rb:464 -msgid "Live Migrate Instance '%{name}'" -msgstr "Instancia de migración en vivo \"%{name}\"" +msgid "%{typ} Button Group \"%{name}\"" +msgstr "%{typ} Grupo de botones \"%{name}\"" -#: ../app/controllers/application_controller/ci_processing.rb:503 -msgid "Live Migration of %{model} \"%{name}\" was cancelled by the user" -msgstr "El usuario canceló la migración en vivo de %{model} \"%{name}\"" +msgid "%{typ} Button Group \"Unassigned Buttons\"" +msgstr "%{typ} Grupo de botones \"Botones no asignados\"" -#: ../app/controllers/application_controller/ci_processing.rb:521 -msgid "Live Migrating %{instance} \"%{name}\"" -msgstr "Migrando en vivo %{instance} \"%{name}\"" +msgid "%{typ} Button Groups" +msgstr "%{typ} Grupos de botones" -#: ../app/controllers/application_controller/ci_processing.rb:553 -msgid "Evacuate Instance '%{name}'" -msgstr "Evacuar instancia \"%{name}\"" +msgid "%{typ} Request was Submitted, you will be notified when your %{title} are ready" +msgstr "La petición de %{typ} ha sido enviada, será notificado cuando su %{title} esté listo" -#: ../app/controllers/application_controller/ci_processing.rb:575 -#: ../app/controllers/application_controller/ci_processing.rb:611 -#: ../app/controllers/application_controller/ci_processing.rb:617 -msgid "Unable to evacuate %{instance} \"%{name}\": %{details}" -msgstr "No se puede evacuar %{instance} \"%{name}\": %{details}" +msgid "%{typ} Request was re-submitted, you will be notified when your %{title} are ready" +msgstr "La petición %{typ} fue reenviada, será notificado cuando su %{title} esté listo" -#: ../app/controllers/application_controller/ci_processing.rb:589 -msgid "Evacuation of %{model} \"%{name}\" was cancelled by the user" -msgstr "El usuario canceló la evacuación de %{model} \"%{name}\"" +msgid "%{typ} in %{model} \"%{name}\"" +msgstr "%{typ} en %{model} \"%{name}\"" -#: ../app/controllers/application_controller/ci_processing.rb:607 -msgid "Evacuating %{instance} \"%{name}\"" -msgstr "Evacuando %{instance} \"%{name}\"" +msgid "%{typ} in %{model} \"Unassigned\"" +msgstr "%{typ} en %{model} \"Sin asignar\"" -#: ../app/controllers/application_controller/ci_processing.rb:675 -#: ../app/controllers/application_controller/ci_processing.rb:729 -msgid "Unable to associate Floating IP with Instance \"%{name}\": %{details}" -msgstr "No se puede asociar IP flotante con la instancia \"%{name}\": %{details}" +msgid "%{val} missing for %{field}" +msgstr "%{val} perdido para el campo %{field}" -#: ../app/controllers/application_controller/ci_processing.rb:686 -msgid "Associate Floating IP with Instance '%{name}'" -msgstr "Asociar IP flotante con la instancia \"%{name}\"" +msgid "%{vm_or_template} Policy Assignment" +msgstr "%{vm_or_template} Asignación de Política" -#: ../app/controllers/application_controller/ci_processing.rb:712 -msgid "Association of Floating IP with Instance \"%{name}\" was cancelled by the user" -msgstr "El usuario canceló la asociación de la IP flotante con la instancia \"%{name}\"." +msgid "%{vm_or_template} Policy Simulation" +msgstr "%{vm_or_template} Simulación de Política" -#: ../app/controllers/application_controller/ci_processing.rb:719 -msgid "Associating Floating IP %{address} with Instance \"%{name}\"" -msgstr "Asociando IP flotante %{address} con la instancia \"%{name}\"" +msgid "%{volume} \"%{volume_name}\" is not attached to any %{instances}" +msgstr "%{volume} \"%{volume_name}\" no está asociado a ninguna %{instances}" -#: ../app/controllers/application_controller/ci_processing.rb:723 -msgid "Unable to associate Floating IP %{address} with Instance \"%{name}\": %{details}" -msgstr "" -"No se puede asociar IP flotante %{address} con la instancia \"%{name}\": %{detai" -"ls}" +msgid "'%{model}' Policy Assignment" +msgstr "'%{model}' Asignacion de política" -#: ../app/controllers/application_controller/ci_processing.rb:767 -#: ../app/controllers/application_controller/ci_processing.rb:823 -msgid "Unable to disassociate Floating IP from Instance \"%{name}\": %{details}" -msgstr "No se puede disociar IP flotante de la instancia \"%{name}\": %{details}" +msgid "'%{name}' Drift Analysis" +msgstr "'%{name}' Análisis de desviación" -#: ../app/controllers/application_controller/ci_processing.rb:778 -msgid "Disssociate Floating IP from Instance '%{name}'" -msgstr "Desasociar IP flotante de la instancia '%{name}'" +msgid "'%{task}' successfully initiated for %{items}" +msgstr "'%{task}' iniciada satisfactoriamente para %{items}" -#: ../app/controllers/application_controller/ci_processing.rb:806 -msgid "" -"Disassociation of Floating IP from Instance \"%{name}\" was cancelled by the use" -"r" -msgstr "" -"El usuario canceló la desasociación de la IP flotante de la instancia \"%{name}" -"\"." +msgid "'%{task}' successfully initiated for %{table}" +msgstr "'%{task}' iniciada satisfactoriamente para %{table}" -#: ../app/controllers/application_controller/ci_processing.rb:813 -msgid "Disassociating Floating IP %{address} from Instance \"%{name}\"" -msgstr "Desasociando IP flotante %{address} de la instancia \"%{name}\"" +msgid "'%{type}' Worker restart initiated successfully" +msgstr "Reinicio del Worker '%{type}' iniciado con éxito" -#: ../app/controllers/application_controller/ci_processing.rb:817 -msgid "" -"Unable to disassociate Floating IP %{address} from Instance \"%{name}\": %{detai" -"ls}" -msgstr "" -"No se puede disociar IP flotante %{address} desde la instancia \"%{name}\": %{de" -"tails}" +msgid "'Default' zone cannot be deleted" +msgstr "La zona 'predeterminada' no puede ser eliminada" -#: ../app/controllers/application_controller/ci_processing.rb:848 -msgid "One or more %{model} must be selected to Right-Size Recommendations" -msgstr "" -"Se deben seleccionar uno o más %{model} para Recomendaciones de tamaño adecuad" -"o" +msgid "'Unassigned Buttons Group' can not be deleted" +msgstr "'Unassigned Buttons Group' no puede ser eliminado" -#: ../app/controllers/application_controller/ci_processing.rb:855 -msgid "Right-Size Recommendations does not apply to selected %{model}" -msgstr "La recomendación del tamaño adecuado no se aplica al %{model} seleccionado" +msgid "'Unassigned Buttons Group' can not be edited" +msgstr "'Unassigned Buttons Group' no puede ser editado" -#: ../app/controllers/application_controller/ci_processing.rb:880 -#: ../app/controllers/catalog_controller.rb:874 -#: ../app/views/catalog/_sandt_tree_show.html.haml:145 -msgid "Reconfigure" -msgstr "Reconfigurar" +msgid "(%{number} bytes)" +msgstr "(%{number} bytes)" -#: ../app/controllers/application_controller/ci_processing.rb:900 -msgid "VM Reconfigure Request was cancelled by the user" -msgstr "La petición de reconfiguración de la VM fue cancelada por el usuario" +msgid "(%{value}) * Overallocated" +msgstr "(%{value}) * Sobreasignado" -#: ../app/controllers/application_controller/ci_processing.rb:956 -msgid "VM Reconfigure Request was saved" -msgstr "La petición de reconfiguración de la VM fue almacenada" +msgid "(All)" +msgstr "(Todo)" -#: ../app/controllers/application_controller/ci_processing.rb:1155 -#: ../app/controllers/cim_instance_controller.rb:135 -#: ../app/controllers/host_controller.rb:115 -#: ../app/controllers/host_controller.rb:122 -#: ../app/controllers/host_controller.rb:129 -#: ../app/controllers/host_controller.rb:136 -#: ../app/controllers/host_controller.rb:143 -#: ../app/controllers/storage_controller.rb:101 -#: ../app/controllers/storage_controller.rb:108 -#: ../app/controllers/storage_controller.rb:115 -msgid "%{name} (All %{tables})" -msgstr "%{name} (Todas las %{tables})" +msgid "(Check All)" +msgstr "(Comprobar todo)" -#: ../app/controllers/application_controller/ci_processing.rb:1191 -#: ../app/controllers/application_controller/ci_processing.rb:1203 -msgid "%{name} (Packages)" -msgstr "%{name} (Paquetes)" +msgid "(Checked default filters will be visible.)" +msgstr "(Los filtros predeterminados comprobados serán visibles.)" -#: ../app/controllers/application_controller/ci_processing.rb:1194 -#: ../app/controllers/application_controller/ci_processing.rb:1206 -msgid "%{name} (Applications)" -msgstr "%{name} (Aplicaciones)" +msgid "(Click to remove)" +msgstr "(Haga clic para eliminar)" -#: ../app/controllers/application_controller/ci_processing.rb:1227 -#: ../app/controllers/application_controller/ci_processing.rb:1233 -msgid "%{name} (Patches)" -msgstr "%{name} (Parches)" +msgid "(Default: %{email_from})" +msgstr "(Predeterminado: %{email_from})" -#: ../app/controllers/application_controller/ci_processing.rb:1253 -#: ../app/controllers/application_controller/ci_processing.rb:1260 -msgid "%{name} (Groups)" -msgstr "%{name} (Grupos)" +msgid "(Enter the value between 4 - 65636 MB)" +msgstr "(Introduzca un valor entre 4 - 65636 MB)" -#: ../app/controllers/application_controller/ci_processing.rb:1280 -#: ../app/controllers/application_controller/ci_processing.rb:1287 -msgid "%{name} (Users)" -msgstr "%{name} (Usuarios)" +msgid "(Look up %{authentication_mode_name} Groups)" +msgstr "(Buscar %{authentication_mode_name} grupos)" -#: ../app/controllers/application_controller/ci_processing.rb:1308 -#: ../app/controllers/application_controller/ci_processing.rb:1314 -msgid "%{name} (Hosts)" -msgstr "%{name} (Hosts)" +msgid "(MB) memory" +msgstr "Memoria (MB)" -#: ../app/controllers/application_controller/ci_processing.rb:1328 -msgid "%{title} Discovery was cancelled by the user" -msgstr "%{title} La detección fue cancelada por el usuario" +msgid "(current)" +msgstr "(actual)" -#: ../app/controllers/application_controller/ci_processing.rb:1381 -#: ../app/controllers/application_controller/ci_processing.rb:1453 -msgid "%{title} Discovery" -msgstr "%{title} Detección" +msgid "(leave blank for default)" +msgstr "(dejar en blanco predeterminados)" -#: ../app/controllers/application_controller/ci_processing.rb:1391 -msgid "Client ID, Client Key, Azure Tenant ID and Subscription ID are required" -msgstr "" -"Se requieren el ID de cliente, la clave de cliente, el ID de un inquilino Azur" -"e e ID de suscripción." +msgid "(missing)" +msgstr "(falta)" -#: ../app/controllers/application_controller/ci_processing.rb:1400 -#: ../app/controllers/pxe_controller/pxe_servers.rb:305 -msgid "Username is required" -msgstr "El nombre de usuario es obligatorio" +msgid "(optional) the address of an alternate service" +msgstr "(opcional) la dirección de un servicio alternativo" -#: ../app/controllers/application_controller/ci_processing.rb:1405 -#: ../app/controllers/ems_common.rb:696 -#: ../app/controllers/ops_controller/settings/ldap.rb:171 -#: ../app/controllers/ops_controller/settings/zones.rb:123 -#: ../app/controllers/storage_manager_controller.rb:243 -msgid "Username must be entered if Password is entered" -msgstr "El nombre de usuario debe ser ingresado si ha introducido la contraseña" +msgid "(optional) your HTTP proxy information" +msgstr "(opcional) su información del proxy HTTP" -#: ../app/controllers/application_controller/ci_processing.rb:1410 -#: ../app/controllers/ems_common.rb:699 -#: ../app/controllers/ops_controller/ops_rbac.rb:999 -#: ../app/controllers/pxe_controller/pxe_servers.rb:310 -msgid "Password/Verify Password do not match" -msgstr "La contraseña y confirmación de contraseña no coinciden" +msgid "* 'Name' and 'Single Value' fields cannot be edited after adding a category." +msgstr "*Los campos 'Name' y 'Single Value' no pueden ser editados después de añadir una categoría." -#: ../app/controllers/application_controller/ci_processing.rb:1417 -msgid "At least 1 item must be selected for discovery" -msgstr "Al menos 1 ítem debe ser seleccionado para detección" +msgid "* Base the report on" +msgstr "* Base el informe en" -#: ../app/controllers/application_controller/ci_processing.rb:1440 -msgid "%{title} Discovery returned: %{error_message}" -msgstr "%{title} Detección devuelta: %{error_message}" +msgid "* Cannot be changed while this Alert belongs to an Alert Profile." +msgstr "* No puede ser cambiada mientras esta alerta pertenezca a un Perfil de alertas. " -#: ../app/controllers/application_controller/ci_processing.rb:1447 -msgid "%{model}: Discovery successfully initiated" -msgstr "%{model}: La detección ha iniciado" +msgid "* Caution: Changing these fields will clear all selected values below them!" +msgstr "* Atención: ¡Al cambiar estos campos se borrarán todos los valores seleccionados que están por debajo de ellos!" -#: ../app/controllers/application_controller/ci_processing.rb:1460 -#: ../app/helpers/application_helper.rb:1527 -#: ../app/presenters/menu/default_menu.rb:61 -msgid "Hosts / Nodes" -msgstr "Equipos / Nodos" +msgid "* Caution: The value Range end will not be included in the tier." +msgstr "* Atención: El valor del rango final no sera incluido en el nivel." -#: ../app/controllers/application_controller/ci_processing.rb:1540 -msgid "%{model} \"%{name}\": Error during '%{task}': %{error_msg}" -msgstr "%{model} \"%{name}\": Error durante '%{task}': %{error_msg}" +msgid "* Changing the Time Zone will reset the Starting Date and Time fields below" +msgstr "* Cambiar la Zona Horaria reiniciará la fecha de inicio y los campos de tiempo inferiores" -#: ../app/controllers/application_controller/ci_processing.rb:1544 -#: ../app/controllers/application_controller/ci_processing.rb:2238 -#: ../app/controllers/ems_common.rb:1038 -#: ../app/controllers/miq_request_controller.rb:571 -#: ../app/controllers/ontap_file_share_controller.rb:70 -#: ../app/controllers/storage_manager_controller.rb:463 -msgid "%{model} \"%{name}\": %{task} successfully initiated" -msgstr "%{model} \"%{name}\": %{task} ha sido inicializado correctamente" +msgid "* Changing the Zone will reset all of this Server's priorities to secondary." +msgstr "* Cambiar la Zona reiniciará todas las prioridades de su Servidor a secundario." -#: ../app/controllers/application_controller/ci_processing.rb:1578 -#: ../app/controllers/application_controller/ci_processing.rb:1586 -#: ../app/controllers/miq_ae_class_controller.rb:2592 -msgid "%{model} \"%{name}\": Error during delete: %{error_msg}" -msgstr "%{model} \"%{name}\": Error durante la eliminación: %{error_msg}" +msgid "* Checking this box will remove this setting from all other PXE Images on this PXE Server" +msgstr "* Verificar este casillero eliminará su configuración de todas las Imágenes PXE en su Servidor PXE" -#: ../app/controllers/application_controller/ci_processing.rb:1663 -msgid "One or more %{model} must be selected to Reconfigure" -msgstr "Por lo menos un %{model} debe ser seleccionado para la reconfiguración" +msgid "* Daily charts only include days for which all 24 hours of data has been collected." +msgstr "* Los gráficos diarios sólo incluyen días cuando se han almacenado 24 horas de datos." -#: ../app/controllers/application_controller/ci_processing.rb:1669 -msgid "Reconfigure does not apply because you selected at least one %{model}" -msgstr "La reconfiguración no se aplica porque seleccionó al menos un %{model}" +msgid "* Dashboard name cannot be changed" +msgstr "* El nombre del Panel de control no puede ser cambiado" -#: ../app/controllers/application_controller/ci_processing.rb:1675 -msgid "" -"Reconfigure does not apply because you selected at least one un-reconfigurable" -" VM" -msgstr "" -"La reconfiguración no se aplica porque seleccionó al menos una máquina virtual" -" no reconfigurable" +msgid "* Dates/Times on this page are based on time zone: %{time_zone}." +msgstr "* Las fechas/horas en esta página se basan en la zona horaria: %{time_zone}." -#: ../app/controllers/application_controller/ci_processing.rb:1843 -msgid "Retire does not apply to selected %{model}" -msgstr "El retiro no se aplica al %{model} seleccionado" +msgid "* Disk space not supported for OpenStack providers" +msgstr "* El espacio de disco no está soportado para proveedores de OpenStack " -#: ../app/controllers/application_controller/ci_processing.rb:1855 -#: ../app/controllers/application_controller/ci_processing.rb:2251 -#: ../app/controllers/application_controller/ci_processing.rb:2542 -#: ../app/controllers/application_controller/ci_processing.rb:2630 -#: ../app/controllers/application_controller/ci_processing.rb:2698 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:1357 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:62 -#: ../app/controllers/mixins/containers_common_mixin.rb:179 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:380 -#: ../app/controllers/provider_foreman_controller.rb:84 -msgid "No %{model} were selected for %{task}" -msgstr "Ningún %{model} fue seleccionado para %{task}" +msgid "* Enter Policy Simulation options on the left and press Submit" +msgstr "* Introduzca las opciones de simulación de políticas a la izquierda y presione Enviar" -#: ../app/controllers/application_controller/ci_processing.rb:1868 -#: ../app/controllers/application_controller/ci_processing.rb:1941 -#: ../app/controllers/application_controller/ci_processing.rb:2263 -#: ../app/controllers/application_controller/ci_processing.rb:2554 -#: ../app/controllers/application_controller/ci_processing.rb:2642 -#: ../app/controllers/application_controller/ci_processing.rb:2713 -#: ../app/controllers/application_controller/ci_processing.rb:2746 -#: ../app/controllers/chargeback_controller.rb:219 -#: ../app/controllers/ems_common.rb:642 ../app/controllers/ems_common.rb:1065 -#: ../app/controllers/ems_common.rb:1100 ../app/controllers/ems_common.rb:1141 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:1365 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:83 -#: ../app/controllers/miq_policy_controller.rb:239 -msgid "%{record} no longer exists" -msgstr "%{record} ya no existe" +msgid "* Enter a reason for this approval and press Submit" +msgstr "* Introduzca una razón para esta aprovación y presione Enviar" -#: ../app/controllers/application_controller/ci_processing.rb:1926 -msgid "Error during '%{task}': %{error_message}" -msgstr "Error durante \"%{task}\": %{error_message}" +msgid "* Enter a reason for this denial and press Submit" +msgstr "* Introduzca una razón para esta denegación y presione Enviar" -#: ../app/controllers/application_controller/ci_processing.rb:1928 -msgid "%{task} initiated for %{number} %{model} from the %{product} Database" -msgid_plural "%{task} initiated for %{number} %{models} from the %{product} Database" -msgstr[0] "%{task} iniciada para %{number} %{model} desde la base de datos de %{product}" -msgstr[1] "%{task} iniciada para %{number} %{models} desde la base de datos de %{product}" +msgid "* Fields are read only for default Widgets" +msgstr "* Los campos son de sólo lectura para los asistentes predeterminados" -#: ../app/controllers/application_controller/ci_processing.rb:1950 -msgid "No providers were selected for %{task}" -msgstr "No se seleccionaron proveedores para %{task}" +msgid "* If all Conditions are removed from a Policy, it will be unconditional and always evaluate to true." +msgstr "* Si todas las Condiciones son eliminadas de una Política, será incondicional y siempre evaluada como verdadera." -#: ../app/controllers/application_controller/ci_processing.rb:1964 -#: ../app/controllers/storage_manager_controller.rb:417 -msgid "Error during '%{task}': %{message}" -msgstr "Error durante \"%{task}\": %{message}" +msgid "* Information shown is based on available trend data from %{start_time} to %{end_time} in the %{timezone} time zone." +msgstr "* La información que se muestra se basa en los datos de tendencia disponibles desde %{start_time} hasta %{end_time} en la zona horaria %{timezone}." -#: ../app/controllers/application_controller/ci_processing.rb:1966 -msgid "%{task} initiated for %{count} provider (%{controller})" -msgid_plural "%{task} initiated for %{count} providers (%{controller})" -msgstr[0] "%{task} iniciada para %{count} proveedor (%{controller})" -msgstr[1] "%{task} iniciada para %{count} proveedores (%{controller})" +msgid "* Information shown is based on available trend data going back %{weeks}." +msgstr "* La información que se muestra se basa en los datos de tendencia disponibles %{weeks} atrás." -#: ../app/controllers/application_controller/ci_processing.rb:2157 -msgid "At least 1 %{model} must be selected for Policy Simulation" -msgstr "Al menos 1 %{model} debe ser seleccionado para la Simulación de políticas" +msgid "* Items in" +msgstr "* Ítemes ens" -#: ../app/controllers/application_controller/ci_processing.rb:2184 -#: ../app/helpers/application_helper.rb:1538 -#: ../app/helpers/application_helper.rb:1551 -msgid "Cluster" -msgstr "Clúster" +msgid "* Items in red italics do not change the outcome of the scope or expression." +msgstr "* Los ítemes red italics no cambian el resultado del alcance o expresión." -#: ../app/controllers/application_controller/ci_processing.rb:2201 -#: ../app/controllers/application_controller/ci_processing.rb:2232 -#: ../app/controllers/application_controller/ci_processing.rb:2602 -#: ../app/controllers/catalog_controller.rb:631 -#: ../app/controllers/ems_common.rb:1031 -msgid "%{model} \"%{name}\": Error during '%{task}': %{error_message}" -msgstr "\"%{name}\" %{model}: Error durante '%{task}': %{error_message}" +msgid "* No Actions are configured for this Event." +msgstr "* No se han configurado acciones para este evento." -#: ../app/controllers/application_controller/ci_processing.rb:2207 -msgid "%{model}: %{task} successfully initiated" -msgstr "%{model}: %{task} inicializada con éxito" +msgid "* No Reports available." +msgstr "* No hay informes disponibles" -#: ../app/controllers/application_controller/ci_processing.rb:2290 -#: ../app/controllers/application_controller/ci_processing.rb:2478 -#: ../app/controllers/application_controller/ci_processing.rb:2669 -#: ../app/helpers/application_helper/tasks.rb:14 -#: ../app/views/ops/_schedule_show.html.haml:49 -msgid "Analysis" -msgstr "Analisis" +msgid "* Only a single value can be assigned from these Tag Categories" +msgstr "* Sólo un único valor puede ser asignado de estas categorías de etiquetas" -#: ../app/controllers/application_controller/ci_processing.rb:2298 -#: ../app/controllers/miq_request_controller.rb:560 -#: ../app/controllers/miq_task_controller.rb:211 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:514 -#: ../app/controllers/storage_manager_controller.rb:445 -msgid "%{model} \"%{name}\": Error during '%{task}': %{message}" -msgstr " \"%{name}\" %{model}: Error durante '%{task}': %{message}" +msgid "* Only a single value can be assigned from these categories" +msgstr "* Solo un único valor puede ser asignado de estas categorías" -#: ../app/controllers/application_controller/ci_processing.rb:2311 -#: ../app/controllers/infra_networking_controller.rb:579 -#: ../app/helpers/application_helper.rb:1523 -#: ../app/helpers/application_helper.rb:1547 -#: ../app/views/configuration/_ui_1.html.haml:25 -#: ../app/views/host/_form.html.haml:166 -#: ../app/views/host_aggregate/add_host_select.html.haml:16 -#: ../app/views/host_aggregate/remove_host_select.html.haml:16 -#: ../app/views/ops/_settings_replication_tab.html.haml:138 -#: ../app/views/ops/_settings_server_tab.html.haml:386 -msgid "Host" -msgid_plural "Hosts" -msgstr[0] "Equipo" -msgstr[1] "Hosts" +msgid "* Performance Interval" +msgstr "* Intervalo de rendimiento" -#: ../app/controllers/application_controller/ci_processing.rb:2318 -msgid "%{task} initiated for %{count} Host from the %{product} Database" -msgid_plural "%{task} initiated for %{count} Hosts from the %{product} Database" -msgstr[0] "%{task} iniciada para %{count} host desde la base de datos de %{product}" -msgstr[1] "%{task} iniciada para %{count} hosts desde la base de datos de %{product}" +msgid "* Policy Profile is only applied to some of the items below." +msgstr "* El modelo de política sólo es aplicado a alguno de los ítemes inferiores." -#: ../app/controllers/application_controller/ci_processing.rb:2347 -#: ../app/controllers/application_controller/ci_processing.rb:2358 -#: ../app/controllers/application_controller/ci_processing.rb:2366 -msgid "\"%{task}\": not supported for %{hostname}" -msgstr "\"%{task}\": no soportada para %{hostname}" +msgid "* Primary Server Roles shown as %{bold} text." +msgstr "* Los roles del Servidor Primario mostrados como texto %{bold}." -#: ../app/controllers/application_controller/ci_processing.rb:2378 -#: ../app/controllers/application_controller/ci_processing.rb:2383 -msgid "\"%{record}\": Scheduling is %{status} now." -msgstr "\"%{record}\": El estado de la programación es %{status} ahora." +msgid "* Recommendations are subject to minimum of CPU: %{cpu} and Memory: %{memory}." +msgstr "* Las recomendaciones están sujetas a un mínimo de CPU: %{cpu} y de memoria: %{memory}." -#: ../app/controllers/application_controller/ci_processing.rb:2385 -msgid "\"%{record}\": %{task} invalid" -msgstr "\"%{record}\": %{task} no válida" +msgid "* Report is not owned by your group so it cannot be removed" +msgstr "* El informe no pertenece a su grupo por lo que no puede ser eliminado" -#: ../app/controllers/application_controller/ci_processing.rb:2396 -msgid "" -"\"%{task}\": not available for %{hostname}. %{hostname}'s provision state must b" -"e in \"available\", \"adoptfail\", \"cleanfail\", or \"inspectfail\"" -msgstr "" -"\"%{task}\": no está disponible para %{hostname}. El estado de aprovisionamiento" -" de %{hostname} debe ser \"available\", \"adoptfail\", \"cleanfail\", o \"inspectfail" -"\"" +msgid "* Requirements: CSV formatted file." +msgstr "* Requerimientos: archivo en formato CSV." -#: ../app/controllers/application_controller/ci_processing.rb:2405 -#: ../app/controllers/application_controller/ci_processing.rb:2414 -msgid "" -"\"%{task}\": not available for %{hostname}. %{hostname}'s provision state needs " -"to be in \"manageable\"" -msgstr "" -"\"%{task}\": no está disponible para %{hostname}. El estado de aprovisionamient" -"o de %{hostname} debe ser \"manageable\"" +msgid "* Requirements: File-type - PNG; Dimensions - 1280x1000." +msgstr "* Requerimientos: Tipo de archivo - PNG; Dimensiones - 1280x1000." -#: ../app/controllers/application_controller/ci_processing.rb:2423 -msgid "\"%{task}\": not available for %{hostname}" -msgstr "\"%{task}\": no disponible para %{hostname}" +msgid "* Requirements: File-type - PNG; Dimensions - 350x70." +msgstr "* Requirimientos: Tipo de archivo - PNG; Dimensiones - 350x70." -#: ../app/controllers/application_controller/ci_processing.rb:2472 -#: ../app/controllers/application_controller/ci_processing.rb:2663 -#: ../app/controllers/provider_foreman_controller.rb:107 -#: ../app/views/ems_container/_show_ad_hoc_metrics.html.haml:163 -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:92 -#: ../app/views/ops/_settings_workers_tab.html.haml:418 -#: ../app/views/shared/_topology_header.html.haml:19 -#: ../app/views/shared/_topology_header_toolbar.html.haml:17 -#: ../app/views/shared/dialogs/_dialog_field_check_box.html.haml:14 -#: ../app/views/shared/dialogs/_dialog_field_date_and_date_time_control.html.haml:45 -#: ../app/views/shared/dialogs/_dialog_field_drop_down_list.html.haml:33 -#: ../app/views/shared/dialogs/_dialog_field_radio_button.html.haml:41 -#: ../app/views/shared/dialogs/_dialog_field_text_area_box.html.haml:18 -#: ../app/views/shared/dialogs/_dialog_field_text_box.html.haml:19 -msgid "Refresh" -msgstr "Refrescar" +msgid "* Requires image file in .png or .jpg format" +msgstr "* Requiere un archivo de imagen en formato .png o .jpg " -#: ../app/controllers/application_controller/ci_processing.rb:2484 -msgid "Toggle Maintenance" -msgstr "Alternar mantenimiento" +msgid "* Saving a blank date will remove all retirement dates" +msgstr "* Al guardar una fecha en blanco se eliminarán todas las fechas de vencimiento" -#: ../app/controllers/application_controller/ci_processing.rb:2490 -msgid "Toggle Scheduling for Cloud Service" -msgstr "Alternar programación para servicio de nube" +msgid "* Select one or more consecutive fields to move up or down." +msgstr "* Seleccione uno o más campos consecutivos para moverlos arriba o abajo." -#: ../app/controllers/application_controller/ci_processing.rb:2495 -#: ../app/views/ops/_schedule_show.html.haml:38 -msgid "Compliance Check" -msgstr "Verificación de cumplimiento" +msgid "* Select one or more consecutive groups to move up or down." +msgstr "* Seleccione uno o más grupos consecutivos para moverlos arriba o abajo." -#: ../app/controllers/application_controller/ci_processing.rb:2500 -msgid "Analyze and Compliance Check" -msgstr "Comprobación de Análisis y Cumplimiento" +msgid "* Set in Time Profile" +msgstr "* Introducir Perfil de Tiempo" -#: ../app/controllers/application_controller/ci_processing.rb:2506 -msgid "Manageable" -msgstr "Administrable" +msgid "* Some charts my not produce desired results with a single sort field" +msgstr "* Algunos gráficos no producen resultados deseables con un determinado tipo de campo" -#: ../app/controllers/application_controller/ci_processing.rb:2512 -msgid "Introspect" -msgstr "Introspección" +msgid "* Specified NTP settings apply to this zone only and are not global." +msgstr "* Los parámetros NTP especificados se aplican sólo a esta zona y no son globales." -#: ../app/controllers/application_controller/ci_processing.rb:2518 -msgid "Provide" -msgstr "Proporcionar" +msgid "* Style \"If\" conditions are evaluated top to bottom for each column" +msgstr "* El estilo de las condiciones \"If\" son evaluadas de arriba a abajo para cada columna" -#: ../app/controllers/application_controller/ci_processing.rb:2523 -#: ../app/controllers/middleware_server_controller.rb:46 -#: ../app/controllers/middleware_server_controller.rb:81 -#: ../app/helpers/application_helper/toolbar/host_center.rb:187 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:204 -#: ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:30 -#: ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:36 -msgid "Restart" -msgstr "Reiniciar" +msgid ", Connect at Power On = No" +msgstr "Conectar al arrancar = No" -#: ../app/controllers/application_controller/ci_processing.rb:2524 -#: ../app/helpers/application_helper/toolbar/host_center.rb:197 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:217 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:235 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:198 -#: ../app/views/catalog/_form_resources_info.html.haml:119 -msgid "Power On" -msgstr "Encender" +msgid ", Connect at Power On = Yes" +msgstr "Conectar al arrancar = Si" -#: ../app/controllers/application_controller/ci_processing.rb:2525 -#: ../app/helpers/application_helper/toolbar/host_center.rb:206 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:227 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:245 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:207 -#: ../app/views/catalog/_form_resources_info.html.haml:120 -msgid "Power Off" -msgstr "Apagar" +msgid ", Mode: %{mode}" +msgstr "Modo: %{mode}" -#: ../app/controllers/application_controller/ci_processing.rb:2526 -#: ../app/helpers/application_helper/toolbar/host_center.rb:151 -msgid "Enter Maintenance Mode" -msgstr "Ingresar en el modo de mantenimiento" +msgid ", Percent Used Provisioned Space: %{number}%%" +msgstr ", Porcentaje usado de espacio provisionado: %{number}%%" -#: ../app/controllers/application_controller/ci_processing.rb:2527 -#: ../app/helpers/application_helper/toolbar/host_center.rb:160 -msgid "Exit Maintenance Mode" -msgstr "Salir del modo de mantenimiento" +msgid ", Size on disk: %{number}" +msgstr ", Tamaño en el disco: %{number}" -#: ../app/controllers/application_controller/ci_processing.rb:2528 -msgid "Shutdown to Standby Mode" -msgstr "Colocar en modo de espera" +msgid ", Size: %{number}" +msgstr ", Tamaño: %{number}" -#: ../app/controllers/application_controller/ci_processing.rb:2579 -#: ../app/controllers/miq_ae_class_controller.rb:80 -#: ../app/controllers/miq_ae_class_controller.rb:88 -#: ../app/controllers/miq_ae_class_controller.rb:176 -#: ../app/controllers/miq_ae_class_controller.rb:1600 -#: ../app/controllers/miq_ae_class_controller.rb:2557 -#: ../app/presenters/tree_builder_ae_class.rb:17 -#: ../app/presenters/tree_builder_automate.rb:25 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:65 -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:63 -#: ../app/views/shared/views/_prov_dialog.html.haml:143 -msgid "Datastore" -msgstr "Almacenamiento de datos" +msgid "-- OR --" +msgstr "-- OR --" -#: ../app/controllers/application_controller/ci_processing.rb:2590 -msgid "Delete initiated for Datastore from the %{product} Database" -msgid_plural "Delete initiated for Datastores from the %{product} Database" -msgstr[0] "" -"Eliminar el iniciado para el almacén de datos de la base de datos de %{produc" -"t}" -msgstr[1] "" -"Eliminar el iniciado para los almacenes de datos de la base de datos de %{prod" -"uct}" +msgid "1 - Select a Reference VM." +msgstr "1 - Seleccione una MV de referencia." -#: ../app/controllers/application_controller/ci_processing.rb:2609 -msgid "\"%{record}\": Refresh successfully initiated" -msgstr "\"%{record}\": Actualización iniciada con éxito" +msgid "1 Day" +msgstr " 1 día" -#: ../app/controllers/application_controller/ci_processing.rb:2626 -msgid "Smartstate Analysis" -msgstr "Análisis de SmartState" +msgid "1 Day Ago" +msgstr "Hace un dia" -#: ../app/controllers/application_controller/ci_processing.rb:2706 -msgid "\"%{datastore_name}\": cannot be removed, has vms or hosts" -msgstr "\"%{datastore_name}\": no puede eliminarse, tiene vms o hosts" +msgid "1 Hour" +msgstr "1 hora" -#: ../app/controllers/application_controller/ci_processing.rb:2719 -#: ../app/controllers/application_controller/ci_processing.rb:2752 -#: ../app/controllers/catalog_controller.rb:274 -#: ../app/controllers/ems_common.rb:1071 -msgid "The selected %{record} was deleted" -msgstr "El %{record} seleccionado se eliminó" +msgid "1 Minute" +msgstr "1 minuto" -#: ../app/controllers/application_controller/ci_processing.rb:2734 -#: ../app/controllers/catalog_controller.rb:280 -#: ../app/controllers/catalog_controller.rb:1195 -#: ../app/controllers/miq_request_controller.rb:525 -#: ../app/controllers/miq_task_controller.rb:130 -#: ../app/controllers/miq_task_controller.rb:155 -#: ../app/controllers/ops_controller/settings/ldap.rb:111 -#: ../app/controllers/ops_controller/settings/schedules.rb:197 -#: ../app/controllers/service_controller.rb:168 -msgid "No %{model} were selected for deletion" -msgstr "No se seleccionaron %{model} para eliminar" +msgid "1 Week" +msgstr "Una semana" -#: ../app/controllers/application_controller/ci_processing.rb:2738 -#: ../app/controllers/ems_common.rb:1018 ../app/controllers/ems_common.rb:1057 -msgid "Delete initiated for %{count} %{model} from the %{product} Database" -msgid_plural "Delete initiated for %{count} %{models} from the %{product} Database" -msgstr[0] "Eliminar iniciado para %{count} %{model} de la base de datos de %{product}" -msgstr[1] "Eliminar iniciado para %{count} %{models} de la base de datos de %{product}" +msgid "1 Week Ago" +msgstr "Hace 1 semana" -#: ../app/controllers/application_controller/compare.rb:50 -#: ../app/controllers/application_controller/compare.rb:108 -msgid "Compare %{name}" -msgstr "Comparar %{name}" +msgid "1 Week before retirement" +msgstr "1 semana antes del vencimiento" -#: ../app/controllers/application_controller/compare.rb:416 -msgid "%{name} Compare Report (* = Value does not match base)" -msgstr "%{name} Report comparado (* = El valor no coincide)" +msgid "1-2" +msgstr "1-2" -#: ../app/controllers/application_controller/compare.rb:420 -msgid "%{name} '%{vm_name}' Drift Report" -msgstr "%{name} '%{vm_name}' Informe de desviación" +msgid "10 Hours Ago" +msgstr "Hace 10 horas" -#: ../app/controllers/application_controller/compare.rb:564 -#: ../app/controllers/application_controller/compare.rb:592 -msgid "'%{name}' Drift Analysis" -msgstr "'%{name}' Análisis de desviación" +msgid "10 Minutes" +msgstr "10 minutos" -#: ../app/controllers/application_controller/compare.rb:753 -#: ../app/controllers/vm_common.rb:1620 -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:190 -#: ../app/helpers/host_helper/textual_summary.rb:288 -#: ../app/helpers/textual_mixins/textual_drift.rb:4 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:86 -#: ../app/views/layouts/listnav/_host.html.haml:144 -msgid "Drift History" -msgid_plural "Drift History" -msgstr[0] "Historial de desplazamiento" -msgstr[1] "Historial de desplazamiento" +msgid "10 items" +msgstr "" -#: ../app/controllers/application_controller/compare.rb:869 -#: ../app/controllers/vm_common.rb:244 ../app/controllers/vm_controller.rb:22 -#: ../app/helpers/ems_infra_helper/textual_summary.rb:149 -#: ../app/presenters/menu/default_menu.rb:68 -msgid "Virtual Machines" -msgstr "Máquinas virtuales " +msgid "10-11" +msgstr "10-11" -#: ../app/controllers/application_controller/compare.rb:871 -msgid "VM Templates" -msgstr "Plantillas de máquina virtual" +msgid "100 items" +msgstr "" -#: ../app/controllers/application_controller/compare.rb:876 -msgid "At least 2 %{model} must be selected for Compare" -msgstr "Al menos 2 %{model} deben ser seleccionados para comparar" +msgid "1000 items" +msgstr "" -#: ../app/controllers/application_controller/compare.rb:882 -msgid "No more than 32 %{model} can be selected for Compare" -msgstr "No se pueden seleccionar más del 32 %{model} para comparar" +msgid "11 Hours Ago" +msgstr "Hace 11 horas" -#: ../app/controllers/application_controller/compare.rb:925 -msgid "At least 2 Analyses must be selected for Drift" -msgstr "Se deben seleccionar al menos 2 análisis para la desviación" +msgid "11-12" +msgstr "11-12" -#: ../app/controllers/application_controller/compare.rb:929 -msgid "No more than 10 Analyses can be selected for Drift" -msgstr "No se pueden seleccionar más de 10 análisis para desplazar" +msgid "12 Hours" +msgstr "12 horas" -#: ../app/controllers/application_controller/compare.rb:993 -msgid "All Sections" -msgstr "Todas las secciones" +msgid "12 Hours Ago" +msgstr "Hace 12 horas" -#: ../app/controllers/application_controller/compare.rb:999 -#: ../app/controllers/application_controller/compare.rb:1002 -#: ../app/controllers/application_controller/compare.rb:1043 -msgid "Same as previous" -msgstr "Igual que anterior" +msgid "12-1" +msgstr "12-1" -#: ../app/controllers/application_controller/compare.rb:1004 -#: ../app/controllers/application_controller/compare.rb:1045 -msgid "Changed from previous" -msgstr "Se cambió del anterior." +msgid "13 Hours Ago" +msgstr "Hace 13 horas" -#: ../app/controllers/application_controller/compare.rb:1037 -msgid "Starting values" -msgstr "Valores de inicio" +msgid "14 Days Ago" +msgstr "Hace 14 días" -#: ../app/controllers/application_controller/compare.rb:1309 -#: ../app/controllers/application_controller/compare.rb:1933 -msgid "No Value Found" -msgstr "No se encontró un valor" +msgid "14 Hours Ago" +msgstr "Hace 14 horas" -#: ../app/controllers/application_controller/compare.rb:1471 -#: ../app/views/shared/_compare_header_expanded.html.haml:2 -msgid "%{name} is the base" -msgstr "%{name} es la base" +msgid "15 Hours Ago" +msgstr "Hace 15 horas" -#: ../app/controllers/application_controller/compare.rb:1475 -#: ../app/views/shared/_compare_header_expanded.html.haml:11 -msgid "Make %{name} the base" -msgstr "Realizar %{name} la base" +msgid "15 Minutes" +msgstr "15 minutos" -#: ../app/controllers/application_controller/compare.rb:1506 -msgid "Remove this %{title} from the comparison" -msgstr "Eliminar este %{title} de la comparación" +msgid "16 Hours Ago" +msgstr "Hace 16 horas" -#: ../app/controllers/application_controller/compare.rb:1555 -msgid "Total Matches" -msgstr "Total de coincidencias" +msgid "17 Hours Ago" +msgstr "Hace 17 horas" -#: ../app/controllers/application_controller/compare.rb:1561 -#: ../app/controllers/application_controller/compare.rb:1599 -#: ../app/controllers/application_controller/compare.rb:1682 -msgid "% Matched" -msgstr "% Coincidente" +msgid "18 Hours Ago" +msgstr "Hace 18 horas" -#: ../app/controllers/application_controller/compare.rb:1561 -#: ../app/controllers/application_controller/compare.rb:1599 -msgid "% Matched:" -msgstr "% Coincidente:" +msgid "19 Hours Ago" +msgstr "Hace 19 horas" -#: ../app/controllers/application_controller/compare.rb:1896 -#: ../app/controllers/application_controller/compare.rb:1899 -msgid "(missing)" -msgstr "(falta)" +msgid "2 - Specify the VM Options to define the source of the values used for the plan calculations." +msgstr "2 - Especifique las opciones de la MV para definir la fuente de los valores usados para los cálculos del plan." -#: ../app/controllers/application_controller/dialog_runner.rb:27 -msgid "%{model} Order was cancelled by the user" -msgstr "%{model} La orden fue cancelada por el usuario" +msgid "2 Days" +msgstr "2 días" -#: ../app/controllers/application_controller/dialog_runner.rb:34 -msgid "Error during 'Provisioning': %{error_message}" -msgstr "Error durante \"Aprovisionamiento\": %{error_message}" +msgid "2 Days Ago" +msgstr "Hace 2 días" -#: ../app/controllers/application_controller/dialog_runner.rb:44 -msgid "Order Request was Submitted" -msgstr "La orden ha sido enviada" +msgid "2 Hours" +msgstr "2 horas" -#: ../app/controllers/application_controller/dialog_runner.rb:76 -msgid "%{button_name} Button not yet implemented" -msgstr "El botón %{button_name} no implementado aún" +msgid "2 Hours Ago" +msgstr "Hace 2 horas" -#: ../app/controllers/application_controller/explorer.rb:74 -#: ../app/controllers/application_controller/explorer.rb:176 -msgid "invalid button action" -msgstr "acción de botón no válida" +msgid "2 Minutes" +msgstr "2 minutos" -#: ../app/controllers/application_controller/explorer.rb:130 -msgid "Button not yet implemented %{model}:%{action}" -msgstr "Botón no implementado aún %{model}:%{action}" +msgid "2 Months" +msgstr "2 meses" -#: ../app/controllers/application_controller/explorer.rb:228 -#: ../app/controllers/application_controller/tags.rb:187 -#: ../app/controllers/ops_controller/ops_rbac.rb:615 -msgid "Tag Edit was cancelled by the user" -msgstr "La edición de etiquetas fue cancelada por el usuario" +msgid "2 Months Ago" +msgstr "Hace 2 meses" -#: ../app/controllers/application_controller/explorer.rb:246 -msgid "No Class found for explorer tree node id '%{number}'" -msgstr "" -"No se encontró la clase para el ID del nodo de árbol del explorador '%{number}" -"'" +msgid "2 Quarters Ago" +msgstr "Hace 2 trimestres" -#: ../app/controllers/application_controller/explorer.rb:253 -msgid "Last selected %{record_name} no longer exists" -msgstr "El último %{record_name} seleccionado ya no existe" +msgid "2 Weeks" +msgstr "2 semanas" -#: ../app/controllers/application_controller/feature.rb:27 -msgid "No TreeBuilder found for feature '%{name}'" -msgstr "No se encontró TreeBuilder para la funcionalidad '%{name}'" +msgid "2 Weeks Ago" +msgstr "Hace 2 semanas" -#: ../app/controllers/application_controller/filter.rb:46 -#: ../app/controllers/application_controller/policy_support.rb:145 -#: ../app/controllers/availability_zone_controller.rb:109 -#: ../app/controllers/cim_instance_controller.rb:82 -#: ../app/controllers/configuration_controller.rb:56 -#: ../app/controllers/configuration_job_controller.rb:68 -#: ../app/controllers/ems_cluster_controller.rb:189 -#: ../app/controllers/host_aggregate_controller.rb:157 -#: ../app/controllers/host_controller.rb:520 -#: ../app/controllers/infra_networking_controller.rb:85 -#: ../app/controllers/miq_ae_tools_controller.rb:25 -#: ../app/controllers/miq_policy_controller.rb:84 -#: ../app/controllers/miq_request_controller.rb:23 -#: ../app/controllers/orchestration_stack_controller.rb:137 -#: ../app/controllers/storage_controller.rb:175 -#: ../app/controllers/storage_manager_controller.rb:21 -#: ../app/controllers/vm_common.rb:26 ../app/controllers/vm_common.rb:827 -#: ../app/helpers/application_helper.rb:698 -msgid "Button not yet implemented" -msgstr "Botón no implementado aún" +msgid "2 Weeks before retirement" +msgstr "2 Semanas antes del vencimiento" -#: ../app/controllers/application_controller/filter.rb:100 -msgid "" -"There is an error in the selected expression element, perhaps it was imported " -"or edited manually." +msgid "2 Years Ago" +msgstr "Hace 2 años" + +msgid "2-3" +msgstr "2-3" + +msgid "20 Hours Ago" +msgstr "Hace 20 horas" + +msgid "20 items" msgstr "" -"Hay un error en la expresión seleccionada, quizás fue importada o modificada m" -"anualmente" -#: ../app/controllers/application_controller/filter.rb:101 -msgid "" -"This element should be removed and recreated or you can report the error to yo" -"ur %{product} administrator." +msgid "200 items" msgstr "" -"Este ítem debe ser eliminado y recreado o puede informar el error al administr" -"ador del %{product}." -#: ../app/controllers/application_controller/filter.rb:102 -msgid "Error details: %{message}" -msgstr "Detalles del error: %{message}" +msgid "21 Hours Ago" +msgstr "Hace 21 horas" -#: ../app/controllers/application_controller/filter.rb:300 -msgid "Search Name is required" -msgstr "El nombre de la búsqueda es obligatorio" +msgid "22 Hours Ago" +msgstr "Hace 22 horas" -#: ../app/controllers/application_controller/filter.rb:306 -msgid "%{model} search \"%{name}\" was saved" -msgstr "%{model} \"%{name}\" buscado fue almacenado" +msgid "23 Hours Ago" +msgstr "Hace 23 horas" -#: ../app/controllers/application_controller/filter.rb:343 -msgid "%{model} search \"%{name}\" was successfully loaded" -msgstr "%{model} \"%{name}\" buscado fue cargado con éxito" +msgid "24 Hour Time Period" +msgstr "Periodo de tiempo de 24 Horas" -#: ../app/controllers/application_controller/filter.rb:353 -msgid "%{model} \"%{name}\": Error during 'delete': %{error_message}" -msgstr "\"%{name}\" %{model}: Error al 'eliminar': %{error_message}" +msgid "3 - Specify Target Options to qualify target %{hosts} or %{clusters}." +msgstr "3 - Especifique las opciones de destino para calificar los %{hosts} o %{clusters} de destino." -#: ../app/controllers/application_controller/filter.rb:365 -msgid "%{model} search \"%{name}\": Delete successful" -msgstr "%{model} \"%{name}\" buscado: Eliminado con éxito" +msgid "3 Days" +msgstr "3 días" -#: ../app/controllers/application_controller/filter.rb:376 -msgid "The current search details have been reset" -msgstr "Los detalles de búsqueda actuales han sido restaurados" +msgid "3 Days Ago" +msgstr "Hace 3 días" -#: ../app/controllers/application_controller/filter.rb:555 -msgid "The selected Filter record was not found" -msgstr "No se encontró el filtro seleccionado" +msgid "3 Hours" +msgstr "3 horas" -#: ../app/controllers/application_controller/filter.rb:557 -msgid "The selected Filter can not be set as Default because it requires user input" -msgstr "" -"No se puede definir el filtro seleccionado como predeterminado, puesto que req" -"uiere entrada de usuario." +msgid "3 Hours Ago" +msgstr "Hace 3 horas" -#: ../app/controllers/application_controller/filter.rb:673 -msgid " - Filtered by \"%{text}\"" -msgstr " - Filtrado por \"%{text}\"" +msgid "3 Minutes" +msgstr "3 minutos" -#: ../app/controllers/application_controller/filter.rb:675 -msgid " - Filtered by \"%{text}\" report" -msgstr " - Filtrado por informe \"%{text}\"" +msgid "3 Months" +msgstr "3 meses" -#: ../app/controllers/application_controller/filter.rb:680 -msgid " - Filtered by custom search" -msgstr "- Filtrado por búsqueda del cliente" +msgid "3 Months Ago" +msgstr "Hace 3 meses" -#: ../app/controllers/application_controller/filter.rb:774 -msgid "A field must be chosen to commit this expression element" -msgstr "Un campo debe ser elegido para asignar esta expresión" +msgid "3 Quarters Ago" +msgstr "Hace 3 trimestres" -#: ../app/controllers/application_controller/filter.rb:782 -#: ../app/controllers/application_controller/filter.rb:803 -msgid "Field Value Error: %{msg}" -msgstr "Error de valor de campo: %{msg}" +msgid "3 Weeks" +msgstr "3 semanas" -#: ../app/controllers/application_controller/filter.rb:813 -msgid "A tag category must be chosen to commit this expression element" -msgstr "Un tipo de etiqueta debe ser elegido para asignar esta expresión" +msgid "3 Weeks Ago" +msgstr "Hace 3 semanas" -#: ../app/controllers/application_controller/filter.rb:815 -msgid "A tag value must be chosen to commit this expression element" -msgstr "Un valor de etiqueta debe ser elegido para asignar esta expresión" +msgid "3 Years Ago" +msgstr "Hace 3 años" -#: ../app/controllers/application_controller/filter.rb:827 -msgid "A registry key name must be entered to commit this expression element" -msgstr "" -"Un nombre de llave de registro debe ser introducida para asignar esta expresió" -"n" +msgid "3-4" +msgstr "3-4" -#: ../app/controllers/application_controller/filter.rb:829 -msgid "A registry value name must be entered to commit this expression element" -msgstr "" -"Un nombre de valor de registro debe ser introducido para asignar esta expresió" -"n" +msgid "30 Days before retirement" +msgstr "30 Días antes del vencimiento" -#: ../app/controllers/application_controller/filter.rb:831 -msgid "Registry Value Error: %{msg}" -msgstr "Error de valor de registro: %{msg}" +msgid "30 Minutes" +msgstr "30 minutos" -#: ../app/controllers/application_controller/filter.rb:847 -msgid "A find field must be chosen to commit this expression element" -msgstr "Un campo debe ser elegido para asignar esta expresión" +msgid "32 Bit Architecture" +msgstr "Arquitectura de 32 Bits" -#: ../app/controllers/application_controller/filter.rb:850 -msgid "A check field must be chosen to commit this expression element" -msgstr "Un campo de comprobación debe ser elegido para asignar esta expresión" +msgid "4 - Change the Trend Options used to calculate the daily trends, if desired." +msgstr "4 - Cambiar las Opciones de tendencia usadas para calcular las tendencias diarias, si se desea." -#: ../app/controllers/application_controller/filter.rb:853 -msgid "The check count value must be an integer to commit this expression element" -msgstr "" -"La verificación del valor de la cuenta debe ser un entero para asignar este ít" -"em" +msgid "4 Days" +msgstr "4 días" -#: ../app/controllers/application_controller/filter.rb:860 -msgid "Find Value Error: %{msg}" -msgstr "Error de valor de búsqueda: %{msg}" +msgid "4 Days Ago" +msgstr "Hace 4 dias" -#: ../app/controllers/application_controller/filter.rb:867 -msgid "Check Value Error: %{msg}" -msgstr "Verificar error de valor: %{msg}" +msgid "4 Hours" +msgstr "4 horas" -#: ../app/controllers/application_controller/filter.rb:903 -msgid "Select an expression element type" -msgstr "Seleccione un tipo de expresión" +msgid "4 Hours Ago" +msgstr "Hace 4 horas" -#: ../app/controllers/application_controller/filter.rb:992 -#: ../app/views/miq_capacity/_bottlenecks_options.html.haml:20 -#: ../app/views/miq_request/_prov_field.html.haml:31 -msgid "ALL" -msgstr "TODOS" +msgid "4 Minutes" +msgstr "4 minutos" -#: ../app/controllers/application_controller/miq_request_methods.rb:74 -msgid "Add of new %{type} Request was cancelled by the user" -msgstr "El proceso para añadir una nueva petición %{type} fue cancelado por el usuario" +msgid "4 Months" +msgstr "4 meses" -#: ../app/controllers/application_controller/miq_request_methods.rb:197 -msgid "Edit of %{model} Request \"%{name}\" was cancelled by the user" -msgstr "El usuario canceló la edición de %{model} solicitud \"%{name}\"." +msgid "4 Months Ago" +msgstr "Hace 4 meses" -#: ../app/controllers/application_controller/miq_request_methods.rb:200 -msgid "Provision %{type} Request was cancelled by the user" -msgstr "El usuario canceló la solicitud de aprovisionamiento %{type}" +msgid "4 Quarters Ago" +msgstr "Hace 4 trimestres" -#: ../app/controllers/application_controller/miq_request_methods.rb:226 -msgid "Edit %{type}" -msgstr "Modificar %{type}" +msgid "4 Weeks" +msgstr "4 semanas" -#: ../app/controllers/application_controller/miq_request_methods.rb:228 -msgid "Add %{type}" -msgstr "Añadir %{type}" +msgid "4 Weeks Ago" +msgstr "Hace 4 semanas" -#: ../app/controllers/application_controller/miq_request_methods.rb:308 -#: ../app/helpers/provider_configuration_manager_helper.rb:14 -#: ../app/helpers/provider_foreman_helper.rb:15 -#: ../app/helpers/storage_manager_helper/textual_summary.rb:15 -#: ../app/helpers/vm_helper/textual_summary.rb:95 -#: ../app/views/host/_config.html.haml:47 -#: ../app/views/ops/_diagnostics_database_tab.html.haml:35 -#: ../app/views/ops/_ldap_domain_show.html.haml:255 -#: ../app/views/ops/_ldap_server_entries.html.haml:17 -#: ../app/views/ops/_selected_by_servers.html.haml:22 -#: ../app/views/ops/_server_desc.html.haml:9 -#: ../app/views/ops/_settings_server_tab.html.haml:16 -#: ../app/views/storage_manager/_form.html.haml:65 -msgid "Hostname" -msgid_plural "Hostnames" -msgstr[0] "Nombre de equipo" -msgstr[1] "Nombres de hosts" +msgid "4 Years Ago" +msgstr "Hace 4 años" -#: ../app/controllers/application_controller/miq_request_methods.rb:309 -#: ../app/helpers/provider_foreman_helper.rb:107 -#: ../app/helpers/provider_foreman_helper.rb:188 -msgid "Configuration Location" -msgstr "Lugar de configuración" +msgid "4-5" +msgstr "4-5" -#: ../app/controllers/application_controller/miq_request_methods.rb:310 -#: ../app/helpers/provider_foreman_helper.rb:113 -#: ../app/helpers/provider_foreman_helper.rb:194 -msgid "Configuration Organization" -msgstr "Organización de configuración" +msgid "45 Minutes" +msgstr "45 minutos" -#: ../app/controllers/application_controller/miq_request_methods.rb:312 -#: ../app/helpers/configuration_job_helper/textual_summary.rb:46 -#: ../app/helpers/provider_configuration_manager_helper.rb:33 -#: ../app/helpers/provider_foreman_helper.rb:44 -#: ../app/views/auth_key_pair_cloud/_form.html.haml:68 -#: ../app/views/catalog/_form_basic_info.html.haml:152 -#: ../app/views/catalog/_form_basic_info.html.haml:174 -#: ../app/views/catalog/_ot_add.html.haml:80 -#: ../app/views/catalog/_ot_copy.html.haml:63 -#: ../app/views/catalog/_ot_edit.html.haml:56 -#: ../app/views/catalog/_sandt_tree_show.html.haml:120 -#: ../app/views/host_aggregate/new.html.haml:59 -#: ../app/views/report/_form_filter_chargeback.html.haml:132 -msgid "Provider" -msgstr "Proveedor" +msgid "5 - Press the Submit button." +msgstr "5 - Presione el botón Enviar." -#: ../app/controllers/application_controller/miq_request_methods.rb:324 -#: ../app/controllers/application_controller/miq_request_methods.rb:347 -#: ../app/controllers/application_controller/miq_request_methods.rb:376 -#: ../app/controllers/application_controller/miq_request_methods.rb:391 -#: ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:29 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:53 -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:43 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:46 -#: ../app/helpers/pxe_helper/textual_summary.rb:52 -#: ../app/helpers/pxe_helper/textual_summary.rb:76 -#: ../app/helpers/pxe_helper/textual_summary.rb:100 -#: ../app/views/alert/_rss_list.html.haml:41 -#: ../app/views/catalog/_ot_add.html.haml:34 -#: ../app/views/catalog/_ot_copy.html.haml:41 -#: ../app/views/catalog/_ot_edit.html.haml:34 -#: ../app/views/catalog/_ot_tree_show.html.haml:24 -#: ../app/views/catalog/_sandt_tree_show.html.haml:261 -#: ../app/views/catalog/_stcat_form.html.haml:43 -#: ../app/views/catalog/_stcat_tree_show.html.haml:27 -#: ../app/views/catalog/_svccat_tree_show.html.haml:44 -#: ../app/views/chargeback/_cb_rate_edit.html.haml:16 -#: ../app/views/chargeback/_cb_rate_edit_table.html.haml:10 -#: ../app/views/chargeback/_cb_rate_show.html.haml:15 -#: ../app/views/chargeback/_cb_rate_show.html.haml:40 -#: ../app/views/configuration/_timeprofile_form.html.haml:24 -#: ../app/views/configuration/_ui_4.html.haml:16 -#: ../app/views/generic_object/explorer.html.haml:26 -#: ../app/views/generic_object/explorer.html.haml:72 -#: ../app/views/generic_object/explorer.html.haml:122 -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_class_form.html.haml:61 -#: ../app/views/miq_ae_class/_class_props.html.haml:55 -#: ../app/views/miq_ae_class/_instance_form.html.haml:63 -#: ../app/views/miq_ae_class/_ns_list.html.haml:22 -#: ../app/views/miq_ae_class/_ns_list.html.haml:124 -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:52 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:252 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:350 -#: ../app/views/miq_ae_customization/_dialog_group_form.html.haml:32 -#: ../app/views/miq_ae_customization/_dialog_info.html.haml:28 -#: ../app/views/miq_ae_customization/_dialog_info_form.html.haml:33 -#: ../app/views/miq_ae_customization/_dialog_tab_form.html.haml:31 -#: ../app/views/miq_ae_customization/_field_values.html.haml:20 -#: ../app/views/miq_ae_customization/_old_dialogs_details.html.haml:36 -#: ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:36 -#: ../app/views/miq_ae_customization/_tag_field_values.html.haml:13 -#: ../app/views/miq_policy/_action_details.html.haml:21 -#: ../app/views/miq_policy/_alert_details.html.haml:23 -#: ../app/views/miq_policy/_alert_profile_details.html.haml:21 -#: ../app/views/miq_policy/_condition_details.html.haml:20 -#: ../app/views/miq_policy/_event_details.html.haml:15 -#: ../app/views/miq_policy/_event_details.html.haml:214 -#: ../app/views/miq_policy/_event_details.html.haml:394 -#: ../app/views/miq_policy/_policy_details.html.haml:24 -#: ../app/views/miq_policy/_policy_details.html.haml:225 -#: ../app/views/miq_policy/_policy_details.html.haml:317 -#: ../app/views/miq_policy/_profile_details.html.haml:22 -#: ../app/views/miq_request/_ae_prov_show.html.haml:16 -#: ../app/views/miq_request/_request.html.haml:87 -#: ../app/views/ops/_ap_form.html.haml:38 -#: ../app/views/ops/_ap_show.html.haml:32 -#: ../app/views/ops/_category_form.html.haml:136 -#: ../app/views/ops/_classification_entries.html.haml:15 -#: ../app/views/ops/_ldap_region_form.html.haml:38 -#: ../app/views/ops/_ldap_region_show.html.haml:31 -#: ../app/views/ops/_rbac_group_details.html.haml:23 -#: ../app/views/ops/_rbac_tenant_details.html.haml:30 -#: ../app/views/ops/_schedule_form.html.haml:45 -#: ../app/views/ops/_schedule_show.html.haml:9 -#: ../app/views/ops/_settings_co_categories_tab.html.haml:12 -#: ../app/views/ops/_settings_details_tab.html.haml:19 -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:29 -#: ../app/views/ops/_settings_server_tab.html.haml:678 -#: ../app/views/ops/_tenant_form.html.haml:42 -#: ../app/views/ops/_tenant_quota_form.html.haml:27 -#: ../app/views/ops/_zone_form.html.haml:37 -#: ../app/views/orchestration_stack/_copy_orchestration_template.html.haml:34 -#: ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 -#: ../app/views/pxe/_pxe_server_details.html.haml:61 -#: ../app/views/pxe/_pxe_server_details.html.haml:108 -#: ../app/views/pxe/_template_form.html.haml:34 -#: ../app/views/report/_db_list.html.haml:51 -#: ../app/views/report/_db_list.html.haml:90 -#: ../app/views/report/_report_info.html.haml:129 -#: ../app/views/report/_report_info.html.haml:248 -#: ../app/views/report/_schedule_form.html.haml:35 -#: ../app/views/report/_show_schedule.html.haml:9 -#: ../app/views/report/_widget_form.html.haml:37 -#: ../app/views/report/_widget_show.html.haml:29 -#: ../app/views/service/_service_form.html.haml:52 -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:32 -#: ../app/views/vm_common/_config.html.haml:202 -#: ../app/views/vm_common/_form.html.haml:36 -#: ../app/views/vm_common/_snap.html.haml:30 -#: ../app/views/vm_common/_snapshots_desc.html.haml:15 -msgid "Description" -msgstr "Descripción" +msgid "5 Days" +msgstr "5 dias" -#: ../app/controllers/application_controller/miq_request_methods.rb:359 -#: ../app/helpers/storage_helper/textual_summary.rb:42 -msgid "Free Space" -msgstr "Espacio libre" +msgid "5 Days Ago" +msgstr "Hace 5 dias" -#: ../app/controllers/application_controller/miq_request_methods.rb:360 -#: ../app/helpers/storage_helper/textual_summary.rb:55 -msgid "Total Space" -msgstr "Espacio total" +msgid "5 Hours Ago" +msgstr "Hace 5 horas" -#: ../app/controllers/application_controller/miq_request_methods.rb:361 -msgid "Storage Clusters" -msgstr "Clústeres de almacenamiento" +msgid "5 Minutes" +msgstr "5 minutos" -#: ../app/controllers/application_controller/miq_request_methods.rb:377 -#: ../app/controllers/application_controller/miq_request_methods.rb:392 -#: ../app/views/miq_policy/_policy_details.html.haml:91 -msgid "Last Updated" -msgstr "Fecha de la última actualización" +msgid "5 Months" +msgstr "5 meses" -#: ../app/controllers/application_controller/miq_request_methods.rb:408 -#: ../app/controllers/application_controller/miq_request_methods.rb:445 -msgid "Platform" -msgstr "Plataforma" +msgid "5 items" +msgstr "" -#: ../app/controllers/application_controller/miq_request_methods.rb:409 -#: ../app/helpers/flavor_helper/textual_summary.rb:35 -msgid "CPUs" -msgstr "CPU" +msgid "5-6" +msgstr "5-6" -#: ../app/controllers/application_controller/miq_request_methods.rb:412 -msgid "Deprecated" -msgstr "Obsolete" +msgid "50 items" +msgstr "" -#: ../app/controllers/application_controller/miq_request_methods.rb:414 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:100 -#: ../app/helpers/vm_helper/textual_summary.rb:160 -#: ../app/helpers/vm_helper/textual_summary.rb:627 -msgid "Snapshots" -msgstr "Instantáneas" +msgid "500 items" +msgstr "" -#: ../app/controllers/application_controller/miq_request_methods.rb:438 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:70 -#: ../app/views/host/_form.html.haml:139 -msgid "MAC Address" -msgid_plural "MAC Addresses" -msgstr[0] "Dirección MAC" -msgstr[1] "Direcciones MAC" +msgid "6 Days" +msgstr "6 dias" -#: ../app/controllers/application_controller/miq_request_methods.rb:444 -msgid "Total VMs" -msgstr "Total de máquinas virtuales" +msgid "6 Days Ago" +msgstr "Hace 6 dias" -#: ../app/controllers/application_controller/miq_request_methods.rb:447 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:118 -#: ../app/views/miq_request/_ae_prov_show.html.haml:18 -msgid "State" -msgstr "Estado" +msgid "6 Hours" +msgstr "6 horas" -#: ../app/controllers/application_controller/miq_request_methods.rb:619 -msgid "" -"%{typ} Request was Submitted, you will be notified when your %{title} are read" -"y" -msgstr "" -"La petición de %{typ} ha sido enviada, será notificado cuando su %{title} esté" -" listo" +msgid "6 Hours Ago" +msgstr "Hace 6 horas" -#: ../app/controllers/application_controller/miq_request_methods.rb:619 -msgid "" -"%{typ} Request was re-submitted, you will be notified when your %{title} are r" -"eady" -msgstr "" -"La petición %{typ} fue reenviada, será notificado cuando su %{title} esté list" -"o" +msgid "6 Months" +msgstr "6 meses" -#: ../app/controllers/application_controller/miq_request_methods.rb:781 -#: ../app/controllers/application_controller/miq_request_methods.rb:969 -msgid "Cannot create Request Info, error: %{error_message}" -msgstr "No se puede crear la solicitud de información, error: %{error_message}" +msgid "6 Months Ago" +msgstr "Hace 6 meses" -#: ../app/controllers/application_controller/performance.rb:48 -msgid "" -"No Hourly or Daily data is available, real time data from the Most Recent Hour" -" is being displayed" -msgstr "" -"Los datos por hora o diarios no están disponibles, los datos en tiempo real es" -"tán siendo mostrados" +msgid "6-7" +msgstr "6-7" -#: ../app/controllers/application_controller/performance.rb:52 -msgid "No Daily data is available" -msgstr "No hay datos diarios disponibles" +msgid "64 Bit Architecture" +msgstr "Arquitectura de 64 bits" -#: ../app/controllers/application_controller/performance.rb:175 -msgid "Refresh of recent C&U data has been initiated" -msgstr "La actualización de los datos recientes de C&U ha sido iniciada" +msgid "7 Days Ago" +msgstr "Hace 7 dias" -#: ../app/controllers/application_controller/performance.rb:186 -msgid "No Utilization data available" -msgstr "Ningún dato de utilización disponible" +msgid "7 Hours Ago" +msgstr "Hace 7 horas" -#: ../app/controllers/application_controller/performance.rb:271 -msgid "No %{tag} %{model} were running %{time}" -msgstr "Ningún %{tag} %{model} estaba en ejecución a las %{time}" +msgid "7-8" +msgstr "7-8" -#: ../app/controllers/application_controller/performance.rb:276 -msgid "%{model} (%{tag} running %{time})" -msgstr "%{model} (%{tag} en ejecución a las %{time})" +msgid "8 Hours" +msgstr "8 horas" -#: ../app/controllers/application_controller/performance.rb:289 -msgid "running" -msgstr "en ejecución" +msgid "8 Hours Ago" +msgstr "Hace 8 horas" -#: ../app/controllers/application_controller/performance.rb:289 -msgid "stopped" -msgstr "detenido" +msgid "8-9" +msgstr "8-9" -#: ../app/controllers/application_controller/performance.rb:291 -msgid "No %{model} were %{state} %{time}" -msgstr "Ningún %{model} estaba %{state} a las %{time}" +msgid "9 Hours Ago" +msgstr "Hace 9 horas" -#: ../app/controllers/application_controller/performance.rb:318 -#: ../app/controllers/application_controller/performance.rb:355 -msgid "No events available for this Cluster" -msgstr "No hay eventos disponibles para este clúster" +msgid "9-10" +msgstr "9-10" -#: ../app/controllers/application_controller/performance.rb:320 -#: ../app/controllers/application_controller/performance.rb:357 -msgid "No events available for this %{model}" -msgstr "No hay eventos disponibles para este %{model}" +msgid ": About" +msgstr "" -#: ../app/controllers/application_controller/performance.rb:512 -msgid "No %{model} were running %{time}" -msgstr "Ningún %{model} estaba en ejecución a las %{time}" +msgid ": All UI Tasks" +msgstr ": Todas las tareas de la interfaz de usuario" -#: ../app/controllers/application_controller/performance.rb:523 -msgid "Chart menu selection not yet implemented" -msgstr "Aún no se implementó la selección del menú del diagrama." +msgid ": Analysis Profiles" +msgstr ": Perfiles de análisis" -#: ../app/controllers/application_controller/performance.rb:526 -msgid "Unknown error has occurred" -msgstr "Ha ocurrido un error desconocido" +msgid ": Automation" +msgstr "" -#: ../app/controllers/application_controller/performance.rb:596 -#: ../app/controllers/application_controller/performance.rb:609 -msgid "%{name} Capacity & Utilization (by %{option}:%{model})" -msgstr "%{name} Capacidad y Uso (para %{option}:%{model})" +msgid ": Chargeback" +msgstr "" -#: ../app/controllers/application_controller/performance.rb:600 -#: ../app/controllers/application_controller/performance.rb:615 -#: ../app/controllers/availability_zone_controller.rb:31 -#: ../app/controllers/cim_instance_controller.rb:127 -#: ../app/controllers/ems_cluster_controller.rb:74 -#: ../app/controllers/ems_common.rb:53 ../app/controllers/ems_common.rb:497 -#: ../app/controllers/host_aggregate_controller.rb:32 -#: ../app/controllers/host_controller.rb:58 -#: ../app/controllers/mixins/containers_common_mixin.rb:72 -#: ../app/controllers/storage_controller.rb:89 -#: ../app/controllers/vm_common.rb:304 -msgid "%{name} Capacity & Utilization" -msgstr "%{name} Capacidad y Uso" +msgid ": Configuration" +msgstr ": Configuracion" -#: ../app/controllers/application_controller/performance.rb:725 -msgid "%{date_from} to %{date_to}" -msgstr "Desde %{date_from} hasta %{date_to}" +msgid ": Configuration Management" +msgstr ": Gestión de Configuración" -#: ../app/controllers/application_controller/performance.rb:1102 -msgid "Error while generating report: %{error_message}" -msgstr "Error al generar el informe: %{error_message}" +msgid ": Control" +msgstr ": Control" -#: ../app/controllers/application_controller/policy_support.rb:29 -msgid "Edit policy assignments was cancelled by the user" -msgstr "La modificación de asignación de políticas ha sido cancelada por el usuario" +msgid ": Credentials" +msgstr "" -#: ../app/controllers/application_controller/policy_support.rb:57 -msgid "Policy assignments successfully changed" -msgstr "Asignación de políticas cambiadas con éxito" +msgid ": Dashboard" +msgstr "" -#: ../app/controllers/application_controller/policy_support.rb:84 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:62 -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:78 -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:100 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:122 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:87 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:98 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:114 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:79 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:61 -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:87 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:86 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:65 -msgid "Policy Simulation" -msgstr "Simulación de política" +msgid ": Instances" +msgstr ": Instancias" -#: ../app/controllers/application_controller/policy_support.rb:161 -msgid "One or more %{model} must be selected to Policy assignment" -msgstr "Se deben seleccionar uno o más %{model} para Asignación de política" +msgid ": Login" +msgstr ": Acceso" -#: ../app/controllers/application_controller/policy_support.rb:185 -msgid "'%{model}' Policy Assignment" -msgstr "'%{model}' Asignacion de política" +msgid ": My UI Tasks" +msgstr ": Mis tareas de UI" -#: ../app/controllers/application_controller/policy_support.rb:218 -msgid "[%{name}] Policy Profile %{mode} (db:[%{db}]" -msgstr "Perfil de política [%{name}] %{mode} (db:[%{db}]" +msgid ": Optimize" +msgstr ": Optimizar" -#: ../app/controllers/application_controller/policy_support.rb:266 -msgid "No Policy Profiles are available" -msgstr "No hay perfiles de políticas disponibles" +msgid ": PXE" +msgstr ": PXE" -#: ../app/controllers/application_controller/report_downloads.rb:64 -msgid "Report generation returned: Status [%{status}] Message [%{message}]" -msgstr "Generación de informe devuelta: Estado [%{status}] Mensaje [%{message}]" +msgid ": Playbooks (Ansible Tower)" +msgstr "" -#: ../app/controllers/application_controller/sysprep_answer_file.rb:12 -msgid "Sysprep \"%{params}\" upload was successful" -msgstr "Sysprep \"%{params}\" la carga fue exitosa" +msgid ": Policy Simulation" +msgstr ": Simulación de política" -#: ../app/controllers/application_controller/sysprep_answer_file.rb:16 -msgid "Error during Sysprep \"%{params}\" file upload: %{message}" -msgstr "Error durante la carga del archivo Sysprep \"%{params}\": %{message}" +msgid ": RSS" +msgstr ": RSS" -#: ../app/controllers/application_controller/sysprep_answer_file.rb:22 -msgid "Use the Choose file button to locate an Upload file" -msgstr "Usar el botón de Elegir archivo para ubicar un archivo cargado" +msgid ": Repositories" +msgstr "" -#: ../app/controllers/application_controller/tags.rb:136 -msgid "One or more %{model} must be selected to Smart Tagging" -msgstr "Se deben seleccionar uno o más %{model} para Etiquetado inteligente" +msgid ": Requests" +msgstr ": Peticiones" -#: ../app/controllers/application_controller/tags.rb:162 -#: ../app/controllers/application_controller/tags.rb:384 -#: ../app/views/layouts/_tag_edit.html.haml:8 -msgid "Tag Assignment" -msgstr "Asignación de etiquetas" +msgid ": Servers" +msgstr ": Servidores" -#: ../app/controllers/application_controller/tags.rb:236 -msgid "Error during 'Save Tags': %{error_message}" -msgstr "Error durante \"Guardar etiquetas\": %{error_message}" +msgid ": Storage - Storage Managers" +msgstr ": Almacenamiento - Gestores de almacenamiento" -#: ../app/controllers/application_controller/tags.rb:238 -msgid "Tag edits were successfully saved" -msgstr "Las pestañas editadas se han almacenado correctamente" +msgid ": VM Usage" +msgstr ": Uso de MV" -#: ../app/controllers/application_controller/timelines.rb:24 -msgid "No events available for this timeline" -msgstr "Ningún evento disponible para su línea de tiempo" +msgid ": Virtual Machines" +msgstr ": Máquinas virtuales " -#: ../app/controllers/application_controller/timelines.rb:65 -msgid "Group: %{name}" -msgstr "Grupo: %{name}" +msgid ": Workloads" +msgstr ": Cargas de trabajo" -#: ../app/controllers/application_controller/timelines.rb:106 -msgid "Report: %{name}" -msgstr "Informe: %{name}" +msgid "< Back" +msgstr "< Atrás" -#: ../app/controllers/application_controller/timelines.rb:232 -#: ../app/controllers/miq_capacity_controller.rb:724 -msgid "Error building timeline %{error_message}" -msgstr "Error al crear la línea de tiempo %{error_message}" +msgid "" +msgstr "" -#: ../app/controllers/application_controller/timelines.rb:236 -#: ../app/controllers/dashboard_controller.rb:619 -#: ../app/controllers/dashboard_controller.rb:747 -#: ../app/controllers/miq_capacity_controller.rb:735 -msgid "No records found for this timeline" -msgstr "No hay ítemes encontrados para su línea de tiempo" +msgid "" +msgstr "" -#: ../app/controllers/application_controller/timelines/options.rb:2 -msgid "Management Events" -msgstr "Eventos de gestión" +msgid "" +msgstr "" -#: ../app/controllers/application_controller/timelines/options.rb:2 -msgid "Policy Events" -msgstr "Eventos de política" +msgid "" +msgstr "" -#: ../app/controllers/application_controller/tree_support.rb:131 -msgid "Datacenter: %{name}" -msgstr "Centro de datos: %{name}" +msgid "" +msgstr "" -#: ../app/controllers/application_controller/tree_support.rb:189 -msgid "Folder: %{name}" -msgstr "Carpeta: %{name}" +msgid "" +msgstr "" -#: ../app/controllers/application_controller/tree_support.rb:226 -#: ../app/presenters/tree_builder_clusters.rb:75 -#: ../app/presenters/tree_builder_network.rb:32 -#: ../app/presenters/tree_builder_storage_adapters.rb:23 -msgid "Host: %{name}" -msgstr "Host: %{name}" +msgid "" +msgstr "" -#: ../app/controllers/application_controller/tree_support.rb:248 -#: ../app/presenters/tree_builder_datacenter.rb:36 -msgid "Cluster: %{name}" -msgstr "Clúster: %{name}" +msgid "" +msgstr "" -#: ../app/controllers/application_controller/tree_support.rb:278 -msgid "Resource Pool: #%{name}" -msgstr "Agrupación de recursos: #%{name}" +msgid "" +msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:91 -#: ../app/controllers/auth_key_pair_cloud_controller.rb:134 -#: ../app/controllers/cloud_tenant_controller.rb:71 -#: ../app/controllers/cloud_volume_controller.rb:246 -#: ../app/controllers/cloud_volume_controller.rb:283 -msgid "Add New %{model}" -msgstr "Añadir un nuevo %{model}" +msgid "" +msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:109 -#: ../app/controllers/catalog_controller.rb:92 -#: ../app/controllers/catalog_controller.rb:561 -#: ../app/controllers/chargeback_controller.rb:107 -#: ../app/controllers/cloud_tenant_controller.rb:81 -#: ../app/controllers/cloud_volume_controller.rb:256 -#: ../app/controllers/host_controller.rb:266 -#: ../app/controllers/miq_ae_class_controller.rb:617 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:196 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:11 -#: ../app/controllers/miq_policy_controller/conditions.rb:13 -#: ../app/controllers/ops_controller/ops_rbac.rb:108 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:228 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:9 -#: ../app/controllers/ops_controller/settings/ldap.rb:37 -#: ../app/controllers/ops_controller/settings/ldap.rb:154 -#: ../app/controllers/ops_controller/settings/schedules.rb:48 -#: ../app/controllers/ops_controller/settings/tags.rb:41 -#: ../app/controllers/pxe_controller/iso_datastores.rb:43 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:103 -#: ../app/controllers/pxe_controller/pxe_image_types.rb:31 -#: ../app/controllers/pxe_controller/pxe_servers.rb:48 -#: ../app/controllers/report_controller/reports/editor.rb:44 -#: ../app/controllers/report_controller/schedules.rb:225 -#: ../app/controllers/report_controller/widgets.rb:47 -#: ../app/controllers/storage_manager_controller.rb:65 -msgid "Add of new %{model} was cancelled by the user" -msgstr "La adición de un nuevo %{model} fue cancelado por el usuario" +msgid "" +msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:117 -msgid "Creating %{model} %{name}" -msgstr "Creando %{model} \"%{name}\"" +msgid "" +msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:121 -msgid "Unable to create %{model} %{name}. %{error}" -msgstr "No se puede crear %{model} %{name}. %{error}" +msgid "" +msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:144 -#: ../app/controllers/cloud_volume_controller.rb:295 -#: ../app/controllers/cloud_volume_controller.rb:356 -msgid "Validation successful" -msgstr "Validación exitosa" +msgid "" +msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:163 -msgid "No Key Pairs were selected for deletion" -msgstr "" +msgid "" +msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:169 -#: ../app/controllers/cloud_tenant_controller.rb:214 -#: ../app/controllers/cloud_volume_controller.rb:385 -#: ../app/controllers/host_aggregate_controller.rb:333 -msgid "%{model} no longer exists." -msgstr "%{model} ya no existe." +msgid "" +msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:174 -#: ../app/controllers/cloud_volume_controller.rb:397 -#: ../app/controllers/cloud_volume_controller.rb:403 -msgid "Couldn't initiate deletion of %{model} \"%{name}\": %{details}" -msgstr "No se pudo iniciar la eliminación de %{model} \"%{name}\": %{details}" +msgid "" +msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:190 -#: ../app/controllers/cloud_volume_controller.rb:420 -#: ../app/controllers/host_aggregate_controller.rb:352 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:418 -msgid "The selected %{model} was deleted" -msgstr "El %{model} seleccionado se eliminó" +msgid "" +msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:211 -msgid "Delete initiated for %{number} Key Pair" -msgid_plural "Delete initiated for %{number} Key Pairs" -msgstr[0] "Eliminar el iniciado para %{number} par de claves" -msgstr[1] "Eliminar el iniciado para %{number} pares de claves" +msgid "" +msgstr "" -#: ../app/controllers/availability_zone_controller.rb:19 -msgid "Availabilty Zones" -msgstr "Zonas disponibles" +msgid "" +msgstr "" -#: ../app/controllers/availability_zone_controller.rb:24 -#: ../app/controllers/cim_instance_controller.rb:120 -#: ../app/controllers/cloud_object_store_object_controller.rb:38 -#: ../app/controllers/cloud_volume_controller.rb:86 -#: ../app/controllers/configuration_job_controller.rb:35 -#: ../app/controllers/host_aggregate_controller.rb:25 -#: ../app/controllers/host_controller.rb:32 -#: ../app/controllers/infra_networking_controller.rb:60 -#: ../app/controllers/mixins/containers_common_mixin.rb:58 -#: ../app/controllers/mixins/generic_show_mixin.rb:33 -#: ../app/controllers/mixins/generic_show_mixin.rb:83 -#: ../app/controllers/orchestration_stack_controller.rb:29 -#: ../app/controllers/storage_manager_controller.rb:218 -msgid "%{name} (Summary)" -msgstr "%{name} (Resumen)" +msgid "" +msgstr "" -#: ../app/controllers/availability_zone_controller.rb:36 -#: ../app/controllers/host_aggregate_controller.rb:37 -msgid "%{name} (%{table}(s))" -msgstr "%{name} (%{table}(s))" +msgid "" +msgstr "" -#: ../app/controllers/availability_zone_controller.rb:44 -#: ../app/controllers/availability_zone_controller.rb:52 -#: ../app/controllers/cloud_volume_controller.rb:113 -#: ../app/controllers/host_aggregate_controller.rb:46 -#: ../app/controllers/host_aggregate_controller.rb:54 -#: ../app/controllers/host_controller.rb:97 -#: ../app/controllers/mixins/containers_common_mixin.rb:150 -#: ../app/controllers/mixins/generic_show_mixin.rb:85 -#: ../app/controllers/mixins/middleware_common_mixin.rb:48 -#: ../app/controllers/orchestration_stack_controller.rb:35 -#: ../app/controllers/orchestration_stack_controller.rb:42 -#: ../app/controllers/orchestration_stack_controller.rb:49 -#: ../app/controllers/resource_pool_controller.rb:52 -msgid "%{name} (All %{title})" -msgstr "%{name} (Todos los %{title})" +msgid "" -msgstr "" +msgid "Saved Chargeback Report \"%{last_run_on}\"" +msgstr "Informe de anulación \"%{last_run_on}\" guardado" -#: ../app/views/layouts/_tag_edit_items.html.haml:5 -msgid "%{amount} %{object} Being Tagged" -msgid_plural "%{amount} %{objects} Being Tagged" -msgstr[0] "%{amount} %{object} se está etiquetando." -msgstr[1] "%{amount} %{objects} se están etiquetando." +msgid "Saved Chargeback Report [%{name}]" +msgstr "Informe de anulación [%{name}] guardado" -#: ../app/views/layouts/_tl_detail.html.haml:20 -msgid "Timeline View" -msgstr "Vista de cronología" +msgid "Saved Chargeback Reports" +msgstr "Informes de Chargeback guardados" -#: ../app/views/layouts/_tl_detail.html.haml:25 -msgid "Select your desired settings and click the apply button to view timeline data." -msgstr "" -"Seleccionar la configuración deseada y haga clic en el botón Aplicar para ver " -"los datos de la línea de tiempo." +msgid "Saved Chargeback Reports \"%{report_name}\"" +msgstr "Informes de anulación \"%{report_name}\" guardados" -#: ../app/views/layouts/_tl_options.html.haml:13 -msgid "Options %{model}: %{name}" -msgstr "Opciones %{model}: %{name}" +msgid "Saved Report \"%{name} - %{timestamp}\"" +msgstr "" -#: ../app/views/layouts/_tl_options.html.haml:68 -msgid "Show Detailed Events" -msgstr "Mostrar eventos detallados" +msgid "Saved Report \"%{name}\"" +msgstr "Informe \"%{name}\" guardado" -#: ../app/views/layouts/_tl_options.html.haml:78 -msgid "Successful Events" -msgstr "Eventos exitosos" +msgid "Saved Report \"%{time}\" not found, Schedule may have failed" +msgstr "No se encontró el informe guardado \"%{time}\"; pudo haber fallado la programación" -#: ../app/views/layouts/_tl_options.html.haml:85 -msgid "Failed Events" -msgstr "Eventos con error" +msgid "Saved Report no longer exists" +msgstr "El informe guardado ya no existe" -#: ../app/views/layouts/_tl_options.html.haml:92 -msgid "Both" -msgstr "Ambos" +msgid "Saved Report: %{report_name}" +msgstr "Informe guardado: %{report_name}" -#: ../app/views/layouts/_tl_options.html.haml:116 -msgid "Months" -msgstr "Meses" +msgid "Saved Reports" +msgstr "Informes guardados" -#: ../app/views/layouts/_tl_options.html.haml:116 -msgid "Weeks" -msgstr "Semanas" +msgid "Savings" +msgstr "Archivos guardados" -#: ../app/views/layouts/_tl_options.html.haml:124 -msgid "centered" -msgstr "centrado" +msgid "Scale" +msgstr "Escala" -#: ../app/views/layouts/_tl_options.html.haml:124 -msgid "ending" -msgstr "finalizando" +msgid "Scale Down" +msgstr "Reducir verticalmente" -#: ../app/views/layouts/_tl_show.html.haml:15 -msgid "* Dates/Times on this page are based on time zone: %{time_zone}." -msgstr "* Las fechas/horas en esta página se basan en la zona horaria: %{time_zone}." +msgid "Scale Infrastructure Provider" +msgstr "Escala de proveedores de infraestructura" -#: ../app/views/layouts/_user_input_filter.html.haml:110 -msgid "Apply the current filter (Enter)" -msgstr "Aplicar el filtro actual (Enter)" +msgid "Scale Infrastructure Provider Down" +msgstr "Reducir verticalmente proveedor de infraestructura" -#: ../app/views/layouts/_user_input_filter.html.haml:123 -msgid "Cancel (Esc)" -msgstr "Cancelar (Esc)" +msgid "Scale this Infrastructure Provider" +msgstr "Escalar este proveedor de infraestructura" -#: ../app/views/layouts/_user_options.html.haml:22 -msgid "Server: %{appliance_name}" -msgstr "Servidor: %{appliance_name}" +msgid "Scale this Infrastructure Provider down" +msgstr "Reducir verticalmente este proveedor de infraestructura" -#: ../app/views/layouts/_user_options.html.haml:32 -msgid "Change Group" -msgstr "Cambiar grupo" +msgid "Scaling" +msgstr "Escalamiento" -#: ../app/views/layouts/_user_options.html.haml:40 -msgid "Currently Selected Group" -msgstr "Grupo seleccionado actualmente" +msgid "Scan History" +msgid_plural "Scan History" +msgstr[0] "Analizar historial" +msgstr[1] "Analizar historial" -#: ../app/views/layouts/_user_options.html.haml:45 -msgid "Current Group" -msgstr "Grupo actual" +msgid "Scanning" +msgstr "Análisis en ejecución" -#: ../app/views/layouts/_user_options.html.haml:52 -msgid "Change to this Group" -msgstr "Cambiar a este grupo" +msgid "Schedule Info" +msgstr "Información de programación" -#: ../app/views/layouts/_user_options.html.haml:83 -msgid "Click to Logout" -msgstr "Haga clic para salir" +msgid "Schedules" +msgstr "Programaciones" -#: ../app/views/layouts/_user_options.html.haml:85 -msgid "Logout" -msgstr "Cerrar sesión" +msgid "Schema" +msgstr "Esquema" -#: ../app/views/layouts/_user_options.html.haml:93 -msgid "Logging into" -msgstr "Inicio de sesión" +msgid "Schema for %{model} \"%{name}\" was saved" +msgstr "El esquema para %{model} \"%{name}\" fue guardado" -#: ../app/views/layouts/_x_edit_buttons.html.haml:62 -#: ../app/views/layouts/_x_edit_buttons.html.haml:201 -msgid "Download Report to YAML" -msgstr "Descargar informe en YAML" +msgid "Scope" +msgstr "Rango" -#: ../app/views/layouts/_x_edit_buttons.html.haml:63 -#: ../app/views/layouts/_x_edit_buttons.html.haml:201 -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:100 -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:106 -#: ../app/views/miq_ae_tools/_import_export.html.haml:138 -#: ../app/views/miq_policy/_export.html.haml:84 -#: ../app/views/miq_policy/_export.html.haml:149 -#: ../app/views/report/_export_custom_reports.html.haml:63 -#: ../app/views/report/_export_widgets.html.haml:112 -#: ../app/views/report/_export_widgets.html.haml:139 -msgid "Export" -msgstr "Exportar" +msgid "Scope (Choose an element of the Policy scope to edit)" +msgstr "Alcance (elegir un ítem del alcance de la política para Modificar)" -#: ../app/views/layouts/_x_edit_buttons.html.haml:85 -#: ../app/views/vm_common/_snap.html.haml:63 -msgid "Create" -msgstr "Crear" +msgid "Scope (Choose an element of the scope to edit)" +msgstr "Alcance (elegir un ítem del alcance para modificar)" -#: ../app/views/layouts/_x_edit_buttons.html.haml:123 -#: ../app/views/layouts/_x_edit_buttons.html.haml:165 -msgid "Reset All menus to %{product} defaults" -msgstr "Restablecer todos los menúes a los valores predeterminados de %{product}" +msgid "Scope (Press the \"Edit\" button to edit the scope)" +msgstr "Alcance (presionar el botón \"modificar\" para modificar el alcance)" -#: ../app/views/layouts/_x_pagingcontrols.html.haml:18 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:151 -#: ../app/views/miq_ae_class/_class_instances.html.haml:14 -#: ../app/views/miq_ae_class/_class_methods.html.haml:14 -#: ../app/views/miq_ae_class/_ns_details.html.haml:13 -#: ../app/views/miq_ae_class/_ns_list.html.haml:15 -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:59 -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:112 -msgid "Check All" -msgstr "Comprobar todos" +msgid "Scopes / Expressions" +msgstr "Alcances/Expresiones" -#: ../app/views/layouts/_x_pagingcontrols.html.haml:96 -#: ../app/views/layouts/_x_pagingcontrols.html.haml:99 -msgid "%{start_number}-%{end_number} of %{total_items}" -msgstr "" +msgid "Script" +msgstr "Script" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:6 -#: ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:6 -msgid "New " -msgstr "Nuevo " +msgid "Search" +msgstr "Búsqueda" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:7 -#: ../app/views/ops/_rbac_user_details.html.haml:116 -#: ../app/views/storage_manager/_form.html.haml:205 -msgid "Confirm Password" -msgstr "Confirmar contraseña" +msgid "Search Expression" +msgstr "Buscar expresión" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:13 -#: ../app/views/layouts/angular/_auth_credentials_angular.html.haml:83 -msgid "Passwords do not match" -msgstr "Las contraseñas no concuerdan" +msgid "Search Expression Preview" +msgstr "検索式のプレビュー" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:16 -#: ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:6 -msgid "" -"Server information, Username and matching password fields are needed to perfor" -"m verification of credentials" -msgstr "" -"Se necesitan los datos de los campos de información del servidor, nombre de us" -"uario y confirmación de contraseña para realizar la verificación de las creden" -"ciales" - -#: -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:54 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:36 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:88 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:124 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:212 -#: ../app/views/layouts/angular/_auth_service_account_angular.html.haml:33 -#: ../app/views/provider_foreman/_form.html.haml:130 -msgid "Spaces are prohibited" -msgstr "Los espacios están prohibidos" +msgid "Search Name is required" +msgstr "El nombre de la búsqueda es obligatorio" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:59 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:146 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:172 -msgid "Invalid input format, please enter a GUID" -msgstr "Formato de entrada no válido, ingrese un GUID" +msgid "Search by Name within results" +msgstr "Búsqueda por nombre con resultados" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:11 -msgid "Change stored private key" -msgstr "Cambiar clave privada almacenada" +msgid "Second" +msgstr "Segundo" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:12 -msgid "Cancel private key change" -msgstr "Cancelar cambio de clave privada" +msgid "Secondary (Display) Filter" +msgstr "Filtro secundario (visualización)" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:13 -msgid "" -"Server information, username and private key fields are needed to perform veri" -"fication of credentials" -msgstr "" -"Se necesitan los datos de los campos de información del servidor, nombre de us" -"uario y clave privada para realizar la verificación de las credenciales" +msgid "Secondary (Display) Filter - Filters the rows based on child table fields" +msgstr "Filtro secundario (visualización): filtra las filas en función de los campos de tabla secundaria" -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:78 -msgid "Must be a number (greater than 0)" -msgstr "Debe ser un número (mayor que 0)" +msgid "Secret Access Key" +msgstr "Llave de acceso secreto" -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:102 -#: ../app/views/ops/_diagnostics_database_tab.html.haml:51 -msgid "Database Name" -msgstr "Nombre de la base de datos" +msgid "Secret Access Keys do not match" +msgstr "Las llaves de acceso secreto no coinciden" -#: ../app/views/layouts/angular/_auth_credentials_angular.html.haml:55 -msgid "Verify %{password_label}" -msgstr "Verificar %{password_label}" +msgid "Secret Key" +msgstr "Clave secreta" -#: ../app/views/layouts/angular/_auth_service_account_angular.html.haml:13 -msgid "Service Account JSON" -msgstr "Cuenta de servicio JSON" +msgid "Secret Name" +msgstr "Nombre secreto" -#: ../app/views/layouts/angular/_form_button_submit_angular.html.haml:1 -msgid "Run a Database backup now" -msgstr "Ejecutar una copia de seguridad de la base de datos ahora" +msgid "Section" +msgstr "Sección" -#: ../app/views/layouts/angular/_form_button_submit_angular.html.haml:2 -msgid "Username and matching password fields are needed to run a database backup" -msgstr "" -"Se necesitan los campos nombre de usuario y confirmación de contraseña para ej" -"ecutar una copia de seguridad de la base de datos" +msgid "Security" +msgstr "Seguridad" -#: ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:2 -msgid "Validate the credentials by logging into the selected %{title_for_host}" -msgstr "Validar las credenciales iniciando sesión en el %{title_for_host} seleccionado" +msgid "Security Domain" +msgstr "Dominio de seguridad" -#: ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:3 -msgid "" -"%{host} to validate against, Username and matching password fields are needed " -"to perform verification of credentials" +msgid "Security Group \"%{name}\" created" msgstr "" -"%{host} con el cual validar, se necesitan los campos de nombre de usuario y co" -"ntraseña para realizar la verificación de credenciales" - -#: ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:44 -msgid "Validation Required" -msgstr "Validación requerida" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:38 -msgid "Hawkular" -msgstr "Hawkular" +msgid "Security Group \"%{name}\" updated" +msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 -msgid "" -"Access Key ID and matching Secret Access Key fields are needed to perform veri" -"fication of credentials" +msgid "Security Group Description" msgstr "" -"Es necesario el ID de la Llave de Acceso y la concordancia de los campos de la" -" Llave Secreta de Acceso para llevar a cabo la verificación de los credenciale" -"s" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 -msgid "Cancel secret access key change" -msgstr "Cancelar cambio de clave de acceso secreto" +msgid "Security Group Information" +msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 -msgid "Change stored secret access key" -msgstr "Cambiar clave de acceso secreto almacenada" +msgid "Security Group Name" +msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 -msgid "Confirm Secret Access Key" -msgstr "Confirmar clave de acceso secreto" +msgid "Security Group creation: Task start failed: ID [%{id}]" +msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 -msgid "Secret Access Keys do not match" -msgstr "Las llaves de acceso secreto no coinciden" +msgid "Security Group no longer exists." +msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:136 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:155 -msgid "Cancel stored token" -msgstr "Cancelar token almacenado" +msgid "Security Group update failed: Task start failed: ID [%{id}]" +msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:136 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:155 -msgid "Change stored token" -msgstr "Cambiar token almacenado" +msgid "Security Groups" +msgstr "Grupos de seguridad" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:136 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:155 -msgid "Confirm Token" -msgstr "Confirmar token" +msgid "Security Protocol" +msgstr "Protocolo de seguridad" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:136 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:155 -msgid "Tokens do not match" -msgstr "Los tokens no coinciden" +msgid "Select" +msgstr "Seleccionar" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:180 -msgid "Copy and paste the contents of your Service Account JSON file above." -msgstr "" -"Copiar y pegar el contenido de su archivo JSON de la cuenta de servicios de ar" -"riba." +msgid "Select %{host} to validate against" +msgstr "Seleccionar %{host} con respecto al cual realizar la validación" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:191 -msgid "Used to authenticate as a service account against your provider." -msgstr "Utilizado para autenticar como una cuenta de servicio contra su proveedor." +msgid "Select Alerts to be Evaluated" +msgstr "Seleccionar alertas para evaluar" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:207 -msgid "Required. Used to gather Utilization data." -msgstr "Requerido. Se utiliza para recopilar datos de utilización." +msgid "Select All" +msgstr "Seleccionar todo" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:335 msgid "Select Ceilometer if eventing is not enabled on AMQP." msgstr "Seleccionar Ceilometer si los eventos no están habilitados en AMQP." -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:346 -msgid "" -"Enable event monitoring. Used to automatically resync state when changes are p" -"erformed on VMware vCloud Director directly." -msgstr "" -"Habilitar monitorización de eventos. Utilizado para resincronizar el estado au" -"tomáticamente cuando los cambios se realizan directamente en VMware vCloud Dir" -"ector." +msgid "Select Classes to copy" +msgstr "Seleccionar clases para copiar" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:351 -msgid "Disable event monitoring." -msgstr "Inhabilitar monitorización de eventos" +msgid "Select Destination Host" +msgstr "Seleccionar host de destino" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:413 -msgid "hawkular URL and API port fields are needed to perform validation." -msgstr "" -"Se necesitan los campos de URL de hawkular y puerto de API para realizar la va" -"lidación." +msgid "Select Dialogs to import" +msgstr "Seleccionar cuadros de diálogo para importar" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:493 -msgid "" -"IPMI IP Address, Username and matching password fields are needed to perform v" -"erification of credentials" -msgstr "" -"Se necesitan los campos de dirección IP IMPI, nombre de usuario y contraseña p" -"ara realizar la verificación de credenciales" +msgid "Select Entry Point %{entry_point}" +msgstr "Seleccionar punto de entrada %{entry_point}" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:627 msgid "Select Host to validate against" msgstr "Seleccione un equipo para validarse" -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:19 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:19 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:27 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:27 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:35 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:35 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:43 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:43 -#: ../app/views/ops/_settings_replication_tab.html.haml:500 -#: ../app/views/ops/_settings_replication_tab.html.haml:506 -#: ../app/views/static/buttons.html.haml:41 -#: ../app/views/static/buttons.html.haml:42 -#: ../app/views/vm_common/_reconfigure.html.haml:413 -#: ../app/views/vm_common/_reconfigure.html.haml:413 -msgid "Reset changes" -msgstr "Restablecer cambios" - -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:19 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:19 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:27 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:27 -#: ../app/views/static/buttons.html.haml:22 -#: ../app/views/static/buttons.html.haml:23 -#: ../app/views/static/buttons.html.haml:32 -#: ../app/views/static/buttons.html.haml:33 -msgid "Save changes" -msgstr "Guardar cambios" +msgid "Select Instances to copy" +msgstr "Seleccionar instancias para copiar" -#: ../app/views/layouts/exp_atom/_edit_count.html.haml:24 -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:31 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:27 -#: ../app/views/layouts/exp_atom/_edit_tag.html.haml:34 -msgid "Use Alias" -msgstr "Usar Alias" +msgid "Select Methods to copy" +msgstr "Seleccionar métodos para copiar" -#: ../app/views/layouts/exp_atom/_edit_count.html.haml:46 -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:157 -#: ../app/views/layouts/exp_atom/_edit_tag.html.haml:54 -msgid "user input" -msgstr "entrada de usuario" +msgid "Select Policy Profiles" +msgstr "Seleccione los modelos de políticas" -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:63 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:48 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:178 -#: ../app/views/miq_request/_pre_prov.html.haml:81 -#: ../app/views/miq_request/_prov_vm_grid.html.haml:91 -#: ../app/views/miq_request/_prov_vm_grid.html.haml:161 -#: ../app/views/report/_form_styling.html.haml:79 -msgid "false" -msgstr "falso" +msgid "Select Server:" +msgstr "Seleccionar servidor:" -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:63 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:48 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:178 -#: ../app/views/miq_request/_pre_prov.html.haml:81 -#: ../app/views/miq_request/_prov_vm_grid.html.haml:91 -#: ../app/views/miq_request/_prov_vm_grid.html.haml:161 -#: ../app/views/report/_form_styling.html.haml:79 -msgid "true" -msgstr "verdadero" +msgid "Select Start date and End date to Collect C & U Data" +msgstr "Seleccionar fechas de inicio y de finalización para recopilar datos de capacidad y utilización" -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:103 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:216 -msgid "THROUGH" -msgstr "A TRAVÉS DE" +msgid "Select Tags to apply" +msgstr "Seleccionar etiquetas para aplicar" -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:134 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:115 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:247 -msgid "Click to change to a relative Date/Time format" -msgstr "Haga clic para cambiar el formato de una Fecha/Hora" +msgid "Select a Group:" +msgstr "Seleccionar un grupo:" -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:144 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:125 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:257 -msgid "Click to change to a specific Date/Time format" -msgstr "Haga clic para cambiar a un formato especifico de Fecha/Hora" +msgid "Select a Policy Profile to add:" +msgstr "Seleccione un modelo de políticas para añadir:" -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:151 -msgid "Check Any" -msgstr "No comprobar ninguno" +msgid "Select a Tag to Apply" +msgstr "Seleccionar una etiqueta para aplicar" -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:151 -msgid "Check Count" -msgstr "Cuenta de comprobación" +msgid "Select a VM to Submit the Simulation Options" +msgstr "Seleccionar una máquina virtual para enviar las opciones de simulación" -#: ../app/views/layouts/exp_atom/_edit_regkey.html.haml:6 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review.html.haml:9 -msgid "Key:" -msgstr "Llave:" +msgid "Select a customer tag to assign:" +msgstr "Seleccione un cliene de etiquetas para asignar:" -#: ../app/views/layouts/exp_atom/_edit_regkey.html.haml:14 -msgid "Value:" -msgstr "Valor:" +msgid "Select a filter to set it as my default" +msgstr "Seleccionar un filtro para establecerlo como predeterminado" -#: ../app/views/layouts/exp_atom/_edit_regkey.html.haml:30 -msgid "Data:" -msgstr "Dato:" +msgid "Select a node on the left to view Bottlenecks report." +msgstr "Seleccionar un nodo en la izquierda para ver informe de cuellos de botella." -#: ../app/views/layouts/exp_atom/_editor.html.haml:29 -#: ../app/views/report/_menu_form1.html.haml:79 -msgid "Commit expression element changes" -msgstr "Confirmar cambios de ítemes de expresión" +msgid "Select a node on the left to view Bottlenecks timeline." +msgstr "Seleccionar un nodo en la izquierda para ver línea de tiempo de cuellos de botella." -#: ../app/views/layouts/exp_atom/_editor.html.haml:41 -#: ../app/views/report/_menu_form1.html.haml:92 -msgid "Discard expression element changes" -msgstr "Descartar los cambios del ítem de expresión" +msgid "Select a node on the left to view Utilization information." +msgstr "Seleccionar un nodo en la izquierda para ver información de utilización" -#: ../app/views/layouts/exp_atom/_editor.html.haml:57 -msgid "NOT" -msgstr "NOT" +msgid "Select a node on the left to view Utilization report." +msgstr "Seleccionar un nodo en la izquierda para ver informe de utilización." -#: ../app/views/layouts/exp_atom/_editor.html.haml:94 -msgid "User will input the value" -msgstr "El usuario introducirá el valor" +msgid "Select a reference VM or Manual Input source to Submit the Planning Options" +msgstr "Seleccionar una máquina virtual de referencia o una fuente de entrada manual para enviar las opciones de planificación" -#: ../app/views/layouts/gtl/_list.html.haml:117 -#: ../app/views/layouts/gtl/_list.html.haml:196 -#: ../app/views/ops/_settings_server_tab.html.haml:56 -msgid "Click to view this VM" -msgstr "Haga clic para ver esta VM" +msgid "Select a single Arbitration Profile to edit" +msgstr "Seleccionar un solo perfil de arbritraje para modificar" -#: ../app/views/layouts/gtl/_list.html.haml:202 -#: ../app/views/layouts/gtl/_list.html.haml:313 -msgid "%{agent} record no longer exists" -msgstr "El registro %{agent} ya no existe." +msgid "Select a single Cloud Provider to edit" +msgstr "Seleccionar un solo proveedor de nube para modificar" -#: ../app/views/layouts/gtl/_list.html.haml:206 -msgid "Click to view %{record}" -msgstr "Haga clic para ver %{record}" +msgid "Select a single Cloud Tenant to edit" +msgstr "Seleccionar un solo inquilino de nube para modificar" -#: ../app/views/layouts/gtl/_list.html.haml:209 -msgid "No task target captured" -msgstr "No se capturó ningún destino de la tarea" +msgid "Select a single Containers Provider to edit" +msgstr "Seleccionar un solo proveedor de contenedores para modificar" -#: ../app/views/layouts/gtl/_list.html.haml:214 -msgid "Click to view target %{model}" -msgstr "Haga clic para ver el destino %{model}" +msgid "Select a single Customization Templates to copy" +msgstr "Seleccionar una sola plantilla de personalización para copiar" -#: ../app/views/layouts/gtl/_list.html.haml:216 -msgid "%{number} bytes" -msgstr "%{number} bytes" +msgid "Select a single Customization Templates to edit" +msgstr "Seleccionar una sola plantilla de personalización para modificar" -#: ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:12 -#: ../app/views/layouts/listnav/_availability_zone.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_network.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_object_store_object.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_subnet.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:12 -#: ../app/views/layouts/listnav/_configuration_job.html.haml:12 -#: ../app/views/layouts/listnav/_container_build.html.haml:12 -#: ../app/views/layouts/listnav/_container_group.html.haml:12 -#: ../app/views/layouts/listnav/_container_image.html.haml:12 -#: ../app/views/layouts/listnav/_container_image_registry.html.haml:12 -#: ../app/views/layouts/listnav/_container_node.html.haml:12 -#: ../app/views/layouts/listnav/_container_project.html.haml:12 -#: ../app/views/layouts/listnav/_container_replicator.html.haml:12 -#: ../app/views/layouts/listnav/_container_route.html.haml:12 -#: ../app/views/layouts/listnav/_container_service.html.haml:12 -#: ../app/views/layouts/listnav/_container_template.html.haml:12 -#: ../app/views/layouts/listnav/_ems_cloud.html.haml:12 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:13 -#: ../app/views/layouts/listnav/_ems_container.html.haml:12 -#: ../app/views/layouts/listnav/_ems_datawarehouse.html.haml:10 -#: ../app/views/layouts/listnav/_ems_infra.html.haml:14 -#: ../app/views/layouts/listnav/_ems_middleware.html.haml:10 -#: ../app/views/layouts/listnav/_ems_network.html.haml:10 -#: ../app/views/layouts/listnav/_ems_storage.html.haml:10 -#: ../app/views/layouts/listnav/_flavor.html.haml:12 -#: ../app/views/layouts/listnav/_floating_ip.html.haml:12 -#: ../app/views/layouts/listnav/_host.html.haml:36 -#: ../app/views/layouts/listnav/_host_aggregate.html.haml:12 -#: ../app/views/layouts/listnav/_load_balancer.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_datasource.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_deployment.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_domain.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_messaging.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_server.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_server_group.html.haml:12 -#: ../app/views/layouts/listnav/_miq_ae_class.html.haml:12 -#: ../app/views/layouts/listnav/_network_port.html.haml:12 -#: ../app/views/layouts/listnav/_network_router.html.haml:12 -#: ../app/views/layouts/listnav/_ontap_file_share.html.haml:12 -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:13 -#: ../app/views/layouts/listnav/_ontap_storage_system.html.haml:12 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:12 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:12 -#: ../app/views/layouts/listnav/_persistent_volume.html.haml:12 -#: ../app/views/layouts/listnav/_pxe_server.html.haml:12 -#: ../app/views/layouts/listnav/_resource_pool.html.haml:13 -#: ../app/views/layouts/listnav/_security_group.html.haml:12 -#: ../app/views/layouts/listnav/_service.html.haml:12 -#: ../app/views/layouts/listnav/_storage.html.haml:13 -#: ../app/views/layouts/listnav/_storage_manager.html.haml:12 -msgid "Show Summary" -msgstr "Mostrar Resumen" +msgid "Select a single Datawarehouse Providers to edit" +msgstr "" -#: ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:23 -#: ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:29 -#: ../app/views/layouts/listnav/_miq_ae_class.html.haml:19 -msgid "Instances (%{count})" -msgstr "Instancias (%{count})" +msgid "Select a single Domains to edit" +msgstr "Seleccionar un solo dominio para modificar" -#: ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:29 -#: ../app/views/layouts/listnav/_availability_zone.html.haml:28 -#: ../app/views/layouts/listnav/_cloud_network.html.haml:25 -#: ../app/views/layouts/listnav/_cloud_subnet.html.haml:25 -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:35 -#: ../app/views/layouts/listnav/_flavor.html.haml:31 -#: ../app/views/layouts/listnav/_host_aggregate.html.haml:28 -#: ../app/views/layouts/listnav/_load_balancer.html.haml:25 -#: ../app/views/layouts/listnav/_network_router.html.haml:25 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:38 -#: ../app/views/layouts/listnav/_security_group.html.haml:25 -msgid "Show all Instances" -msgstr "Mostrar todas las instancias" +msgid "Select a single Group to edit" +msgstr "Seleccionar un solo grupo para modificar" -#: ../app/views/layouts/listnav/_availability_zone.html.haml:22 -msgid "Show this Availability Zone's parent Cloud Provider" -msgstr "Mostrar el proveedor de nube principal de esta zona de disponibilidad" +msgid "Select a single Host Aggregate to Add Host" +msgstr "Seleccionar un solo agregado de hosts a Agregar host" -#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:28 -#: ../app/views/layouts/listnav/_cloud_object_store_object.html.haml:28 -msgid "%{table}: %{name}" -msgstr "%{table}: %{name}" +msgid "Select a single Host Aggregate to Remove Host" +msgstr "Seleccionar un solo agregado de hosts en Borrar host" -#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:37 -#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:44 -msgid "%{table} (%{count})" -msgstr "%{table} (%{count})" +msgid "Select a single Host Aggregate to edit" +msgstr "Seleccionar un solo agregado de hosts a modificar" -#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:44 -msgid "Show this Cloud Object Store's child %{children}'" -msgstr "Mostrar %{children}' secundarios de este almacén de objetos de la nube" +msgid "Select a single Image to Provision Instances" +msgstr "Seleccionar una sola imagen en Aprovisionar instancias" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:22 -msgid "Show this Cloud Tenant's parent Cloud Provider" -msgstr "Mostrar el proveedor de nube principal de este inquilino de nube" +msgid "Select a single Infrastructure Provider to edit" +msgstr "Seleccionar un solo proveedor de infraestructura para modificar" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:28 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:46 -msgid "Show all Security Groups" -msgstr "Mostrar todos los grupos de seguridad" +msgid "Select a single Instance to edit" +msgstr "Seleccionar una sola instancia para modificar" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:42 -msgid "Show all Images" -msgstr "Mostrar todas las imágenes" +msgid "Select a single Item to edit" +msgstr "Seleccionar un solo ítem para modificar" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:49 -msgid "Show all Volumes" -msgstr "Mostrar todos los volúmenes" +msgid "Select a single LDAP Region to edit" +msgstr "Seleccionar una sola región de LDAP para modificar" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:56 -msgid "Show all Volume Snapshots" -msgstr "Mostrar todas las instantáneas de volumen" +msgid "Select a single Method to edit" +msgstr "Seleccionar un solo método para modificar" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:63 -msgid "Cloud Object Stores" -msgstr "Almacenes de objetos de nube" +msgid "Select a single Middleware Providers to edit" +msgstr "Seleccionar un solo proveedor de middleware para modificar" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:63 -msgid "Show all Cloud Object Stores" -msgstr "Mostrar todos los almacenes de objetos de la nube" +msgid "Select a single Namespace to edit" +msgstr "Seleccionar un solo espacio de nombre para modificar" -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:28 -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:36 -msgid "Show this Cloud Volume's parent %{parent}" -msgstr "Mostrar el %{parent} principal de este volumen de la nube" +msgid "Select a single Network Provider to edit" +msgstr "Seleccionar un solo proveedor de infraestructura para modificar" -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:45 -msgid "%{children} (0)" -msgstr "%{children} (0)" +msgid "Select a single PXE Servers to edit" +msgstr "Seleccionar un solo servidor PXE para modificar" -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:51 -msgid "%{children} (%{count})" -msgstr "%{children} (%{count})" +msgid "Select a single Role to copy" +msgstr "Seleccionar un solo rol para copiar" -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:51 -msgid "Show all %{children}" -msgstr "Mostrar todos los %{children}" +msgid "Select a single Role to edit" +msgstr "Seleccionar un solo rol para modificar" -#: ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:22 -#: ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:30 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:22 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:30 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:53 -msgid "%{model}: %{name}" -msgstr "%{model}: %{name}" +msgid "Select a single Storage Manager to edit" +msgstr "Seleccionar un solo administrador de almacenamiento para modificar" -#: ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:22 -#: ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:30 -msgid "Show this Backup's parent %{parent}" -msgstr "Mostrar %{parent} de esta copia de seguridad" +msgid "Select a single System Image Type to edit" +msgstr "Seleccionar un solo tipo de imagen del sistema para modificar" -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:22 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:30 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:53 -msgid "Show this Snapshot's parent %{parent}" -msgstr "Mostrar %{parent} principal de esta instantánea" +msgid "Select a single Template to Provision VMs" +msgstr "Seleccionar una sola plantilla para aprovisionar máquinas virtuales" -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:39 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:45 -msgid "Cloud Volumes based on Snapshot (%{count})" -msgstr "Volúmenes de nube basados en instantánea (%{count})" +msgid "Select a single Template to edit" +msgstr "Seleccionar una sola plantilla para modificar" -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:45 -msgid "Show all Cloud Volumes based on this Snapshot" -msgstr "Mostrar todos los volúmenes de la nube con base en esta instantánea" +msgid "Select a single Time Profile to copy" +msgstr "Seleccionar un solo perfil de tiempo para copiar" -#: ../app/views/layouts/listnav/_compare_sections.html.haml:153 -msgid "Comparison Sections" -msgstr "Secciones de comparación" +msgid "Select a single Time Profile to edit" +msgstr "Seleccionar un solo perfil de tiempo para modificar" -#: ../app/views/layouts/listnav/_compare_sections.html.haml:153 -msgid "Drift Sections" -msgstr "Secciones de desplazamiento" +msgid "Select a single User to copy" +msgstr "Seleccionar un solo usuario para copiar" -#: ../app/views/layouts/listnav/_compare_sections.html.haml:163 -#: ../app/views/layouts/listnav/_compare_sections.html.haml:163 -msgid "Apply sections" -msgstr "Aplicar secciones" +msgid "Select a single User to edit" +msgstr "Seleccionar un solo usuario para Modificar" -#: ../app/views/layouts/listnav/_configuration_job.html.haml:24 -msgid "Show parent %s for this Job" -msgstr "Mostrar %s principal para esta tarea" +msgid "Select a single Volume to edit" +msgstr "Seleccionar un solo volumen para modificar" + +msgid "Select a single item to edit" +msgstr "Seleccionar un solo ítem para modificar" + +msgid "Select a single item to manage quotas" +msgstr "Seleccionar un solo ítem para gestionar cuotas" + +msgid "Select a single service to edit" +msgstr "Seleccionar un solo servicio para modificar" + +msgid "Select a worker to restart" +msgstr "Seleccionar un trabajador para reiniciar" + +msgid "Select an Owner:" +msgstr "Seleccionar un propietario:" + +msgid "Select an expression element type" +msgstr "Seleccione un tipo de expresión" + +msgid "Select authenticaton type" +msgstr "Seleccionar tipo de autenticación" + +msgid "Select currency: " +msgstr "Seleccionar moneda: " -#: ../app/views/layouts/listnav/_configuration_job.html.haml:32 -msgid "Show service %s for this Job" -msgstr "Mostrar servicio %s para esta tarea" +msgid "Select domain you wish to import from:" +msgstr "Seleccionar el dominio desde donde desea importar:" -#: ../app/views/layouts/listnav/_configuration_job.html.haml:37 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:58 -msgid "Show all Parameters" -msgstr "Mostrar todos los parámetros" +msgid "Select existing domain to import into:" +msgstr "Seleccionar dominio existente hacia donde desea importar:" -#: ../app/views/layouts/listnav/_container_group.html.haml:19 -#: ../app/views/layouts/listnav/_container_group.html.haml:27 -#: ../app/views/layouts/listnav/_container_node.html.haml:19 -#: ../app/views/layouts/listnav/_container_node.html.haml:27 -#: ../app/views/layouts/listnav/_container_project.html.haml:19 -#: ../app/views/layouts/listnav/_container_project.html.haml:27 -#: ../app/views/layouts/listnav/_container_replicator.html.haml:19 -#: ../app/views/layouts/listnav/_container_replicator.html.haml:27 -#: ../app/views/layouts/listnav/_container_service.html.haml:19 -#: ../app/views/layouts/listnav/_container_service.html.haml:27 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:26 -#: ../app/views/layouts/listnav/_ems_container.html.haml:19 -#: ../app/views/layouts/listnav/_ems_container.html.haml:27 -#: ../app/views/layouts/listnav/_host.html.haml:71 -#: ../app/views/layouts/listnav/_storage.html.haml:18 -msgid "Capacity & Utilization" -msgstr "Capacidad y utilización" +msgid "Select items to configure" +msgstr "Seleccionar ítemes a configurar" -#: ../app/views/layouts/listnav/_container_group.html.haml:19 -#: ../app/views/layouts/listnav/_container_node.html.haml:19 -#: ../app/views/layouts/listnav/_container_project.html.haml:19 -#: ../app/views/layouts/listnav/_container_replicator.html.haml:19 -#: ../app/views/layouts/listnav/_container_service.html.haml:19 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:26 -#: ../app/views/layouts/listnav/_ems_container.html.haml:19 -#: ../app/views/layouts/listnav/_host.html.haml:71 -#: ../app/views/layouts/listnav/_storage.html.haml:18 -msgid "Show Capacity & Utilization" -msgstr "Mostrar capacidad y utilización" +msgid "Select namespaces you wish to import:" +msgstr "Seleccionar los espacios de nombre que desee importar:" -#: ../app/views/layouts/listnav/_container_group.html.haml:34 -#: ../app/views/layouts/listnav/_container_node.html.haml:34 -#: ../app/views/layouts/listnav/_container_project.html.haml:34 -#: ../app/views/layouts/listnav/_container_replicator.html.haml:34 -#: ../app/views/layouts/listnav/_ems_cloud.html.haml:14 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:32 -#: ../app/views/layouts/listnav/_ems_container.html.haml:34 -#: ../app/views/layouts/listnav/_ems_infra.html.haml:17 -#: ../app/views/layouts/listnav/_ems_network.html.haml:15 -#: ../app/views/layouts/listnav/_ems_storage.html.haml:16 -#: ../app/views/layouts/listnav/_host.html.haml:77 -msgid "Show Timelines" -msgstr "Mostrar Líneas de Tiempo" +msgid "Select one or more Groups to delete" +msgstr "Seleccionar uno o más grupos para eliminar" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:19 -msgid "Show configuration" -msgstr "Mostrar configuración" +msgid "Select one or more LDAP Regions to delete" +msgstr "Seleccionar uno o más regiones de LDAP para eliminar" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:44 -msgid "Show %{host_title}" -msgstr "Mostrar %{host_title}" +msgid "Select one or more Users to delete" +msgstr "Seleccionar uno o más usuarios para eliminar" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:51 -msgid "Show VMs in this %{cluster_title}, but not in Resource Pools below" -msgstr "" -"Mostrar máquinas virtuales en este %{cluster_title}, pero no en las agrupacion" -"es de recursos debajo" +msgid "Select one or more consecutive groups to move up or down." +msgstr "Seleccionar uno o más grupos consecutivos para mover hacia arriba o hacia abajo." -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:58 -msgid "Show all VMs in this %{cluster_title}" -msgstr "Mostrar todas las máquinas virtuales en este %{cluster_title}" +msgid "Select one or more items to delete" +msgstr "Seleccionar uno o más ítemes para eliminar" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:65 -msgid "Show all Templates in this %{cluster_title}" -msgstr "Mostrar todas las plantillas en este %{cluster_title}" +msgid "Select only one or consecutive %{member} to move down" +msgstr "Seleccionar solo un %{member} o %{member} consecutivos para mover hacia abajo" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:72 -msgid "Show tree of all VMs by Resource Pool in this %{cluster_title}" -msgstr "" -"Mostrar árbol de todas las máquinas virtuales por agrupación de recursos en es" -"te %{cluster_title}" +msgid "Select only one or consecutive %{member} to move up" +msgstr "Seleccionar solo un %{member} o %{member} consecutivos para mover hacia arriba" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:79 -#: ../app/views/layouts/listnav/_host.html.haml:120 -msgid "Show Resource Pools" -msgstr "Mostrar agrupaciones de recursos" +msgid "Select only one or consecutive %{name} to move down" +msgstr "Seleccionar solo un %{name} o %{name} consecutivos para mover hacia abajo" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:86 -msgid "Show %{cluster_title} drift history" -msgstr "Mostrar historial de desplazamiento de %{cluster_title}" +msgid "Select only one or consecutive %{name} to move up" +msgstr "Seleccionar solo un %{name} o %{name} consecutivos para mover hacia arriba" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:97 -msgid "Show all %{ontap_storage_system}" -msgstr "Mostrar todos los %{ontap_storage_system}" +msgid "Select only one or consecutive fields to move down" +msgstr "Seleccionar solo un campo o campos consecutivos para mover hacia abajo" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:113 -msgid "Show all %{ontap_file_share}" -msgstr "Mostrar todos los %{ontap_file_share}" +msgid "Select only one or consecutive fields to move to the bottom" +msgstr "Seleccionar solo un campo o campos consecutivos para mover hacia la parte inferior" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:121 -msgid "Show all %{base_storage_extent}" -msgstr "Mostrar todas las %{base_storage_extent}" +msgid "Select only one or consecutive fields to move to the top" +msgstr "Seleccionar solo un campo o campos consecutivos para mover hacia la parte superior" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:28 -msgid "%{hosts} & %{clusters}" -msgstr "%{hosts} y %{clusters}" +msgid "Select only one or consecutive fields to move up" +msgstr "Seleccionar solo un campo o campos consecutivos para mover hacia arriba" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:28 -msgid "Show %{hosts} & %{clusters}" -msgstr "Mostrar %{hosts} & %{clusters}" +msgid "Select the file to deploy" +msgstr "Seleccionar el archivo para implementar" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:34 -msgid "Show VMs & Templates" -msgstr "Mostrar máquinas virtuales y plantillas" +msgid "Select this Host Aggregate" +msgstr "Seleccionar este agregado de hosts" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:42 -msgid "Show all managed %{cluster}" -msgstr "Mostrar todos los %{cluster} administrados" +msgid "Select two or more Templates to compare" +msgstr "Seleccionar dos o más plantillas para comparar" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:49 -msgid "Show all managed %{hosts}" -msgstr "Mostrar todos los %{hosts} administrados" +msgid "Select two or more items to compare" +msgstr "Seleccionar dos o más ítemes para comparar" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:56 -msgid "Show all managed %{storages}" -msgstr "Mostrar todos los %{storages} administrados" +msgid "Select up to 10 timestamps for Drift Analysis" +msgstr "Seleccionar hasta 10 marcas de tiempo para análisis de desplazamiento" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:63 -#: ../app/views/layouts/listnav/_host.html.haml:128 -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:61 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:40 -msgid "Show all VMs" -msgstr "Mostrar todas las máquinas virtuales" +msgid "Select your desired settings and click the apply button to view timeline data." +msgstr "Seleccionar la configuración deseada y haga clic en el botón Aplicar para ver los datos de la línea de tiempo." -#: ../app/views/layouts/listnav/_ems_infra.html.haml:70 -#: ../app/views/layouts/listnav/_host.html.haml:136 -msgid "Show all Templates" -msgstr "Mostrar todas las plantillas" +msgid "Selected" +msgstr "Seleccionado" -#: ../app/views/layouts/listnav/_flavor.html.haml:24 -msgid "Show this Flavor's parent Cloud Provider" -msgstr "Mostrar el proveedor de nube principal de esta clase" +msgid "Selected %{model_name} no longer exists" +msgstr "El %{model_name} seleccionado ya no existe" -#: ../app/views/layouts/listnav/_host.html.haml:41 -msgid "Show %{host} devices" -msgstr "Mostrar dispositivos de %{host}" +msgid "Selected Chargeback Report no longer exists" +msgstr "El informe de anulación seleccionado ya no existe" -#: ../app/views/layouts/listnav/_host.html.haml:47 -msgid "Show %{host} network" -msgstr "Mostrar red de %{host}" +msgid "Selected Cluster / Deployment Roles" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:53 -msgid "Show %{host} storage adapters" -msgstr "Mostrar adaptadores de almacenamiento de %{host}" +msgid "Selected Containers Providers" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:59 -msgid "Show %{host} OS information" -msgstr "Mostrar información de sistema operativo de %{host}" +msgid "Selected Custom Button Group cannot be deleted" +msgstr "El grupo de botones personalizados seleccionado no se puede eliminar" -#: ../app/views/layouts/listnav/_host.html.haml:65 -msgid "Show VMM information" -msgstr "Mostrar información de VMM" +msgid "Selected Custom Button Group cannot be edited" +msgstr "El grupo de botones personalizados seleccionado no se puede modificar" -#: ../app/views/layouts/listnav/_host.html.haml:84 -msgid "Show esx logs on this VM" -msgstr "Mostrar registros esx en esta máquina virtual" +msgid "Selected Datastores" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:95 -msgid "Show this parent %{provider} for this %{host}" -msgstr "Mostrar este %{provider} principal para este %{host}" +msgid "Selected Day" +msgstr "Día seleccionado" -#: ../app/views/layouts/listnav/_host.html.haml:105 -msgid "Show parent %{cluster} for this %{host}" -msgstr "Mostrar %{cluster} principal para este %{host}" +msgid "Selected Fields:" +msgstr "Campos seleccionados:" -#: ../app/views/layouts/listnav/_host.html.haml:144 -msgid "Show %{host} drift history" -msgstr "Mostrar historial de desplazamiento de %{host}" +msgid "Selected Folders" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:185 -msgid "Show the users defined on this %{host}" -msgstr "Mostrar los usuarios definidos en este %{host}" +msgid "Selected Host / Nodes" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:192 -msgid "Show the groups defined on this %{host}" -msgstr "Mostrar los grupos definidos en este %{host}" +msgid "Selected Item" +msgstr "Ítemes seleccionado" -#: ../app/views/layouts/listnav/_host.html.haml:200 -msgid "Show the patches installed on this %{host}" -msgstr "Mostrar los parches instalados en este %{host}" +msgid "Selected Middleware Servers" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:207 -msgid "Show the firewall rules on this %{host}" -msgstr "Mostrar las reglas de firewall en este %{host}" +msgid "Selected Providers" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:218 -msgid "Show the packages installed on this %{host}" -msgstr "Mostrar los paquetes instalados en este %{host}" +msgid "Selected Reports:" +msgstr "Informes seleccionados:" -#: ../app/views/layouts/listnav/_host.html.haml:224 -msgid "Show the services installed on this %{host}" -msgstr "Mostrar los servicios instalados en este %{host}" +msgid "Selected Resource Pools" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:230 -msgid "Show the files on this %{host}" -msgstr "Mostrar los archivos en este %{host}" +msgid "Selected Resources" +msgstr "Recursos seleccionados" -#: ../app/views/layouts/listnav/_host.html.haml:236 -msgid "Show the advanced settings on this %{host}" -msgstr "Mostrar la configuración avanzada en este %{host}" +msgid "Selected Saved Chargeback Report no longer exists" +msgstr "El informe de anulación guardado seleccionado ya no existe" -#: ../app/views/layouts/listnav/_host_aggregate.html.haml:22 -msgid "Show this Host Aggregate's parent Cloud Provider" -msgstr "Mostrar %{parent} de este agregado de hosts" +msgid "Selected Servers" +msgstr "" -#: ../app/views/layouts/listnav/_miq_ae_class.html.haml:19 -msgid "View Instances" -msgstr "Ver instancias" +msgid "Selected Template Contents" +msgstr "Contenidos de plantillas seleccionados" -#: ../app/views/layouts/listnav/_ontap_file_share.html.haml:53 -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:58 -#: ../app/views/layouts/listnav/_ontap_storage_system.html.haml:56 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:37 -#: ../app/views/ontap_file_share/_main.html.haml:16 -#: ../app/views/ontap_logical_disk/_main.html.haml:11 -#: ../app/views/ontap_storage_system/_main.html.haml:16 -#: ../app/views/ontap_storage_volume/_main.html.haml:16 -msgid "Infrastructure Relationships" -msgstr "Relaciones de infraestructura" - -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:32 -msgid "Show all File Shares" -msgstr "Mostrar todos los recursos compartidos de archivos" - -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:50 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:30 -#: ../app/views/layouts/listnav/_storage.html.haml:75 -msgid "Show all Base Extents" -msgstr "Mostrar todas las extensiones base" - -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:70 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:48 -msgid "Show all Hosts" -msgstr "Mostrar todos los hosts" - -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:79 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:56 -msgid "Show all Datastores" -msgstr "Mostrar todos los almacenes de datos" - -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:22 -msgid "Show Filer" -msgstr "Mostrar archivador" - -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:24 -msgid "Show parent Cloud Provider for this Stack" -msgstr "Mostrar proveedor de la nube principal para esta pila" +msgid "Selected VM" +msgstr "Máquina virtual seleccionada" -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:52 -msgid "Show all Cloud Networks" -msgstr "Mostrar todas las redes de la nube" +msgid "Selected branch or tag does not contain a valid domain" +msgstr "La rama seleccionada o etiqueta no corresponden a un dominio válido" -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:64 -msgid "Show all Outputs" -msgstr "Mostrar todas las salidas" +msgid "Selected:" +msgstr "Seleccionado:" -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:70 -msgid "Show all Resources" -msgstr "Mostrar todos los recursos" +msgid "Selection" +msgstr "Selección" -#: ../app/views/layouts/listnav/_persistent_volume.html.haml:22 -msgid "Show this container volume's parent Containers Provider" -msgstr "Mostrar el proveedor de contenedores principal de este volumen de contenedor" +msgid "Selections" +msgstr "Selecciones" -#: ../app/views/layouts/listnav/_resource_pool.html.haml:23 -#: ../app/views/layouts/listnav/_resource_pool.html.haml:33 -msgid "Parent %{title}: %{name}" -msgstr "Ítemes principal %{title}: %{name}" +msgid "Send CTRL+ALT+DEL" +msgstr "" -#: ../app/views/layouts/listnav/_resource_pool.html.haml:23 -msgid "Show VMs" -msgstr "Mostrar máquinas virtuales" +msgid "Send E-mail" +msgstr "Enviar correo electrónico" -#: ../app/views/layouts/listnav/_resource_pool.html.haml:33 -msgid "Show Parent %{host}" -msgstr "Mostrar %{host} principal" +msgid "Send Management Event" +msgstr "Enviar evento de administración" -#: ../app/views/layouts/listnav/_security_group.html.haml:34 -msgid "Show parent Orchestration Stack for this Security Group" -msgstr "Mostrar pila de orquestación principal para este grupo de seguridad" +msgid "Send SNMP Trap" +msgstr "Enviar captura de SNMP" -#: ../app/views/layouts/listnav/_service.html.haml:24 -#: ../app/views/layouts/listnav/_service.html.haml:30 -msgid "Member VMs (%{count})" -msgstr "Máquinas virtuales miembro (%{count})" +msgid "Send a Management Event" +msgstr "Enviar un evento de administración" -#: ../app/views/layouts/listnav/_service.html.haml:30 -msgid "Show member VMs" -msgstr "Mostrar máquinas virtuales de miembros" +msgid "Send an E-mail" +msgstr "Eniviar un correo elctrónico" -#: ../app/views/layouts/listnav/_show_list.html.haml:4 -msgid "No filters defined." -msgstr "No se definieron filtros." +msgid "Send an SNMP Trap" +msgstr "Enviar una captura de SNMP" -#: ../app/views/layouts/listnav/_show_list.html.haml:26 -#: ../app/views/layouts/listnav/_show_list.html.haml:52 -msgid "Apply this filter" -msgstr "Aplicar este filtro" +msgid "Send if Report is Empty" +msgstr "Enviar si el informe está vacío" -#: ../app/views/layouts/listnav/_show_list.html.haml:63 -msgid "Set the current filter as my default" -msgstr "Establecer el filtro actual como mi filtro predeterminado" +msgid "Send test email" +msgstr "Enviar correo electrónico de prueba" -#: ../app/views/layouts/listnav/_show_list.html.haml:64 -#: ../app/views/layouts/listnav/_show_list.html.haml:75 -msgid "Set Default" -msgstr "Establecer valor predeterminado" +msgid "Server" +msgstr "Servidor:" -#: ../app/views/layouts/listnav/_show_list.html.haml:75 -msgid "Select a filter to set it as my default" -msgstr "Seleccionar un filtro para establecerlo como predeterminado" +msgid "Server %{server_name} [%{server_id}] can only be deleted if it is stopped or has not responded for a while" +msgstr "El servidor %{server_name} [%{server_id}] se puede borrar únicamente si se ha detenido o si no ha respondido durante unos instantes" -#: ../app/views/layouts/listnav/_storage.html.haml:29 -msgid "Show all registered %{hosts}" -msgstr "Mostrar todos los %{hosts} registrados" +msgid "Server '%{name}' restarted" +msgstr "Servidor '%{name}' reiniciado" -#: ../app/views/layouts/listnav/_storage.html.haml:37 -msgid "Show registered VMs" -msgstr "Mostrar máquinas virtuales registradas" +msgid "Server Address" +msgstr "Dirección del servidor" -#: ../app/views/layouts/listnav/_storage.html.haml:48 -msgid "Show all Filers" -msgstr "Mostrar todos los archivadores" +msgid "Server Control" +msgstr "Control del servidor" -#: ../app/views/layouts/listnav/_storage.html.haml:60 -msgid "Show File Shares" -msgstr "Mostrar recursos compartidos de archivos" +msgid "Server Groups" +msgstr "Grupos de servidores" -#: ../app/views/layouts/listnav/_storage.html.haml:67 -msgid "Show all LUNs" -msgstr "Mostrar todos los LUN" +msgid "Server License" +msgstr "Licencia de servidor" -#: ../app/views/layouts/listnav/_storage.html.haml:83 -#: ../app/views/miq_ae_customization/_old_dialogs_details.html.haml:53 -#: ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:77 -#: ../app/views/storage/_main.html.haml:19 -msgid "Content" -msgstr "Contenido" +msgid "Server Name" +msgstr "Nombre del servidor" -#: ../app/views/layouts/listnav/_storage.html.haml:86 -msgid "Show all files on this Datastore" -msgstr "Mostrar todos los archivos en este almacén de datos" +msgid "Server Roles" +msgstr "Roles del servidor" -#: ../app/views/layouts/listnav/_storage.html.haml:94 -msgid "Show VM Provisioned Disk Files on this Datastore" -msgstr "" -"Mostrar archivos de disco aprovisionados de máquina virtual en este almacén de" -" datos" +msgid "Server State" +msgstr "Estado del servidor" -#: ../app/views/layouts/listnav/_storage.html.haml:102 -msgid "Show VM snapshot files on this Datastore" -msgstr "Mostrar archivos de instantáneas de máquina virtual en este almacén de datos" +msgid "Server information, Username and matching password fields are needed to perform verification of credentials" +msgstr "Se necesitan los datos de los campos de información del servidor, nombre de usuario y confirmación de contraseña para realizar la verificación de las credenciales" -#: ../app/views/layouts/listnav/_storage.html.haml:110 -msgid "Show VM memory files on this Datastore" -msgstr "Mostrar archivos de memoria de máquina virtual en este almacén de datos" +msgid "Server information, username and private key fields are needed to perform verification of credentials" +msgstr "Se necesitan los datos de los campos de información del servidor, nombre de usuario y clave privada para realizar la verificación de las credenciales" -#: ../app/views/layouts/listnav/_storage.html.haml:118 -msgid "Show Other VM files on this Datastore" -msgstr "Mostrar otros archivos de la máquina virtual en este almacén de datos" +msgid "Server:" +msgstr "Servidor:" -#: ../app/views/layouts/listnav/_storage.html.haml:126 -msgid "Show non-VM files on this Datastore" -msgstr "Mostrar archivos ajenos a la máquina virtual en este almacén de datos" +msgid "Server: %{appliance_name}" +msgstr "Servidor: %{appliance_name}" -#: ../app/views/middleware_server/_add_datasource.html.haml:35 -msgid "Create Datasource" -msgstr "Crear fuente de datos" +msgid "Servers" +msgstr "Servidores" -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:5 -msgid "Step 1/3: Datasource Attributes" -msgstr "Paso 1/3: Atributos de la fuente de datos" +msgid "Servers by Roles" +msgstr "Servidores por roles" -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:22 -msgid "Enter Datasource name" -msgstr "Ingresar el nombre de fuente de datos" +msgid "Service" +msgstr "Servicio" -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:38 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:37 -msgid "Maximum length is 100" -msgstr "Longitud máxima es 100 " +msgid "Service \"%{name}\" was saved" +msgstr "Se guardó el servicio \"%{name}\"" -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:55 -msgid "Enter JNDI name" -msgstr "Ingresar el nombre JNDI" +msgid "Service Account JSON" +msgstr "Cuenta de servicio JSON" -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:71 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:71 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:105 -msgid "Maximum length is 256" -msgstr "Longitud máxima es 256" +msgid "Service Catalogs" +msgstr "Catálogos de servicio" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:5 -msgid "Step 2/3: JDBC Driver" -msgstr "Paso 2/3: Controlador JDBC" +msgid "Service Dialog \"%{name}\" was successfully created" +msgstr "El cuadro de diálogo de servicio \"%{name}\" se creó con éxito" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:24 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:72 -msgid "Enter JDBC Driver name" -msgstr "Ingresar nombre del controlador JDBC" +msgid "Service Dialog Import / Export" +msgstr "Importación/Exportación de cuadros de diálogo de servicio" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:48 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:92 -msgid "Module Name" -msgstr "Nombre del módulo" +msgid "Service Dialog Import/Export" +msgstr "Importar/Exportar servicio Dialog" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:57 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:101 -msgid "Enter JDBC Module name" -msgstr "Ingresar nombre del módulo JDBC" +msgid "Service Dialog Name" +msgstr "Nombre del servicio Dialog" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:82 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:122 -msgid "Driver Class" -msgstr "Clase de controlador" +msgid "Service Dialogs" +msgstr "Cuadros de diálogo de servicio" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:91 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:131 -msgid "Enter JDBC Driver Class" -msgstr "Ingresar clase de controlador JDBC" +msgid "Service Pack" +msgstr "Paquete de servicio" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:5 -msgid "Step 3/3: Connection Settings" -msgstr "Paso 3/3: Parámetros de conexión" +msgid "Service Selection" +msgstr "Selección de servicio" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:37 -msgid "Must start with 'jdbc:'" -msgstr "Debe iniciar por 'jdbc:'" +msgid "Service dialog import cancelled" +msgstr "El Service dialog importado fue cancelado" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:55 -msgid "Enter Username" -msgstr "Ingresar nombre de usuario" +msgid "Service dialogs imported successfully" +msgstr "Service dialogs importados con éxito" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:81 -msgid "Enter Password" -msgstr "Ingresar contraseña" +msgid "Service is already retired" +msgstr "El servicio ya se ha retirado" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:92 -msgid "Security Domain" -msgstr "Dominio de seguridad" +msgid "Services" +msgstr "Servicios" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:98 -msgid "Enter Security Domain" -msgstr "Ingresar dominio de seguridad" +msgid "Session Timeout" +msgstr "Límite de tiempo de sesión" -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:48 -#: ../app/views/middleware_server/_deploy.html.haml:48 -msgid "Select the file to deploy" -msgstr "Seleccionar el archivo para implementar" +msgid "Session was timed out due to inactivity. Please log in again." +msgstr "Sesión expirada por inactividad. Por favor, inicie sesión de nuevo." -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:152 -msgid "Major Version" -msgstr "Versión principal" +msgid "Set Custom Attribute Settings" +msgstr "Establecer configuración de atributo personalizado" -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:160 -msgid "Enter Major Version" -msgstr "Ingresar la versión principal" +msgid "Set Default" +msgstr "Establecer valor predeterminado" -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:170 -msgid "Minor Version" -msgstr "Versión menor" +msgid "Set Node to Manageable" +msgstr "Establecer nodo para administrable " -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:178 -msgid "Enter Minor Version" -msgstr "Ingresar la versión menor" +msgid "Set Nodes to Manageable" +msgstr "Establecer nodos para administrable " -#: ../app/views/middleware_server/_choose_datasource.html.haml:5 -msgid "Choose Datasource:" -msgstr "Elegir fuente de datos:" +msgid "Set Ownership" +msgstr "Establecer propiedad" -#: ../app/views/middleware_server/_choose_datasource.html.haml:15 -msgid "Datasource:" -msgstr "Fuente de datos:" +msgid "Set Ownership for %{vms_or_templates}" +msgstr "Establecer propiedad para %{vms_or_templates}" -#: ../app/views/middleware_server/_deploy.html.haml:36 -msgid "Add Middleware Deployment" -msgstr "Agregar implementación de middleware" +msgid "Set Ownership for Service" +msgstr "" -#: ../app/views/middleware_server/_deploy.html.haml:62 -msgid "Enable Deployment" -msgstr "Habilitar implementación" +msgid "Set Ownership for the selected Services" +msgstr "Establecer propiedad para los servicios seleccionados" -#: ../app/views/middleware_server/_deploy.html.haml:81 -msgid "Runtime Name" -msgstr "Nombre de tiempo de ejecución" +msgid "Set Ownership for the selected Templates" +msgstr "Establecer propiedad para las plantillas seleccionadas" -#: ../app/views/middleware_server/_deploy.html.haml:87 -#: ../app/views/shared/_file_chooser.html.haml:8 -msgid "No file chosen" -msgstr "No se eligió ningún archivo" +msgid "Set Ownership for the selected items" +msgstr "Establecer propiedad para los ítemes seleccionados" -#: ../app/views/middleware_server/_deploy.html.haml:97 -msgid "Overwrite (if exists)" -msgstr "Sobrescribir" +msgid "Set Ownership for this Image" +msgstr "Establecer propiedad para esta imagen" -#: ../app/views/middleware_server/_ops_params.html.haml:49 -msgid "Timeout" -msgstr "Tiempo de espera" +msgid "Set Ownership for this Instance" +msgstr "Establecer propiedad para esta instancia" -#: ../app/views/middleware_server/_ops_params.html.haml:64 -msgid "seconds" -msgstr "segundos" +msgid "Set Ownership for this Service" +msgstr "Establecer propiedad para este servicio" -#: ../app/views/middleware_server/_ops_params.html.haml:74 -msgid "Timeout is required" -msgstr "Se requiere tiempo de espera" +msgid "Set Ownership for this Template" +msgstr "Establecer propiedad para esta plantilla" -#: ../app/views/middleware_server/_ops_params.html.haml:79 -msgid "Timeout min is 0" -msgstr "El tiempo de espera mín. es 0" +msgid "Set Ownership for this VM" +msgstr "Establecer propiedad para esta máquina virtual" -#: ../app/views/middleware_server/_ops_params.html.haml:84 -msgid "Timeout max is 60" -msgstr "El tiempo de espera máx. es 60" +msgid "Set Ownership was cancelled by the user" +msgstr "El usuario canceló el establecimiento de propiedad" -#: ../app/views/middleware_topology/show.html.haml:89 -msgid "Messaging" -msgstr "Mensajería" +msgid "Set Retirement Date" +msgstr "Establecer fecha de retiro" -#: ../app/views/middleware_topology/show.html.haml:144 -msgid "Server Groups" -msgstr "Grupos de servidores" +msgid "Set Retirement Date does not apply to selected %{model}" +msgstr "El establecimiento de la fecha de retiro no se aplica al %{model} seleccionado" -#: ../app/views/middleware_topology/show.html.haml:162 -msgid "" -"Click on the legend to show/hide entities, and double click on the entities in" -" the graph to navigate to their summary pages." +msgid "Set Retirement Date for this Service" msgstr "" -"Haga clic en la leyenda para mostrar u ocultar entidades. Haga doble clic en l" -"as entidades del gráfico para navegar a sus páginas de resumen." - -#: ../app/views/miq_ae_class/_all_tabs.html.haml:11 -#: ../app/views/miq_ae_class/_class_methods.html.haml:5 -msgid "Methods" -msgstr "Métodos" -#: ../app/views/miq_ae_class/_all_tabs.html.haml:17 -#: ../app/views/miq_ae_class/_class_fields.html.haml:8 -#: ../app/views/miq_ae_class/_class_fields.html.haml:69 -msgid "Schema" -msgstr "Esquema" +msgid "Set Retirement Dates" +msgstr "Establecer fechas de retiro" -#: ../app/views/miq_ae_class/_all_tabs.html.haml:44 -msgid "Method Inputs" -msgstr "Método de entrada" +msgid "Set Retirement Dates for the selected Orchestration Stacks" +msgstr "Establecer fechas de retiro para las pilas de orquestación seleccionadas" -#: ../app/views/miq_ae_class/_all_tabs.html.haml:64 -msgid "Namespace Details" -msgstr "Detalles del espacio de nombre" +msgid "Set Retirement Dates for the selected items" +msgstr "Establecer fechas de retiro para los ítemes seleccionados" -#: ../app/views/miq_ae_class/_all_tabs.html.haml:78 -msgid "Namespaces" -msgstr "Espacios de nombre" +msgid "Set Retirement Dates for this Instance" +msgstr "Establecer fechas de retiro para esta instancia" -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_inputs.html.haml:16 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:130 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:36 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:204 -msgid "Default Value" -msgstr "Valor predeterminado" +msgid "Set Retirement Dates for this Orchestration Stack" +msgstr "Establecer fechas de retiro para esta pila de orquestación" -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:27 -msgid "Max Retries" -msgstr "Máx. reintentos" +msgid "Set Retirement Dates for this VM" +msgstr "Establecer fechas de retiro para esta máquina virtual" -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:29 -msgid "Max Time" -msgstr "Tiempo máx." +msgid "Set Retirement this Service?" +msgstr "" -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:19 -#: ../app/views/miq_ae_class/_instance_form.html.haml:91 -msgid "On Entry" -msgstr "En entrada" +msgid "Set Tenant" +msgstr "" -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:23 -#: ../app/views/miq_ae_class/_instance_form.html.haml:95 -msgid "On Error" -msgstr "En error" +msgid "Set filters to default" +msgstr "Establecer filtros en valores predeterminados" -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:21 -#: ../app/views/miq_ae_class/_instance_form.html.haml:93 -msgid "On Exit" -msgstr "En salida" +msgid "Set selected Actions to Asynchronous" +msgstr "Establecer las acciones seleccionadas en asincrónicas" -#: ../app/views/miq_ae_class/_class_fields.html.haml:30 -#: ../app/views/miq_ae_class/_instance_form.html.haml:109 -#: ../app/views/miq_policy/_rsop_form.html.haml:17 -#: ../app/views/miq_request/_prov_options.html.haml:62 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general-review.html.haml:19 -msgid "Type:" -msgstr "Clase:" +msgid "Set selected Actions to Synchronous" +msgstr "Establecer las acciones seleccionadas en sincrónicas" -#: ../app/views/miq_ae_class/_class_fields.html.haml:35 -#: ../app/views/miq_ae_class/_instance_form.html.haml:114 -msgid "Data Type:" -msgstr "Tipo de datos:" +msgid "Set selected items to manageable state." +msgstr "Establecer los ítemes a estado administrable." -#: ../app/views/miq_ae_class/_class_fields.html.haml:39 -#: ../app/views/miq_ae_class/_instance_form.html.haml:119 -msgid "Substitution:" -msgstr "Sustitución:" +msgid "Set selected items to manageable state?" +msgstr "¿Establecer los ítemes a estado administrable?" -#: ../app/views/miq_ae_class/_class_fields.html.haml:56 -msgid "No schema found" -msgstr "No se encontró el esquema" +msgid "Set the current filter as my default" +msgstr "Establecer el filtro actual como mi filtro predeterminado" -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_inputs.html.haml:18 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:132 -msgid "Data Type" -msgstr "Tipo de datos" +msgid "Set this item to manageable state" +msgstr " Establecer este ítem a estado administrable" -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_class_form.html.haml:45 -#: ../app/views/miq_ae_class/_class_props.html.haml:42 -#: ../app/views/miq_ae_class/_instance_form.html.haml:46 -#: ../app/views/miq_ae_class/_method_form.html.haml:48 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:48 -msgid "Display Name" -msgstr "Mostrar nombre" +msgid "Set this item to manageable?" +msgstr " ¿Establecer este ítem a estado administrable?" -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -msgid "Sub" -msgstr "Sub" +msgid "Set to blank" +msgstr "Establecer en blanco" -#: ../app/views/miq_ae_class/_class_fields.html.haml:93 -msgid "Are you sure you want to delete field from schema?" -msgstr "¿Está seguro de que desea eliminar el campo del esquema?" +msgid "Set/Remove Retirement Date" +msgstr "Establecer/eliminar fecha de retiro" -#: ../app/views/miq_ae_class/_class_fields.html.haml:93 -msgid "Click to delete this field from schema" -msgstr "Haga clic para eliminar este campo del esquema" +msgid "Set/Remove retirement date for %{vm_or_template}" +msgstr "Establecer o eliminar fecha de retiro para %{vm_or_template}" -#: ../app/views/miq_ae_class/_class_fields.html.haml:150 -msgid "New Field" -msgstr "Nuevo campo" +msgid "Set/Remove retirement date for Service" +msgstr "" -#: ../app/views/miq_ae_class/_class_fields.html.haml:160 -#: ../app/views/miq_ae_class/_inputs.html.haml:98 -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:7 -#: ../app/views/ops/_ap_form_file.html.haml:55 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:99 -#: ../app/views/ops/_ap_form_registry.html.haml:74 -#: ../app/views/ops/_classification_entry.html.haml:18 -#: ../app/views/ops/_ldap_forest_entries.html.haml:63 -#: ../app/views/ops/_ldap_forest_entries.html.haml:63 -msgid "Add this entry" -msgstr "Añadir esta entrada" +msgid "Set/remove retirement date was cancelled by the user" +msgstr "El usuario canceló la operación de establecer o eliminar fecha de retiro" -#: ../app/views/miq_ae_class/_class_instances.html.haml:50 -msgid "No instances found" -msgstr "No se encontraron instancias" +msgid "Setting priority is not allowed for the selected item" +msgstr "La prioridad de opciones no está permitida para el ítem seleccionado" -#: ../app/views/miq_ae_class/_class_methods.html.haml:50 -msgid "No methods found" -msgstr "No se encontraron métodos" +msgid "Setting tracing to true may cause excessive log lines to be written" +msgstr "Establecer el seguimiento en verdadero puede hacer que se escriban líneas de registro excesivas" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:18 -msgid "From Domain" -msgstr "Del dominio" +msgid "Settings" +msgstr "Configuración" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:34 -msgid "To Domain" -msgstr "Al dominio" +msgid "Settings %{model}" +msgstr "%{model} de configuración" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:62 -msgid "New Name" -msgstr "Nuevo nombre" +msgid "Settings %{model} \"%{name}\"" +msgstr "%{model} \"%{name}\" de configuración" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:78 -msgid "Copy to same path" -msgstr "Copiar la misma ruta" +msgid "Settings %{model} \"%{name}\" (current)" +msgstr "%{model} \"%{name}\" de configuración (actual)" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:96 -msgid "Replace items if they already exist?" -msgstr "¿Desea reemplazar los ítemes si estos ya existen?" +msgid "Settings %{text}" +msgstr "%{text} de configuración" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:114 -msgid "Namespace" -msgstr "Espacio de nombre" +msgid "Severity" +msgstr "" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:132 -msgid "selected to copy" -msgstr "seleccionado para copiar" +msgid "Shared" +msgstr "Compartido" -#: ../app/views/miq_ae_class/_domain_overrides.html.haml:2 -msgid "Domain Overrides (by priority)" -msgstr "Reemplazo de dominio (por prioridad)" +msgid "Shelve" +msgstr "Aplazar" -#: ../app/views/miq_ae_class/_domain_overrides.html.haml:13 -msgid "Click to view this %{model} in the \"%{domain_name}\" Domain" -msgstr "Haga clic para ver este %{model} en el dominio \"%{domain_name}\"" +msgid "Shelve Offload" +msgstr "Aplazar descarga" -#: ../app/views/miq_ae_class/_domains_priority_form.html.haml:9 -msgid "Domains:" -msgstr "Dominios:" +msgid "Shelve Offload the selected items" +msgstr "Aplazar descarga de los ítemes seleccionados" -#: ../app/views/miq_ae_class/_domains_priority_form.html.haml:25 -#: ../app/views/miq_ae_class/_fields_seq_form.html.haml:27 -#: ../app/views/ops/_ldap_seq_form.html.haml:46 -#: ../app/views/ops/_ldap_seq_form.html.haml:46 -#: ../app/views/report/_db_seq_form.html.haml:35 -#: ../app/views/shared/buttons/_column_lists.html.haml:99 -#: ../app/views/shared/buttons/_group_order_form.html.haml:41 -msgid "Move selected fields up" -msgstr "Mover campos seleccionados hacia arriba" +msgid "Shelve Offload the selected items?" +msgstr "¿Desea aplazar la descarga de los ítemes seleccionados?" -#: ../app/views/miq_ae_class/_domains_priority_form.html.haml:32 -#: ../app/views/miq_ae_class/_fields_seq_form.html.haml:39 -#: ../app/views/ops/_ldap_seq_form.html.haml:57 -#: ../app/views/ops/_ldap_seq_form.html.haml:57 -#: ../app/views/report/_db_seq_form.html.haml:47 -#: ../app/views/shared/buttons/_column_lists.html.haml:115 -#: ../app/views/shared/buttons/_group_order_form.html.haml:57 -msgid "Move selected fields down" -msgstr "Mover campos seleccionados hacia abajo" +msgid "Shelve Offload this Instance" +msgstr "Aplazar descarga de esta instancia" -#: ../app/views/miq_ae_class/_domains_priority_form.html.haml:42 -#: ../app/views/report/_db_seq_form.html.haml:59 -#: ../app/views/shared/buttons/_group_order_form.html.haml:73 -msgid "* Select one or more consecutive groups to move up or down." -msgstr "* Seleccione uno o más grupos consecutivos para moverlos arriba o abajo." +msgid "Shelve Offload this Instance?" +msgstr "¿Desea aplazar la descarga de esta instancia?" -#: ../app/views/miq_ae_class/_fields_seq_form.html.haml:11 -msgid "Class Schema Sequencing:" -msgstr "Secuencia del esquema de clase:" +msgid "Shelve the selected items" +msgstr "Aplazar los ítemes seleccionados" -#: ../app/views/miq_ae_class/_fields_seq_form.html.haml:54 -msgid "* Select one or more consecutive fields to move up or down." -msgstr "* Seleccione uno o más campos consecutivos para moverlos arriba o abajo." +msgid "Shelve the selected items?" +msgstr "¿Desea aplazar los ítemes seleccionados?" -#: ../app/views/miq_ae_class/_git_domain_refresh.html.haml:17 -#: ../app/views/miq_ae_tools/_import_export.html.haml:186 -msgid "Branch/Tag" -msgstr "Rama/Etiqueta" +msgid "Shelve this Instance" +msgstr "Aplazar esta instancia" -#: ../app/views/miq_ae_class/_git_domain_refresh.html.haml:33 -#: ../app/views/miq_ae_tools/_import_export.html.haml:201 -msgid "Branches" -msgstr "Ramas" +msgid "Shelve this Instance?" +msgstr "¿Desea aplazar esta instancia?" -#: ../app/views/miq_ae_class/_inputs.html.haml:30 -msgid "Are you sure you want to delete input field from method?" -msgstr "¿Está seguro de que desea eliminar el campo de entrada para este método?" +msgid "Shortcut description is required" +msgstr "La descripción del atajo es obligatoria" -#: ../app/views/miq_ae_class/_inputs.html.haml:30 -#: ../app/views/miq_ae_class/_inputs.html.haml:30 -msgid "Click to delete this input field from method" -msgstr "Haga clic para eliminar este campo de entrada del esquema" +msgid "Shortcuts" +msgstr "Atajos" -#: ../app/views/miq_ae_class/_inputs.html.haml:69 -msgid "Click to add a new parameter" -msgstr "Haga clic para agregar un nuevo parámetro" +msgid "Show" +msgstr "Mostrar" -#: ../app/views/miq_ae_class/_inputs.html.haml:79 -msgid "New Parameter" -msgstr "Nuevo parámetro" +msgid "Show %{cluster_title} drift history" +msgstr "Mostrar historial de desplazamiento de %{cluster_title}" -#: ../app/views/miq_ae_class/_instance_fields.html.haml:42 -msgid "Type: %{automation_type}" -msgstr "Clase: %{automation_type}" +msgid "Show %{host_title}" +msgstr "Mostrar %{host_title}" -#: ../app/views/miq_ae_class/_instance_fields.html.haml:45 -msgid "Data type: %{data_type}" -msgstr "Tipo de datos: %{data_type}" +msgid "Show %{hosts} & %{clusters}" +msgstr "Mostrar %{hosts} & %{clusters}" -#: ../app/views/miq_ae_class/_instance_fields.html.haml:47 -msgid "Substitute: %{substitute}" -msgstr "Sustituto: %{substitute}" +msgid "Show %{host} OS information" +msgstr "Mostrar información de sistema operativo de %{host}" -#: ../app/views/miq_ae_class/_instance_form.html.haml:5 -#: ../app/views/miq_ae_class/_method_form.html.haml:6 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:7 -msgid "Main Info" -msgstr "Información principal" +msgid "Show %{host} devices" +msgstr "Mostrar dispositivos de %{host}" -#: ../app/views/miq_ae_class/_method_data.html.haml:18 -msgid "Optional, if not specified, method name is used." -msgstr "Se utiliza el nombre del método opcional, si no se especifica." +msgid "Show %{host} drift history" +msgstr "Mostrar historial de desplazamiento de %{host}" -#: ../app/views/miq_ae_class/_method_form.html.haml:65 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:64 -msgid "Location" -msgstr "Ubicación" +msgid "Show %{host} network" +msgstr "Mostrar red de %{host}" -#: ../app/views/miq_ae_class/_method_form.html.haml:100 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:95 -msgid "Builtin name" -msgstr "Nombre integrado" +msgid "Show %{host} storage adapters" +msgstr "Mostrar adaptadores de almacenamiento de %{host}" -#: ../app/views/miq_ae_class/_method_form.html.haml:100 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:95 -msgid "Data" -msgstr "Datos" +msgid "Show %{label}" +msgstr "Mostrar %{label}" -#: ../app/views/miq_ae_class/_method_form.html.haml:106 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:120 -msgid "Input Parameters" -msgstr "Parámetros de entrada" +msgid "Show %{label} '%{value}'" +msgstr "Mostrar%{label} '%{value}'" -#: ../app/views/miq_ae_class/_method_form.html.haml:118 -msgid "Hide Input Parameters" -msgstr "Ocultar parámetros de entrada" +msgid "Show %{name}" +msgstr "Mostrar %{name}" -#: ../app/views/miq_ae_class/_method_form.html.haml:118 -msgid "Show Input Parameters" -msgstr "Mostrar parámetros de entrada" +msgid "Show %{object_name} Summary" +msgstr "Mostrar resumen de %{object_name}" -#: ../app/views/miq_ae_class/_method_inputs.html.haml:128 -msgid "Input Name" -msgstr "Nombre de entrada" +msgid "Show %{plural_linked_name}" +msgstr "Mostrar %{plural_linked_name}" -#: ../app/views/miq_ae_class/_ns_list.html.haml:81 -#: ../app/views/miq_policy/_alert_details.html.haml:13 -#: ../app/views/ops/_ap_show.html.haml:7 -#: ../app/views/resource_pool/_config.html.haml:11 -msgid "Info" -msgstr "Información" +msgid "Show %{title} Network" +msgstr "Mostrar red %{title}" -#: ../app/views/miq_ae_customization/_dialog_details.html.haml:15 -#: ../app/views/report/_form_styling.html.haml:126 -msgid "Sample" -msgstr "Muestra" +msgid "Show %{title} Quadrants" +msgstr "Mostrar cuadrantes %{title}" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:6 -msgid "Element Information" -msgstr "Información del ítem" +msgid "Show %{title} Storage Adapters" +msgstr "Mostrar adaptadores de almacenamiento %{title}" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:15 -#: ../app/views/miq_ae_customization/_dialog_group_form.html.haml:13 -#: ../app/views/miq_ae_customization/_dialog_info.html.haml:15 -#: ../app/views/miq_ae_customization/_dialog_info_form.html.haml:14 -#: ../app/views/miq_ae_customization/_dialog_tab_form.html.haml:13 -#: ../app/views/ops/_label_tag_mapping_form.html.haml:43 -msgid "Label" -msgstr "Etiqueta" +msgid "Show %{title} devices" +msgstr "Mostrar dispositivos %{title}" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:88 -msgid "Only 1 Date or Date/Time element can be present in a Dialog" +msgid "Show %{title} drift history" +msgstr "Mostrar historial de desplazamiento %{title}" + +msgid "Show Ad hoc Metrics for this Provider" msgstr "" -"Solo puede estar presente un ítem de Fecha o Fecha/hora en un cuadro de diálog" -"o" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:96 -msgid "Dynamic" -msgstr "Dinámico" +msgid "Show Capacity & Utilization" +msgstr "Mostrar capacidad y utilización" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:126 -msgid "Auto Refresh other fields when modified" -msgstr "Auto refrescar otros campos cuando se modifique" +msgid "Show Capacity & Utilization data for this Availability Zone" +msgstr "Mostrar datos de capacidad y utilización para esta zona de disponibilidad" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:149 -#: ../app/views/ops/_all_tabs.html.haml:37 -msgid "Advanced" -msgstr "Avanzado" +msgid "Show Capacity & Utilization data for this Container" +msgstr "Mostrar datos de capacidad y utilización para este contenedor" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:158 -msgid "Reconfigurable" -msgstr "Reconfigurable" +msgid "Show Capacity & Utilization data for this Datasource" +msgstr "Mostrar datos de capacidad y utilización para esta fuente de datos" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_dynamic_options.html.haml:5 -msgid "Entry Point (NS/Cls/Inst)" -msgstr "Punto de entrada (NS/Cls/Inst)" +msgid "Show Capacity & Utilization data for this Datastore" +msgstr "Mostrar datos de capacidad y utilización para este almacén de datos" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_dynamic_options.html.haml:21 -msgid "Show Refresh Button" -msgstr "Mostrar botón de actualizar" +msgid "Show Capacity & Utilization data for this Group" +msgstr "Mostrar datos de capacidad y utilización para este grupo" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_dynamic_options.html.haml:37 -msgid "Load Values on Init" -msgstr "Cargar valores al inicio" +msgid "Show Capacity & Utilization data for this Instance" +msgstr "Mostrar datos de capacidad y utilización para esta instancia" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_dynamic_options.html.haml:52 -msgid "Auto refresh" -msgstr "Auto refrescar" +msgid "Show Capacity & Utilization data for this Middleware messaging" +msgstr "Mostrar datos de capacidad y utilización para esta mensajería de middleware" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:5 -msgid "Read only" -msgstr "Solo lectura" +msgid "Show Capacity & Utilization data for this Node" +msgstr "Mostrar datos de capacidad y utilización para este nodo" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:19 -msgid "Visible" -msgstr "Visible" +msgid "Show Capacity & Utilization data for this Project" +msgstr "Mostrar datos de capacidad y utilización para este proyecto" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:71 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:226 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:324 -msgid "Value Type" -msgstr "Tipo de valor" +msgid "Show Capacity & Utilization data for this Provider" +msgstr "Mostrar datos de capacidad y utilización para este proveedor" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:76 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:231 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:329 -msgid "String" -msgstr "Cadena" +msgid "Show Capacity & Utilization data for this Replicator" +msgstr "Mostrar datos de capacidad y utilización para este replicador" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:92 -msgid "Protected" -msgstr "Protegido" +msgid "Show Capacity & Utilization data for this Server" +msgstr "Mostrar datos de capacidad y utilización para este servidor" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:121 -msgid "Validator Type" -msgstr "Tipo de validador" +msgid "Show Capacity & Utilization data for this Service" +msgstr "Mostrar datos de capacidad y utilización para este servicio" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:126 -msgid "Regular Expression" -msgstr "Expresión regular" +msgid "Show Capacity & Utilization data for this Template" +msgstr "Mostrar datos de capacidad y utilización para esta plantilla" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:142 -msgid "Validator Rule" -msgstr "Regla del validador " +msgid "Show Capacity & Utilization data for this VM" +msgstr "Mostrar datos de capacidad y utilización para esta máquina virtual" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:166 -msgid "Show Past Dates" -msgstr "Mostrar fechas pasadas" +msgid "Show Capacity & Utilization data for this item" +msgstr "Mostrar datos de capacidad y utilización para este ítem" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:247 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:345 -#: ../app/views/report/_report_info.html.haml:45 -#: ../app/views/report/_report_list.html.haml:127 -msgid "Sort By" -msgstr "Clasificar por" +msgid "Show Chargeback preview" +msgstr "" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:267 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:365 -#: ../app/views/report/_form_sort.html.haml:51 -msgid "Sort Order" -msgstr "Orden de clasificación" +msgid "Show Compliance History of this %{model} (Last 10 Checks)" +msgstr "Mostrar historial de cumplimiento de este %{model} (10 últimos controles)" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:272 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:370 -#: ../app/views/report/_form_sort.html.haml:56 -msgid "Ascending" -msgstr "Ascendiente" +msgid "Show Compliance History of this %{title} (Last 10 Checks)" +msgstr "Mostrar historial de cumplimiento de este %{title} (10 últimos controles)" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:272 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:370 -#: ../app/views/report/_form_sort.html.haml:56 -msgid "Descending" -msgstr "Descendente" +msgid "Show Compliance History of this Container Image (Last 10 Checks)" +msgstr "Mostrar historial de cumplimiento de esta imagen de contenedor (10 últimos controles)" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:308 -msgid "Single Select" -msgstr "Selección única" +msgid "Show Compliance History of this Node (Last 10 Checks)" +msgstr "Mostrar historial de cumplimiento de este nodo (10 últimos controles)" -#: ../app/views/miq_ae_customization/_dialog_group_form.html.haml:4 -msgid "Box Information" -msgstr "Información del cuadro" +msgid "Show Compliance History of this Replicator (Last 10 Checks)" +msgstr "Mostrar historial de cumplimiento de este replicador (10 últimos controles)" -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:7 -msgid "Import Service Dialogs" -msgstr "Importar cuadro de diálogos de servicio" +msgid "Show Compliance History of this VM (Last 10 Checks)" +msgstr "Mostrar historial de cumplimiento de esta máquina virtual (10 últimos controles)" -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:24 -msgid "Dialog name" -msgstr "Nombre de cuadro de diálogo" +msgid "Show Costs by" +msgstr "Mostrar costos por" -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:65 -#: ../app/views/report/_export_widgets.html.haml:66 -msgid "Commit Changes" -msgstr "Confirmar cambios" +msgid "Show Costs by must be selected" +msgstr "Seleccionar Mostrar costos por" -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:74 -#: ../app/views/miq_policy/_export.html.haml:8 -#: ../app/views/ops/_ldap_server_entry.html.haml:7 -#: ../app/views/ops/_ldap_server_entry.html.haml:44 -#: ../app/views/report/_export_custom_reports.html.haml:12 -#: ../app/views/report/_export_widgets.html.haml:80 -msgid "Import" -msgstr "Importar" +msgid "Show Credential" +msgstr "" -#: ../app/views/miq_ae_customization/_dialog_info_form.html.haml:5 -msgid "Dialog Information" -msgstr "Información de cuadro de diálogo" +msgid "Show Detailed Events" +msgstr "Mostrar eventos detallados" -#: ../app/views/miq_ae_customization/_dialog_res_remove.html.haml:4 -msgid "Remove this %{type}" -msgstr "Eliminar este %{type}" +msgid "Show Details of Compliance Check on %{date}" +msgstr "Mostrar detalles de comprobación de cumplimiento el %{date}" + +msgid "Show Event Log on this VM" +msgid_plural "Show Event Logs on this VM" +msgstr[0] "Mostrar registro de eventos en esta máquina virtual" +msgstr[1] "Mostrar registros de eventos en esta máquina virtual" + +msgid "Show Event Logs on this VM" +msgstr "Mostrar registros de eventos en esta máquina virtual" -#: ../app/views/miq_ae_customization/_dialog_resource.html.haml:5 -msgid "Drag this Tab to a new location" -msgstr "Arrastrar esta ficha a una nueva ubicación" +msgid "Show Host Events" +msgstr "Mostrar eventos de host" -#: ../app/views/miq_ae_customization/_dialog_resources.html.haml:24 -msgid "No %{types} found." -msgstr "No se encontraron %{types}." +msgid "Show Input Parameters" +msgstr "Mostrar parámetros de entrada" -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:65 -msgid "at" -msgstr "en" +msgid "Show Non-VM Files installed on this %{storage}" +msgstr "Mostrar archivos ajenos a la máquina virtual instalados en este %{storage}" -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:88 -msgid "Option 1" -msgstr "Opción 1" +msgid "Show OS container information" +msgstr "Mostrar información de contenedor de sistema operativo" -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:88 -msgid "Option 2" -msgstr "Opción 2" +msgid "Show Other VM Files installed on this %{storage}" +msgstr "Mostrar otros archivos de la máquina virtual instalados en este %{storage}" -#: ../app/views/miq_ae_customization/_dialog_tab_form.html.haml:4 -msgid "Tab Information" -msgstr "Información de ficha" +msgid "Show Other VM files on this Datastore" +msgstr "Mostrar otros archivos de la máquina virtual en este almacén de datos" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:28 -#: ../app/views/ops/_ap_form_file.html.haml:112 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:166 -#: ../app/views/ops/_ap_form_registry.html.haml:121 -#: ../app/views/ops/_classification_entry.html.haml:51 -#: ../app/views/ops/_ldap_forest_entries.html.haml:108 -#: ../app/views/ops/_ldap_forest_entries.html.haml:108 -msgid "Update this entry" -msgstr "Actualizar esta entrada" +msgid "Show Parent %{host}" +msgstr "Mostrar %{host} principal" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:48 -#: ../app/views/ops/_ap_form_file.html.haml:23 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:29 -#: ../app/views/ops/_ap_form_registry.html.haml:25 -#: ../app/views/ops/_classification_entry.html.haml:65 -#: ../app/views/ops/_ldap_server_entry.html.haml:84 -msgid "Click to add a new entry" -msgstr "Haga clic para agregar una nueva entrada" +msgid "Show Parent %{title} %{name}" +msgstr "Mostrar %{title}: %{name} principal" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:58 -msgid "New Entry" -msgstr "Nueva entrada" +msgid "Show Parent %{title} '%{name}'" +msgstr "Mostrar %{title}: %{name} principal" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:61 -msgid "Click on this row to create a new entry" -msgstr "Haga clic en esta fila para crear una nueva entrada" +msgid "Show Past Dates" +msgstr "Mostrar fechas pasadas" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:74 -msgid "Move selected field up" -msgstr "Mover campo seleccionado hacia arriba" +msgid "Show Refresh Button" +msgstr "Mostrar botón de actualizar" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:89 -msgid "Move selected field down" -msgstr "Mover campo seleccionado hacia abajo" +msgid "Show Repository" +msgstr "" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:99 -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:114 -#: ../app/views/ops/_ap_form_file.html.haml:82 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:216 -#: ../app/views/ops/_ap_form_registry.html.haml:166 -#: ../app/views/ops/_classification_entry.html.haml:101 -msgid "Click to delete this entry" -msgstr "Haga clic para eliminar esta entrada" +msgid "Show Resource Pools" +msgstr "Mostrar agrupaciones de recursos" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:120 -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:126 -#: ../app/views/ops/_ap_form_file.html.haml:71 -#: ../app/views/ops/_ap_form_file.html.haml:76 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:185 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:190 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:195 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:201 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:206 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:211 -#: ../app/views/ops/_ap_form_registry.html.haml:149 -#: ../app/views/ops/_ap_form_registry.html.haml:154 -#: ../app/views/ops/_ap_form_registry.html.haml:159 -#: ../app/views/ops/_classification_entry.html.haml:86 -#: ../app/views/ops/_classification_entry.html.haml:91 -msgid "Click to update this entry" -msgstr "Haga clic para actualizar esta entrada" +msgid "Show Running Processes on this VM" +msgstr "Mostrar procesos en ejecución en esta máquina virtual" -#: ../app/views/miq_ae_customization/_field_values.html.haml:6 -msgid "Entries" -msgstr "Entradas" +msgid "Show Sort Breaks" +msgstr "Mostrar saltos de orden" -#: ../app/views/miq_ae_customization/_old_dialogs_folders.html.haml:9 -msgid "View %{name} Folder" -msgstr "Ver carpeta %{name}" +msgid "Show Summary" +msgstr "Mostrar Resumen" -#: ../app/views/miq_ae_customization/_tag_field_values.html.haml:3 -msgid "Category Tag Entries" -msgstr "Entradas de etiqueta de la categoría" +msgid "Show Timelines" +msgstr "Mostrar Líneas de Tiempo" -#: ../app/views/miq_ae_tools/_import_export.html.haml:26 -msgid "Import Datastore classes (*.zip)" -msgstr "Importar clases de almacenes de datos (*.zip)" +msgid "Show Timelines for this Availability Zone" +msgstr "Mostrar líneas de tiempo para esta zona de disponibilidad" -#: ../app/views/miq_ae_tools/_import_export.html.haml:55 -msgid "Import Datastore via git" -msgstr "Importar almacén de datos vía GIT" +msgid "Show Timelines for this Cloud Provider" +msgstr "Mostrar líneas de tiempo para este proveedor de nube" -#: ../app/views/miq_ae_tools/_import_export.html.haml:68 -msgid "Git URL:" -msgstr "URL de Git:" +msgid "Show Timelines for this Container" +msgstr "Mostrar líneas de tiempo para este contenedor" -#: ../app/views/miq_ae_tools/_import_export.html.haml:81 -msgid "Username (optional):" -msgstr "Nombre de usuario (optional):" +msgid "Show Timelines for this Containers Provider" +msgstr "Mostrar líneas de tiempo para este proveedor de contenedores" -#: ../app/views/miq_ae_tools/_import_export.html.haml:94 -msgid "Password (optional):" -msgstr "Contraseña (opcional):" +msgid "Show Timelines for this Datawarehouse Provider" +msgstr "" -#: ../app/views/miq_ae_tools/_import_export.html.haml:107 -#: ../app/views/provider_foreman/_form.html.haml:139 -msgid "Verify Peer Certificate" -msgstr "Verificar certificado del mismo nivel" +msgid "Show Timelines for this Group" +msgstr "Mostrar líneas de tiempo para este grupo" -#: ../app/views/miq_ae_tools/_import_export.html.haml:143 -msgid "Export all classes and instances" -msgstr "Exportar todas las clases e instancias" +msgid "Show Timelines for this Infrastructure Provider" +msgstr "Mostrar líneas de tiempo para este proveedor de infraestructura" -#: ../app/views/miq_ae_tools/_import_export.html.haml:147 -msgid "Export all classes and instances to a file" -msgstr "Exportar todas las clases e instancias a un archivo" +msgid "Show Timelines for this Instance" +msgstr "Mostrar líneas de tiempo para esta instancia" -#: ../app/views/miq_ae_tools/_import_export.html.haml:155 -msgid "Reset all components in the following domains: %{domains}" -msgstr "Restablecer todos los componentes en los siguientes dominios: %{domains}" +msgid "Show Timelines for this Middleware Provider" +msgstr "Mostrar líneas de tiempo para este proveedor de middleware" -#: ../app/views/miq_ae_tools/_import_export.html.haml:158 -msgid "" -"All Datastore customizations will be lost. Are you sure you want to reset all " -"classes and instances to default?" -msgstr "" -"Todas las personalizaciones del Almacenamiento de Datos se perderán. ¿Está seg" -"uro de querer restablecer todas las clases e instancias a sus valores predete" -"rminados?" +msgid "Show Timelines for this Network Provider" +msgstr "Mostrar líneas de tiempo para este proveedor de red" -#: ../app/views/miq_ae_tools/_import_export.html.haml:173 -msgid "Choose the branch or tag you would like to import" -msgstr "Elija la rama o etiqueta que desea importar" +msgid "Show Timelines for this Node" +msgstr "Mostrar líneas de tiempo para este nodo" -#: ../app/views/miq_ae_tools/_import_export.html.haml:248 -msgid "Import Datastore classes" -msgstr "Importar clases de almacenes de datos" +msgid "Show Timelines for this Physical Infrastructure Provider" +msgstr "" -#: ../app/views/miq_ae_tools/_import_export.html.haml:257 -msgid "Select existing domain to import into:" -msgstr "Seleccionar dominio existente hacia donde desea importar:" +msgid "Show Timelines for this Project" +msgstr "Mostrar líneas de tiempo para este proyecto" -#: ../app/views/miq_ae_tools/_import_export.html.haml:273 -msgid "Select domain you wish to import from:" -msgstr "Seleccionar el dominio desde donde desea importar:" +msgid "Show Timelines for this Replicator" +msgstr "Mostrar líneas de tiempo para este replicador" -#: ../app/views/miq_ae_tools/_import_export.html.haml:286 -msgid "Select namespaces you wish to import:" -msgstr "Seleccionar los espacios de nombre que desee importar:" +msgid "Show Timelines for this Storage Manager" +msgstr "" -#: ../app/views/miq_ae_tools/_import_export.html.haml:293 -msgid "Toggle All/None" -msgstr "Alternar todos/ninguno" +msgid "Show Timelines for this Template" +msgstr "Mostrar líneas de tiempo para esta plantilla" -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:5 -msgid "Submit Automation Simulation with the specified options" -msgstr "Enviar simulación de automatización con las opciones especificadas" +msgid "Show Timelines for this VM" +msgstr "Mostrar líneas de tiempo para este máquina virtual" -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:16 -msgid "Retry state machine simulation, with preserved attributes" -msgstr "Reintentar simulación de máquina de estados, con atributos preservados" +msgid "Show Timelines for this item" +msgstr "Mostrar líneas de tiempo para este ítem" -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:17 -msgid "Retry" -msgstr "Reintentar" +msgid "Show VM Memory Files installed on this %{storage}" +msgstr "Mostrar archivos de memoria de máquina virtual instalados en este %{storage}" -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:25 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:51 -msgid "Reset all options" -msgstr "Restablecer todas las opciones" +msgid "Show VM Provisioned Disk Files installed on this %{table}" +msgstr "Mostrar archivos de disco aprovisionados de máquina virtual instalados en esta %{table}" -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:36 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:62 -msgid "Cancel Simulation to go back to Button details" -msgstr "Cancelar simulación para volver a los detalles del botón" +msgid "Show VM Provisioned Disk Files on this Datastore" +msgstr "Mostrar archivos de disco aprovisionados de máquina virtual en este almacén de datos" -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:47 -msgid "Starting process must be specified" -msgstr "Se debe especificar el proceso de inicio" +msgid "Show VM Snapshot Files installed on this %{storage}" +msgstr "Mostrar archivos de instantáneas de máquina virtual instalados en este %{storage}" -#: ../app/views/miq_ae_tools/_results_tabs.html.haml:4 -msgid "Tree View" -msgstr "Vista de árbol" +msgid "Show VM Types" +msgstr "Mostrar los tipos de VM" -#: ../app/views/miq_ae_tools/_results_tabs.html.haml:7 -msgid "XML View" -msgstr "Vista XML" +msgid "Show VM memory files on this Datastore" +msgstr "Mostrar archivos de memoria de máquina virtual en este almacén de datos" -#: ../app/views/miq_ae_tools/_results_tabs.html.haml:10 -msgid "Object" -msgstr "Objeto" +msgid "Show VM snapshot files on this Datastore" +msgstr "Mostrar archivos de instantáneas de máquina virtual en este almacén de datos" -#: ../app/views/miq_ae_tools/_results_tree.html.haml:10 -#: ../app/views/miq_ae_tools/_results_uri.html.haml:53 -#: ../app/views/miq_ae_tools/_results_xml.html.haml:10 -msgid "Enter Automation Simulation options on the left and press Submit." -msgstr "" -"Ingrese en las opciones de simulación de automatización a la izquierda y presi" -"one Enviar." +msgid "Show VMM container information" +msgstr "Mostrar información de contenedor de VMM" -#: ../app/views/miq_ae_tools/_results_uri.html.haml:7 -msgid "Object Info" -msgstr "Información del objeto" +msgid "Show VMM information" +msgstr "Mostrar información de VMM" -#: ../app/views/miq_ae_tools/_results_uri.html.haml:30 -msgid "Object Attribute Name" -msgstr "Nombre de atributo del objeto" +msgid "Show VMs" +msgstr "Mostrar máquinas virtuales" -#: ../app/views/miq_ae_tools/_results_uri.html.haml:43 -msgid "Object Attribute Type" -msgstr "Tipo de atributo del objeto" +msgid "Show VMs & Templates" +msgstr "Mostrar máquinas virtuales y plantillas" -#: ../app/views/miq_capacity/_bottlenecks_options.html.haml:15 -msgid "Event Groups" -msgstr "Grupos de eventos" +msgid "Show VMs devices" +msgstr "Mostrar dispositivos de máquinas virtuales" -#: ../app/views/miq_capacity/_bottlenecks_options.html.haml:38 -msgid "Show Host Events" -msgstr "Mostrar eventos de host" +msgid "Show VMs in Explorer tree." +msgstr "Mostrar máquinas virtuales en árbol de Explorer" -#: ../app/views/miq_capacity/_bottlenecks_report.html.haml:3 -msgid "Select a node on the left to view Bottlenecks report." -msgstr "Seleccionar un nodo en la izquierda para ver informe de cuellos de botella." +msgid "Show VMs in this %{cluster_title}, but not in Resource Pools below" +msgstr "Mostrar máquinas virtuales en este %{cluster_title}, pero no en las agrupaciones de recursos debajo" -#: ../app/views/miq_capacity/_bottlenecks_report.html.haml:13 -msgid "Bottleneck Event Details" -msgstr "Detalles de los eventos en \"Lista Negra\"" +msgid "Show VMs in this %{title}, but not in Resource Pools below" +msgstr "Mostrar máquinas virtuales en este %{title}, pero no en las agrupaciones de recursos debajo" -#: ../app/views/miq_capacity/_bottlenecks_summary.html.haml:3 -msgid "Select a node on the left to view Bottlenecks timeline." -msgstr "" -"Seleccionar un nodo en la izquierda para ver línea de tiempo de cuellos de bot" -"ella." +msgid "Show VMs in this Resource Pool, but not in Resource Pools below" +msgstr "Mostrar máquinas virtuales en esta agrupación de recursos, pero no en la agrupación de recursos debajo" -#: ../app/views/miq_capacity/_bottlenecks_tl_detail.html.haml:14 -msgid "No events available for this timeline." -msgstr "No hay eventos disponibles para esta línea de tiempo." +msgid "Show Virtual Machines & Templates" +msgstr "Mostrar máquinas virtuales y plantillas" -#: ../app/views/miq_capacity/_bottlenecks_tl_detail.html.haml:18 -msgid "No Timeline data available." -msgstr "No hay datos de línea de tiempo disponibles." +msgid "Show all %{children}" +msgstr "Mostrar todos los %{children}" -#: ../app/views/miq_capacity/_planning_instructions.html.haml:3 -msgid "Plan for VM placement on %{hosts} or %{clusters}" -msgstr "Plan para ubicación de máquina virtual en %{hosts} o %{clusters}" +msgid "Show all %{label}" +msgstr "Mostrar todas las %{label}" -#: ../app/views/miq_capacity/_planning_instructions.html.haml:12 -msgid "1 - Select a Reference VM." -msgstr "1 - Seleccione una MV de referencia." +msgid "Show all %{models}" +msgstr "Mostrar todos los %{models}" -#: ../app/views/miq_capacity/_planning_instructions.html.haml:22 -msgid "" -"2 - Specify the VM Options to define the source of the values used for the pla" -"n calculations." -msgstr "" -"2 - Especifique las opciones de la MV para definir la fuente de los valores us" -"ados para los cálculos del plan." +msgid "Show all %{names}" +msgstr "Mostrar todos los %{names}" -#: ../app/views/miq_capacity/_planning_instructions.html.haml:32 -msgid "3 - Specify Target Options to qualify target %{hosts} or %{clusters}." -msgstr "" -"3 - Especifique las opciones de destino para calificar los %{hosts} o %{cluste" -"rs} de destino." +msgid "Show all %{title}" +msgstr "Mostrar todos los %{title}" -#: ../app/views/miq_capacity/_planning_instructions.html.haml:42 -msgid "4 - Change the Trend Options used to calculate the daily trends, if desired." -msgstr "" -"4 - Cambiar las Opciones de tendencia usadas para calcular las tendencias diar" -"ias, si se desea." +msgid "Show all %{volumes} based on this Snapshot." +msgstr "Mostrar todos los %{volumes} basados en esta instantánea." -#: ../app/views/miq_capacity/_planning_instructions.html.haml:52 -msgid "5 - Press the Submit button." -msgstr "5 - Presione el botón Enviar." +msgid "Show all Cloud Networks" +msgstr "Mostrar todas las redes de la nube" -#: ../app/views/miq_capacity/_planning_options.html.haml:9 -msgid "Reference VM Selection" -msgstr "Selección de máquina virtual de referencia" +msgid "Show all Cloud Object Stores" +msgstr "Mostrar todos los almacenes de objetos de la nube" -#: ../app/views/miq_capacity/_planning_options.html.haml:16 -msgid "All VMs/Instances" -msgstr "Todas las MV e instancias" +msgid "Show all Cloud Volumes attached to this VM." +msgstr "Mostrar todos los volúmenes de la nube conectados a esta máquina virtual." -#: ../app/views/miq_capacity/_planning_options.html.haml:16 -msgid "By Clusters / Deployment Roles" -msgstr "Por clústeres/roles de implementación" +msgid "Show all Cloud Volumes based on this Snapshot" +msgstr "Mostrar todos los volúmenes de la nube con base en esta instantánea" -#: ../app/views/miq_capacity/_planning_options.html.haml:16 -msgid "By Filter" -msgstr "Por Filtro" +msgid "Show all Images" +msgstr "Mostrar todas las imágenes" -#: ../app/views/miq_capacity/_planning_options.html.haml:16 -msgid "By Host" -msgstr "Por Host" +msgid "Show all Instances" +msgstr "Mostrar todas las instancias" -#: ../app/views/miq_capacity/_planning_options.html.haml:16 -msgid "By Providers" -msgstr "Por proveedores" +msgid "Show all Outputs" +msgstr "Mostrar todas las salidas" -#: ../app/views/miq_capacity/_planning_options.html.haml:39 -msgid "Choose a %{host}" -msgstr "Elija un %{host}" +msgid "Show all Parameters" +msgstr "Mostrar todos los parámetros" -#: ../app/views/miq_capacity/_planning_options.html.haml:51 -msgid "Choose a %{cluster}" -msgstr "Elija un %{cluster}" +msgid "Show all Playbooks" +msgstr "" -#: ../app/views/miq_capacity/_planning_options.html.haml:62 -msgid "Choose a %{provider}" -msgstr "Elija un %{provider}" +msgid "Show all Repositories" +msgstr "" -#: ../app/views/miq_capacity/_planning_options.html.haml:73 -msgid "Choose a Filter" -msgstr "Elija un filtro" +msgid "Show all Resource Pools" +msgstr "" -#: ../app/views/miq_capacity/_planning_options.html.haml:91 -msgid "No VMs found" -msgstr "No se encontraron máquinas virtuales" +msgid "Show all Resource Pools in this Resource Pool" +msgstr "" -#: ../app/views/miq_capacity/_planning_options.html.haml:94 -msgid "Choose a VM" -msgstr "Elija una máquina virtual" +msgid "Show all Resources" +msgstr "Mostrar todos los recursos" -#: ../app/views/miq_capacity/_planning_options.html.haml:115 -msgid "VM Options" -msgstr "Opciones de máquina virtual" +msgid "Show all Security Groups" +msgstr "Mostrar todos los grupos de seguridad" -#: ../app/views/miq_capacity/_planning_options.html.haml:177 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:25 -msgid "vCPU Count" -msgstr "Conteo de CPU virtuales" +msgid "Show all Templates" +msgstr "Mostrar todas las plantillas" -#: ../app/views/miq_capacity/_planning_options.html.haml:202 -#: ../app/views/miq_capacity/_planning_options.html.haml:368 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:34 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:85 -#: ../app/views/miq_policy/_action_details.html.haml:294 -#: ../app/views/miq_policy/_action_options.html.haml:217 -#: ../app/views/ops/_selected_by_roles.html.haml:150 -#: ../app/views/ops/_selected_by_servers.html.haml:102 -#: ../app/views/ops/_server_desc.html.haml:63 -msgid "Memory Size" -msgstr "Tamaño de la memoria" +msgid "Show all Templates in this %{cluster_title}" +msgstr "Mostrar todas las plantillas en este %{cluster_title}" -#: ../app/views/miq_capacity/_planning_options.html.haml:222 -msgid "MB" -msgstr "MB" +msgid "Show all Templates in this %{title}" +msgstr "Mostrar todas las plantillas en este %{title}" -#: ../app/views/miq_capacity/_planning_options.html.haml:231 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:43 -msgid "Disk Space" -msgstr "Espacio del disco" +msgid "Show all VMs" +msgstr "Mostrar todas las máquinas virtuales" -#: ../app/views/miq_capacity/_planning_options.html.haml:255 -msgid "* Disk space not supported for OpenStack providers" -msgstr "* El espacio de disco no está soportado para proveedores de OpenStack " +msgid "Show all VMs in this %{cluster_title}" +msgstr "Mostrar todas las máquinas virtuales en este %{cluster_title}" -#: ../app/views/miq_capacity/_planning_options.html.haml:264 -msgid "Target Options / Limits" -msgstr "Opciones/Límites objetivo" +msgid "Show all VMs in this %{title}" +msgstr "Mostrar todas las máquinas virtuales en este %{title}" -#: ../app/views/miq_capacity/_planning_options.html.haml:344 -msgid "vCPUs per Core" -msgstr "CPU virtuales por núcleo" +msgid "Show all VMs in this Resource Pool" +msgstr "Mostrar todas las máquinas virtuales en esta agrupación de recursos" -#: ../app/views/miq_capacity/_planning_options.html.haml:392 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:94 -msgid "Datastore Space" -msgstr "Espacio del almacén de datos" +msgid "Show all Volume Snapshots" +msgstr "Mostrar todas las instantáneas de volumen" -#: ../app/views/miq_capacity/_planning_options.html.haml:416 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:105 -msgid "Trend Options" -msgstr "Opciones de tendencia" +msgid "Show all Volumes" +msgstr "Mostrar todos los volúmenes" -#: ../app/views/miq_capacity/_planning_options.html.haml:425 -#: ../app/views/miq_capacity/_utilization_options.html.haml:16 -msgid "Trends for past" -msgstr "Tendencias para el pasado" +msgid "Show all attached %{models}" +msgstr "Mostrar todos los %{models} conectados" -#: ../app/views/miq_capacity/_planning_report.html.haml:8 -msgid "VM Counts per %{model}" -msgstr "Conteos de máquinas virtuales por %{model}" +msgid "Show all files installed on this %{table}" +msgstr "Mostrar todos los archivos instalados en esta %{table}" -#: ../app/views/miq_capacity/_planning_report.html.haml:14 -msgid "Total number of VMs that can fit on all of the above %{models}: %{count}" -msgstr "" -"Cantidad total de máquinas virtuales que pueden encajar en algunas de los ítem" -"es antes mencionados %{models}: %{count}" +msgid "Show all files on this Datastore" +msgstr "Mostrar todos los archivos en este almacén de datos" -#: ../app/views/miq_capacity/_planning_report.html.haml:20 -#: ../app/views/miq_capacity/_planning_summary.html.haml:75 -msgid "* Information shown is based on available trend data going back %{weeks}." -msgstr "" -"* La información que se muestra se basa en los datos de tendencia disponibles " -"%{weeks} atrás." +msgid "Show all managed %{cluster}" +msgstr "Mostrar todos los %{cluster} administrados" -#: ../app/views/miq_capacity/_planning_summary.html.haml:7 -#: ../app/views/miq_policy/_rsop_results.html.haml:10 -msgid "Display Options" -msgstr "Mostrar opciones" +msgid "Show all managed %{hosts}" +msgstr "Mostrar todos los %{hosts} administrados" -#: ../app/views/miq_capacity/_planning_summary.html.haml:11 -msgid "Limit Chart to" -msgstr "Limitar diagrama a" +msgid "Show all managed %{storages}" +msgstr "Mostrar todos los %{storages} administrados" -#: ../app/views/miq_capacity/_planning_summary.html.haml:34 -msgid "No planning data is available for the selected item." -msgstr "No hay datos de planificación disponibles para el ítem seleccionado." +msgid "Show all outputs" +msgstr "Mostrar todas las salidas" -#: ../app/views/miq_capacity/_planning_summary.html.haml:39 -msgid "Eligible %{type} " -msgstr "Elegible %{type} " +msgid "Show all parameters" +msgstr "Mostrar todos los parámetros" -#: ../app/views/miq_capacity/_planning_summary.html.haml:47 -msgid "Rank" -msgstr "Clasificar" +msgid "Show all registered %{hosts}" +msgstr "Mostrar todos los %{hosts} registrados" -#: ../app/views/miq_capacity/_planning_summary.html.haml:51 -msgid "Max VMs" -msgstr "Máquinas virtuales máx." +msgid "Show all resources" +msgstr "Mostrar todos los recursos" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:3 -msgid "Reference VM Profile" -msgstr "Perfil de máquina virtual de referencia" +msgid "Show at Login" +msgstr "Mostrar en el registro" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:54 -msgid "Target Options/Limits" -msgstr "Opciones/Límites objetivo" +msgid "Show configuration" +msgstr "Mostrar configuración" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:76 -msgid "vCPU per Core" -msgstr "CPU virtual por núcleo" +msgid "Show daily data from" +msgstr "Mostrar datos diarios de" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:109 -msgid "Trend for Past" -msgstr "Tendencia para el pasado" +msgid "Show disk on this VM" +msgid_plural "Show disks on this VM" +msgstr[0] "Mostrar disco en esta máquina virtual" +msgstr[1] "Mostrar discos en esta máquina virtual" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:121 -msgid "No Time Profile Selected" -msgstr "No se seleccionó el perfil de tiempo" +msgid "Show esx logs on this VM" +msgstr "Mostrar registros esx en esta máquina virtual" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:137 -msgid "* Set in Time Profile" -msgstr "* Introducir Perfil de Tiempo" +msgid "Show full screen Report" +msgstr "Mostrar informe en pantalla completa" -#: ../app/views/miq_capacity/_utilization_details.html.haml:16 -#: ../app/views/miq_capacity/_utilization_summary.html.haml:51 -msgid "Select a node on the left to view Utilization information." -msgstr "Seleccionar un nodo en la izquierda para ver información de utilización" +msgid "Show full screen report" +msgstr "Mostrar informe en pantalla completa" -#: ../app/views/miq_capacity/_utilization_details.html.haml:18 -#: ../app/views/miq_capacity/_utilization_report.html.haml:29 -#: ../app/views/miq_capacity/_utilization_summary.html.haml:53 -msgid "No performance data is available for the selected item." -msgstr "No hay datos de rendimiento disponibles para el ítem seleccionado." +msgid "Show hourly data from" +msgstr "Mostrar datos por hora de" -#: ../app/views/miq_capacity/_utilization_details.html.haml:26 -#: ../app/views/miq_capacity/_utilization_report.html.haml:69 -#: ../app/views/miq_capacity/_utilization_summary.html.haml:59 -msgid "" -"* Information shown is based on available trend data from %{start_time} to %{e" -"nd_time} in the %{timezone} time zone." -msgstr "" -"* La información que se muestra se basa en los datos de tendencia disponibles " -"desde %{start_time} hasta %{end_time} en la zona horaria %{timezone}." +msgid "Show in Console" +msgstr "Mostrar en consola" -#: ../app/views/miq_capacity/_utilization_options.html.haml:40 -msgid "Classification" -msgstr "Clasificación" +msgid "Show list of all %{name}" +msgstr "Mostrar lista de todos los %{name}" -#: ../app/views/miq_capacity/_utilization_options.html.haml:94 -msgid "Selected Day" -msgstr "Día seleccionado" +msgid "Show list of configuration files of %{name}" +msgstr "Mostrar lista de archivos de configuración de %{name}" -#: ../app/views/miq_capacity/_utilization_report.html.haml:27 -msgid "Select a node on the left to view Utilization report." -msgstr "Seleccionar un nodo en la izquierda para ver informe de utilización." +msgid "Show list of failed %{name}" +msgstr "Mostrar lista de %{name} con error" -#: ../app/views/miq_capacity/planning.html.haml:9 -msgid "Submit Planning options" -msgstr "Enviar opciones de planificación" +msgid "Show list of hosts with %{name}" +msgstr "Mostrar lista de hosts con %{name}" -#: ../app/views/miq_capacity/planning.html.haml:19 -#: ../app/views/miq_capacity/planning.html.haml:36 -msgid "Reset all Planning options" -msgstr "Restablecer todas las opciones de planificación" +msgid "Show list of hosts with failed %{name}" +msgstr "Mostrar lista de hosts con %{name} con error" -#: ../app/views/miq_capacity/planning.html.haml:32 -msgid "Select a reference VM or Manual Input source to Submit the Planning Options" -msgstr "" -"Seleccionar una máquina virtual de referencia o una fuente de entrada manual p" -"ara enviar las opciones de planificación" +msgid "Show list of hosts with running %{name}" +msgstr "Mostrar lista de hosts con %{name} en ejecución" -#: ../app/views/miq_policy/_action_details.html.haml:42 -msgid "Action Type" -msgstr "Tipo de acción" +msgid "Show list of running %{name}" +msgstr "Mostrar lista de %{name} en ejecución" -#: ../app/views/miq_policy/_action_details.html.haml:69 -#: ../app/views/miq_policy/_action_options.html.haml:152 -msgid "Snapshot Settings" -msgstr "Configuración de instantánea" +msgid "Show member VMs" +msgstr "Mostrar máquinas virtuales de miembros" -#: ../app/views/miq_policy/_action_details.html.haml:89 -#: ../app/views/miq_policy/_action_options.html.haml:178 -msgid "Snapshot Age Settings" -msgstr "Configuración de antigüedad de instantánea" +msgid "Show non-VM files on this Datastore" +msgstr "Mostrar archivos ajenos a la máquina virtual en este almacén de datos" -#: ../app/views/miq_policy/_action_details.html.haml:95 -msgid "Delete if older than" -msgstr "Eliminar si es anterior a" +msgid "Show on Timeline" +msgstr "Mostrar en línea de tiempo" -#: ../app/views/miq_policy/_action_details.html.haml:110 -#: ../app/views/miq_policy/_action_options.html.haml:267 -msgid "Custom Automation" -msgstr "Automatización personalizada" +msgid "Show out of scope items:" +msgstr "Mostrar ítemes fuera del alcance:" -#: ../app/views/miq_policy/_action_details.html.haml:132 -msgid "Starting Message" -msgstr "Mensaje de inicio" +msgid "Show parent %s for this Job" +msgstr "Mostrar %s principal para esta tarea" -#: ../app/views/miq_policy/_action_details.html.haml:181 -msgid "No Attribute/Value Pairs found" -msgstr "No se encontraron pares de atributo/valor" +msgid "Show parent %{cluster} for this %{host}" +msgstr "Mostrar %{cluster} principal para este %{host}" -#: ../app/views/miq_policy/_action_details.html.haml:187 -#: ../app/views/miq_policy/_action_options.html.haml:10 -msgid "E-mail Settings" -msgstr "Configuración de correo electrónico" +msgid "Show parent Cloud Provider for this Stack" +msgstr "Mostrar proveedor de la nube principal para esta pila" -#: ../app/views/miq_policy/_action_details.html.haml:196 -#: ../app/views/miq_policy/_action_options.html.haml:19 -#: ../app/views/ops/_settings_server_tab.html.haml:532 -msgid "From E-mail Address" -msgstr "De la dirección de correo electrónico" +msgid "Show parent Orchestration Stack for this Security Group" +msgstr "Mostrar pila de orquestación principal para este grupo de seguridad" -#: ../app/views/miq_policy/_action_details.html.haml:209 -#: ../app/views/miq_policy/_action_options.html.haml:42 -msgid "To E-mail Address" -msgstr "A la dirección de correo electrónico" +msgid "Show parent and child VMs" +msgstr "Mostrar máquinas virtuales principales y secundarias" -#: ../app/views/miq_policy/_action_details.html.haml:224 -msgid "Set Custom Attribute Settings" -msgstr "Establecer configuración de atributo personalizado" +msgid "Show policies:" +msgstr "Mostrar políticas:" -#: ../app/views/miq_policy/_action_details.html.haml:233 -#: ../app/views/miq_policy/_action_options.html.haml:68 -msgid "Attribute Name" -msgstr "Nombre del atributo" +msgid "Show policy details for %{item_name}" +msgstr "" -#: ../app/views/miq_policy/_action_details.html.haml:246 -#: ../app/views/miq_policy/_action_options.html.haml:85 -msgid "Value to Set" -msgstr "Valor para configurar" +msgid "Show policy details for %{name}" +msgstr "Mostrar detalles de política para %{name}" -#: ../app/views/miq_policy/_action_details.html.haml:261 -#: ../app/views/miq_policy/_action_options.html.haml:236 -msgid "Reconfigure CPU" -msgstr "Reconfigurar CPU" +msgid "Show registered VMs" +msgstr "Mostrar máquinas virtuales registradas" -#: ../app/views/miq_policy/_action_details.html.haml:270 -#: ../app/views/miq_policy/_action_options.html.haml:245 -msgid "Number of CPU's" -msgstr "Número de CPU" +msgid "Show resources of this VM" +msgstr "Mostrar recursos de esta máquina virtual" -#: ../app/views/miq_policy/_action_details.html.haml:285 -#: ../app/views/miq_policy/_action_options.html.haml:208 -msgid "Reconfigure Memory" -msgstr "Reconfigurar memoria" +msgid "Show service %s for this Job" +msgstr "Mostrar servicio %s para esta tarea" -#: ../app/views/miq_policy/_action_details.html.haml:309 -#: ../app/views/miq_policy/_action_options.html.haml:102 -msgid "Applied Tag" -msgstr "Etiqueta aplicada" +msgid "Show the %{label} installed on this VM" +msgstr "Mostrar la %{label} instalada en esta máquina virtual" -#: ../app/views/miq_policy/_action_details.html.haml:333 -#: ../app/views/miq_policy/_alert_snmp.html.haml:9 -msgid "SNMP Trap" -msgstr "Captura de SNMP" +msgid "Show the Advanced Setting installed on this %{title}" +msgid_plural "Show the Advanced Settings installed on this %{title}" +msgstr[0] "Mostrar la configuración avanzada instalada en este %{title}" +msgstr[1] "Mostrar la configuración avanzada instalada en este %{title}" -#: ../app/views/miq_policy/_action_details.html.haml:364 -#: ../app/views/miq_policy/_action_options.html.haml:413 -#: ../app/views/miq_policy/_alert_details.html.haml:379 -#: ../app/views/miq_policy/_alert_snmp.html.haml:80 -msgid "Trap Number" -msgstr "Número de trampa" +msgid "Show the File System Driver installed on this VM" +msgid_plural "Show the File System Drivers installed on this VM" +msgstr[0] "Mostrar el controlador del sistema de archivos instalado en esta máquina virtual" +msgstr[1] "Mostrar los controladores del sistema de archivos instalados en esta máquina virtual" -#: ../app/views/miq_policy/_action_details.html.haml:364 -#: ../app/views/miq_policy/_action_options.html.haml:413 -#: ../app/views/miq_policy/_alert_details.html.haml:379 -#: ../app/views/miq_policy/_alert_snmp.html.haml:80 -msgid "Trap Object ID" -msgstr "ID de objeto de trampa" +msgid "Show the File installed on this %{title}" +msgid_plural "Show the Files installed on this %{title}" +msgstr[0] "Mostrar el archivo instalado en este %{title}" +msgstr[1] "Mostrar los archivos instalados en este %{title}" -#: ../app/views/miq_policy/_action_details.html.haml:387 -msgid "No variables configured." -msgstr "No hay variables configuradas." +msgid "Show the File installed on this VM" +msgid_plural "Show the Files installed on this VM" +msgstr[0] "Mostrar el archivo instalado en esta máquina virtual" +msgstr[1] "Mostrar los archivos instalados en esta máquina virtual" -#: ../app/views/miq_policy/_action_details.html.haml:396 -#: ../app/views/miq_policy/_action_options.html.haml:445 -msgid "Object ID" -msgstr "ID del objecto" +msgid "Show the Firewall Rule defined on this %{title}" +msgid_plural "Show the Firewall Rules defined on this %{title}" +msgstr[0] "Mostrar regla de firewall definida en este %{title}" +msgstr[1] "Mostrar reglas de firewall definidas en este %{title}" -#: ../app/views/miq_policy/_action_details.html.haml:430 -msgid "Analysis Profile" -msgstr "Perfil de análisis" +msgid "Show the Group defined on this %{title}" +msgid_plural "Show the Groups defined on this %{title}" +msgstr[0] "Mostrar el grupo definido en este %{title}" +msgstr[1] "Mostrar los grupos definidos en este %{title}" -#: ../app/views/miq_policy/_action_details.html.haml:439 -msgid "Assigned Analysis Profile" -msgstr "Perfil de análisis asignado" +msgid "Show the Group defined on this VM" +msgid_plural "Show the Groups defined on this VM" +msgstr[0] "Mostrar el grupo definido en esta máquina virtual" +msgstr[1] "Mostrar los grupos definidos en esta máquina virtual" -#: ../app/views/miq_policy/_action_details.html.haml:454 -msgid "Alerts to Evaluate" -msgstr "Alertas para evaluar" +msgid "Show the Init Process installed on this VM" +msgid_plural "Show the Init Processes installed on this VM" +msgstr[0] "Mostrar el proceso de inicialización instalado en esta máquina virtual" +msgstr[1] "Mostrar los procesos de inicialización instalados en esta máquina virtual" -#: ../app/views/miq_policy/_action_details.html.haml:458 -msgid "No Alerts have been selected." -msgstr "No se han seleccionado alertas." +msgid "Show the Kernel Driver installed on this VM" +msgid_plural "Show the Kernel Drivers installed on this VM" +msgstr[0] "Mostrar el controlador de kernel instalado en esta máquina virtual" +msgstr[1] "Mostrar los controladores de kernel instalados en esta máquina virtual" -#: ../app/views/miq_policy/_action_details.html.haml:465 -msgid "View This Alert" -msgstr "Ver esta alerta" +msgid "Show the Package installed on this %{title}" +msgid_plural "Show the Packages installed on this %{title}" +msgstr[0] "Mostrar el paquete instalado en este %{title}" +msgstr[1] "Mostrar los paquetes instalados en este %{title}" -#: ../app/views/miq_policy/_action_details.html.haml:480 -msgid "Inherit Tags" -msgstr "Heredar etiquetas" +msgid "Show the Patch defined on this %{title}" +msgid_plural "Show the Patches defined on this %{title}" +msgstr[0] "Mostrar el parche definido en este %{title}" +msgstr[1] "Mostrar los parches definidos en este %{title}" -#: ../app/views/miq_policy/_action_details.html.haml:489 -#: ../app/views/miq_policy/_action_options.html.haml:547 -msgid "Parent Type" -msgstr "Tipo de ítem principal" +msgid "Show the Patch defined on this VM" +msgid_plural "Show the Patches defined on this VM" +msgstr[0] "Mostrar el parche definido en esta máquina virtual" +msgstr[1] "Mostrar los parches definidos en esta máquina virtual" -#: ../app/views/miq_policy/_action_details.html.haml:502 -#: ../app/views/miq_policy/_action_details.html.haml:526 -#: ../app/views/miq_policy/_action_options.html.haml:568 -#: ../app/views/miq_policy/_action_options.html.haml:598 -#: ../app/views/ops/_all_tabs.html.haml:77 -#: ../app/views/ops/_ap_show.html.haml:67 -msgid "Categories" -msgstr "Categorías" +msgid "Show the Registry Item installed on this VM" +msgid_plural "Show the Registry Items installed on this VM" +msgstr[0] "Mostrar el ítem de registro instalado en esta máquina virtual" +msgstr[1] "Mostrar los ítemes de registro instalados en esta máquina virtual" -#: ../app/views/miq_policy/_action_details.html.haml:517 -msgid "Remove Tags" -msgstr "Eliminar etiquetas" +msgid "Show the Service installed on this %{title}" +msgid_plural "Show the Services installed on this %{title}" +msgstr[0] "Mostrar el servicio instalado en este %{title}" +msgstr[1] "Mostrar los servicios instalados en este %{title}" -#: ../app/views/miq_policy/_action_details.html.haml:540 -#: ../app/views/miq_policy/_condition_details.html.haml:123 -#: ../app/views/miq_policy/_event_details.html.haml:52 -msgid "Assigned to Policies" -msgstr "Asignado a las Políticas" +msgid "Show the User defined on this VM" +msgid_plural "Show the Users defined on this VM" +msgstr[0] "Mostrar el usuario definido en esta máquina virtual" +msgstr[1] "Mostrar los usuarios definidos en esta máquina virtual" -#: ../app/views/miq_policy/_action_details.html.haml:543 -msgid "This Action is not assigned to any Policies." -msgstr "Esta acción no está asignada a ninguna política." +msgid "Show the Win32 Service installed on this VM" +msgid_plural "Show the Win32 Services installed on this VM" +msgstr[0] "Mostrar el servicio de Win32 instalado en esta máquina virtual" +msgstr[1] "Mostrar los servicios de Win32 instalados en esta máquina virtual" -#: ../app/views/miq_policy/_action_details.html.haml:550 -#: ../app/views/miq_policy/_condition_details.html.haml:133 -#: ../app/views/miq_policy/_event_details.html.haml:62 -msgid "Click to view Policy" -msgstr "Haga clic para ver la política" +msgid "Show the advanced settings on this %{host}" +msgstr "Mostrar la configuración avanzada en este %{host}" -#: ../app/views/miq_policy/_action_list.html.haml:4 -msgid "No Actions are defined" -msgstr "No hay acciones definidas" +msgid "Show the advanced settings on this VM" +msgstr "Mostrar la configuración avanzada en esta máquina virtual" -#: ../app/views/miq_policy/_action_list.html.haml:6 -msgid "No Actions are defined that match the entered search string '%s'" -msgstr "" -"No hay acciones definidas que coincidan con la cadena de búsqueda ingresada '%" -"s'" +msgid "Show the files on this %{host}" +msgstr "Mostrar los archivos en este %{host}" -#: ../app/views/miq_policy/_action_options.html.haml:59 -msgid "Custom Attribute Settings" -msgstr "Configuración de atributos personalizada" +msgid "Show the firewall rules on this %{host}" +msgstr "Mostrar las reglas de firewall en este %{host}" -#: ../app/views/miq_policy/_action_options.html.haml:111 -msgid "Tag to Apply" -msgstr "Etiqueta para aplicar" +msgid "Show the groups defined on this %{host}" +msgstr "Mostrar los grupos definidos en este %{host}" -#: ../app/views/miq_policy/_action_options.html.haml:128 -msgid "Select a Tag to Apply" -msgstr "Seleccionar una etiqueta para aplicar" +msgid "Show the packages installed on this %{host}" +msgstr "Mostrar los paquetes instalados en este %{host}" -#: ../app/views/miq_policy/_action_options.html.haml:187 -msgid "Delete if Older than" -msgstr "Eliminar si es anterior a" +msgid "Show the patches installed on this %{host}" +msgstr "Mostrar los parches instalados en este %{host}" -#: ../app/views/miq_policy/_action_options.html.haml:228 -msgid "(Enter the value between 4 - 65636 MB)" -msgstr "(Introduzca un valor entre 4 - 65636 MB)" +msgid "Show the services installed on this %{host}" +msgstr "Mostrar los servicios instalados en este %{host}" -#: ../app/views/miq_policy/_action_options.html.haml:287 -msgid "Select Alerts to be Evaluated" -msgstr "Seleccionar alertas para evaluar" +msgid "Show the snapshot info for this VM" +msgstr "Mostrar la información de instántanea para esta máquina virtual" -#: ../app/views/miq_policy/_action_options.html.haml:300 -msgid "Available Alerts:" -msgstr "Alertas disponibles:" +msgid "Show the users defined on this %{host}" +msgstr "Mostrar los usuarios definidos en este %{host}" -#: ../app/views/miq_policy/_action_options.html.haml:304 -msgid " Selected Alerts:" -msgstr "Notificaciones seleccionadas:" +msgid "Show this %{entity_name}'s parent %{linked_entity_name}" +msgstr "Mostrar el %{linked_entity_name} principal de %{entity_name} " -#: ../app/views/miq_policy/_action_options.html.haml:325 -msgid "Move selected Alerts into this Action" -msgstr "Mover alertas seleccionadas a esta acción" +msgid "Show this %{host_title}'s %{cluster_title}" +msgstr "Mostrar el %{cluster_title} de %{host_title} " -#: ../app/views/miq_policy/_action_options.html.haml:336 -msgid "Remove selected Alerts from this Action" -msgstr "Eliminar las alertas seleccionadas de esta acción" +msgid "Show this %{title}'s %{label}" +msgstr "Mostrar la %{label} de %{title}" -#: ../app/views/miq_policy/_action_options.html.haml:369 -msgid "SNMP Trap Settings" -msgstr "Configuración de captura de SNMP" +msgid "Show this Availability Zone's parent Cloud Provider" +msgstr "Mostrar el proveedor de nube principal de esta zona de disponibilidad" -#: ../app/views/miq_policy/_action_options.html.haml:538 -msgid "Inherit Tags Settings" -msgstr "Heredar configuración de etiquetas" +msgid "Show this Backup's %{parent}" +msgstr "Mostrar %{parent} de esta copia de seguridad" -#: ../app/views/miq_policy/_action_options.html.haml:589 -msgid "Remove Tags Settings" -msgstr "Eliminar configuración de etiquetas" +msgid "Show this Backup's parent %{parent}" +msgstr "Mostrar %{parent} de esta copia de seguridad" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:29 -msgid "No type set" -msgstr "No se estableció el tipo" +msgid "Show this Cloud Object Store's child %{children}" +msgstr "Mostrar %{children} secundarios de este almacén de objetos de la nube " -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:173 -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:183 -msgid "Per Minute" -msgstr "Por minuto" +msgid "Show this Cloud Object Store's child %{children}'" +msgstr "Mostrar %{children}' secundarios de este almacén de objetos de la nube" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:207 -msgid "Caution:" -msgstr "Atención:" +msgid "Show this Cloud Object Store's parent %{parent}" +msgstr "Mostrar %{parent} principal de este almacén de objetos de la nube " -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:210 -msgid "Setting tracing to true may cause excessive log lines to be written" -msgstr "" -"Establecer el seguimiento en verdadero puede hacer que se escriban líneas de r" -"egistro excesivas" +msgid "Show this Cloud Object's parent %{parent}" +msgstr "Mostrar %{parent} principal de este objeto de la nube" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:220 -msgid "Message Filter" -msgstr "Filtro de mensajes" +msgid "Show this Cloud Tenant's parent Cloud Provider" +msgstr "Mostrar el proveedor de nube principal de este inquilino de nube" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:248 -msgid "Hardware Attribute" -msgstr "Atributo de hardware" +msgid "Show this Cloud Volume's parent %{parent}" +msgstr "Mostrar el %{parent} principal de este volumen de la nube" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:287 -msgid "No %{types} found" -msgstr "No se encontraron %{types}" +msgid "Show this Flavor's parent Cloud Provider" +msgstr "Mostrar el proveedor de nube principal de esta clase" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:307 -msgid "Provider no longer exists, this alert must be reconfigured" -msgstr "El proveedor ya no existe; esta alerta debe ser reconfigurada" +msgid "Show this Host Aggregate's parent Cloud Provider" +msgstr "Mostrar %{parent} de este agregado de hosts" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:326 -msgid "No alarms found for the selected Provider" -msgstr "No se encontraron alarmas para el proveedor seleccionado" +msgid "Show this Image's parent" +msgstr "Mostrar el ítem principal de esta imagen" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:340 -msgid "Choose a %{provider} first" -msgstr "Primero, elija un %{provider}" +msgid "Show this Orchestration Template" +msgstr "Mostrar esta plantilla de orquestación" -#: ../app/views/miq_policy/_alert_details.html.haml:67 -#: ../app/views/miq_policy/_alert_profile_assign.html.haml:17 -#: ../app/views/report/_report_info.html.haml:66 -msgid "Based On" -msgstr "Basado en" +msgid "Show this Parent Provider" +msgstr "Mostrar este proveedor principal" -#: ../app/views/miq_policy/_alert_details.html.haml:87 -msgid "* Cannot be changed while this Alert belongs to an Alert Profile." -msgstr "" -"* No puede ser cambiada mientras esta alerta pertenezca a un Perfil de alertas" -". " +msgid "Show this Service" +msgstr "Mostrar este servicio" -#: ../app/views/miq_policy/_alert_details.html.haml:104 -msgid "What to Evaluate" -msgstr "Qué evaluar" +msgid "Show this Service's Job" +msgstr "Mostrar la tarea de este servicio" -#: ../app/views/miq_policy/_alert_details.html.haml:110 -#: ../app/views/miq_policy/_alert_details.html.haml:113 -msgid "Expression (Custom)" -msgstr "Expresión (personalizado)" +msgid "Show this Service's Parent Service" +msgstr "Mostrar el servicio principal de este servicio" -#: ../app/views/miq_policy/_alert_details.html.haml:128 -#: ../app/views/miq_policy/_alert_details.html.haml:239 -#: ../app/views/miq_policy/_condition_details.html.haml:70 -#: ../app/views/miq_policy/_policy_details.html.haml:268 -msgid "Expression" -msgstr "Expresión" +msgid "Show this Service's Parent Service Catalog" +msgstr "Mostrar el catálogo de servicios principal de este servicio" -#: ../app/views/miq_policy/_alert_details.html.haml:141 -#: ../app/views/miq_policy/_alert_details.html.haml:164 -msgid "Driving Event" -msgstr "Evento impulsor" +msgid "Show this Snapshot's %{parent}" +msgstr "Mostrar %{parent} de esta instantánea" -#: ../app/views/miq_policy/_alert_details.html.haml:181 -msgid "Notification Frequency" -msgstr "Frecuencia de notificación" +msgid "Show this Snapshot's parent %{parent}" +msgstr "Mostrar %{parent} principal de esta instantánea" -#: ../app/views/miq_policy/_alert_details.html.haml:215 -#: ../app/views/miq_policy/_form_expression.html.haml:3 -msgid "Expression (Choose an element of the expression to edit)" -msgstr "Expresión (elija un ítem de la expresión para Modificar)" +msgid "Show this VM's %{label}" +msgstr "Mostrar %{label} de esta máquina virtual" -#: ../app/views/miq_policy/_alert_details.html.haml:257 -msgid "An alert must contain a valid expression." -msgstr "La alerta debe contener una expresión válida" +msgid "Show this VM's %{label} '%{name}'" +msgstr "Mostrar %{label} '%{name}' de esta máquina virtual" -#: ../app/views/miq_policy/_alert_details.html.haml:291 -msgid "Send E-mail" -msgstr "Enviar correo electrónico" +msgid "Show this VM's %{title}" +msgstr "Mostrar %{title} de esta máquina virtual" -#: ../app/views/miq_policy/_alert_details.html.haml:335 -msgid "Send SNMP Trap" -msgstr "Enviar captura de SNMP" +msgid "Show this VM's Resource Pool" +msgstr "Mostrar agrupación de recursos de esta máquina virtual" -#: ../app/views/miq_policy/_alert_details.html.haml:401 -#: ../app/views/miq_policy/_alert_snmp.html.haml:106 -msgid "Variable Object ID" -msgstr "ID de objeto variable" +msgid "Show this Volume's %{availability_zone}" +msgstr "Mostrar %{availability_zone} de este volumen" -#: ../app/views/miq_policy/_alert_details.html.haml:435 -#: ../app/views/miq_policy/_alert_evm_event.html.haml:5 -msgid "Timeline Event" -msgstr "Registrar cronología de eventos" +msgid "Show this Volume's %{cloud_tenant}" +msgstr "Mostrar %{cloud_tenant} de este volumen" -#: ../app/views/miq_policy/_alert_details.html.haml:444 -#: ../app/views/miq_policy/_alert_evm_event.html.haml:16 -msgid "Show on Timeline" -msgstr "Mostrar en línea de tiempo" +msgid "Show this Volume's %{parent}" +msgstr "Mostrar %{parent} de este volumen" -#: ../app/views/miq_policy/_alert_details.html.haml:462 -msgid "Send Management Event" -msgstr "Enviar evento de administración" +msgid "Show this container volume's parent Containers Provider" +msgstr "Mostrar el proveedor de contenedores principal de este volumen de contenedor" -#: ../app/views/miq_policy/_alert_details.html.haml:471 -#: ../app/views/miq_policy/_alert_mgmt_event.html.haml:33 -msgid "Event Name" -msgstr "Nombre del evento" +msgid "Show this parent %{provider} for this %{host}" +msgstr "Mostrar este %{provider} principal para este %{host}" -#: ../app/views/miq_policy/_alert_details.html.haml:493 -msgid "Belongs to Alert Profiles" -msgstr "Pertenece a los Perfiles de Alerta" +msgid "Show topology" +msgstr "Mostrar topología" -#: ../app/views/miq_policy/_alert_details.html.haml:496 -msgid "This Alert is not assigned to any Alert Profiles." -msgstr "Esta alerta no está asignada a ningún perfil de alerta." +msgid "Show tree of all VMs by Resource Pool in this %{cluster_title}" +msgstr "Mostrar árbol de todas las máquinas virtuales por agrupación de recursos en este %{cluster_title}" -#: ../app/views/miq_policy/_alert_details.html.haml:503 -#: ../app/views/miq_policy/_alert_profile_list.html.haml:16 -msgid "View this Alert Profile" -msgstr "Ver este perfil de alerta" +msgid "Show tree of all VMs by Resource Pool in this %{title}" +msgstr "Mostrar árbol de todas las máquinas virtuales por agrupación de recursos en este %{title}" -#: ../app/views/miq_policy/_alert_details.html.haml:524 -msgid "Referenced by Actions" -msgstr "Con referencia de acciones" +msgid "Show tree of all VMs in this Resource Pool" +msgstr "Mostrar árbol de todas las máquinas virtuales en esta agrupación de recursos" -#: ../app/views/miq_policy/_alert_details.html.haml:527 -msgid "This Alert is not referenced by any Actions." -msgstr "Esta alerta no está designada por ninguna acción." +msgid "Show virtual machine analysis history" +msgstr "Mostrar historial de análisis de máquina virtual" -#: ../app/views/miq_policy/_alert_details.html.haml:534 -msgid "View this Action" -msgstr "Ver esta acción" +msgid "Show virtual machine drift history" +msgstr "Mostrar historial de desplazamiento de máquina virtual" -#: ../app/views/miq_policy/_alert_list.html.haml:4 -msgid "No Alerts are defined" -msgstr "No hay alertas definidas" +msgid "Show virtual machine genealogy" +msgstr "Mostrar genealogía de máquina virtual" -#: ../app/views/miq_policy/_alert_list.html.haml:6 -msgid "No Alerts are defined that match the entered search string '%s'" +msgid "Showing first" msgstr "" -"No hay alertas definidas que coincidan con la cadena de búsqueda ingresada '%s" -"'" - -#: ../app/views/miq_policy/_alert_mgmt_event.html.haml:5 -msgid "Management Event" -msgstr "Evento de gestión" -#: ../app/views/miq_policy/_alert_mgmt_event.html.haml:16 -msgid "Send a Management Event" -msgstr "Enviar un evento de administración" +msgid "Shutdown" +msgstr "Forzar apagado" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:42 -msgid "No Alerts are defined." -msgstr "No hay alertas definidas" +msgid "Shutdown Guest" +msgstr "Apagar invitado" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:48 -msgid "View this Alert" -msgstr "Ver esta alerta" +msgid "Shutdown the Guest OS on the selected items" +msgstr "Apagar el sistema operativo de invitado en los ítemes seleccionados" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:64 -msgid "Alert Selection" -msgstr "Selección de Alerta" +msgid "Shutdown the Guest OS on the selected items?" +msgstr "¿Desea apagar el sistema operativo de invitado en los ítemes seleccionados?" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:70 -msgid "Available %{model} Alerts:" -msgstr "Alertas disponibles %{model}:" +msgid "Shutdown the Guest OS on this VM" +msgstr "Apagar el sistema operativo de invitado en esta máquina virtual" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:74 -msgid "Profile Alerts:" -msgstr "Alertas de perfil:" +msgid "Shutdown the Guest OS on this VM?" +msgstr "¿Desea apagar el sistema operativo de invitado en esta máquina virtual?" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:93 -msgid "Move selected Alerts into this Profile" -msgstr "Mover alertas seleccionadas a este perfil" +msgid "Shutdown the selected items" +msgstr "Apagar los ítemes seleccionados" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:105 -msgid "Remove all Alerts from this Profile" -msgstr "Eliminar todas las alertas de este perfil" +msgid "Shutdown the selected items to Standby Mode" +msgstr "Colocar los ítemes seleccionados en modo de espera" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:116 -msgid "Remove selected Alerts from this Profile" -msgstr "Eliminar las alertas seleccionadas de este perfil" +msgid "Shutdown the selected items to Standy Mode?" +msgstr "¿Desea colocar los ítemes seleccionados en modo de espera?" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:178 -#: ../app/views/miq_policy/_condition_details.html.haml:115 -#: ../app/views/miq_policy/_policy_details.html.haml:405 -#: ../app/views/miq_policy/_profile_details.html.haml:183 -msgid "No notes have been entered." -msgstr "No se han ingresado notas." +msgid "Shutdown the selected items?" +msgstr "¿Desea apagar los ítemes seleccionados?" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:187 -msgid "Assigned To" -msgstr "Asignada a:" +msgid "Shutdown this item" +msgstr "Apagar este ítem" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:238 -msgid "%{alert_profiles} with %{type} Tags" -msgstr "%{alert_profiles} con etiquetas %{type}" +msgid "Shutdown this item to Standby Mode" +msgstr "Colocar este ítem en modo de espera" -#: ../app/views/miq_policy/_alert_profile_folders.html.haml:10 -#: ../app/views/miq_policy/_policy_folders.html.haml:33 -msgid "Open Folder" -msgstr "Abrir carpeta" +msgid "Shutdown this item to Standby Mode?" +msgstr "¿Desea colocar este ítem en modo de espera?" -#: ../app/views/miq_policy/_alert_profile_list.html.haml:7 -msgid "No %{alert_profile_type} Alert Profiles are defined." -msgstr "No hay perfiles de alerta %{alert_profile_type} definidos." +msgid "Shutdown this item?" +msgstr "¿Desea apagar este ítem?" -#: ../app/views/miq_policy/_alert_profile_list.html.haml:9 -msgid "" -"No %{alert_profile_type} Alert Profiles are defined that match the entered sea" -"rch string." -msgstr "" -"No hay perfiles de alerta %{alert_profile_type} definidos que coincidan con la" -" cadena de búsqueda ingresada." +msgid "Shutdown to Standby Mode" +msgstr "Colocar en modo de espera" -#: ../app/views/miq_policy/_alert_snmp.html.haml:19 -msgid "Send an SNMP Trap" -msgstr "Enviar una captura de SNMP" +msgid "Signal" +msgstr "Señal" -#: ../app/views/miq_policy/_condition_details.html.haml:62 -#: ../app/views/miq_policy/_form_scope.html.haml:25 -msgid "No scope defined, the scope of this condition includes all elements." -msgstr "" -"No hay alcance definido; el alcance de esta condición incluye todos los ítemes" -"." +msgid "Simulate" +msgstr "Simular" -#: ../app/views/miq_policy/_condition_details.html.haml:87 -msgid "A condition must contain a valid expression." -msgstr "Una condición debe contener una expresión válida" +msgid "Simulate using Button details" +msgstr "Detalles de simulación de uso de botón" -#: ../app/views/miq_policy/_condition_details.html.haml:126 -msgid "This Condition is not assigned to any Policies." -msgstr "Esta condición no está asignada a ninguna política." +msgid "Simulation" +msgstr "Simulación" -#: ../app/views/miq_policy/_condition_folders.html.haml:10 -msgid "View Condition" -msgstr "Ver condición" +msgid "Simulation Parameters" +msgstr "Parámetros de simulación" -#: ../app/views/miq_policy/_condition_folders.html.haml:20 -msgid "%{object} Conditions" -msgstr "Condiciones de %{object}" +msgid "Simulation unavailable: Required Class \"System/Process\" is missing" +msgstr "Simulación no disponible: La clase requerida \"Sistema/Proceso\" no se encuentra" -#: ../app/views/miq_policy/_condition_list.html.haml:10 -msgid "No %{model} Conditions are defined." -msgstr "No hay condiciones %{model} definidas." +msgid "Single Select" +msgstr "Selección única" -#: ../app/views/miq_policy/_condition_list.html.haml:12 -msgid "No %{model} Conditions are defined that match the entered search string." +msgid "Single VM/Instance" msgstr "" -"No hay condiciones %{model} definidas que coincidan con la cadena de búsqueda " -"ingresada." -#: ../app/views/miq_policy/_condition_list.html.haml:19 -#: ../app/views/miq_policy/_policy_details.html.haml:234 -msgid "View this Condition" -msgstr "Ver esta condición" +msgid "Single Value" +msgstr "Valor único" -#: ../app/views/miq_policy/_event_details.html.haml:30 -msgid "Event Group" -msgstr "Grupo de eventos" +msgid "Size" +msgstr "Tamaño" -#: ../app/views/miq_policy/_event_details.html.haml:41 -msgid "Attached to Policy" -msgstr "Adjunto a la política" +msgid "Size (in gigabytes)" +msgstr "Tamaño (en gigabytes)" -#: ../app/views/miq_policy/_event_details.html.haml:55 -msgid "This Event is not assigned to any Policies." -msgstr "Este evento no está asignado a ninguna política." +msgid "Small Trees" +msgstr "Árboles pequeños" -#: ../app/views/miq_policy/_event_details.html.haml:78 -msgid "Order of Actions if ALL Conditions are True" -msgstr "Orden de acciones si TODAS las condiciones son verdaderas" +msgid "Smart Management" +msgstr "Gestión inteligente" -#: ../app/views/miq_policy/_event_details.html.haml:85 -#: ../app/views/miq_policy/_event_details.html.haml:261 -msgid "Available Actions:" -msgstr "Acciones disponibles:" +msgid "SmartProxy Affinity" +msgstr "Afinidad de SmartProxy" -#: ../app/views/miq_policy/_event_details.html.haml:89 -#: ../app/views/miq_policy/_event_details.html.haml:265 -msgid " Selected Actions:" -msgstr "Acciones seleccionadas:" +msgid "SmartProxy Server IP" +msgstr "IP de servidor SmartProxy" -#: ../app/views/miq_policy/_event_details.html.haml:111 -msgid "Move selected Actions into this Event" -msgstr "Mover acciones seleccionadas a este evento" +msgid "SmartState Analysis cannot be performed when there is no active Host" +msgstr "" -#: ../app/views/miq_policy/_event_details.html.haml:121 -msgid "Remove all Actions from this Event" -msgstr "Eliminar todas las acciones de este evento" +msgid "Smartstate Analysis" +msgstr "Análisis de SmartState" -#: ../app/views/miq_policy/_event_details.html.haml:130 -msgid "Remove selected Actions from this Event" -msgstr "Eliminar las acciones seleccionadas de este evento" +msgid "Snapshot" +msgid_plural "Snapshots" +msgstr[0] "Instantánea" +msgstr[1] "Instantáneas" -#: ../app/views/miq_policy/_event_details.html.haml:156 -msgid "Move selected Action up" -msgstr "Mover acción seleccionada hacia arriba" +msgid "Snapshot Age Settings" +msgstr "Configuración de antigüedad de instantánea" -#: ../app/views/miq_policy/_event_details.html.haml:166 -msgid "Move selected Action down" -msgstr "Mover acción seleccionada hacia abajo" +msgid "Snapshot Age must be selected" +msgstr "Se debe seleccionar la antigüedad de la instantánea" -#: ../app/views/miq_policy/_event_details.html.haml:176 -msgid "Set selected Actions to Synchronous" -msgstr "Establecer las acciones seleccionadas en sincrónicas" +msgid "Snapshot Create" +msgstr "Crear instantánea" -#: ../app/views/miq_policy/_event_details.html.haml:186 -msgid "Set selected Actions to Asynchronous" -msgstr "Establecer las acciones seleccionadas en asincrónicas" +msgid "Snapshot Delete" +msgstr "Eliminar instantánea" -#: ../app/views/miq_policy/_event_details.html.haml:203 -msgid "This Event has no true Actions." -msgstr "Este evento no tiene acciones verdaderas." +msgid "Snapshot Information" +msgstr "Información de instantánea" -#: ../app/views/miq_policy/_event_details.html.haml:216 -#: ../app/views/miq_policy/_event_details.html.haml:396 -msgid "Synchronous" -msgstr "Sincrónico" +msgid "Snapshot Name" +msgstr "Nombre de instantánea" -#: ../app/views/miq_policy/_event_details.html.haml:228 -#: ../app/views/miq_policy/_event_details.html.haml:408 -#: ../app/views/miq_policy/_policy_details.html.haml:352 -#: ../app/views/miq_policy/_policy_details.html.haml:367 -msgid "View this Event Action" -msgstr "Ver esta acción de evento" +msgid "Snapshot Settings" +msgstr "Configuración de instantánea" -#: ../app/views/miq_policy/_event_details.html.haml:254 -msgid "Order of Actions if ANY Conditions are False" -msgstr "Orden de acciones si TODAS las condiciones son falsas" +msgid "Snapshot VM '%{name}'" +msgstr "Máquina virtual de instantánea '%{name}'" -#: ../app/views/miq_policy/_event_details.html.haml:383 -msgid "This Event has no false Actions." -msgstr "Este evento no tiene acciones falsas." +msgid "Snapshot VM '%{name}''" +msgstr "Máquina virtual de instantánea '%{name}'" -#: ../app/views/miq_policy/_event_list.html.haml:5 -msgid "No Events are defined" -msgstr "No hay eventos definidos" +msgid "Snapshot VM memory" +msgstr "Memoria de máquina virtual de instantánea" -#: ../app/views/miq_policy/_event_list.html.haml:7 -msgid "No Events are defined that match the entered search string '%s'" -msgstr "" -"No hay eventos definidos que coincidan con la cadena de búsqueda ingresada '%s" -"'" +msgid "Snapshot for Cloud Volume \"%{name}\" created" +msgstr "Instantánea para volumen de nube \"%{name}\" ha sido creada" -#: ../app/views/miq_policy/_event_list.html.haml:14 -msgid "View this Event" -msgstr "Ver este evento" +msgid "Snapshot of Cloud Volume \"%{name}\" was cancelled by the user" +msgstr "Instantánea para volumen de nube \"%{name}\" ha sido cancelada por el usuario" -#: ../app/views/miq_policy/_export.html.haml:17 -#: ../app/views/miq_policy/import.html.haml:54 -#: ../app/views/miq_policy/import.html.haml:54 -msgid "Resolve conflicts to import the file" -msgstr "Resolver conflictos para importar el archivo" +msgid "Snapshot of VM %{name} was cancelled by the user" +msgstr "La instantánea de máquina virtual %{name} fue cancelada por el usuario" -#: ../app/views/miq_policy/_export.html.haml:23 -#: ../app/views/miq_policy/import.html.haml:60 -#: ../app/views/miq_policy/import.html.haml:60 -msgid "Commit Import" -msgstr "Confirmar importación" +msgid "Snapshots" +msgstr "Instantáneas" -#: ../app/views/miq_policy/_export.html.haml:33 -#: ../app/views/miq_policy/import.html.haml:73 -msgid "Cancel Import" -msgstr "Cancelar importación" +msgid "Sockets" +msgstr "Sockets" -#: ../app/views/miq_policy/_export.html.haml:102 -msgid "Export:" -msgstr "Exportar:" +msgid "Soft Reboot" +msgstr "Reinicio suave" -#: ../app/views/miq_policy/_export.html.haml:122 -msgid "Available %{title}:" -msgstr "%{title} disponible:" +msgid "Soft Reboot the selected items" +msgstr "Reiniciar suavemente los ítemes seleccionados" -#: ../app/views/miq_policy/_export.html.haml:148 -msgid "Export Selected %{title}" -msgstr "Exportar seleccionado %{title}" +msgid "Soft Reboot the selected items?" +msgstr "¿Reiniciar suavemente los ítemes seleccionados?" -#: ../app/views/miq_policy/_form_expression.html.haml:8 -msgid "Expression (Press the \"Edit\" button to edit the expression)" -msgstr "Expresión (presione el botón \"modificar\" para modificar la expresión)" +msgid "Soft Reboot this Instance" +msgstr "Reiniciar suavemente esta instancia" -#: ../app/views/miq_policy/_form_expression.html.haml:10 -#: ../app/views/report/_form_filter.html.haml:22 -#: ../app/views/report/_form_filter.html.haml:62 -msgid "Edit this Expression" -msgstr "Modificar esta expresión" +msgid "Soft Reboot this Instance?" +msgstr "¿Reiniciar suavemente esta instancia?" -#: ../app/views/miq_policy/_form_expression.html.haml:21 -msgid "No expression defined, a condition must contain a valid expression." +msgid "Software" +msgstr "Software" + +msgid "Software updates have not yet been configured. Select Edit Registration to register appliances in this region with Red Hat to receive software updates and other benefits." +msgstr "Las actualizaciones de software aún no han sido configuradas. Seleccione Modificar inscripción para registrar dispositivos en Red Hat de esta región, recibir actualizaciones de software y otros beneficios." + +msgid "Something is wrong, try reloading the page" msgstr "" -"No hay ninguna expresión definida; una condición debe contener una expresión v" -"álida." -#: ../app/views/miq_policy/_form_scope.html.haml:3 -msgid "Scope (Choose an element of the scope to edit)" -msgstr "Alcance (elegir un ítem del alcance para modificar)" +msgid "Sorry, the username or password you entered is incorrect." +msgstr "Lo sentimos, el nombre de usuario o contraseña que ingresó no es correcto." -#: ../app/views/miq_policy/_form_scope.html.haml:10 -msgid "Scope (Press the \"Edit\" button to edit the scope)" -msgstr "Alcance (presionar el botón \"modificar\" para modificar el alcance)" +msgid "Sort By" +msgstr "Clasificar por" -#: ../app/views/miq_policy/_form_scope.html.haml:12 -msgid "Edit this Scope" -msgstr "Modificar este alcance" +msgid "Sort Criteria" +msgstr "Criterios de clasificación" -#: ../app/views/miq_policy/_policy_details.html.haml:82 -msgid "By Username %{username} %{created_on}" -msgstr "Por nombre de usuario %{username} %{created_on}" +msgid "Sort Order" +msgstr "Orden de clasificación" -#: ../app/views/miq_policy/_policy_details.html.haml:97 -msgid "By Username %{username} %{updated_on}" -msgstr "Por nombre de usuario %{username} %{updated_on}" +msgid "Sort the Report By" +msgstr "Clasificar el informe según" -#: ../app/views/miq_policy/_policy_details.html.haml:107 -msgid "Scope (Choose an element of the Policy scope to edit)" -msgstr "Alcance (elegir un ítem del alcance de la política para Modificar)" +msgid "Source" +msgstr "Fuente" -#: ../app/views/miq_policy/_policy_details.html.haml:130 -msgid "No Policy scope defined, the scope of this policy includes all elements." +msgid "Spaces are prohibited" +msgstr "Los espacios están prohibidos" + +msgid "Specific Hosts" msgstr "" -"No hay alcance de política definido; el alcance de esta política incluye todos" -" los ítemes." -#: ../app/views/miq_policy/_policy_details.html.haml:138 -msgid "Condition Selection" -msgstr "Selección de condiciones" +msgid "Specified NTP settings applied here will override Zone NTP settings." +msgstr "La configuración de NTP especificada aplicada aquí anulará la configuración de NTP de zona." -#: ../app/views/miq_policy/_policy_details.html.haml:144 -msgid "Available %{model} Conditions:" -msgstr "Condiciones disponibles %{model}:" +msgid "Specify CDN configuration" +msgstr "Especificar configuración de CDN" -#: ../app/views/miq_policy/_policy_details.html.haml:148 -msgid "Policy Conditions:" -msgstr "Condiciones de política:" +msgid "Specify Calculations for Summary Rows" +msgstr "Especificar cálculos para filas de resumen" -#: ../app/views/miq_policy/_policy_details.html.haml:172 -msgid "Move selected Conditions into this Policy" -msgstr "Mover condiciones seleccionadas a esta política" +msgid "Specify Calculations of Numeric Values for Grouped Records" +msgstr "Especificar cálculos de valores numéricos para registros agrupados" -#: ../app/views/miq_policy/_policy_details.html.haml:172 -msgid "Remove all Conditions from this Policy" -msgstr "Eliminar todas las condiciones de esta política" +msgid "Specify Column Headers and Formats" +msgstr "Especificar encabezados y formatos de columnas" -#: ../app/views/miq_policy/_policy_details.html.haml:172 -msgid "Remove selected Conditions from this Policy" -msgstr "Eliminar las condiciones seleccionadas de esta política" +msgid "Specify Column Styles" +msgstr "Especificar estilos de columnas" -#: ../app/views/miq_policy/_policy_details.html.haml:207 -msgid "" -"* If all Conditions are removed from a Policy, it will be unconditional and al" -"ways evaluate to true." +msgid "Specify Driver" msgstr "" -"* Si todas las Condiciones son eliminadas de una Política, será incondicional " -"y siempre evaluada como verdadera." -#: ../app/views/miq_policy/_policy_details.html.haml:214 -msgid "" -"No conditions defined. This policy is unconditional and will ALWAYS return tru" -"e." -msgstr "" -"No hay condiciones definidas. Esta política es incondicional y SIEMPRE arrojar" -"á el valor true." +msgid "Specify a list of machines to deploy on (No existing provider)" +msgstr "Especificar una lista de máquinas para desplegar (proveedor no existente)" -#: ../app/views/miq_policy/_policy_details.html.haml:227 -msgid "Scopes / Expressions" -msgstr "Alcances/Expresiones" +msgid "Specify role(s) for this host" +msgstr "Especificar roles para este host" -#: ../app/views/miq_policy/_policy_details.html.haml:286 -#: ../app/views/miq_policy/_rsop_form.html.haml:15 -msgid "Event Selection" -msgstr "Selección de evento" +msgid "Stack" +msgstr "Pila" -#: ../app/views/miq_policy/_policy_details.html.haml:306 -msgid "This policy does not currently respond to any Events." -msgstr "Esta política no responde a ningún evento actualmente." +msgid "Stacks" +msgstr "Pilas" -#: ../app/views/miq_policy/_policy_details.html.haml:328 -#: ../app/views/miq_policy/_policy_details.html.haml:334 -msgid "View this Policy Event" -msgstr "Ver este evento de política" +msgid "Standard NFS Server" +msgstr "Servidor NFS sellado" -#: ../app/views/miq_policy/_policy_details.html.haml:345 -msgid "* No Actions are configured for this Event." -msgstr "* No se han configurado acciones para este evento." +msgid "Start" +msgstr "Empezar" -#: ../app/views/miq_policy/_policy_details.html.haml:414 -msgid "Belongs to Profiles" -msgstr "Pertenece a los Perfiles" +msgid "Start Date" +msgstr "Fecha de inicio" -#: ../app/views/miq_policy/_policy_details.html.haml:417 -msgid "This Policy is not assigned to any Profiles." -msgstr "Esta política no está asignada a ningún perfil." +msgid "Start Page" +msgstr "Página de inicio" -#: ../app/views/miq_policy/_policy_details.html.haml:424 -#: ../app/views/miq_policy/_profile_list.html.haml:16 -#: ../app/views/report/_role_list.html.haml:31 -msgid "View this Profile" -msgstr "Ver este perfil" +msgid "Start Role" +msgstr "Iniciar rol" -#: ../app/views/miq_policy/_policy_list.html.haml:8 -msgid "No %{model} %{mode} Policies are defined." -msgstr "No hay políticas %{model} %{mode} definidas." +msgid "Start Server" +msgstr "Iniciar el servidor" -#: ../app/views/miq_policy/_policy_list.html.haml:10 -msgid "No %{model} %{mode} Policies are defined that match the entered search string." +msgid "Start Server Group" msgstr "" -"No hay políticas %{model} %{mode} definidas que coincidan con la cadena de bús" -"queda ingresada." -#: ../app/views/miq_policy/_profile_details.html.haml:45 -msgid "Policy Selection" -msgstr "Selección de política" +msgid "Start Servers in this Server Group" +msgstr "" -#: ../app/views/miq_policy/_profile_details.html.haml:51 -msgid "Available Policies:" -msgstr "Políticas disponibles:" +msgid "Start TLS Automatically" +msgstr "Iniciar TLS automáticamente" -#: ../app/views/miq_policy/_profile_details.html.haml:55 -msgid "Profile Policies:" -msgstr "Políticas de perfil:" +msgid "Start Timestamp" +msgstr "Iniciar marca de tiempo" -#: ../app/views/miq_policy/_profile_details.html.haml:77 -msgid "Move selected Policies into this Profile" -msgstr "Mover políticas seleccionadas a este perfil" +msgid "Start is not allowed for the selected item" +msgstr "El inicio no está permitido para el ítem seleccionado" -#: ../app/views/miq_policy/_profile_details.html.haml:87 -msgid "Remove all Policies from this Profile" -msgstr "Eliminar todas las políticas de este perfil" +msgid "Start successfully initiated" +msgstr "Se inició de manera exitosa" -#: ../app/views/miq_policy/_profile_details.html.haml:96 -msgid "Remove selected Policies from this Profile" -msgstr "Eliminar las políticas seleccionadas de este perfil" +msgid "Start the %{host} Discovery" +msgstr "Iniciar la detección de %{host}" -#: ../app/views/miq_policy/_profile_details.html.haml:128 -msgid "No Policies are defined." -msgstr "No hay políticas definidas." +msgid "Start the %{server_role_description} Role on Server %{server_name} [%{server_id}]" +msgstr "Iniciar el rol %{server_role_description} en el servidor %{server_name} [%{server_id}]" -#: ../app/views/miq_policy/_profile_details.html.haml:134 -msgid "View this %{model} Policy" -msgstr "Ver esta política %{model}" +msgid "Start the %{server_role_description} Role on Server %{server_name} [%{server_id}]?" +msgstr "¿Iniciar el rol %{server_role_description} en el servidor %{server_name} [%{server_id}]?" -#: ../app/views/miq_policy/_profile_list.html.haml:7 -msgid "No %{mode} Policy Profiles are defined." -msgstr "No hay perfiles de política %{mode} definidos." +msgid "Start the selected items" +msgstr "Iniciar los ítemes seleccionados" -#: ../app/views/miq_policy/_profile_list.html.haml:9 -msgid "No %{mode} Policy Profiles are defined that match the entered search string." +msgid "Start the selected items?" +msgstr "¿Iniciar los ítemes seleccionados?" + +msgid "Start this Instance" +msgstr "Iniciar esta instancia" + +msgid "Start this Instance?" +msgstr "¿Iniciar esta instancia?" + +msgid "Start this server" +msgstr "Iniciar este servidor" + +msgid "Started" msgstr "" -"No hay perfiles de política %{mode} definidos que coincidan con la cadena de b" -"úsqueda ingresada." -#: ../app/views/miq_policy/_rsop_form.html.haml:47 -msgid "By %{clusters}" -msgstr "Por %{clusters}" +msgid "Started At" +msgstr "Hora de inicio" -#: ../app/views/miq_policy/_rsop_form.html.haml:47 -msgid "By %{hosts}" -msgstr "Por %{hosts}" +msgid "Started On" +msgstr "Fecha de inicio" -#: ../app/views/miq_policy/_rsop_form.html.haml:47 -msgid "By Cloud/Infrastructure Providers" -msgstr "Por proveedores de infraestructura/nube" +msgid "Started:" +msgstr "Se inició:" -#: ../app/views/miq_policy/_rsop_form.html.haml:47 -msgid "Single VM" -msgstr "Máquina virtual única" +msgid "Starting Class must be selected" +msgstr "Se debe seleccionar la clase de inicio" -#: ../app/views/miq_policy/_rsop_options.html.haml:11 -msgid "Submit Policy Simulation for the selected VMs" -msgstr "Enviar simulación de política para las máquinas virtuales seleccionadas" +msgid "Starting Date" +msgstr "Fecha de inicio" -#: ../app/views/miq_policy/_rsop_options.html.haml:21 -#: ../app/views/miq_policy/_rsop_options.html.haml:39 -msgid "Reset all Policy Simulation options" -msgstr "Restablecer todas las opciones de simulación de política" +msgid "Starting Message" +msgstr "Mensaje de inicio" -#: ../app/views/miq_policy/_rsop_options.html.haml:35 -msgid "Select a VM to Submit the Simulation Options" -msgstr "Seleccionar una máquina virtual para enviar las opciones de simulación" +msgid "Starting Process is required" +msgstr "Se requiere el proceso de inicio" -#: ../app/views/miq_policy/_rsop_results.html.haml:18 -#: ../app/views/vm_common/_policy_options.html.haml:16 -msgid "Show out of scope items:" -msgstr "Mostrar ítemes fuera del alcance:" +msgid "Starting Time" +msgstr "Hora de inicio" -#: ../app/views/miq_policy/_rsop_results.html.haml:34 -#: ../app/views/vm_common/_policy_options.html.haml:32 -msgid "Show policies:" -msgstr "Mostrar políticas:" +msgid "Starting process must be specified" +msgstr "Se debe especificar el proceso de inicio" -#: ../app/views/miq_policy/_rsop_results.html.haml:46 -msgid "Passed" -msgstr "Aprobado" +msgid "Starting values" +msgstr "Valores de inicio" -#: ../app/views/miq_policy/_rsop_results.html.haml:57 -#: ../app/views/vm_common/_policy_options.html.haml:54 -msgid "Failed" -msgstr "Con error" +msgid "State" +msgstr "Estado" -#: ../app/views/miq_policy/_rsop_results.html.haml:65 -msgid "Policy Simulation Results" -msgstr "Resultados de simulación de política" +msgid "State Changed On" +msgstr "Estado cambiado el día" -#: ../app/views/miq_policy/_rsop_results.html.haml:71 -msgid "* Items in" -msgstr "* Ítemes ens" +msgid "States of Root Orchestration Stacks" +msgstr "Estados de las pilas de organizaciones raíz" -#: ../app/views/miq_policy/_rsop_results.html.haml:77 -msgid "red italics" -msgstr "cursiva roja" +msgid "Status" +msgstr "Estado" -#: ../app/views/miq_policy/_rsop_results.html.haml:81 -msgid "do not change the outcome of the scope or expression" -msgstr "no cambie el resultado del alcance o la expresión" +msgid "Status = %{row}" +msgstr "Estado = %{row}" -#: ../app/views/miq_policy/_rsop_results.html.haml:101 -msgid "* Enter Policy Simulation options on the left and press Submit" +msgid "Status = Queued" msgstr "" -"* Introduzca las opciones de simulación de políticas a la izquierda y presione" -" Enviar" -#: ../app/views/miq_request/_ae_prov_show.html.haml:3 -msgid "Automations Tasks" -msgstr "Automatización de Tareas" +msgid "Status = Running" +msgstr "" -#: ../app/views/miq_request/_pre_prov.html.haml:8 -msgid "Provision %{what} based on the selected %{type}" -msgstr "Aprovisionar %{what} en función del %{type} seleccionado" +msgid "Status of Regional Roles for Servers in %{kind} %{description}" +msgstr "Estado de roles regionales para servidores en %{kind} %{description}" -#: ../app/views/miq_request/_pre_prov.html.haml:18 -msgid "Hide deprecated" -msgstr "" +msgid "Status of Roles for Servers in %{kind} %{description}" +msgstr "Estado de roles para servidores en %{kind} %{description}" -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:11 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:11 -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:11 -#: ../app/views/shared/views/_prov_dialog.html.haml:10 -msgid "Request Information" -msgstr "Información de la solicitud" +msgid "Status: " +msgstr "Estado: " -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:18 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:18 -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:19 -#: ../app/views/shared/views/_prov_dialog.html.haml:19 -msgid "Manager" -msgstr "Administrador" +msgid "Step 1/3: Datasource Attributes" +msgstr "Paso 1/3: Atributos de la fuente de datos" -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:26 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:26 -#: ../app/views/shared/views/_prov_dialog.html.haml:28 -msgid "Select Tags to apply" -msgstr "Seleccionar etiquetas para aplicar" +msgid "Step 2/3: JDBC Driver" +msgstr "Paso 2/3: Controlador JDBC" -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:50 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:82 -#: ../app/views/shared/views/_prov_dialog.html.haml:339 -#: ../app/views/shared/views/_prov_dialog.html.haml:373 -msgid "IP Address Information" -msgstr "Información de la dirección IP" +msgid "Step 3/3: Connection Settings" +msgstr "Paso 3/3: Parámetros de conexión" -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:60 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:117 -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:82 -#: ../app/views/report/_show_schedule.html.haml:3 -#: ../app/views/shared/views/_prov_dialog.html.haml:408 -msgid "Schedule Info" -msgstr "Información de programación" +msgid "Stop" +msgstr "Parar" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:11 -msgid "(MB) memory" -msgstr "Memoria (MB)" +msgid "Stop Server" +msgstr "Detener servidor" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:11 -msgid "instances" -msgstr "instancias" +msgid "Stop Server Group" +msgstr "" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:11 -msgid "vcpus" -msgstr "Cpu virtuales" +msgid "Stop Servers in this Server Group" +msgstr "" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:18 -msgid "Cloud Quota" -msgstr "Cuota de nube" +msgid "Stop the selected items" +msgstr "Detener los ítemes seleccionados" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:22 -msgid "Cloud Tenant:" -msgstr "Inquilino de nube:" +msgid "Stop the selected items?" +msgstr "¿Detener los ítemes seleccionados?" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:30 -msgid "Please select a Cloud Tenant from the Environment Tab" -msgstr "Seleccione un inquilino de nube en la ficha Entorno" +msgid "Stop this Instance" +msgstr "Detener esta instancia" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:34 -msgid "Instance Type:" -msgstr "Tipo de instancia:" +msgid "Stop this Instance?" +msgstr "¿Detener esta instancia?" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:45 -#: ../app/views/ops/_selected_by_servers.html.haml:186 -msgid "available" -msgstr "disponible" +msgid "Stop this Middleware Server" +msgstr "Detener este servidor de middleware" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:50 -msgid "Please select an Instance Type from above" -msgstr "Seleccione un tipo de instancia de arriba" +msgid "Stop this server" +msgstr "Detener este servidor" -#: ../app/views/miq_request/_prov_field.html.haml:161 -#: ../app/views/miq_request/_prov_field.html.haml:166 -msgid "Lookup" -msgstr "Búsqueda" +msgid "Stopped On" +msgstr "Detenido el día" -#: ../app/views/miq_request/_prov_field.html.haml:166 -#: ../app/views/ops/_rbac_group_details.html.haml:172 -#: ../app/views/ops/_rbac_group_details.html.haml:244 -msgid "LDAP Group Lookup" -msgstr "Búsqueda de grupo LDAP" +msgid "Storage" +msgstr "Almacenamiento" -#: ../app/views/miq_request/_prov_field.html.haml:185 -#: ../app/views/miq_request/_prov_field.html.haml:194 -msgid "VM Number" -msgstr "Número de máquina virtual" +msgid "Storage Adapters" +msgstr "Adaptadores de almacenamiento" -#: ../app/views/miq_request/_prov_field.html.haml:212 -#: ../app/views/miq_request/_prov_field.html.haml:277 -#: ../app/views/miq_request/_prov_field.html.haml:329 -#: ../app/views/miq_request/_prov_field.html.haml:448 -#: ../app/views/miq_request/_prov_field.html.haml:498 -#: ../app/views/miq_request/_prov_field.html.haml:541 -msgid "No Choices Available" -msgstr "No hay opciones disponibles" +msgid "Storage Chargeback Rate \"%{name}\"" +msgstr "" -#: ../app/views/miq_request/_prov_field.html.haml:397 -msgid "* Only a single value can be assigned from these Tag Categories" -msgstr "* Sólo un único valor puede ser asignado de estas categorías de etiquetas" +msgid "Storage Chargeback Rates" +msgstr "Tasas de devolución de almacenamiento" -#: ../app/views/miq_request/_prov_form_buttons.html.haml:16 -#: ../app/views/miq_request/_prov_form_buttons.html.haml:46 -msgid "Cancel this provisioning request" -msgstr "Cancelar esta solicitud de aprovisionamiento" +msgid "Storage Clusters" +msgstr "Clústeres de almacenamiento" -#: ../app/views/miq_request/_prov_form_buttons.html.haml:19 -msgid "Submit this provisioning request" -msgstr "Enviar esta solicitud de aprovisionamiento" +msgid "Storage Manager" +msgstr "" + +msgid "Storage Managers" +msgstr "Gestores de almacenamiento" -#: ../app/views/miq_request/_prov_form_buttons.html.haml:22 -msgid "Continue this provisioning request" -msgstr "Continuar esta solicitud de aprovisionamiento" +msgid "Storage Medium Type" +msgstr "Tipo de almacenamiento medio" -#: ../app/views/miq_request/_prov_host_dialog.html.haml:90 -#: ../app/views/shared/views/_prov_dialog.html.haml:347 -#: ../app/views/shared/views/_prov_dialog.html.haml:381 -#: ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:35 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:101 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:230 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:323 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:388 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:49 -msgid "DNS" -msgstr "DNS" +msgid "Storage Profile" +msgstr "Perfil de almacenamiento" -#: ../app/views/miq_request/_prov_host_dialog.html.haml:98 -#: ../app/views/shared/views/_prov_dialog.html.haml:389 -msgid "Customize Template" -msgstr "Personalizar plantilla" +msgid "Storage Rate Assignments" +msgstr "Asignaciones de tasa de almacenamiento" -#: ../app/views/miq_request/_prov_host_dialog.html.haml:107 -#: ../app/views/shared/views/_prov_dialog.html.haml:398 -msgid "Selected Template Contents" -msgstr "Contenidos de plantillas seleccionados" +msgid "String" +msgstr "Cadena" -#: ../app/views/miq_request/_prov_options.html.haml:8 -#: ../app/views/miq_task/_tasks_options.html.haml:6 -msgid "Filter By" -msgstr "Filtrar por" +msgid "String List" +msgstr "Lista de cadenas" -#: ../app/views/miq_request/_prov_options.html.haml:18 -msgid "Requester:" -msgstr "Solicitante:" +msgid "Style" +msgstr "Estilo" -#: ../app/views/miq_request/_prov_options.html.haml:34 -#: ../app/views/ops/_settings_server_tab.html.haml:222 -msgid "None Available" -msgstr "Ninguno disponible" +msgid "Styling" +msgstr "Aplicación de estilos" -#: ../app/views/miq_request/_prov_options.html.haml:42 -msgid "Approval State:" -msgstr "Estado de aprobación:" +msgid "Styling for '%{item}', first value is in error: %{message}" +msgstr "Aplicación de estilos para '%{item}', el primer valor está en el error: %{message}" -#: ../app/views/miq_request/_prov_options.html.haml:86 -msgid "Request Date:" -msgstr "Fecha de la solicitud:" +msgid "Styling for '%{item}', second value is in error: %{message}" +msgstr "Aplicación de estilos para '%{item}', el segundo valor está en el error: %{message}" -#: ../app/views/miq_request/_prov_options.html.haml:106 -msgid "Reason:" -msgstr "Razón:" +msgid "Styling for '%{item}', third value is in error: %{message}" +msgstr "Aplicación de estilos para '%{item}', el primer valor está en el error: %{message}" -#: ../app/views/miq_request/_prov_options.html.haml:129 -#: ../app/views/miq_request/_prov_options.html.haml:163 -#: ../app/views/miq_task/_tasks_options.html.haml:162 -#: ../app/views/miq_task/_tasks_options.html.haml:195 -msgid "Set filters to default" -msgstr "Establecer filtros en valores predeterminados" +msgid "Styling tab is not available until at least 1 field has been selected" +msgstr "La ficha de aplicación de estilos no estará disponible hasta que se haya seleccionado al menos un campo" -#: ../app/views/miq_request/_prov_options.html.haml:143 -#: ../app/views/miq_task/_tasks_options.html.haml:175 -msgid "Apply the selected filters" -msgstr "Aplicar los filtros seleccionados" +msgid "Sub" +msgstr "Sub" -#: ../app/views/miq_request/_prov_options.html.haml:153 -#: ../app/views/miq_task/_tasks_options.html.haml:185 -msgid "Reset filter changes" -msgstr "Restablecer cambios de filtros" +msgid "Sub-claim" +msgstr "Subreclamación" -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:73 -msgid "VM Hardware" -msgstr "Hardware de máquina virtual" +msgid "Sub-claim:" +msgstr "Subreclamación:" -#: ../app/views/miq_request/_reconfigure_show.html.haml:35 -msgid "Processor Sockets" -msgstr "Sockets de procesador" +msgid "Submit" +msgstr "Enviar" -#: ../app/views/miq_request/_reconfigure_show.html.haml:49 -msgid "Processor Cores_Per_Socket" -msgstr "Núcleos de procesador_por_socket" +msgid "Submit Automation Simulation with the specified options" +msgstr "Enviar simulación de automatización con las opciones especificadas" -#: ../app/views/miq_request/_reconfigure_show.html.haml:63 -#: ../app/views/vm_common/_reconfigure.html.haml:147 -msgid "Total Processors" -msgstr "Total de procesadores" +msgid "Submit Changes" +msgstr "Enviar cambios" -#: ../app/views/miq_request/_reconfigure_show.html.haml:77 -msgid "Add Disks" -msgstr "Añadir discos" +msgid "Submit Planning options" +msgstr "Enviar opciones de planificación" -#: ../app/views/miq_request/_reconfigure_show.html.haml:93 -msgid "Remove Disks" -msgstr "Eliminar discos" +msgid "Submit Policy Simulation for the selected VMs" +msgstr "Enviar simulación de política para las máquinas virtuales seleccionadas" -#: ../app/views/miq_request/_reconfigure_show.html.haml:111 -#: ../app/views/vm_common/_reconfigure.html.haml:387 -msgid "Affected VMs" -msgstr "MV afectadas" +msgid "Submit this provisioning request" +msgstr "Enviar esta solicitud de aprovisionamiento" -#: ../app/views/miq_request/_request.html.haml:7 -#: ../app/views/miq_request/_request_details.html.haml:8 -msgid "Request Details" -msgstr "Detalles de la solicitud" +msgid "Subnet" +msgstr "" -#: ../app/views/miq_request/_request.html.haml:18 -msgid "Request ID" -msgstr "ID de la solicitud" +msgid "Subnet \"%{subnetname}\" added to Router \"%{name}\"" +msgstr "" -#: ../app/views/miq_request/_request.html.haml:44 -msgid "Request State" -msgstr "Estado de la solicitud" +msgid "Subnet \"%{subnetname}\" removed from Router \"%{name}\"" +msgstr "" -#: ../app/views/miq_request/_request.html.haml:58 -msgid "Requester" -msgstr "Solicitante" +msgid "Subnet CIDR" +msgstr "Subred CIDR" -#: ../app/views/miq_request/_request.html.haml:71 -msgid "Request Type" -msgstr "Tipo de solicitud" +msgid "Subnet Mask" +msgstr "Máscara de subred" -#: ../app/views/miq_request/_request.html.haml:100 -#: ../app/views/miq_request/_request_details.html.haml:108 -#: ../app/views/ops/_logs_selected.html.haml:35 -#: ../app/views/ops/rhn/_server_table.html.haml:101 -msgid "Last Message" -msgstr "Último mensaje" +msgid "Subnet Name" +msgstr "Nombre de subred" -#: ../app/views/miq_request/_request.html.haml:126 -#: ../app/views/miq_request/_request_details.html.haml:31 -msgid "Last Update" -msgstr "Última actualización" +msgid "Subnet Range" +msgstr "Rango de subred" -#: ../app/views/miq_request/_request.html.haml:140 -msgid "Completed" -msgstr "Completo" +msgid "Subnets" +msgstr "Subredes" -#: ../app/views/miq_request/_request.html.haml:159 -msgid "Approval State" -msgstr "Estado de la Aprobación" +msgid "Subscribe to this feed" +msgstr "Suscribirse a esta fuente" -#: ../app/views/miq_request/_request.html.haml:173 -#: ../app/views/miq_request/_request_details.html.haml:58 -msgid "Approved/Denied by" -msgstr "Aprobada/Denegada por" +msgid "Subscription Credentials validated successfully" +msgstr "Credenciales de suscripción validadas con éxito" -#: ../app/views/miq_request/_request.html.haml:186 -msgid "Approved/Denied on" -msgstr "Aprobada/Denegada el" +msgid "Subscription ID" +msgstr "ID de suscripción" -#: ../app/views/miq_request/_request.html.haml:224 -msgid "Provisioned VMs" -msgstr "Máquinas virtuales aprovisionadas" +msgid "Subscriptions" +msgstr "Suscripciones" -#: ../app/views/miq_request/_request.html.haml:228 -#: ../app/views/miq_request/_request.html.haml:242 -#: ../app/views/ops/_ldap_region_show.html.haml:83 -#: ../app/views/report/_report_list.html.haml:53 -#: ../app/views/report/_report_list.html.haml:86 -#: ../app/views/report/_report_list.html.haml:147 -#: ../app/views/shared/buttons/_ab_list.html.haml:19 -#: ../app/views/shared/buttons/_ab_list.html.haml:64 -#: ../app/views/shared/buttons/_ab_list.html.haml:93 -#: ../app/views/shared/buttons/_ab_list.html.haml:207 -msgid "Click to view details" -msgstr "Haga clic para ver los detalles" +msgid "Substitute: %{substitute}" +msgstr "Sustituto: %{substitute}" -#: ../app/views/miq_request/_request.html.haml:239 -msgid "Provisioned Hosts" -msgstr "Hosts aprovisionados" +msgid "Substitution:" +msgstr "Sustitución:" -#: ../app/views/miq_request/_request.html.haml:255 -msgid "* Enter a reason for this approval and press Submit" -msgstr "* Introduzca una razón para esta aprovación y presione Enviar" +msgid "Subtype" +msgstr "Subtipo" -#: ../app/views/miq_request/_request.html.haml:258 -msgid "* Enter a reason for this denial and press Submit" -msgstr "* Introduzca una razón para esta denegación y presione Enviar" +msgid "Subtype is required." +msgstr "Se requiere el subtipo." -#: ../app/views/miq_request/_request_details.html.haml:18 -msgid "Requested by" -msgstr "Solicitado por" +msgid "Success" +msgstr "Éxito" -#: ../app/views/miq_request/_request_details.html.haml:71 -msgid "Date Approved/Denied" -msgstr "Fecha de aprobación/rechazo" +msgid "Successful" +msgstr "Exitoso" -#: ../app/views/miq_request/_service_reconfigure_show.html.haml:12 -#: ../app/views/miq_request/_st_prov_show.html.haml:11 -msgid "Dialog Options" -msgstr "Opciones de cuadro de diálogo" +msgid "Successful Events" +msgstr "Eventos exitosos" -#: ../app/views/miq_task/_tasks_options.html.haml:22 -msgid "All Zones" -msgstr "Todas las Zonas" +msgid "Successfully deleted Saved Report from the %{product} Database" +msgid_plural "Successfully deleted Saved Reports from the %{product} Database" +msgstr[0] "Informe guardado eliminado con éxito desde la base de datos del %{product}" +msgstr[1] "Informes guardados eliminados con éxito desde la base de datos del %{product}" -#: ../app/views/miq_task/_tasks_options.html.haml:59 -msgid "24 Hour Time Period" -msgstr "Periodo de tiempo de 24 Horas" +msgid "Successfully refreshed!" +msgstr "Actualizado con éxito" -#: ../app/views/miq_task/_tasks_options.html.haml:79 -msgid "Task Status" -msgstr "Estado de la tarea" +msgid "Sum 'Other' values" +msgstr "Sumar 'Otros' valores" -#: ../app/views/miq_task/_tasks_options.html.haml:100 -msgid "Running" -msgstr "En ejecución" +msgid "Summary" +msgstr "Resumen" -#: ../app/views/miq_task/_tasks_options.html.haml:110 -msgid "Ok" -msgstr "Aceptar" +msgid "Summary Screens" +msgstr "" -#: ../app/views/miq_task/_tasks_options.html.haml:130 -msgid "Warn" -msgstr "Advertir" +msgid "Summary View" +msgstr "Vista de resumen" -#: ../app/views/miq_task/_tasks_options.html.haml:138 -msgid "Task State" -msgstr "Estado de tarea" +msgid "Summary tab is not available until at least 1 field has been selected" +msgstr "La ficha de resumen no estará disponible hasta que se haya seleccionado al menos un campo" -#: ../app/views/network_router/edit.html.haml:7 -msgid "Edit Router" -msgstr "Modificar enrutador" +msgid "Sunday" +msgstr "Domingo" -#: ../app/views/network_router/edit.html.haml:16 -#: ../app/views/network_router/new.html.haml:45 -msgid "Router Name" -msgstr "Nombre del enrutador" +msgid "Super Administrator can not be copied" +msgstr "" -#: ../app/views/network_topology/show.html.haml:90 -msgid "Floating Ips" -msgstr "IP flotantes" +msgid "Support Case must be provided to collect logs" +msgstr "Se debe suministrar el caso de asistencia para recopilar registros" -#: ../app/views/network_topology/show.html.haml:185 -#: ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:28 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:94 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:220 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:333 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:365 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:38 -msgid "Load Balancer" -msgstr "Equilibrador de carga" +msgid "Surveys" +msgstr "Encuestas" -#: ../app/views/ontap_file_share/_create_datastore.html.haml:67 -msgid "Submit this Create Datastore request" -msgstr "Enviar esta solicitud para crear almacén de datos" +msgid "Suspend" +msgstr "Suspender" -#: ../app/views/ontap_logical_disk/_main.html.haml:16 -#: ../app/views/ops/_db_summary.html.haml:7 -msgid "Capacity Data" -msgstr "Datos de capacidad" +msgid "Suspend Role" +msgstr "Suspender rol" -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:26 -msgid "Aggregate (free space)" -msgstr "Agregado (espacio libre)" +msgid "Suspend Server" +msgstr "Suspender servidor" -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:41 -msgid "Size (GB)" -msgstr "Tamaño (GB)" +msgid "Suspend Server Group" +msgstr "" -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:64 -msgid "Submit this Create Logical Disk request" -msgstr "Enviar esta solicitud para crear disco lógico" +msgid "Suspend Server in this Server Group" +msgstr "" -#: ../app/views/ops/_all_tabs.html.haml:11 -msgid "SmartProxy Affinity" -msgstr "Afinidad de SmartProxy" +msgid "Suspend is not allowed for the selected item" +msgstr "La suspensión no está permitida para el ítem seleccionado" -#: ../app/views/ops/_all_tabs.html.haml:24 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:53 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:98 -msgid "Server" -msgstr "Servidor:" +msgid "Suspend successfully initiated" +msgstr "La suspensión se inició de manera exitosa" -#: ../app/views/ops/_all_tabs.html.haml:30 -#: ../app/views/ops/_all_tabs.html.haml:169 -msgid "Workers" -msgstr "Trabajadores" +msgid "Suspend the %{server_role_description} Role on Server %{server_name} [%{server_id}]" +msgstr "Suspender el rol %{server_role_description} en el servidor %{server_name} [%{server_id}]" -#: ../app/views/ops/_all_tabs.html.haml:34 -msgid "Custom Logos" -msgstr "Logotipos personalizados" +msgid "Suspend the %{server_role_description} Role on Server %{server_name} [%{server_id}]?" +msgstr "¿Suspender el rol %{server_role_description} en el servidor %{server_name} [%{server_id}]?" -#: ../app/views/ops/_all_tabs.html.haml:72 -msgid "C & U Collection" -msgstr "Colección C & U" +msgid "Suspend the selected items" +msgstr "Suspender los ítemes seleccionados" -#: ../app/views/ops/_all_tabs.html.haml:85 -msgid "Import Tags" -msgstr "Importar etiquetas" +msgid "Suspend the selected items?" +msgstr "¿Suspender los ítemes seleccionados?" -#: ../app/views/ops/_all_tabs.html.haml:88 -msgid "Import Variables" -msgstr "Variables de importación" +msgid "Suspend this Instance" +msgstr "Suspender esta instancia" -#: ../app/views/ops/_all_tabs.html.haml:91 -msgid "Map Tags" -msgstr "Asignar etiquetas" +msgid "Suspend this Instance?" +msgstr "¿Suspender esta instancia?" -#: ../app/views/ops/_all_tabs.html.haml:94 -msgid "Red Hat Updates" -msgstr "Actualizaciones de Red Hat" +msgid "Suspend this VM" +msgstr "Suspender esta máquina virtual" -#: ../app/views/ops/_all_tabs.html.haml:97 -msgid "Replication" -msgstr "Replicación" +msgid "Suspend this VM?" +msgstr "¿Suspender esta máquina virtual?" -#: ../app/views/ops/_all_tabs.html.haml:132 -#: ../app/views/ops/_all_tabs.html.haml:226 -msgid "Roles by Servers" -msgstr "Roles por servidores" +msgid "Suspend this server" +msgstr "Suspender este servidor" -#: ../app/views/ops/_all_tabs.html.haml:135 -#: ../app/views/ops/_all_tabs.html.haml:229 -msgid "Servers by Roles" -msgstr "Servidores por roles" +msgid "Switch" +msgstr "" -#: ../app/views/ops/_all_tabs.html.haml:144 -msgid "C & U Gap Collection" -msgstr "Colección de espacios vacíos C & U" +msgid "Switch: %{name}" +msgstr "Switch: %{name}" -#: ../app/views/ops/_all_tabs.html.haml:176 -msgid "%{product} Log" -msgstr "Registro de %{product}" +msgid "Switches" +msgstr "Switches" + +msgid "Switches for %{model} \"%{name}\"" +msgstr "Switches para %{model} \"%{name}\"" -#: ../app/views/ops/_all_tabs.html.haml:179 -msgid "Audit Log" -msgstr "Registro de auditoría" +msgid "Synchronizing" +msgstr "Sincronizando" -#: ../app/views/ops/_all_tabs.html.haml:239 -msgid "Orphaned Data" -msgstr "Datos huérfanos" +msgid "Synchronous" +msgstr "Sincrónico" -#: ../app/views/ops/_all_tabs.html.haml:291 -msgid "Client Connections" -msgstr "Conexiones de cliente" +msgid "Syntax error in YAML file: %{error_message}" +msgstr "Error de sintaxis en el archivo YAML: %{error_message}" -#: ../app/views/ops/_amazon_verify_button.html.haml:2 -msgid "Validate the Amazon Settings" -msgstr "Validar la configuración de Amazon" +msgid "Sysprep" +msgstr "Sysprep" -#: ../app/views/ops/_amazon_verify_button.html.haml:16 -msgid "Amazon access key and secret are needed to validate Amazon Settings" -msgstr "" -"Las llaves de acceso y secreta de Amazon se necesitan para validar la configur" -"ación de Amazon" +msgid "Sysprep \"%{params}\" upload was successful" +msgstr "Sysprep \"%{params}\" la carga fue exitosa" -#: ../app/views/ops/_ap_form.html.haml:73 -#: ../app/views/ops/_ap_form.html.haml:83 -#: ../app/views/ops/_settings_import_tab.html.haml:42 -msgid "File" -msgstr "Archivo" +msgid "System" +msgstr "Sistema" -#: ../app/views/ops/_ap_form_file.html.haml:4 -msgid "File Entry" -msgstr "Entrada del archivo" +msgid "System BIOS UUID" +msgstr "UUID de BIOS del sistema" -#: ../app/views/ops/_ap_form_file.html.haml:14 -#: ../app/views/ops/_ap_show.html.haml:96 -msgid "Collect Contents?" -msgstr "¿Recopilar contenido?" +msgid "System Default" +msgstr "Sistema predeterminado" -#: ../app/views/ops/_ap_form_file.html.haml:25 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:31 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:33 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:35 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:37 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:39 -#: ../app/views/ops/_ap_form_registry.html.haml:28 -#: ../app/views/ops/_ap_form_registry.html.haml:30 -#: ../app/views/ops/_ap_form_registry.html.haml:32 -#: ../app/views/ops/_classification_entry.html.haml:69 -msgid "" -msgstr "" +msgid "System Image Types" +msgstr "Tipos de imágenes del sistema" -#: ../app/views/ops/_ap_form_nteventlog.html.haml:4 -msgid "Event Log Entry" -msgstr "Entrada del registro de eventos" +msgid "System Type" +msgstr "Tipo de sistema" -#: ../app/views/ops/_ap_form_nteventlog.html.haml:14 -msgid "Filter Message" -msgstr "Filtrar mensaje" +msgid "System/Process" +msgstr "Sistema/Proceso" -#: ../app/views/ops/_ap_form_nteventlog.html.haml:16 -msgid "Level" -msgstr "Nivel" +msgid "System/Process/" +msgstr "Sistema/Process/" -#: ../app/views/ops/_ap_form_nteventlog.html.haml:20 -msgid " # of Days" -msgstr "# de días" +msgid "THROUGH" +msgstr "A TRAVÉS DE" -#: ../app/views/ops/_ap_form_registry.html.haml:4 -msgid "Registry Entry" -msgstr "Entrada de registro" +msgid "Tab" +msgstr "Ficha" -#: ../app/views/ops/_ap_form_registry.html.haml:12 -msgid "Registry Hive" -msgstr "Subárbol de registro" +msgid "Tab Information" +msgstr "Información de ficha" -#: ../app/views/ops/_ap_form_registry.html.haml:16 -msgid "Registry Value" -msgstr "Valor de registro" +msgid "Tab Label is required" +msgstr "Se requiere la etiqueta de la ficha" -#: ../app/views/ops/_ap_form_registry.html.haml:48 -#: ../app/views/ops/_ap_form_registry.html.haml:95 -#: ../app/views/ops/_ap_form_registry.html.haml:151 -msgid "HKLM" -msgstr "HKLM" +msgid "Tab Title" +msgstr "Título de la ficha" -#: ../app/views/ops/_ap_form_set.html.haml:6 -msgid "Category Selection" -msgstr "Selección de categoría" +msgid "Tab Title must be unique for this group" +msgstr "El título de la ficha debe ser único para este grupo" -#: ../app/views/ops/_ap_show.html.haml:86 -msgid "File Items" -msgstr "ítemes del archivo" +msgid "Table" +msgstr "Tabla" -#: ../app/views/ops/_ap_show.html.haml:113 -msgid "Registry Items" -msgstr "ítemes de registro" +msgid "Tables" +msgstr "Tablas" -#: ../app/views/ops/_ap_show.html.haml:132 -msgid "Event Log Items" -msgstr "ítemes del registro de eventos" +msgid "Tables with Most Rows" +msgstr "Tablas con la mayoría de las filas" -#: ../app/views/ops/_category_form.html.haml:4 -msgid "Category Information" -msgstr "Información de la categoría" +msgid "Tables with Most Wasted Space" +msgstr "Tablas con la mayoría de espacio desperdiciado" -#: ../app/views/ops/_category_form.html.haml:56 -#: ../app/views/ops/_category_form.html.haml:176 -#: ../app/views/ops/_settings_co_categories_tab.html.haml:14 -#: ../app/views/ops/_settings_co_tags_tab.html.haml:51 -msgid "Show in Console" -msgstr "Mostrar en consola" +msgid "Tables with the Most Rows" +msgstr "Tablas con la mayoría de las filas" -#: ../app/views/ops/_category_form.html.haml:71 -#: ../app/views/ops/_category_form.html.haml:194 -#: ../app/views/ops/_settings_co_categories_tab.html.haml:16 -msgid "Single Value" -msgstr "Valor único" +msgid "Tabular View" +msgstr "Vista tabular" -#: ../app/views/ops/_category_form.html.haml:91 -#: ../app/views/ops/_category_form.html.haml:213 -msgid "Capture C & U Data by Tag" -msgstr "Capturar datos de C & U por etiqueta" +msgid "Tag" +msgstr "Etiqueta" -#: ../app/views/ops/_category_form.html.haml:229 -msgid "* 'Name' and 'Single Value' fields cannot be edited after adding a category." -msgstr "" -"*Los campos 'Name' y 'Single Value' no pueden ser editados después de añadir " -"una categoría." +msgid "Tag Assignment" +msgstr "Asignación de etiquetas" -#: ../app/views/ops/_classification_entry.html.haml:72 -msgid "" -msgstr "" +msgid "Tag Assignment (Tags common to all selected items)" +msgstr "Asignación de etiquetas (etiquetas comunes para todos los ítemes seleccionados)" -#: ../app/views/ops/_classification_entry.html.haml:100 -msgid "" -"Deleting the '%{entry_name}' entry will also unassign it from all items, are y" -"ou sure?" -msgstr "" -"La eliminación de la entrada '%{entry_name}' también cancelará su asignación a" -" todos los ítemes, ¿está seguro?" +msgid "Tag Category" +msgstr "Tipo de etiqueta" -#: ../app/views/ops/_db_info.html.haml:91 -#: ../app/views/ops/_db_info.html.haml:184 -#: ../app/views/ops/_db_info.html.haml:221 -msgid "Percent Bloat" -msgstr "Porcentaje de contenido \"inflado\"" +msgid "Tag Edit was cancelled by the user" +msgstr "La edición de etiquetas fue cancelada por el usuario" -#: ../app/views/ops/_db_info.html.haml:109 -msgid "Table" -msgstr "Tabla" +msgid "Tag edits were successfully saved" +msgstr "Las pestañas editadas se han almacenado correctamente" -#: ../app/views/ops/_db_info.html.haml:204 -msgid "No Indexes found for this table." -msgstr "No se encontraron índices para esta tabla." +msgid "Tag list" +msgstr "" -#: ../app/views/ops/_db_info.html.haml:228 -msgid "Click to view index" -msgstr "Haga clic para ver el índice" +msgid "Tag to Apply" +msgstr "Etiqueta para aplicar" -#: ../app/views/ops/_db_summary.html.haml:12 -msgid "Tables with Most Rows" -msgstr "Tablas con la mayoría de las filas" +msgid "Tag: %{description}" +msgstr "Etiqueta: %{description}" -#: ../app/views/ops/_diagnostics_cu_repair_tab.html.haml:15 -msgid "Collection Options" -msgstr "Opciones de recopilación" +msgid "Tagged Cluster / Deployment Roles" +msgstr "" -#: ../app/views/ops/_diagnostics_cu_repair_tab.html.haml:43 -msgid "Start Date" -msgstr "Fecha de inicio" +msgid "Tagged Container Images" +msgstr "" -#: ../app/views/ops/_diagnostics_cu_repair_tab.html.haml:59 -msgid "End Date" -msgstr "Fecha de finalización" +msgid "Tagged Datastores" +msgstr "" -#: ../app/views/ops/_diagnostics_cu_repair_tab.html.haml:73 -msgid "Note: Gap Collection is only available for VMware vSphere Infrastructures" +msgid "Tagged Host / Nodes" msgstr "" -"Nota: La funcionalidad Gap Collection (recolección de brechas) solo está dispo" -"nible para las infraestructuras VMware vSphere" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:84 -msgid "Run a Database Backup Now" -msgstr "Ejecutar una copia de seguridad de la base de datos ahora" +msgid "Tagged Providers" +msgstr "" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:95 -msgid "Backup Schedules" -msgstr "Programas de copias de seguridad" +msgid "Tagged Resource Pools" +msgstr "" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:102 -msgid "Fetch settings from a schedule" -msgstr "Obtener configuración de un programa" +msgid "Tagged VMs and Instances" +msgstr "" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:110 -msgid "No Backup Schedules are defined" -msgstr "No hay programaciones de copias de seguridad definidas" +msgid "Tagging" +msgstr "Etiquetado" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:185 -msgid "Are you sure you want to Run a Database Backup Now?" -msgstr "¿Está seguro de que desea correr un Backup de la Base de Datos ahora?" +msgid "Tags" +msgstr "Etiquetas" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:197 -#: ../app/views/ops/_diagnostics_database_tab.html.haml:216 -msgid "Run Database Garbage Collection Now" -msgstr "Ejecuta recolección de ítemes no utilizados de la base de datos ahora" +msgid "Take this item out of Maintenance Mode" +msgstr "Quitar este ítem del modo de mantenimiento" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:204 -msgid "Press submit to start the Database Vacuum process" -msgstr "Presione Enviar para iniciar el proceso de vaciado de la base de datos" +msgid "Take this item out of Maintenance Mode?" +msgstr "¿Quitar este ítem del modo de mantenimiento?" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:219 -msgid "Are you sure you want to Run Database Garbage Collection Now?" +msgid "Target Machine" msgstr "" -"¿Está seguro de que desea correr la recogida de basura de la Base de Datos aho" -"ra?" -#: ../app/views/ops/_diagnostics_roles_servers_tab.html.haml:19 -#: ../app/views/ops/_diagnostics_servers_roles_tab.html.haml:19 -msgid "No Servers found." -msgstr "No se encontraron servidores." +msgid "Target Options / Limits" +msgstr "Opciones/Límites objetivo" -#: ../app/views/ops/_diagnostics_savedreports.html.haml:3 -msgid "Report Results by User" -msgstr "Resultados de informes por usuario" +msgid "Target Options/Limits" +msgstr "Opciones/Límites objetivo" -#: ../app/views/ops/_diagnostics_savedreports.html.haml:20 -#: ../app/views/ops/_settings_workers_tab.html.haml:22 -#: ../app/views/ops/_settings_workers_tab.html.haml:73 -#: ../app/views/ops/_settings_workers_tab.html.haml:183 -#: ../app/views/ops/_settings_workers_tab.html.haml:224 -#: ../app/views/ops/_settings_workers_tab.html.haml:274 -#: ../app/views/ops/_settings_workers_tab.html.haml:327 -#: ../app/views/ops/_settings_workers_tab.html.haml:377 -#: ../app/views/ops/_settings_workers_tab.html.haml:457 -#: ../app/views/ops/_settings_workers_tab.html.haml:507 -msgid "Count" -msgstr "Conteo" +msgid "Target Port" +msgstr "Puerto destino" -#: ../app/views/ops/_diagnostics_savedreports.html.haml:28 -msgid "Are you sure you want to delete orphaned records for user '%{user}'?" -msgstr "" -"¿Está seguro de que desea eliminar los registros huérfanos para el usuario '%{" -"user}'?" +msgid "Target: %{text}" +msgstr "Objetivo: %{text}" -#: ../app/views/ops/_diagnostics_savedreports.html.haml:31 -msgid "Click to delete Orphaned Records for this user" -msgstr "Haga clic para eliminar los registros huérfanos para este usuario" +msgid "Task State" +msgstr "Estado de tarea" -#: ../app/views/ops/_diagnostics_timelines_tab.html.haml:16 -#: ../app/views/ops/_diagnostics_utilization_tab.html.haml:13 -msgid "This Server's Virtual Machine has not been identified." -msgstr "La máquina virtual de este servidor no se ha identificado." +msgid "Task Status" +msgstr "Estado de la tarea" -#: ../app/views/ops/_diagnostics_utilization_tab.html.haml:11 -msgid "No Utilization data available for this Server's Virtual Machine." -msgstr "" -"No hay datos de utilización disponibles para la máquina virtual de este servid" -"or." +msgid "Tasks" +msgstr "Tareas" -#: ../app/views/ops/_diagnostics_zones_tab.html.haml:6 -#: ../app/views/ops/_settings_list_tab.html.haml:6 -msgid "No Zones found." -msgstr "No se encontraron zonas." +msgid "Tasks for %{name}" +msgstr "Tareas para %{name}" -#: ../app/views/ops/_diagnostics_zones_tab.html.haml:12 -msgid "View this Zone" -msgstr "Ver esta zona" +msgid "Template" +msgstr "Plantilla" -#: ../app/views/ops/_diagnostics_zones_tab.html.haml:28 -msgid "(current)" -msgstr "(actual)" +msgid "Template Analysis" +msgstr "Análisis de plantilla" -#: ../app/views/ops/_email_verify_button.html.haml:3 -#: ../app/views/ops/_email_verify_button.html.haml:3 -msgid "Send test email" -msgstr "Enviar correo electrónico de prueba" +msgid "Template Selection" +msgstr "Selección de plantilla" -#: ../app/views/ops/_email_verify_button.html.haml:19 -msgid "" -"SMTP E-mail Server settings and Test E-mail Address are needed to send test em" -"ail" -msgstr "" -"Se necesitan la configuración del servidor de correo electrónico de SMTP y la " -"dirección de correo electrónico de prueba para enviar el correo electrónico de" -" prueba" +msgid "Template Type" +msgstr "Tpo de plantilla" -#: ../app/views/ops/_label_tag_mapping_form.html.haml:12 -msgid "Container entity and label" -msgstr "Entidad de contenedor y etiqueta" +msgid "Template:" +msgstr "Plantilla:" -#: ../app/views/ops/_label_tag_mapping_form.html.haml:15 -msgid "Choose a container entity and label" -msgstr "Elegir una entidad de contenedor y etiqueta" +msgid "Templates" +msgstr "Plantillas" -#: ../app/views/ops/_label_tag_mapping_form.html.haml:21 -msgid "Entity" -msgstr "Entidad" +msgid "Templates & Images" +msgstr "Plantillas e imágenes" -#: ../app/views/ops/_label_tag_mapping_form.html.haml:57 -msgid "Choose a tag category to map to" -msgstr "Elegir una categoría de etiqueta a asignar " +msgid "Tenancy" +msgstr "Tenencia" -#: ../app/views/ops/_ldap_auth_users.html.haml:9 -msgid "LDAP Groups for User" -msgstr "Grupos LDAP para usuario" +msgid "Tenant" +msgstr "Inquilino" -#: ../app/views/ops/_ldap_domain_show.html.haml:242 -#: ../app/views/ops/_ldap_server_entries.html.haml:7 -msgid "LDAP Servers" -msgstr "Servidores LDAP" +msgid "Tenant ID" +msgstr "ID de inquilino" -#: ../app/views/ops/_ldap_domain_show.html.haml:257 -#: ../app/views/ops/_ldap_forest_entries.html.haml:20 -#: ../app/views/ops/_ldap_server_entries.html.haml:19 -#: ../app/views/ops/_settings_authentication_tab.html.haml:50 -#: ../app/views/ops/_settings_server_tab.html.haml:584 -#: ../app/views/vm_common/_disks.html.haml:11 -#: ../app/views/vm_common/_reconfigure.html.haml:205 -msgid "Mode" -msgstr "Modo" +msgid "Tenant ID, Client ID and matching Client Key fields are needed to perform verification of credentials" +msgstr "Se necesitan los campos ID de inquilino, ID del cliente y Clave del cliente para realizar la verificación de credenciales" -#: ../app/views/ops/_ldap_forest_entries.html.haml:4 -msgid "Trusted Forest Settings" -msgstr "Configuración de Trusted Forest" +msgid "Tenant Mapping Enabled" +msgstr "Mapeo de inquilino habilitado" -#: ../app/views/ops/_ldap_forest_entries.html.haml:18 -msgid "LDAP Hostname" -msgstr "Nombre de host LDAP" +msgid "Tenant Name" +msgstr "Nombre de inquilino" -#: ../app/views/ops/_ldap_forest_entries.html.haml:22 -#: ../app/views/ops/_settings_authentication_tab.html.haml:113 -msgid "LDAP Port" -msgstr "Puerto LDAP" +msgid "Tenant Quota" +msgstr "Cuota del inquino" -#: ../app/views/ops/_ldap_forest_entries.html.haml:35 -msgid "Click to add a new forest" -msgstr "Haga clic para agregar un nuevo bosque" +msgid "Tenant no longer exists" +msgstr "El inquilino ya no existe" + +msgid "Tenants" +msgstr "Inquilinos" -#: ../app/views/ops/_ldap_forest_entries.html.haml:44 -msgid "" -msgstr "" +msgid "Tenants (%{tenants_count})" +msgstr "Inquilinos (%{tenants_count})" -#: ../app/views/ops/_ldap_forest_entries.html.haml:76 -#: ../app/views/ops/_ldap_forest_entries.html.haml:121 -msgid "ldap" -msgstr "ldap" +msgid "Test E-mail Address" +msgstr "Probar dirección de correo electrónico" -#: ../app/views/ops/_ldap_forest_entries.html.haml:76 -#: ../app/views/ops/_ldap_forest_entries.html.haml:121 -msgid "ldaps" -msgstr "ldap" +msgid "Text" +msgstr "Texto" -#: ../app/views/ops/_ldap_forest_entries.html.haml:152 -msgid "Are you sure you want to delete forest %{ldaphost} ?" -msgstr "¿Está seguro de que desea eliminar el bosque %{ldaphost}?" +msgid "Text (REGEX)" +msgstr "Texto (REGEX)" -#: ../app/views/ops/_ldap_forest_entries.html.haml:153 -msgid "Click to delete this forest" -msgstr "Haga clic para eliminar este bosque" +msgid "Textual View" +msgstr "" -#: ../app/views/ops/_ldap_forest_entries.html.haml:158 -#: ../app/views/ops/_ldap_forest_entries.html.haml:163 -#: ../app/views/ops/_ldap_forest_entries.html.haml:168 -#: ../app/views/ops/_ldap_forest_entries.html.haml:173 -#: ../app/views/ops/_ldap_forest_entries.html.haml:178 -#: ../app/views/ops/_ldap_forest_entries.html.haml:183 -msgid "Click to edit this forest" -msgstr "Haga clic para modificar este bosque" +msgid "The %{product} Server is still starting, you have been redirected to the diagnostics page for problem determination" +msgstr "El servidor %{product} aún sigue iniciando; ha sido redireccionado a la página de diagnóstico para la determinación del problema" -#: ../app/views/ops/_ldap_region_show.html.haml:58 -msgid "LDAP Domains" -msgstr "Dominios LDAP" +msgid "The %{product} Server is still starting. If this message persists, please contact your %{product} administrator." +msgstr "El servidor %{product} aún sigue iniciando. Si este mensaje persiste, comuníquese con el administrador del %{product}." -#: ../app/views/ops/_ldap_region_show.html.haml:77 -msgid "User Suffix" -msgstr "Sufijo de usuario" +msgid "The Enterprise" +msgstr "La empresa" -#: ../app/views/ops/_ldap_seq_form.html.haml:17 -msgid "User Group Sequencing for LDAP Look Up:" -msgstr "Secuenciación de grupos de usuario para búsqueda de LDAP:" +msgid "The Host Default VNC Port Range ending port must be equal to or higher than the starting point" +msgstr "El puerto final del rango de puertos VNC predeterminados para el host, debe ser igual o mayor que el inicial" -#: ../app/views/ops/_ldap_seq_form.html.haml:75 -msgid "Select one or more consecutive groups to move up or down." -msgstr "" -"Seleccionar uno o más grupos consecutivos para mover hacia arriba o hacia abaj" -"o." +msgid "The Remote Console is connecting" +msgstr "La consola remota está conectándose" -#: ../app/views/ops/_ldap_server_entry.html.haml:7 -msgid "Add this LDAP Server" -msgstr "Añadir este Servidor LDAP" +msgid "The Subscription Management Service you register with will provide your systems with updates and allow additional management." +msgstr "El servicio de administración de suscripción con la que se registra le suministrará a sus sistemas actualizaciones y le permitirá una administración adicional." -#: ../app/views/ops/_ldap_server_entry.html.haml:44 -msgid "Update this LDAP Server" -msgstr "Actualizar este servidor LDAP" +msgid "" +"The VM has been suspended, powered off or the connection to the server has been lost. \n" +"This console window will now close." +msgstr "" +"La máquina virtual ha sido suspendida, se ha desactivado, o el servidor se ha perdido. \n" +"La ventana de esta consola se cerrará." -#: ../app/views/ops/_ldap_server_entry.html.haml:93 -msgid "" -msgstr "" +msgid "The check count value must be an integer to commit this expression element" +msgstr "La verificación del valor de la cuenta debe ser un entero para asignar este ítem" -#: ../app/views/ops/_ldap_server_entry.html.haml:98 -msgid "" -msgstr "" +msgid "The current search details have been reset" +msgstr "Los detalles de búsqueda actuales han sido restaurados" -#: ../app/views/ops/_ldap_server_entry.html.haml:112 -msgid "Deleting the '%{hostname}' LDAP Server, are you sure?" -msgstr "Eliminando el servidor LDAP '%{hostname}', ¿está seguro?" +msgid "The number of Masters must be 1, 3, or 5" +msgstr "El número de Másters debe ser 1, 3 o 5" -#: ../app/views/ops/_ldap_server_entry.html.haml:113 -msgid "Click to delete this LDAP Server" -msgstr "Haga clic para eliminar este servidor LDAP" +msgid "The selected %{label} is not in the current region" +msgstr "La %{label} seleccionada no está en la región actual" -#: ../app/views/ops/_ldap_server_entry.html.haml:118 -msgid "Click to update this LDAP Server" -msgstr "Haga clic para actualizar este servidor LDAP" +msgid "The selected %{models} was deleted" +msgstr "Los %{models} seleccionados se eliminaron" -#: ../app/views/ops/_ldap_server_entry.html.haml:135 -#: ../app/views/ops/_ldap_verify_button.html.haml:4 -#: ../app/views/ops/_ldap_verify_button.html.haml:4 -msgid "Validate the LDAP Settings by binding with the %{host}" -msgstr "Validar la configuración de LDAP mediante la vinculación con el %{host}" +msgid "The selected %{model} was deleted" +msgstr "El %{model} seleccionado se eliminó" -#: ../app/views/ops/_ldap_verify_button.html.haml:18 -msgid "" -"LDAP Hostname and Port fields are needed to perform verification of LDAP Setti" -"ngs" -msgstr "" -"Los campos Nombre de host LDAP y Puerto se necesitan para realizar la verifica" -"ción de la configuración de LDAP" +msgid "The selected %{model} were marked as %{action}" +msgstr "El %{model} seleccionado fue marcado como %{action}" -#: ../app/views/ops/_log_viewer.html.haml:4 -msgid "Last 1000 lines from server %{name} [%{id}] in zone %{zone}" -msgstr "Últimas 1000 líneas del servidor %{name} [%{id}] en la zona %{zone}" +msgid "The selected %{number} Catalog Item was deleted" +msgid_plural "The selected %{number} Catalog Items were deleted" +msgstr[0] "El ítem del catálogo %{number} se eliminó" +msgstr[1] "Los ítemes del catálogo %{number} se eliminaron" -#: ../app/views/ops/_logs_selected.html.haml:14 -msgid "Log Depot URI" -msgstr "URI del almacén de registros" +msgid "The selected %{record} was deleted" +msgstr "El %{record} seleccionado se eliminó" -#: ../app/views/ops/_logs_selected.html.haml:24 -msgid "Last Log Collection" -msgstr "Última recopilación del registro" +msgid "The selected %{schedules} were deleted" +msgstr "Las %{schedules} seleccionadas se eliminaron" -#: ../app/views/ops/_rbac_details_tab.html.haml:36 -#: ../app/views/ops/_rbac_details_tab.html.haml:41 -msgid "View Users" -msgstr "Ver usuarios" +msgid "The selected %{schedules} were disabled" +msgstr "Las %{schedules} seleccionadas fueron inhabilitadas " -#: ../app/views/ops/_rbac_details_tab.html.haml:43 -msgid "Users (%{users_count})" -msgstr "Usuarios (%{users_count})" +msgid "The selected %{schedules} were enabled" +msgstr "Las %{schedules} seleccionadas se habilitaron" -#: ../app/views/ops/_rbac_details_tab.html.haml:50 -#: ../app/views/ops/_rbac_details_tab.html.haml:55 -msgid "View Groups" -msgstr "Ver grupos" +msgid "The selected %{tables} were deleted" +msgstr "Las %{tables} seleccionadas se eliminaron" -#: ../app/views/ops/_rbac_details_tab.html.haml:57 -msgid "Groups (%{groups_count})" -msgstr "Grupos (%{groups_count})" +msgid "The selected %{table} was deleted" +msgstr "La %{table} seleccionada se eliminó" -#: ../app/views/ops/_rbac_details_tab.html.haml:64 -#: ../app/views/ops/_rbac_details_tab.html.haml:69 -msgid "View Roles" -msgstr "Ver roles" +msgid "The selected Cloud Network was deleted" +msgstr "" -#: ../app/views/ops/_rbac_details_tab.html.haml:71 -msgid "Roles (%{roles_count})" -msgstr "Roles (%{roles_count})" +msgid "The selected Cloud Subnet was deleted" +msgstr "" -#: ../app/views/ops/_rbac_details_tab.html.haml:78 -#: ../app/views/ops/_rbac_details_tab.html.haml:83 -msgid "View Tenants" -msgstr "Ver inquilinos" +msgid "The selected Cloud Volume Snapshot was deleted" +msgstr "La instantánea de volumen de nube seleccionada fue borrada." -#: ../app/views/ops/_rbac_details_tab.html.haml:85 -msgid "Tenants (%{tenants_count})" -msgstr "Inquilinos (%{tenants_count})" +msgid "The selected Filter can not be set as Default because it requires user input" +msgstr "No se puede definir el filtro seleccionado como predeterminado, puesto que requiere entrada de usuario." -#: ../app/views/ops/_rbac_group_details.html.haml:11 -msgid "Group Information" -msgstr "Información del grupo" +msgid "The selected Filter record was not found" +msgstr "No se encontró el filtro seleccionado" -#: ../app/views/ops/_rbac_group_details.html.haml:45 -msgid "(Look up %{authentication_mode_name} Groups)" -msgstr "(Buscar %{authentication_mode_name} grupos)" +msgid "The selected Floating IP was deleted" +msgstr "" -#: ../app/views/ops/_rbac_group_details.html.haml:63 -#: ../app/views/ops/_rbac_user_details.html.haml:202 -msgid "View this Role" -msgstr "Ver este rol" +msgid "The selected Router was deleted" +msgstr "El enrutador seleccionado fue borrado." -#: ../app/views/ops/_rbac_group_details.html.haml:88 -msgid "Project/Tenant" -msgstr "Proyecto/Inquilino" +msgid "The selected Saved Report was deleted" +msgstr "El informe guardado seleccionado ha sido borrado" -#: ../app/views/ops/_rbac_group_details.html.haml:100 -msgid "View this Project" -msgstr "Ver este proyecto" +msgid "The selected Schedule has been queued to run" +msgstr "El horario seleccionado ha sido encolado para ejecutarse" -#: ../app/views/ops/_rbac_group_details.html.haml:100 -msgid "View this Tenant" -msgstr "Ver este inquilino" +msgid "The selected Schedules have been queued to run" +msgstr "Los horarios seleccionados han sido encolados para ejecutarse" -#: ../app/views/ops/_rbac_group_details.html.haml:120 -msgid "Users in this Group" -msgstr "Usuarios en este grupo" +msgid "The selected Schedules were disabled" +msgstr "Las programaciones seleccionadas fueron inhabilitadas" -#: ../app/views/ops/_rbac_group_details.html.haml:127 -msgid "View this User" -msgstr "Ver este usuario" +msgid "The selected Schedules were enabled" +msgstr "Las programaciones seleccionadas fueron habilitadas" -#: ../app/views/ops/_rbac_group_details.html.haml:148 -msgid "LDAP Group Look Up" -msgstr "Búsqueda de grupo LDAP" +msgid "The selected Security Group was deleted" +msgstr "" -#: ../app/views/ops/_rbac_group_details.html.haml:157 -#: ../app/views/ops/_rbac_group_details.html.haml:191 -msgid "User to Look Up" -msgstr "Usuario para buscar" +msgid "The selected Task was cancelled" +msgstr "La tarea seleccionada fue cancelada" -#: ../app/views/ops/_rbac_group_details.html.haml:266 -msgid "Assign Filters" -msgstr "Asignar filtros" +msgid "The selected datasources were removed" +msgstr "Las bases de datos seleccionadas fueron eliminadas" -#: ../app/views/ops/_rbac_group_details.html.haml:266 -msgid "Assigned Filters (read only)" -msgstr "Filtros Asignados (sólo lectura)" +msgid "The selected job no longer exists, Delete all older Tasks was not completed" +msgstr "La tarea seleccionada ya no existe, elimine todas las tareas anteriores\" que no fueron completadas" -#: ../app/views/ops/_rbac_group_details.html.haml:279 -msgid "%{title_for_hosts} & %{title_for_clusters}" -msgstr "%{title_for_hosts} y %{title_for_clusters}" +msgid "The selected snapshot will be permanently deleted. Are you sure you want to delete the selected snapshot?" +msgstr "La instantánea seleccionada será eliminada definitivamente. ¿Está seguro de que desea eliminar la instantánea seleccionada?" -#: ../app/views/ops/_rbac_group_details.html.haml:288 -msgid "This user is limited to items with the selected tags." -msgstr "Este usuario está limitado a los ítemes con las etiquetas seleccionadas." +msgid "The server is initializing; access is being retried every 10 seconds . . ." +msgstr "El servidor está iniciando; se reintentará el acceso cada 10 segundos . . ." -#: ../app/views/ops/_rbac_group_details.html.haml:299 -msgid "This user is limited to the selected items and their children." -msgstr "" -"Este usuario está limitado a los ítemes seleccionados y a sus ítemes secundari" -"os." +msgid "The test email is being delivered, check \"%{email}\" to verify it was successful" +msgstr "El correo electrónico de prueba está en curso de transmisión, revise \"%{email}\" para confirmar su envío correcto. " -#: ../app/views/ops/_rbac_group_details.html.haml:319 -msgid "This user is limited to the selected folders and their children." -msgstr "" -"Este usuario está limitado a las carpetas seleccionadas y a sus carpetas secun" -"darias." +msgid "The user is not authorized for this task or item." +msgstr "El usuario no está autorizado para esta tarea o ítem" -#: ../app/views/ops/_rbac_role_details.html.haml:14 -msgid "Role Information" -msgstr "Información de rol" +msgid "The user's role is not authorized for any access, please contact the administrator!" +msgstr "El rol de usuario no tiene autorización de acceso, por favor contacte al administrador." -#: ../app/views/ops/_rbac_role_details.html.haml:49 -msgid "Access Restriction for Services, VMs, and Templates" -msgstr "" +msgid "The web-based VNC console is not available because the VM is not powered on" +msgstr "La consola VNC basada en la red no está disponible porque la máquina virtual no está conectada" -#: ../app/views/ops/_rbac_role_details.html.haml:62 -msgid "none" -msgstr "ninguno" +msgid "The web-based console is not available because the VM is not powered on" +msgstr "La consola basada en la red no está disponible porque la máquina virtual no está conectada" -#: ../app/views/ops/_rbac_role_details.html.haml:79 -msgid "Groups Using this Role" -msgstr "Grupos que utilizan este rol" +msgid "The web-based console is only available on IE, Firefox or Chrome (Windows/Linux)" +msgstr "La consola basada en la red está disponible únicamente en IE, Firefox o Chrome (Windows/Linux)" -#: ../app/views/ops/_rbac_role_details.html.haml:86 -#: ../app/views/ops/_rbac_tenant_details.html.haml:68 -#: ../app/views/ops/_rbac_user_details.html.haml:167 -msgid "View this Group" -msgstr "Ver este grupo" +msgid "The widget \"%{widget_name}\" is already part of the edited dashboard" +msgstr "El asistente \"%{widget_name}\" ya es parte del tablero editado" -#: ../app/views/ops/_rbac_role_details.html.haml:98 -msgid "Product Features (Editing)" -msgstr "Funcionalidades del producto (Edición)" +msgid "There are no Cloud Volumes available to attach to this Instance." +msgstr "" -#: ../app/views/ops/_rbac_role_details.html.haml:101 -msgid "Product Features (Read Only)" -msgstr "Funcionalidades del producto (solo lectura)" +msgid "There are no Floating IPs available to this Instance." +msgstr "No hay IP flotantes disponibles para esta instancia." -#: ../app/views/ops/_rbac_role_details.html.haml:118 -msgid "Double click a feature to open/close all children." +msgid "There are no running Hosts with valid credentials for this Datastore" msgstr "" -"Haga doble clic en una función para abrir o cerrar todos los ítemes secundario" -"s." -#: ../app/views/ops/_rbac_tag_box.html.haml:19 -msgid "No %{tenant_name} Tags have been assigned" -msgstr "No se han asignado etiquetas %{tenant_name}" +msgid "There is an error in the selected expression element, perhaps it was imported or edited manually." +msgstr "Hay un error en la expresión seleccionada, quizás fue importada o modificada manualmente" -#: ../app/views/ops/_rbac_tenant_details.html.haml:8 -msgid "%{type} Information" -msgstr "Información de %{type}" +msgid "There should be at least 2 Dashboards to Edit Sequence" +msgstr "" -#: ../app/views/ops/_rbac_tenant_details.html.haml:45 -msgid "Parent" -msgstr "Ítemes principal" +msgid "These VMs can not be migrated together." +msgstr "" -#: ../app/views/ops/_rbac_tenant_details.html.haml:49 -msgid "View Parent Tenant" -msgstr "Ver inquilino principal" +msgid "Thin Provisioning Used" +msgstr "Aprovisionamiento fino usado" -#: ../app/views/ops/_rbac_tenant_details.html.haml:59 -msgid "Groups in this %{type}" -msgstr "Grupos en este %{type}" +msgid "This %{klass} is read only and cannot be modified" +msgstr "Esta %{klass} es de solo lectura y no se puede modificar" -#: ../app/views/ops/_rbac_tenant_details.html.haml:85 -msgid "Child Tenants" -msgstr "Inquilinos secundarios" +msgid "This Action belongs to a read only Policy and cannot be modified" +msgstr "Esta acción pertenece a la política de solo lectura y no se puede modificar" -#: ../app/views/ops/_rbac_tenant_details.html.haml:99 -msgid "Click to view child Tenant" -msgstr "Haga clic para ver el inquilino hijo" +msgid "This Action is not assigned to any Policies." +msgstr "Esta acción no está asignada a ninguna política." -#: ../app/views/ops/_rbac_tenant_details.html.haml:125 -msgid "Click to view child TenantProject" -msgstr "Haga clic para ver el proyecto del inquilino hijo" +msgid "This Alert is not assigned to any Alert Profiles." +msgstr "Esta alerta no está asignada a ningún perfil de alerta." -#: ../app/views/ops/_rbac_tenant_details.html.haml:143 -msgid "Note: Total quota can be restricted by quotas defined at upper levels" -msgstr "" -"Nota: La cuota total se puede restringir por cuotas definidas en niveles super" -"iores" +msgid "This Alert is not referenced by any Actions." +msgstr "Esta alerta no está designada por ninguna acción." -#: ../app/views/ops/_rbac_user_details.html.haml:17 -msgid "User Information" -msgstr "Información de usuario" +msgid "This Condition is not assigned to any Policies." +msgstr "Esta condición no está asignada a ninguna política." -#: ../app/views/ops/_rbac_user_details.html.haml:180 -msgid "" -msgstr "" +msgid "This Event belongs to a read only Policy and cannot be modified" +msgstr "Este evento pertenece a la política de solo lectura y no se puede modificar" -#: ../app/views/ops/_schedule_form_timer.html.haml:5 -#: ../app/views/ops/_schedule_show.html.haml:187 -msgid "Timer Options" -msgstr "Opciones de temporizador" +msgid "This Event has no false Actions." +msgstr "Este evento no tiene acciones falsas." -#: ../app/views/ops/_schedule_form_timer.html.haml:13 -#: ../app/views/report/_schedule_form_timer.html.haml:15 -msgid "Run" -msgstr "Ejecutar" +msgid "This Event has no true Actions." +msgstr "Este evento no tiene acciones verdaderas." -#: ../app/views/ops/_schedule_form_timer.html.haml:26 -#: ../app/views/report/_schedule_form_timer.html.haml:32 -#: ../app/views/report/_schedule_form_timer.html.haml:44 -#: ../app/views/report/_schedule_form_timer.html.haml:56 -#: ../app/views/report/_schedule_form_timer.html.haml:68 -msgid "every" -msgstr "cada" +msgid "This Event is not assigned to any Policies." +msgstr "Este evento no está asignado a ninguna política." -#: ../app/views/ops/_schedule_form_timer.html.haml:57 -#: ../app/views/report/_schedule_form_timer.html.haml:103 -msgid "* Changing the Time Zone will reset the Starting Date and Time fields below" -msgstr "" -"* Cambiar la Zona Horaria reiniciará la fecha de inicio y los campos de tiempo" -" inferiores" +msgid "This Group is Read Only and can not be deleted" +msgstr "Este grupo es de solo lectura y no se puede eliminar" -#: ../app/views/ops/_schedule_form_timer.html.haml:66 -#: ../app/views/report/_schedule_form_timer.html.haml:111 -msgid "Starting Date" -msgstr "Fecha de inicio" +msgid "This Group is Read Only and can not be edited" +msgstr "Este grupo es de solo lectura y no se puede modificar" -#: ../app/views/ops/_schedule_form_timer.html.haml:96 -#: ../app/views/report/_schedule_form_timer.html.haml:126 -msgid "Starting Time" -msgstr "Hora de inicio" +msgid "This Host can not be provisioned because the MAC address is not known" +msgstr "Este host no se puede aprovisionar porque la dirección MAC es desconocida" -#: ../app/views/ops/_schedule_show.html.haml:44 -msgid "Automate Task" -msgstr "Automatizar tareas" +msgid "This Hour" +msgstr "Esta hora" -#: ../app/views/ops/_schedule_show.html.haml:133 -msgid "Object Type" -msgstr "Tipo de objeto" +msgid "This Instance has no attached Cloud Volumes." +msgstr "" -#: ../app/views/ops/_schedule_show.html.haml:146 -msgid "Object Selection" -msgstr "Selección de objeto" +msgid "This Month" +msgstr "Este mes" -#: ../app/views/ops/_schedule_show.html.haml:191 -#: ../app/views/report/_show_schedule.html.haml:82 -#: ../app/views/report/_widget_show.html.haml:286 -msgid "Run At" -msgstr "Ejecutar en" +msgid "This Month (partial)" +msgstr "Este mes (parcial)" -#: ../app/views/ops/_schedule_show.html.haml:201 -#: ../app/views/report/_report_info.html.haml:144 -#: ../app/views/report/_show_schedule.html.haml:92 -#: ../app/views/report/_widget_show.html.haml:87 -msgid "Last Run Time" -msgstr "Hora de la última ejecución" +msgid "This Policy is not assigned to any Profiles." +msgstr "Esta política no está asignada a ningún perfil." -#: ../app/views/ops/_schedule_show.html.haml:215 -#: ../app/views/report/_report_info.html.haml:149 -#: ../app/views/report/_show_schedule.html.haml:106 -#: ../app/views/report/_widget_show.html.haml:296 -msgid "Next Run Time" -msgstr "Tiempo de ejecución siguiente" +msgid "This Quarter" +msgstr "Este cuatrimestre" -#: ../app/views/ops/_selected.html.haml:8 -msgid "Selected Item" -msgstr "Ítemes seleccionado" +msgid "This Role is Read Only and can not be deleted" +msgstr "Este rol es de solo lectura y no se puede eliminar" -#: ../app/views/ops/_selected_by_roles.html.haml:28 -#: ../app/views/ops/_selected_by_servers.html.haml:209 -msgid "Max Concurrent" -msgstr "Máx. simultáneo" +msgid "This Role is Read Only and can not be edited" +msgstr "Este rol es de solo lectura y no se puede modificar" -#: ../app/views/ops/_selected_by_roles.html.haml:32 -#: ../app/views/ops/_selected_by_servers.html.haml:213 -msgid "unlimited" -msgstr "sin límites" +msgid "This Role is already active on this Server" +msgstr "Este rol ya se encuentra activo en este servidor" -#: ../app/views/ops/_selected_by_roles.html.haml:78 -#: ../app/views/ops/_selected_by_servers.html.haml:194 -msgid "Priority" -msgstr "Prioridad" +msgid "This Role is in use by one or more Groups and can not be deleted" +msgstr "Este rol está en uso por uno o más grupos y no se puede eliminar" -#: ../app/views/ops/_selected_by_roles.html.haml:84 -#: ../app/views/ops/_selected_by_servers.html.haml:199 -msgid "primary" -msgstr "primario" +msgid "This Server's Virtual Machine has not been identified." +msgstr "La máquina virtual de este servidor no se ha identificado." -#: ../app/views/ops/_selected_by_roles.html.haml:87 -#: ../app/views/ops/_selected_by_servers.html.haml:202 -msgid "secondary" -msgstr "secundario" +msgid "This Template is already orderable" +msgstr "Esta plantilla ya se puede ordenar" -#: ../app/views/ops/_selected_by_roles.html.haml:90 -#: ../app/views/ops/_selected_by_servers.html.haml:205 -msgid "normal" -msgstr "normal" +msgid "This Template is not orderable" +msgstr "Esta plantilla no se puede ordenar" -#: ../app/views/ops/_selected_by_roles.html.haml:96 -msgid "Process ID" -msgstr "ID de proceso" +msgid "This Template will revert to selected snapshot. Are you sure you want to revert to the selected snapshot?" +msgstr "Esta plantilla se revertirá a la instantánea seleccionada. ¿Está seguro de que desea revertirla a la instantánea seleccionada?" -#: ../app/views/ops/_selected_by_roles.html.haml:109 -#: ../app/views/ops/_selected_by_servers.html.haml:61 -#: ../app/views/ops/_server_desc.html.haml:39 -msgid "Started On" -msgstr "Fecha de inicio" +msgid "This VM will revert to selected snapshot. Are you sure you want to revert to the selected snapshot?" +msgstr "Esta máquina virtual se revertirá a la instantánea seleccionada. ¿Está seguro de que desea revertirla a la instantánea seleccionada?" -#: ../app/views/ops/_selected_by_roles.html.haml:123 -#: ../app/views/ops/_selected_by_servers.html.haml:75 -msgid "Stopped On" -msgstr "Detenido el día" +msgid "This Week" +msgstr "Esta semana" -#: ../app/views/ops/_selected_by_roles.html.haml:163 -#: ../app/views/ops/_selected_by_servers.html.haml:115 -#: ../app/views/ops/_server_desc.html.haml:73 -msgid "CPU Time" -msgstr "Tiempo de la CPU" +msgid "This Week (partial)" +msgstr "Esta semana (parcial)" -#: ../app/views/ops/_selected_by_roles.html.haml:176 -#: ../app/views/ops/_selected_by_servers.html.haml:128 -#: ../app/views/ops/_server_desc.html.haml:83 -msgid "CPU Percent" -msgstr "Porcentaje de CPU" +msgid "This Widget content generation is already running or queued up" +msgstr "La generación de contenido de este asistente ya se está ejecutando o ya está en cola" -#: ../app/views/ops/_selected_by_roles.html.haml:189 -#: ../app/views/ops/_selected_by_servers.html.haml:141 -#: ../app/views/ops/_server_desc.html.haml:93 -msgid "Version / Build" -msgstr "Versión/Compilación" +msgid "This Year" +msgstr "Este año" -#: ../app/views/ops/_selected_by_servers.html.haml:172 -msgid "%{role} on %{model}: %{name} [%{id}]" -msgstr "%{role} en %{model}: %{name} [%{id}]" +msgid "This Zone do not have Log Depot settings configured, collection not allowed" +msgstr "Esta zona no tiene establecida la configuración del depósito de registro, la recolección no está permitida" -#: ../app/views/ops/_selected_by_servers.html.haml:186 -msgid "active" -msgstr "activo" +msgid "This element is disabled because it is read only" +msgstr "Este ítem está inhabilitado porque es de solo lectura" -#: ../app/views/ops/_selected_by_servers.html.haml:189 -msgid "unavailable" -msgstr "no disponible" +msgid "This element should be removed and recreated or you can report the error to your %{product} administrator." +msgstr "Este ítem debe ser eliminado y recreado o puede informar el error al administrador del %{product}." -#: ../app/views/ops/_settings_advanced_tab.html.haml:18 -msgid "Caution: Manual changes to configuration files can disable the Server!" +msgid "This object already exists in the database with the same name" msgstr "" -"Atención: Los cambios manuales a los archivos de configuración pueden inhabili" -"tar el servidor." -#: ../app/views/ops/_settings_authentication_tab.html.haml:16 -msgid "Session Timeout" -msgstr "Límite de tiempo de sesión" - -#: ../app/views/ops/_settings_authentication_tab.html.haml:55 -msgid "External (httpd)" -msgstr "Externo (httpd)" +msgid "This page requires the VMware MKS plugin. Install the plugin and try again." +msgstr "Esta página requiere el complemento de VMware MKS. Instale el complemento e inténtelo nuevamente." -#: ../app/views/ops/_settings_authentication_tab.html.haml:80 -msgid "LDAP Host Names" -msgstr "Nombres de host LDAP" +msgid "This policy does not currently respond to any Events." +msgstr "Esta política no responde a ningún evento actualmente." -#: ../app/views/ops/_settings_authentication_tab.html.haml:157 -msgid "Domain Prefix: \\" -msgstr "Prefijo de dominio: \\" +msgid "This report isn't generated yet. It cannot be rendered." +msgstr "" -#: ../app/views/ops/_settings_authentication_tab.html.haml:212 -msgid "Amazon Primary AWS Account Settings for IAM" -msgstr "Configuración de cuenta AWS primaria de Amazon para IAM" +msgid "This role can only be managed at the Region level" +msgstr "Este rol solo puede ser administrado por el nivel de región" -#: ../app/views/ops/_settings_authentication_tab.html.haml:220 -msgid "Access Key" -msgstr "Llave de Acceso" +msgid "This user is limited to items with the selected tags." +msgstr "Este usuario está limitado a los ítemes con las etiquetas seleccionadas." -#: ../app/views/ops/_settings_authentication_tab.html.haml:237 -msgid "Secret Key" -msgstr "Clave secreta" +msgid "This user is limited to the selected folders and their children." +msgstr "Este usuario está limitado a las carpetas seleccionadas y a sus carpetas secundarias." -#: ../app/views/ops/_settings_authentication_tab.html.haml:284 -msgid "Default Group for Users" -msgstr "Grupo predeterminado para usuarios" +msgid "This user is limited to the selected items and their children." +msgstr "Este usuario está limitado a los ítemes seleccionados y a sus ítemes secundarios." -#: ../app/views/ops/_settings_authentication_tab.html.haml:412 -msgid "Get User Groups from Amazon" -msgstr "Obtener grupos de usuarios de Amazon" +msgid "This will show the chart and the entire report (all rows) in your browser. Do you want to proceed?" +msgstr "Esto mostrará el gráfico y el informe completo (todas las filas) en su navegador. ¿Desea continuar?" -#: ../app/views/ops/_settings_authentication_tab.html.haml:438 -msgid "External Authentication (httpd) Settings" -msgstr "Parámetros de autenticación externa (httpd)" +msgid "This will show the entire report (all rows) in your browser. Do you want to proceed?" +msgstr "Esto mostrará el informe completo (todas las filas) en su navegador. ¿Desea proceder?" -#: ../app/views/ops/_settings_authentication_tab.html.haml:447 -msgid "Enable Single Sign-On" -msgstr "Habilitar autenticación única (SSO)" +msgid "This will show the entire report (all rows) in your browser. Do you want to proceed?" +msgstr "Esto mostrará el informe completo (todas las filas) en su navegador. ¿Desea continuar?" -#: ../app/views/ops/_settings_authentication_tab.html.haml:462 -msgid "Enable SAML" -msgstr "Habilitar SAML" +msgid "Thursday" +msgstr "Jueves" -#: ../app/views/ops/_settings_authentication_tab.html.haml:474 -msgid "Disable Local Login" -msgstr "Inhabilitar inicio de sesión local" +msgid "Tile View" +msgstr "Vista de títulos" -#: ../app/views/ops/_settings_authentication_tab.html.haml:501 -msgid "Get User Groups from External Authentication (httpd)" -msgstr "Obtener grupos de usuarios de autenticación externa (httpd)" +msgid "Time" +msgstr "" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:18 -msgid "Capture C & U Data" -msgstr "Capturar datos de C & U" +msgid "Time Profile" +msgstr "Perfil de tiempo" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:28 -msgid "Click to add a new category" -msgstr "Haga clic para agregar una nueva categoría" +msgid "Time Profile Information" +msgstr "Información de perfil de tiempo" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:32 -msgid "" -msgstr "" +msgid "Time Profiles" +msgstr "Perfiles de tiempo" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:56 -msgid "Click to edit this category" -msgstr "Haga clic para modificar esta categoría" +msgid "Time Zone" +msgstr "Zona horaria" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:90 -msgid "Category '%{category_name}' cannot be deleted" -msgstr "No se puede eliminar la categoría \"%{category_name}\"." +msgid "Time threshold for the field criteria must be selected" +msgstr "Debe seleccionar el umbral de tiempo para los criterios de campo " -#: ../app/views/ops/_settings_co_categories_tab.html.haml:101 -msgid "Are you sure you want to delete category '%{category_name}'?" -msgstr "¿Está seguro de que desea eliminar la categoría \"%{category_name}\"?" +msgid "TimeProfile \"%{name}\": Error during 'save': %{error_message}" +msgstr "TimeProfile\"%{name}\": Error al 'guardar': %{error_message}" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:102 -msgid "Click to delete this category" -msgstr "Haga clic para eliminar esta categoría" +msgid "Timeline" +msgstr "Línea de tiempo" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:25 -msgid "Collect for All %{clusters}" -msgstr "Recopilar para todos los %{clusters}" +msgid "Timeline Event" +msgstr "Registrar cronología de eventos" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:41 -msgid "" -"Note: Collect for All %{clusters} must be checked to be able to collect C & U " -"data from Cloud Providers such as Red Hat OpenStack or Amazon EC2" -msgstr "" -"Nota: Se debe seleccionar Recopilar para todos los %{clusters} para poder reco" -"pilar los datos sobre capacidad y utilización de los proveedores de nube, como" -" Red Hat OpenStack o Amazon EC2" +msgid "Timeline Preview (up to 50 rows)" +msgstr "Vista previa de la cronología (hasta 50 filas)" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:48 -msgid "No %{clusters} found in the current region." -msgstr "No se encontraron %{clusters} en la región actual." +msgid "Timeline Settings" +msgstr "Parámetros de cronología" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:53 -msgid "Enable Collection by %{clusters}" -msgstr "Habilitar recopilación por %{clusters}" +msgid "Timeline View" +msgstr "Vista de cronología" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:69 -msgid "" -"VM data will be collected for VMs under selected %{hosts} only. Data is collec" -"ted for a %{cluster} and all of its %{hosts} when at least one %{host} is sele" -"cted." -msgstr "" -"Se recopilarán datos de máquina virtual para las máquinas virtuales en los %{h" -"osts} seleccionados únicamente. Los datos se recopilan para un %{cluster} y to" -"dos sus %{hosts} cuando se selecciona al menos un %{host}." +msgid "Timeline tab is not available unless at least 1 time field has been selected" +msgstr "La ficha de cronología no se encuentra disponible, por lo menos 1 campo de hora debe ser seleccionado" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:84 -msgid "Collect for All Datastores" -msgstr "Recopilar para todos los almacenes de datos" +msgid "Timeline tab is not available until at least 1 field has been selected" +msgstr "La ficha de cronología no se encuentra disponible hasta que al menos 1 campo haya sido seleccionado" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:101 -msgid "No Datastores found in the current region." -msgstr "No se encontraron almacenes de datos en la región actual." +msgid "Timelines" +msgstr "Líneas de tiempo" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:106 -msgid "Enable Collection by Datastore" -msgstr "Habilitar recopilación por almacén de datos" +msgid "Timelines for %{virtual_machine} \"%{name}\"" +msgstr "Marcas horarias para %{virtual_machine} \"%{name}\"" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:5 -msgid "Custom Logo Image (Shown on top right of all screens)" +msgid "Timelines for Container \"%{container_name}\"" msgstr "" -"Imagen del logotipo personalizada (se muestra en el extremo superior derecho d" -"e todas las pantallas)" - -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:11 -msgid "No custom logo image has been uploaded yet." -msgstr "No se ha cargado una imagen de logotipo personalizada todavía." -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:30 -msgid "* Requirements: File-type - PNG; Dimensions - 350x70." -msgstr "* Requirimientos: Tipo de archivo - PNG; Dimensiones - 350x70." +msgid "Timeout" +msgstr "Tiempo de espera" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:43 -msgid "Use Custom Logo Image" -msgstr "Usar imagen de logotipo personalizado" +msgid "Timeout (ms)" +msgstr "Tiempo de espera (ms)" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:55 -msgid "Custom Login Background Image" -msgstr "Imagen de fondo de inicio de sesión personalizada" +msgid "Timeout is required" +msgstr "Se requiere tiempo de espera" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:67 -msgid "Image shown at 25% of actual size" -msgstr "Imagen mostrada a un 25 % del tamaño real" +msgid "Timeout max is 60" +msgstr "El tiempo de espera máx. es 60" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:74 -msgid "No custom login image has been uploaded yet." -msgstr "No se ha cargado una imagen de inicio de sesión personalizada todavía." +msgid "Timeout min is 0" +msgstr "El tiempo de espera mín. es 0" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:93 -msgid "* Requirements: File-type - PNG; Dimensions - 1280x1000." -msgstr "* Requerimientos: Tipo de archivo - PNG; Dimensiones - 1280x1000." +msgid "Timer" +msgstr "Temporizador" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:107 -msgid "Use Custom Login Background Image" -msgstr "Usar imagen de fondo de inicio de sesión personalizado" +msgid "Timer Options" +msgstr "Opciones de temporizador" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:121 -msgid "Custom Login Panel Text (" -msgstr "Texto del panel de inicio de sesión personalizado (" +msgid "Timestamp" +msgstr "Marca horaria" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:145 -msgid "Use Custom Login Text" -msgstr "Usar texto de inicio de sesión personalizado" +msgid "Timezone" +msgstr "Zona horaria" -#: ../app/views/ops/_settings_details_tab.html.haml:10 -msgid "Region Information" -msgstr "Información de región" +msgid "Title" +msgstr "Título" -#: ../app/views/ops/_settings_details_tab.html.haml:49 -#: ../app/views/ops/_settings_details_tab.html.haml:54 -msgid "Edit this Region" -msgstr "Modificar esta región" +msgid "To" +msgstr "Para" -#: ../app/views/ops/_settings_details_tab.html.haml:64 -#: ../app/views/ops/_settings_details_tab.html.haml:69 -msgid "View Analysis Profiles" -msgstr "Ver perfiles de análisis" +msgid "To Address" +msgstr "Dirección de destino" -#: ../app/views/ops/_settings_details_tab.html.haml:79 -#: ../app/views/ops/_settings_details_tab.html.haml:84 -msgid "View Zones" -msgstr "Ver zonas" +msgid "To All" +msgstr "A todos" -#: ../app/views/ops/_settings_details_tab.html.haml:94 -#: ../app/views/ops/_settings_details_tab.html.haml:99 -msgid "View Schedules" -msgstr "Ver programaciones" +msgid "To All Users" +msgstr "Para todos los usuarios" -#: ../app/views/ops/_settings_details_tab.html.haml:110 -#: ../app/views/ops/_settings_details_tab.html.haml:115 -msgid "View LDAP Regions" -msgstr "Ver regiones de LDAP" +msgid "To Domain" +msgstr "Al dominio" -#: ../app/views/ops/_settings_details_tab.html.haml:117 -msgid "LDAP Regions" -msgstr "Regiones LDAP" +msgid "To E-mail" +msgstr "Al correo electrónico" -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:45 -#: ../app/views/ops/_zone_form.html.haml:57 -msgid "SmartProxy Server IP" -msgstr "IP de servidor SmartProxy" +msgid "To E-mail Address" +msgstr "A la dirección de correo electrónico" -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:61 -#: ../app/views/ops/_settings_server_tab.html.haml:329 -#: ../app/views/ops/_zone_form.html.haml:78 -msgid "NTP Servers" -msgstr "Servidores NTP" +msgid "To configure the Host Default VNC Port Range, both start and end ports are required" +msgstr "Para configurar el rango de puertos VNC por defecto para el equipo, son requeridos tanto el puerto inicial como el final" -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:78 -msgid "Max active VM Scans" -msgstr "Máx. escaneos de máquinas virtuales activas" +msgid "Today" +msgstr "Hoy" -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:166 -msgid "No Servers Found." -msgstr "No se encontraron servidores." +msgid "Today (partial)" +msgstr "Hoy (parcial)" -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:172 -msgid "View this MiqServer" -msgstr "Ver este MiqServer" +msgid "Toggle All/None" +msgstr "Alternar todos/ninguno" -#: ../app/views/ops/_settings_import_tab.html.haml:3 -#: ../app/views/ops/_settings_import_tags_tab.html.haml:6 -msgid "Messages" -msgstr "Mensajes" +msgid "Toggle Fullscreen" +msgstr "" -#: ../app/views/ops/_settings_import_tab.html.haml:9 -msgid "Upload Custom Variable Values" -msgstr "Cargar valores de variables personalizadas" +msgid "Toggle Maintenance" +msgstr "Alternar mantenimiento" -#: ../app/views/ops/_settings_import_tab.html.haml:25 -msgid "Vm" -msgstr "Máquina virtual" +msgid "Toggle Maintenance Mode" +msgstr "Alternar modo de mantenimiento" -#: ../app/views/ops/_settings_import_tab.html.haml:54 -#: ../app/views/ops/_settings_import_tags_tab.html.haml:39 -msgid "* Requirements: CSV formatted file." -msgstr "* Requerimientos: archivo en formato CSV." +msgid "Toggle Scheduling" +msgstr "Alternar programación" -#: ../app/views/ops/_settings_import_tags_tab.html.haml:15 -msgid "Upload %{customer_name} Tag Assignments for VMs" -msgstr "Cargar %{customer_name} Asignaciones de etiquetas para máquinas virtuales" +msgid "Toggle Scheduling for Cloud Service" +msgstr "Alternar programación para servicio de nube" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:10 -msgid "Container Entity" -msgstr "Entidad de contenedor" +msgid "Toggle Scheduling for this Cloud Service?" +msgstr "¿Alternar programación para servicio de nube?" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:12 -msgid "Container Label" -msgstr "Etiqueta de contenedor" +msgid "Toggle maintenance mode for this item" +msgstr "Alternar modo de mantenimiento para este ítem" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:22 -msgid "map a new label to tag" -msgstr "Asignar una nombre a la etiqueta" +msgid "Toggle maintenance mode for this item?" +msgstr "¿Alternar modo de mantenimiento para este ítem?" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:26 -msgid "" -msgstr "" +msgid "Toggle navigation" +msgstr "Alternar navegación" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:41 -msgid "Click to edit this mapping rule" -msgstr "Haga clic para modificar esta regla de mapeo" +msgid "Token" +msgstr "Token" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:59 -msgid "Are you sure you want to delete mapping '%{label_name}'?" -msgstr "¿Está seguro de que desea eliminar este mapeo '%{label_name}'?" +msgid "Token-Endpoint" +msgstr "Punto de acceso de token" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:60 -msgid "Click to delete this mapping" -msgstr "Haga clic para eliminar este mapeo" +msgid "Token-Endpoint:" +msgstr "Punto de acceso de token:" -#: ../app/views/ops/_settings_list_tab.html.haml:13 -msgid "View this Zone's settings" -msgstr "Ver la configuración de esta zona" +msgid "Tokens do not match" +msgstr "Los tokens no coinciden" -#: ../app/views/ops/_settings_list_tab.html.haml:27 -msgid " (current)" -msgstr "(actual)" +msgid "Top Level" +msgstr "" -#: ../app/views/ops/_settings_replication_tab.html.haml:106 -msgid "Subscriptions" -msgstr "Suscripciones" +msgid "Top values to show" +msgstr "Valores principales para mostrar" -#: ../app/views/ops/_settings_replication_tab.html.haml:113 -msgid "At least 1 subscription must be added to save server replication type" +msgid "Topology" +msgstr "Topología" + +msgid "Topology Default Items in View" msgstr "" -"Se debe agregar al menos 1 suscripción para guardar el tipo de replicación del" -" servidor" -#: ../app/views/ops/_settings_replication_tab.html.haml:123 -msgid "Add Subscription" -msgstr "Añadir subscripción" +msgid "Topology View" +msgstr "Vista de topología" -#: ../app/views/ops/_settings_replication_tab.html.haml:146 -msgid "Central Admin Enabled" -msgstr "Administración central activada" +msgid "Total %{title} CPU Cores" +msgstr "Total de %{title} núcleos de CPU" -#: ../app/views/ops/_settings_replication_tab.html.haml:208 -#: ../app/views/ops/_settings_replication_tab.html.haml:420 -msgid "Accept" -msgstr "Aceptar" +msgid "Total %{title} CPU Resources" +msgstr "Total de %{title} recursos de CPU" -#: ../app/views/ops/_settings_replication_tab.html.haml:245 -#: ../app/views/ops/_settings_replication_tab.html.haml:457 -#: ../app/views/report/_menu_form1.html.haml:102 -#: ../app/views/report/_menu_form2.html.haml:183 -msgid "Discard" -msgstr "Descartar" +msgid "Total %{title} CPUs" +msgstr "Total de %{title} CPU" -#: ../app/views/ops/_settings_replication_tab.html.haml:350 -#: ../app/views/vm_common/_reconfigure.html.haml:372 -msgid "Cancel Delete" -msgstr "Cancelar eliminación" +msgid "Total %{title} Memory" +msgstr "Total de %{title} memoria" -#: ../app/views/ops/_settings_replication_tab.html.haml:393 -msgid "Re-Enable Central Admin" -msgstr "Rehabilitar administración central" +msgid "Total Allocation" +msgstr "Total de asignaciones" -#: ../app/views/ops/_settings_replication_tab.html.haml:401 -msgid "Enable Central Admin" -msgstr "Habilitar administración central" +msgid "Total CPU Resources" +msgstr "Total de recursos de CPU" -#: ../app/views/ops/_settings_replication_tab.html.haml:409 -msgid "Disable Central Admin" -msgstr "Inhabilitar administración central" +msgid "Total CPUs" +msgstr "Total de CPU" -#: ../app/views/ops/_settings_replication_tab.html.haml:473 -msgid "Excluded Tables" -msgstr "" +msgid "Total Configured CPUs" +msgstr "Total de CPU configuradas" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:11 -msgid "Red Hat Software Updates" -msgstr "Actualizaciones de software de Red Hat" +msgid "Total Configured Memory" +msgstr "Total de memoria configurada" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:14 -msgid "" -"The Subscription Management Service you register with will provide your system" -"s with updates and allow additional management." -msgstr "" -"El servicio de administración de suscripción con la que se registra le suminis" -"trará a sus sistemas actualizaciones y le permitirá una administración adicion" -"al." +msgid "Total Configured VM CPUs" +msgstr "Total de CPU de máquinas virtuales configuradas" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:26 -msgid "Register to" -msgstr "Registrar en" +msgid "Total Configured VM Memory" +msgstr "Total de memoria de máquina virtual configurada" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:67 -msgid "Repository Name(s):" -msgstr "Nombres del repositorio:" +msgid "Total Datastore Used Space" +msgstr "Total de espacio utilizado en almacén de datos" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:91 -msgid "HTTP Proxy:" -msgstr "Proxy de HTTP:" +msgid "Total Index Nodes" +msgstr "Total de nodos indexados" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:101 -msgid "Use HTTP Proxy" -msgstr "Usar proxy de HTTP" +msgid "Total Matches" +msgstr "Total de coincidencias" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:153 -#: ../app/views/ops/rhn/_info_subscribed.html.haml:61 -msgid "Organization" -msgstr "Organización" +msgid "Total Memory" +msgstr "Total de memoria" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:171 -msgid "Forgot your login or password? Look it up at" -msgstr "¿Olvidó su inicio de sesión o contraseña? Búsquela en" +msgid "Total Processors" +msgstr "Total de procesadores" -#: ../app/views/ops/_settings_rhn_tab.html.haml:28 -msgid "Edit Registration" -msgstr "Modificar registro" +msgid "Total Quota" +msgstr "Total de cuotas" -#: ../app/views/ops/_settings_server_tab.html.haml:48 -msgid "Resides on VM" -msgstr "Reside en la máquina virtual" +msgid "Total Space" +msgstr "Espacio total" -#: ../app/views/ops/_settings_server_tab.html.haml:71 -msgid "Company Name" -msgstr "Nombre de la empresa" +msgid "Total Space on Volume" +msgstr "Espacio total en volumen" -#: ../app/views/ops/_settings_server_tab.html.haml:88 -msgid "Appliance Name" -msgstr "Nombre de la aplicación" +msgid "Total VMs" +msgstr "Total de máquinas virtuales" -#: ../app/views/ops/_settings_server_tab.html.haml:105 -msgid "Zone*" -msgstr "Zona*" +msgid "Total number of VMs that can fit on all of the above %{models}: %{count}" +msgstr "Cantidad total de máquinas virtuales que pueden encajar en algunas de los ítemes antes mencionados %{models}: %{count}" -#: ../app/views/ops/_settings_server_tab.html.haml:135 -msgid "Appliance Time Zone" -msgstr "Zona horaria de la aplicación" +msgid "Totals for %{hosts}" +msgstr "Total de %{hosts}" -#: ../app/views/ops/_settings_server_tab.html.haml:156 -msgid "Default Locale" -msgstr "Región predeterminada" +msgid "Totals for Availability Zone" +msgstr "Totales de zona de disponibilidad" -#: ../app/views/ops/_settings_server_tab.html.haml:176 -msgid "* Changing the Zone will reset all of this Server's priorities to secondary." -msgstr "" -"* Cambiar la Zona reiniciará todas las prioridades de su Servidor a secundario" -"." +msgid "Totals for Service VMs" +msgstr "Totales para máquinas virtuales de servicio" -#: ../app/views/ops/_settings_server_tab.html.haml:183 -msgid "Server Control" -msgstr "Control del servidor" +msgid "Totals for VMs" +msgstr "VM totales" -#: ../app/views/ops/_settings_server_tab.html.haml:192 -msgid "Server Roles" -msgstr "Roles del servidor" +msgid "Trap Number" +msgstr "Número de trampa" -#: ../app/views/ops/_settings_server_tab.html.haml:199 -msgid "Off" -msgstr "" +msgid "Trap Number is required" +msgstr "Se requiere el número de trampa" -#: ../app/views/ops/_settings_server_tab.html.haml:199 -msgid "On" -msgstr "" +msgid "Trap Object ID" +msgstr "ID de objeto de trampa" -#: ../app/views/ops/_settings_server_tab.html.haml:216 -msgid "Default Repository SmartProxy" -msgstr "Repositorio SmartProxy predeterminado" +msgid "Trap Object ID is required" +msgstr "Se requiere el ID de objeto de trampa" -#: ../app/views/ops/_settings_server_tab.html.haml:241 -msgid "VMware Console Support" -msgstr "Soporte de consola de VMware" +msgid "Tree View" +msgstr "Vista de árbol" -#: ../app/views/ops/_settings_server_tab.html.haml:250 -msgid "Use" -msgstr "Uso" +msgid "Trend Options" +msgstr "Opciones de tendencia" -#: ../app/views/ops/_settings_server_tab.html.haml:255 -msgid "VMware MKS Plugin" -msgstr "Complemento VMware MKS" +msgid "Trend Steepness must be an integer" +msgstr "La inclinación de la tendencia debe ser un número entero" -#: ../app/views/ops/_settings_server_tab.html.haml:255 -msgid "VMware VMRC Plugin" -msgstr "Complemento VMware VMRC" +msgid "Trend Target Limit" +msgstr "Límite de tendencia objetivo" -#: ../app/views/ops/_settings_server_tab.html.haml:255 -msgid "VNC" -msgstr "VNC" +msgid "Trend Target Limit must be configured" +msgstr "El límite de tendencia objetivo debe estar configurado" -#: ../app/views/ops/_settings_server_tab.html.haml:272 -msgid "VMware MKS Plugin Version" -msgstr "Complemento VMware MKS versión" +msgid "Trend Target Limit must be numeric" +msgstr "El límite de tendencia objetivo debe ser numérico" -#: ../app/views/ops/_settings_server_tab.html.haml:294 -msgid "VNC Proxy Address" -msgstr "Dirección proxy de VNC" +msgid "Trend Target Limit: Value must be numeric" +msgstr "Límite de tendencia objetivo: el valor debe ser numérico" -#: ../app/views/ops/_settings_server_tab.html.haml:311 -msgid "VNC Proxy Port" -msgstr "Puerto proxy de VNC" +msgid "Trend Target Percents" +msgstr "Porcentajes de tendencia objetivo" -#: ../app/views/ops/_settings_server_tab.html.haml:370 -msgid "Specified NTP settings applied here will override Zone NTP settings." -msgstr "" -"La configuración de NTP especificada aplicada aquí anulará la configuración de" -" NTP de zona." +msgid "Trend for Past" +msgstr "Tendencia para el pasado" -#: ../app/views/ops/_settings_server_tab.html.haml:377 -msgid "Outgoing SMTP E-mail Server" -msgstr "Servidor SMTP de correo electrónico de salida " +msgid "Trending for" +msgstr "Tendencia para" -#: ../app/views/ops/_settings_server_tab.html.haml:437 -msgid "Start TLS Automatically" -msgstr "Iniciar TLS automáticamente" +msgid "Trending for is required" +msgstr "Se requiere tendencia para" -#: ../app/views/ops/_settings_server_tab.html.haml:457 -msgid "SSL Verify Mode" -msgstr "Modo de verificación de SSL" +msgid "Trends for past" +msgstr "Tendencias para el pasado" -#: ../app/views/ops/_settings_server_tab.html.haml:549 -msgid "Test E-mail Address" -msgstr "Probar dirección de correo electrónico" +msgid "True" +msgstr "Verdadero" -#: ../app/views/ops/_settings_server_tab.html.haml:623 -msgid "Logging" -msgstr "Registro" +msgid "Truncate Long Text" +msgstr "Truncar texto largo" -#: ../app/views/ops/_settings_server_tab.html.haml:632 -msgid "Log Level" -msgstr "Nivel de registro" +msgid "Trusted CA Certificates" +msgstr "" -#: ../app/views/ops/_settings_server_tab.html.haml:652 -msgid "Custom Support URL" -msgstr "URL de soporte personalizada" +msgid "Trusted Forest Settings" +msgstr "Configuración de Trusted Forest" -#: ../app/views/ops/_settings_server_tab.html.haml:661 -msgid "URL (i.e. www.mypage.com)" -msgstr "URL (es decir, www.mypage.com)" +msgid "Tuesday" +msgstr "Martes" -#: ../app/views/ops/_settings_workers_tab.html.haml:13 -msgid "Generic Workers" -msgstr "Trabajadores genéricos" +msgid "Type" +msgstr "Tipo" -#: ../app/views/ops/_settings_workers_tab.html.haml:42 -#: ../app/views/ops/_settings_workers_tab.html.haml:93 -#: ../app/views/ops/_settings_workers_tab.html.haml:123 -#: ../app/views/ops/_settings_workers_tab.html.haml:153 -#: ../app/views/ops/_settings_workers_tab.html.haml:244 -#: ../app/views/ops/_settings_workers_tab.html.haml:294 -#: ../app/views/ops/_settings_workers_tab.html.haml:347 -#: ../app/views/ops/_settings_workers_tab.html.haml:397 -#: ../app/views/ops/_settings_workers_tab.html.haml:427 -#: ../app/views/ops/_settings_workers_tab.html.haml:477 -msgid "Memory threshold" -msgstr "Umbral de memoria" +msgid "Type is required" +msgstr "Se requiere la clase" -#: ../app/views/ops/_settings_workers_tab.html.haml:64 -msgid "C & U Data Collectors" -msgstr "Recopiladores de datos C & U" +msgid "Type missing for %{field}" +msgstr "Clase faltante para %{field}" -#: ../app/views/ops/_settings_workers_tab.html.haml:114 -msgid "Event Monitor" -msgstr "Monitor de eventos" +msgid "Type:" +msgstr "Clase:" -#: ../app/views/ops/_settings_workers_tab.html.haml:144 -msgid "Connection Broker" -msgstr "Agente de conexión" +msgid "Type: " +msgstr "Clase: " + +msgid "Type: %{automation_type}" +msgstr "Clase: %{automation_type}" -#: ../app/views/ops/_settings_workers_tab.html.haml:174 msgid "UI Worker" msgstr "Trabajador de UI" -#: ../app/views/ops/_settings_workers_tab.html.haml:208 -msgid " * Multiple UI workers can not be configured with session store as memory" +msgid "UNUSED?" msgstr "" -" * Múltiples workers de la IU no pueden ser configurados en la sesión almace" -"nada en memoria" -#: ../app/views/ops/_settings_workers_tab.html.haml:215 -msgid "Reporting Workers" -msgstr "Trabajadores que generan informes" +msgid "URI" +msgstr "URI" -#: ../app/views/ops/_settings_workers_tab.html.haml:265 -msgid "Web Service Workers" -msgstr "Trabajadores de servicio web" +msgid "URI Prefix" +msgstr "Prefijo de URI" -#: ../app/views/ops/_settings_workers_tab.html.haml:318 -msgid "Priority Workers" -msgstr "Trabajadores con prioridad" +msgid "URI is required" +msgstr "Se requiere URI" -#: ../app/views/ops/_settings_workers_tab.html.haml:368 -msgid "C & U Data Processors" -msgstr "Procesadores de datos C & U" +msgid "URL" +msgstr "URL" -#: ../app/views/ops/_settings_workers_tab.html.haml:448 -msgid "VM Analysis Collectors" -msgstr "Recolectores de análisis de máquina virtual" +msgid "URL (i.e. www.mypage.com)" +msgstr "URL (es decir, www.mypage.com)" -#: ../app/views/ops/_settings_workers_tab.html.haml:498 -msgid "Websocket Workers" -msgstr "Trabajadores Websocket" +msgid "URL:" +msgstr "URL:" -#: ../app/views/ops/_smartproxy_affinity.html.haml:3 -msgid "" -"Assign Hosts and Datastores to Embedded SmartProxies in Zone: \"%{zone_descript" -"ion}\"" -msgstr "" -"Asignar hosts y almacenes de datos a los SmartProxies embebidos en la zona: \"%" -"{zone_description}\"" +msgid "US Executive - 7.25in x 10.5in" +msgstr "US Ejecutivo: 7,25 in x 10,5 in" -#: ../app/views/ops/_smartproxy_affinity.html.haml:13 -msgid "No Servers with the SmartProxy role are in Zone: \"%{zone_description}\"" -msgstr "No hay servidores con el rol SmartProxy en la zona: \"%{zone_description}\"" +msgid "US Folio - 8.5in x 13.0in" +msgstr "US Folio: 8,5 in x 13,0 in" -#: ../app/views/ops/_tenant_form.html.haml:67 -msgid "Use Configuration Settings" -msgstr "Usar ajustes de configuración" +msgid "US Government - 8.0in x 11.0in" +msgstr "US Gobierno: 8,0 in x 11,0 in" -#: ../app/views/ops/_tenant_quota_form.html.haml:72 -msgid " Valid numeric quota value required " -msgstr "Se requiere un valor numérico válido de cuota" +msgid "US Ledger - 17.0in x 11.0in" +msgstr "US Ledger: 17,0 in x 11,0 in" -#: ../app/views/ops/_zone_form.html.haml:7 -msgid "Zone Information" -msgstr "Información de zona" +msgid "US Legal - 8.5in x 14.0in" +msgstr "US Legal: 8,5 in x 14,0 in" -#: ../app/views/ops/_zone_form.html.haml:117 -msgid "* Specified NTP settings apply to this zone only and are not global." -msgstr "" -"* Los parámetros NTP especificados se aplican sólo a esta zona y no son global" -"es." +msgid "US Letter - 8.5in x 11.0in" +msgstr "US Carta: 8,5 in x 11,0 in" -#: ../app/views/ops/_zone_form.html.haml:124 -msgid "Credentials - Windows Domain" -msgstr "Credenciales - Dominio de Windows" +msgid "US Statement - 5.5in x 8.5in" +msgstr "US Declaración: 5,5 in x 8,5 in" -#: ../app/views/ops/_zone_form.html.haml:194 -msgid "Max Active VM Scans" -msgstr "Máximos escaneos de máquinas virtuales activas" +msgid "US Tabloid - 11.0in x 17.0in" +msgstr "US Tabloide: 11,0 in x 17,0 in" -#: ../app/views/ops/_zone_tree.html.haml:5 -msgid "Status of Regional Roles for Servers in %{kind} %{description}" -msgstr "Estado de roles regionales para servidores en %{kind} %{description}" +msgid "Unable to add Subnet \"%{name}\": %{details}" +msgstr "" -#: ../app/views/ops/_zone_tree.html.haml:8 -msgid "Status of Roles for Servers in %{kind} %{description}" -msgstr "Estado de roles para servidores en %{kind} %{description}" +msgid "Unable to add nodes: %{error}" +msgstr "No se puede agregar nodos: %{error}" -#: ../app/views/ops/_zone_tree.html.haml:14 -msgid "* Primary Server Roles shown as %{bold} text." -msgstr "* Los roles del Servidor Primario mostrados como texto %{bold}." +msgid "Unable to associate Floating IP %{address} with Instance \"%{name}\": %{details}" +msgstr "No se puede asociar IP flotante %{address} con la instancia \"%{name}\": %{details}" -#: ../app/views/ops/_zone_tree.html.haml:14 -msgid "bold" -msgstr "negrita" +msgid "Unable to associate Floating IP with Instance \"%{name}\": %{details}" +msgstr "No se puede asociar IP flotante con la instancia \"%{name}\": %{details}" -#: ../app/views/ops/_zone_tree.html.haml:17 -msgid "Region based nodes shown as %{dimmed} text." -msgstr "Los nodos basados en la región se muestran como texto %{dimmed}." +msgid "Unable to attach Cloud Volume \"%{volume_name}\" to %{vm_name}: %{details}" +msgstr "" -#: ../app/views/ops/_zone_tree.html.haml:17 -msgid "dimmed" -msgstr "atenuado" +msgid "Unable to create %{model} \"%{name}\": %{details}" +msgstr "No se puede crear %{model} \"%{name}\": %{details}" -#: ../app/views/ops/rhn/_info_subscribed.html.haml:3 -msgid "Appliances in this region can be registered with:" -msgstr "Las aplicaciones en esta región se pueden registrar con:" +msgid "Unable to create Cloud Network \"%{name}\": %{details}" +msgstr "" -#: ../app/views/ops/rhn/_info_subscribed.html.haml:45 -msgid "Account" -msgstr "Cuenta" +msgid "Unable to create Cloud Subnet: %{details}" +msgstr "" -#: ../app/views/ops/rhn/_info_subscribed.html.haml:75 -msgid "Repository Name(s)" -msgstr "Nombres del repositorio" +msgid "Unable to create Cloud Tenant \"%{name}\": %{details}" +msgstr "" -#: ../app/views/ops/rhn/_info_unsubscribed.html.haml:5 -msgid "" -"Software updates have not yet been configured. Select Edit Registration to reg" -"ister appliances in this region with Red Hat to receive software updates and o" -"ther benefits." +msgid "Unable to create Cloud Volume \"%{name}\": %{details}" msgstr "" -"Las actualizaciones de software aún no han sido configuradas. Seleccione Modif" -"icar inscripción para registrar dispositivos en Red Hat de esta región, recib" -"ir actualizaciones de software y otros beneficios." -#: ../app/views/ops/rhn/_info_unsubscribed.html.haml:9 -msgid "You will need the following to register:" -msgstr "Necesitará registrar lo siguiente:" +msgid "Unable to create Floating IP \"%{name}\": %{details}" +msgstr "" -#: ../app/views/ops/rhn/_info_unsubscribed.html.haml:15 -msgid "Your Red Hat Account login or Red Hat Network Satellite login" +msgid "Unable to create Key Pair \"%{name}\": %{details}" msgstr "" -"Inicio de sesión con la cuenta de Red Hat o inicio de sesión en Red Hat Networ" -"k Satellite" -#: ../app/views/ops/rhn/_info_unsubscribed.html.haml:17 -msgid "A Red Hat subscription that covers your product" -msgstr "Una suscripción de Red Hat que cubre su producto" +msgid "Unable to create Security Group \"%{name}\": %{details}" +msgstr "" -#: ../app/views/ops/rhn/_info_unsubscribed.html.haml:19 -msgid "(optional) your HTTP proxy information" -msgstr "(opcional) su información del proxy HTTP" +msgid "Unable to create a new template copy \"%{name}\": new template content cannot be empty." +msgstr "No se puede crear copia de nueva plantilla \"%{name}\": el contenido de la nueva plantilla no puede estar vacío." -#: ../app/views/ops/rhn/_info_unsubscribed.html.haml:21 -msgid "(optional) the address of an alternate service" -msgstr "(opcional) la dirección de un servicio alternativo" +msgid "Unable to create a new template copy \"%{name}\": old and new template content have to differ." +msgstr "No se puede crear copia de nueva plantilla \"%{name}\": el contenido de la antigua y la nueva plantilla tiene que diferir." -#: ../app/views/ops/rhn/_server_table.html.haml:5 -msgid "Appliance Updates" -msgstr "Actualizaciones del appliance" +msgid "Unable to create backup for %{model} \"%{name}\": %{details}" +msgstr "No se puede crear copia de seguridad para %{model} \"%{name}\": %{details}" -#: ../app/views/ops/rhn/_server_table.html.haml:16 -msgid "Available Product version:" -msgstr "Versión Disponible del Producto:" +msgid "Unable to create snapshot for Cloud Volume \"%{name}\": %{details}" +msgstr "No se puede crear instantánea para volumen de nube \"%{name}\": %{details}" -#: ../app/views/ops/rhn/_server_table.html.haml:31 -msgid "Refresh List" -msgstr "Actualizar lista" +msgid "Unable to deploy %s on this server %s\"" +msgstr "" -#: ../app/views/ops/rhn/_server_table.html.haml:40 -msgid "Check for Updates" -msgstr "Buscar actualizaciones" +msgid "Unable to detach Cloud Volume \"%{volume_name}\" from %{vm_name}: %{details}" +msgstr "" -#: ../app/views/ops/rhn/_server_table.html.haml:62 -msgid "Apply %{product} Update" -msgstr "Aplicar actualización de %{product}" +msgid "Unable to disassociate Floating IP %{address} from Instance \"%{name}\": %{details}" +msgstr "No se puede disociar IP flotante %{address} desde la instancia \"%{name}\": %{details}" -#: ../app/views/ops/rhn/_server_table.html.haml:89 -msgid "Appliance" -msgstr "Aplicación" +msgid "Unable to disassociate Floating IP from Instance \"%{name}\": %{details}" +msgstr "No se puede disociar IP flotante de la instancia \"%{name}\": %{details}" -#: ../app/views/ops/rhn/_server_table.html.haml:93 -msgid "Update Status" -msgstr "Actualizar estado" +msgid "Unable to evacuate %{instance} \"%{name}\": %{details}" +msgstr "No se puede evacuar %{instance} \"%{name}\": %{details}" -#: ../app/views/ops/rhn/_server_table.html.haml:95 -msgid "Last Checked for updates" -msgstr "Fecha de la última búsqueda de actualizaciones" +msgid "Unable to initiate scaling: %{message}" +msgstr "No se puede iniciar escalamiento: %{message}" -#: ../app/views/ops/rhn/_server_table.html.haml:97 -msgid "%{product} Version" -msgstr "Versión de %{product}" +msgid "Unable to install the Datasource on this server." +msgstr "" -#: ../app/views/ops/rhn/_server_table.html.haml:99 -msgid "Platform Updates Available" -msgstr "Actualizaciones de plataforma disponibles" +msgid "Unable to live migrate %{instance} \"%{name}\": %{details}" +msgstr "No se puede migrar en vivo %{instance} \"%{name}\": %{details}" -#: ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 -msgid "Orderable" -msgstr "Se puede ordenar" +msgid "Unable to live migrate Instance \"%{name}\": %{details}" +msgstr "" -#: ../app/views/persistent_volume/_main.html.haml:10 -msgid "Volume Claim" -msgstr "Pedido de volumen" +msgid "Unable to reconfigure %{instance} \"%{name}\": %{details}" +msgstr "No se puede volver a configurar %{instance} \"%{name}\": %{details}" -#: ../app/views/persistent_volume/_main.html.haml:22 -msgid "Capacity" -msgstr "Capacidad" +msgid "Unable to remove Subnet \"%{name}\": %{details}" +msgstr "" -#: ../app/views/provider_foreman/_configuration_script.html.haml:18 -msgid "Surveys" -msgstr "Encuestas" +msgid "Unable to restore %{model} \"%{name}\" from backup: %{details}" +msgstr "No se puede restaurar %{model} \"%{name}\": %{details}" -#: ../app/views/provider_foreman/_form.html.haml:108 -msgid "Url" -msgstr "URL" +msgid "Unable to update %{model} \"%{name}\": %{details}" +msgstr "No se puede actualizar %{model} \"%{name}\": %{details}" -#: ../app/views/provider_foreman/_main.html.haml:16 -#: ../app/views/provider_foreman/_main_configuration_profile.html.haml:16 -msgid "Tenancy" -msgstr "Tenencia" +msgid "Unable to update Cloud Network \"%{name}\": %{details}" +msgstr "" -#: ../app/views/pxe/_iso_datastore_details.html.haml:31 -msgid "View this ISO Image" -msgstr "Ver esta imagen ISO" +msgid "Unable to update Cloud Subnet \"%{name}\": %{details}" +msgstr "" -#: ../app/views/pxe/_pxe_form.html.haml:34 -msgid "Depot Type" -msgstr "Tipo de almacén" +msgid "Unable to update Cloud Tenant \"%{name}\": %{details}" +msgstr "" -#: ../app/views/pxe/_pxe_form.html.haml:146 -#: ../app/views/pxe/_pxe_server_details.html.haml:17 -#: ../app/views/pxe/_pxe_server_details.html.haml:25 -msgid "PXE Image Menus" -msgstr "Menús de imagen de PXE" +msgid "Unable to update Cloud Volume \"%{name}\": %{details}" +msgstr "" -#: ../app/views/pxe/_pxe_image_type_form.html.haml:39 -msgid "Any" -msgstr "Cualquiera " +msgid "Unable to update Floating IP \"%{name}\": %{details}" +msgstr "" -#: ../app/views/pxe/_pxe_img_form.html.haml:48 -msgid "" -"* Checking this box will remove this setting from all other PXE Images on this" -" PXE Server" +msgid "Unable to update Security Group \"%{name}\": %{details}" msgstr "" -"* Verificar este casillero eliminará su configuración de todas las Imágenes PX" -"E en su Servidor PXE" -#: ../app/views/pxe/_pxe_server_details.html.haml:65 -msgid "Windows Boot Env" -msgstr "Entorno de arranque de Windows" +msgid "Unable to update stack, obtaining of status failed: %{message}" +msgstr "No se puede actualizar la pila, no se pudo obtener el estado: %{message}" -#: ../app/views/pxe/_pxe_server_details.html.haml:72 -msgid "View this PXE Image" -msgstr "Ver esta imagen de PXE" +msgid "Unacknowledge" +msgstr "" -#: ../app/views/pxe/_pxe_server_details.html.haml:119 -msgid "View this Windows Image" -msgstr "Ver esta imagen de Windows" +msgid "Unacknowledged" +msgstr "" -#: ../app/views/pxe/_template_details.html.haml:16 -#: ../app/views/pxe/_template_form.html.haml:91 -msgid "Script" -msgstr "Script" +msgid "Unassign" +msgstr "" -#: ../app/views/pxe/_template_folders.html.haml:9 -msgid "View Examples (read only)' Folder" -msgstr "Ver carpeta de ejemplos (solo lectura)" +msgid "Unassign Alert" +msgstr "" -#: ../app/views/pxe/_template_folders.html.haml:21 -msgid "View '%{name}' Folder" -msgstr "Ver carpeta '%{name}'" +msgid "Unassigned" +msgstr "No asignado" -#: ../app/views/pxe/_template_form.html.haml:73 -msgid "CloudInit" -msgstr "CloudInit" +msgid "Unassigned Profiles Group" +msgstr "Perfiles de grupo no asignados" -#: ../app/views/pxe/_template_form.html.haml:73 -msgid "Kickstart" -msgstr "Kickstart" +msgid "Unassigned:" +msgstr "No asignado:" -#: ../app/views/pxe/_template_form.html.haml:73 -msgid "Sysprep" -msgstr "Sysprep" +msgid "Unattended GUI" +msgstr "GUI no atendida" -#: ../app/views/report/_column_lists.html.haml:9 -msgid "Available Fields:" -msgstr "Campos disponibles:" +msgid "Unauthorized object or action" +msgstr "El objeto o acción no están autorizados" -#: ../app/views/report/_column_lists.html.haml:38 -#: ../app/views/report/_column_lists.html.haml:91 -msgid "down" -msgstr "abajo" +msgid "Uncknowledge Alert" +msgstr "" -#: ../app/views/report/_column_lists.html.haml:38 -#: ../app/views/report/_column_lists.html.haml:91 -msgid "up" -msgstr "arriba" +msgid "Uncommitted Space" +msgstr "Espacio no comprometido" -#: ../app/views/report/_column_lists.html.haml:40 -#: ../app/views/report/_column_lists.html.haml:95 -msgid "Move selected fields %{where}" -msgstr "Mover campos seleccionados %{where}" +msgid "Undeploy" +msgstr "Anular implementación" -#: ../app/views/report/_column_lists.html.haml:69 -msgid "Selected Fields:" -msgstr "Campos seleccionados:" +msgid "Undeploy these Middleware Deployments" +msgstr "Anular estas implementaciones de middleware" -#: ../app/views/report/_column_lists.html.haml:91 -msgid "to bottom" -msgstr "hacia la parte inferior" +msgid "Undeploy this Middleware Deployment" +msgstr "Anular esta implementación de middleware" -#: ../app/views/report/_column_lists.html.haml:91 -msgid "to top" -msgstr "hacia la parte superior" +msgid "Undeployment initiated for selected deployment(s)" +msgstr "Para iniciación para la implementación seleccionada" -#: ../app/views/report/_db_form.html.haml:41 -#: ../app/views/report/_db_show.html.haml:28 -msgid "Tab Title" -msgstr "Título de la ficha" +msgid "Underlying %{name}" +msgstr "%{name} subyacente" -#: ../app/views/report/_db_form.html.haml:74 -msgid "* Dashboard name cannot be changed" -msgstr "* El nombre del Panel de control no puede ser cambiado" +msgid "Undo the last change" +msgstr "Deshacer el último cambio" -#: ../app/views/report/_db_list.html.haml:23 -msgid "Click to view '%{title}'" -msgstr "Haga clic para ver \"%{title}\"" +msgid "Unexpected error encountered" +msgstr "Encontrado un error inexperado" -#: ../app/views/report/_db_list.html.haml:60 -msgid "Click to view %{group} " -msgstr "Haga clic para ver %{group} " +msgid "Ungrouped" +msgstr "" -#: ../app/views/report/_db_list.html.haml:77 -msgid "No Dashboards are defined for this group. Default dashboard will be shown." -msgstr "No hay paneles definidos para este grupo. Se mostrará el panel predeterminado." +msgid "Units" +msgstr "Unidades" -#: ../app/views/report/_db_list.html.haml:99 -msgid "Click to view '%{widgetset_description} (%{widgetset_name})'" -msgstr "Haga clic para ver '%{widgetset_description} (%{widgetset_name})'" +msgid "Unknown" +msgstr "Desconocido" -#: ../app/views/report/_db_seq_form.html.haml:11 -msgid "Dashboards:" -msgstr "Paneles:" +msgid "Unknown Action" +msgstr "Acción desconocida" -#: ../app/views/report/_db_widget.html.haml:5 -msgid "Drag/drop Widget \"%{widget_title}\"" -msgstr "Arrastrar/soltar asistente \"%{widget_title}\"" +msgid "Unknown error has occurred" +msgstr "Ha ocurrido un error desconocido" -#: ../app/views/report/_db_widget.html.haml:8 -msgid "View this Widget" -msgstr "Ver este asistente" +msgid "Unknown server group operation: " +msgstr "" -#: ../app/views/report/_db_widget_remove.html.haml:4 -msgid "Remove this widget" -msgstr "Eliminar este asistente" +msgid "Unknown server operation: %{operation}" +msgstr "" -#: ../app/views/report/_db_widgets.html.haml:5 -msgid "Sample Dashboard" -msgstr "Tablero de muestra" +msgid "Unlimited" +msgstr "Ilimitada" -#: ../app/views/report/_export.html.haml:5 -msgid "Choose a Import/Export type from the menus on the left." -msgstr "Elija un tipo de importación/exportación de los menús a la izquierda." +msgid "Unlock this Domain" +msgstr "Desbloquear este dominio" -#: ../app/views/report/_export_custom_reports.html.haml:30 -msgid "Overwrite existing reports?" -msgstr "¿Desea sobrescribir los informes existentes?" +msgid "Unlocked" +msgstr "Desbloqueado" -#: ../app/views/report/_export_custom_reports.html.haml:73 -msgid "Available Custom Reports:" -msgstr "Informes personalizados disponibles:" +msgid "Unmanaged VMs" +msgstr "Máquinas virtuales no administradas" -#: ../app/views/report/_export_widgets.html.haml:7 -msgid "Import Widgets" -msgstr "Importar asistentes" +msgid "Unused/Overcommited Allocation" +msgstr "Asignación no utilizada/desbordada" -#: ../app/views/report/_export_widgets.html.haml:24 -msgid "Widget name" -msgstr "Nombre del asistente" +msgid "Up" +msgstr "" -#: ../app/views/report/_export_widgets.html.haml:120 -msgid "Available Widgets:" -msgstr "Asistentes disponibles:" +msgid "Update" +msgstr "Actualizar" -#: ../app/views/report/_form.html.haml:14 -msgid "Basic Report Info" -msgstr "Información de reportes básica" +msgid "Update Password" +msgstr "Contraseña actualizada" -#: ../app/views/report/_form.html.haml:21 -msgid "Menu Name" -msgstr "Nombre del menú" +msgid "Update Status" +msgstr "Actualizar estado" -#: ../app/views/report/_form_chart.html.haml:6 -msgid "Chart Settings" -msgstr "Configuración del diagrama" +msgid "Update aggregate not supported by %{model} \"%{name}\"" +msgstr "La actualización de agregado no recibe soporte de %{model} \"%{name}\"" -#: ../app/views/report/_form_chart.html.haml:15 -msgid "Choose a chart type" -msgstr "Elija un tipo de diagrama" +msgid "Update password" +msgstr "Actualizar contraseña" -#: ../app/views/report/_form_chart.html.haml:20 -msgid "" -msgstr "" +msgid "Update this LDAP Server" +msgstr "Actualizar este servidor LDAP" -#: ../app/views/report/_form_chart.html.haml:37 -msgid "Chart mode" -msgstr "Modo de diagrama" +msgid "Update this entry" +msgstr "Actualizar esta entrada" -#: ../app/views/report/_form_chart.html.haml:43 -#: ../app/views/report/_form_chart.html.haml:54 -#: ../app/views/report/_form_sort.html.haml:78 -msgid "Counts" -msgstr "Conteos" +msgid "Updated" +msgstr "Actualizado" -#: ../app/views/report/_form_chart.html.haml:43 -msgid "Values" -msgstr "Valores" +msgid "Updated - %{time}" +msgstr "Actualizado -a las %{time})" -#: ../app/views/report/_form_chart.html.haml:62 -msgid "Data column" -msgstr "Columna de datos" +msgid "Updated - %{update_time}, Last valid connection - %{valid_time}" +msgstr "Actualizado - %{update_time}, Última conexión válida - %{valid_time}" -#: ../app/views/report/_form_chart.html.haml:83 -msgid "Top values to show" -msgstr "Valores principales para mostrar" +msgid "Updated On" +msgstr "Actualizado el" -#: ../app/views/report/_form_chart.html.haml:104 -msgid "Sum 'Other' values" -msgstr "Sumar 'Otros' valores" +msgid "Upload" +msgstr "Cargar" -#: ../app/views/report/_form_chart.html.haml:117 -msgid "* Some charts my not produce desired results with a single sort field" -msgstr "" -"* Algunos gráficos no producen resultados deseables con un determinado tipo de" -" campo" +msgid "Upload %{customer_name} Tag Assignments for VMs" +msgstr "Cargar %{customer_name} Asignaciones de etiquetas para máquinas virtuales" -#: ../app/views/report/_form_columns.html.haml:9 -msgid "Configure Report Columns" -msgstr "Configurar columnas del informe" +msgid "Upload Custom Variable Values" +msgstr "Cargar valores de variables personalizadas" -#: ../app/views/report/_form_columns.html.haml:16 -msgid "* Base the report on" -msgstr "* Base el informe en" +msgid "Upload File" +msgstr "Cargar archivo" -#: ../app/views/report/_form_columns.html.haml:45 -msgid "* Caution: Changing these fields will clear all selected values below them!" -msgstr "" -"* Atención: ¡Al cambiar estos campos se borrarán todos los valores seleccionad" -"os que están por debajo de ellos!" +msgid "Uploaded File '%{filename}'" +msgstr "Archivo cargado '%{filename}'" -#: ../app/views/report/_form_columns.html.haml:52 -msgid "Report Creation Timeout" -msgstr "Tiempo de espera de creación de informe" +msgid "Url" +msgstr "URL" -#: ../app/views/report/_form_columns.html.haml:61 -msgid "Cancel after" -msgstr "Cancelar después de" +msgid "Usage" +msgstr "Uso" -#: ../app/views/report/_form_columns.html.haml:66 -msgid "%{number} Hour" -msgid_plural "%{number} Hours" -msgstr[0] "%{number} hora" -msgstr[1] "%{number} horas" +msgid "Usage: " +msgstr "Uso: " -#: ../app/views/report/_form_columns.html.haml:66 -msgid "System Default" -msgstr "Sistema predeterminado" +msgid "Usage: Unknown" +msgstr "Uso: desconocido" -#: ../app/views/report/_form_columns_performance.html.haml:6 -msgid "* Performance Interval" -msgstr "* Intervalo de rendimiento" +msgid "Use" +msgstr "Uso" -#: ../app/views/report/_form_columns_performance.html.haml:31 -msgid "Averages Based On" -msgstr "Promedios basados en:" +msgid "Use Alias" +msgstr "Usar Alias" -#: ../app/views/report/_form_columns_performance.html.haml:36 -msgid "Available Active Data" -msgstr "Dato activo disponible" +msgid "Use CTRL-ALT-Enter to toggle full screen" +msgstr "Usar CTRL + ALT + Enter para alternar a pantalla completa" -#: ../app/views/report/_form_columns_performance.html.haml:36 -msgid "Performance Interval" -msgstr "Intervalo de rendimiento" +msgid "Use CTRL-ALT-INS for CTRL-ALT-DEL" +msgstr "Usar CTRL + ALT + INS para CTRL + ALT + DEL" -#: ../app/views/report/_form_columns_trend.html.haml:6 -msgid "Trending for" -msgstr "Tendencia para" +msgid "Use Configuration Settings" +msgstr "Usar ajustes de configuración" -#: ../app/views/report/_form_columns_trend.html.haml:29 -msgid "Trend Target Limit" -msgstr "Límite de tendencia objetivo" +msgid "Use Custom Login & 'About' Screen Background Image" +msgstr "" -#: ../app/views/report/_form_columns_trend.html.haml:39 -msgid "Column" -msgstr "Columna" +msgid "Use Custom Login Text" +msgstr "Usar texto de inicio de sesión personalizado" -#: ../app/views/report/_form_columns_trend.html.haml:80 -msgid "Trend Target Percents" -msgstr "Porcentajes de tendencia objetivo" +msgid "Use Custom Logo Image" +msgstr "Usar imagen de logotipo personalizado" -#: ../app/views/report/_form_consolidate.html.haml:6 -msgid "Group Records by up to 3 Columns" -msgstr "Registros de grupo de hasta 3 columnas" +msgid "Use Existing" +msgstr "" -#: ../app/views/report/_form_consolidate.html.haml:15 -#: ../app/views/report/_widget_columns.html.haml:6 -msgid "Column 1" -msgstr "Columna 1" +msgid "Use HTTP Proxy" +msgstr "Usar proxy de HTTP" -#: ../app/views/report/_form_consolidate.html.haml:37 -#: ../app/views/report/_widget_columns.html.haml:28 -msgid "Column 2" -msgstr "Columna 2" +msgid "Use existing VMs from an existing provider" +msgstr "Usar máquinas virtuales existentes de un proveedor existente" -#: ../app/views/report/_form_consolidate.html.haml:59 -#: ../app/views/report/_widget_columns.html.haml:50 -msgid "Column 3" -msgstr "Columna 3" +msgid "Use existing VMs from an existing provider: " +msgstr "Usar máquinas virtuales existentes de un proveedor existente: " -#: ../app/views/report/_form_consolidate.html.haml:81 -#: ../app/views/report/_form_consolidate.html.haml:149 -msgid "Note:" -msgstr "Nota:" +msgid "Use the Choose file button to locate .png image file" +msgstr "Usar el botón de Elegir archivo para ubicar un archivo de imagen .png" -#: ../app/views/report/_form_consolidate.html.haml:84 -msgid "Consolidating records will not show detail records in the report." -msgstr "" -"La consolidación de los registros no mostrará registros detallados en el infor" -"me." +msgid "Use the Choose file button to locate CSV file" +msgstr "Usar el botón de Elegir archivo para ubicar un archivo CSV" -#: ../app/views/report/_form_consolidate.html.haml:91 -msgid "Specify Calculations of Numeric Values for Grouped Records" -msgstr "Especificar cálculos de valores numéricos para registros agrupados" +msgid "Use the Choose file button to locate a .png or .jpg image file" +msgstr "Usar el botón de Elegir archivo para ubicar un archivo de imagen .png o .jpg" -#: ../app/views/report/_form_consolidate.html.haml:102 -#: ../app/views/report/_form_formatting.html.haml:48 -#: ../app/views/report/_form_sort.html.haml:236 -#: ../app/views/report/_form_styling.html.haml:21 -msgid "Column Name" -msgstr "Nombre de la columna" +msgid "Use the Choose file button to locate an Import file" +msgstr "Usar el botón de Elegir archivo para ubicar un archivo importado" -#: ../app/views/report/_form_consolidate.html.haml:107 -#: ../app/views/report/_form_sort.html.haml:246 -msgid "Calculations" -msgstr "Cálculos" +msgid "Use the Choose file button to locate an Upload file" +msgstr "Usar el botón de Elegir archivo para ubicar un archivo cargado" -#: ../app/views/report/_form_consolidate.html.haml:152 -msgid "" -"Leave all options unchecked to show the original column value from the first r" -"ecord in the group." -msgstr "" -"Dejar todas las opciones sin marcar para mostrar el valor original de la colum" -"na desde el primer registro en el grupo." +msgid "Use the Choose file button to locate an import file" +msgstr "Usar el botón de Elegir archivo para ubicar un archivo importado" -#: ../app/views/report/_form_filter.html.haml:14 -msgid "Primary (Record) Filter - Filters the %{model} table records" -msgstr "Filtro primario (registro) - Filtra los registros de la tabla %{model}" +msgid "Used" +msgstr "Utilizado" -#: ../app/views/report/_form_filter.html.haml:22 -msgid "Edit the Record Filter" -msgstr "Modificar el filtro de registros" +msgid "Used + Uncommitted Space" +msgstr "Utilizado + Espacio no comprometido" -#: ../app/views/report/_form_filter.html.haml:33 -msgid "No Record Filter defined." -msgstr "No hay filtro de registro definido." +msgid "Used Index Nodes" +msgstr "Nodos indexados utilizados" -#: ../app/views/report/_form_filter.html.haml:55 -msgid "Secondary (Display) Filter - Filters the rows based on child table fields" -msgstr "" -"Filtro secundario (visualización): filtra las filas en función de los campos d" -"e tabla secundaria" +msgid "Used Size" +msgstr "Tamaño utilizado" -#: ../app/views/report/_form_filter.html.haml:73 -msgid "No Display Filter defined." -msgstr "No hay el filtro de visualización definido." +msgid "Used Space" +msgstr "Espacio utilizado" -#: ../app/views/report/_form_filter_chargeback.html.haml:4 -msgid "Chargeback Filters" -msgstr "Filtros de Chargeback" +msgid "Used Space on Volume" +msgstr "Espacio utilizado en volumen" -#: ../app/views/report/_form_filter_chargeback.html.haml:14 -#: ../app/views/report/_form_filter_chargeback.html.haml:249 -msgid "Show Costs by" -msgstr "Mostrar costos por" +msgid "Used for SSH connection to all %{hosts} in this provider." +msgstr "Utilizado para conexión SSH para todos los %{hosts} en este proveedor." -#: ../app/views/report/_form_filter_chargeback.html.haml:23 -#: ../app/views/report/_form_filter_chargeback.html.haml:27 -#: ../app/views/report/_form_filter_chargeback.html.haml:44 -#: ../app/views/report/_form_filter_chargeback.html.haml:182 -msgid "Owner" -msgstr "Propietario" +msgid "Used for access to IPMI." +msgstr "Usado para acceder a IPMI" -#: ../app/views/report/_form_filter_chargeback.html.haml:49 -msgid "Choose an Owner" -msgstr "Elija un propietario" +msgid "Used for access to Web Services." +msgstr "Usado para acceder a los Servicios Web" -#: ../app/views/report/_form_filter_chargeback.html.haml:71 -msgid "Choose a tenant" -msgstr "Elija un inquilino" +msgid "Used to authenticate as a service account against your provider." +msgstr "Utilizado para autenticar como una cuenta de servicio contra su proveedor." -#: ../app/views/report/_form_filter_chargeback.html.haml:115 -msgid "Choose a Value" -msgstr "Elija un valor" +msgid "Used to authenticate with OpenStack AMQP Messaging Bus for event handling. Configure AMQP if eventing is not enabled on Ceilometer." +msgstr "Utilizado para autenticar con OpenStack AMQP Messaging Bus para manipulación de eventos. Configurar AMQP si el creador de eventos no está habilitado en el ceilómetro." -#: ../app/views/report/_form_filter_chargeback.html.haml:137 -msgid "All Providers" -msgstr "" +msgid "Used to gather Capacity & Utilization metrics." +msgstr "Usado para reunir las métricas de Capacidad y Utilización." -#: ../app/views/report/_form_filter_chargeback.html.haml:137 -msgid "Choose Provider" -msgstr "" +msgid "User" +msgid_plural "Users" +msgstr[0] "Usuario" +msgstr[1] "Usuarios" -#: ../app/views/report/_form_filter_chargeback.html.haml:162 -msgid "Choose %{entity}" -msgstr "Elija %{entity}" +msgid "User '%{user_id}' is not authorized to access '%{model}' record id '%{record_id}'" +msgstr "El usuario '%{user_id}' no está autorizado para acceder al registro '%{model}' id de registro '%{record_id}'" -#: ../app/views/report/_form_filter_chargeback.html.haml:219 -msgid "Group by Tag" -msgstr "Grupo por etiqueta" +msgid "User '%{username}' is not authorized to access '%{controller_name}'" +msgstr "El usuario '%{username}' no está autorizado para acceder a '%{controller_name}'" -#: ../app/views/report/_form_filter_chargeback.html.haml:240 -msgid "Chargeback Interval" -msgstr "Intervalo de Chargeback" +msgid "User Accounts" +msgstr "Cuentas de usuario" -#: ../app/views/report/_form_filter_chargeback.html.haml:269 -msgid "%{chargeback_interval} Ending with" -msgstr "%{chargeback_interval} termina por" +msgid "User Data" +msgstr "Datos de usuario" -#: ../app/views/report/_form_filter_chargeback.html.haml:276 -msgid "%{number} Days Ago" -msgstr "%{number} días atrás" +msgid "User Group Sequence was saved" +msgstr "La orden para el grupo de usuarios ha sido guardada" -#: ../app/views/report/_form_filter_chargeback.html.haml:276 -msgid "1 Week Ago" -msgstr "Hace 1 semana" +msgid "User Group Sequencing for LDAP Look Up:" +msgstr "Secuenciación de grupos de usuario para búsqueda de LDAP:" -#: ../app/views/report/_form_filter_chargeback.html.haml:276 -msgid "Today (partial)" -msgstr "Hoy (parcial)" +msgid "User Information" +msgstr "Información de usuario" -#: ../app/views/report/_form_filter_chargeback.html.haml:278 -msgid "%d Weeks Ago" -msgstr "Hace %d semanas" +msgid "User Interface Configuration" +msgstr "Configuración de interfaz de usuario" -#: ../app/views/report/_form_filter_chargeback.html.haml:278 -msgid "This Week (partial)" -msgstr "Esta semana (parcial)" +msgid "User Interface settings saved for User %{name}" +msgstr "Configuración de interfaz de usuario guardada para el usuario %{name}" -#: ../app/views/report/_form_filter_chargeback.html.haml:280 -msgid "%d Months Ago" -msgstr "Hace %d meses" +msgid "User Interface settings saved for this session" +msgstr "Ajustes de la interfaz de usuario guardados para su sesión" -#: ../app/views/report/_form_filter_chargeback.html.haml:280 -msgid "This Month (partial)" -msgstr "Este mes (parcial)" +msgid "User Name" +msgstr "Nombre de usuario" -#: ../app/views/report/_form_filter_chargeback.html.haml:290 -#: ../app/views/report/_form_filter_performance.html.haml:32 -msgid "going back" -msgstr "regresando" +msgid "User Password must be entered to perform LDAP Group Look Up" +msgstr "Se debe ingresar la contraseña del usuario para realizar la búsqueda del grupo LDAP" -#: ../app/views/report/_form_filter_chargeback.html.haml:294 -msgid "%{number} Day" -msgid_plural "%{number} Days" -msgstr[0] "%{number} día" -msgstr[1] "%{number} días" +msgid "User Principal Name" +msgstr "Nobre Principal de Usuario" -#: ../app/views/report/_form_filter_chargeback.html.haml:294 -#: ../app/views/report/_form_filter_chargeback.html.haml:296 -msgid "%{number} Week" -msgid_plural "%{number} Weeks" -msgstr[0] "%{number} semana" -msgstr[1] "%{number} semanas" +msgid "User Role" +msgstr "Rol de usuario" -#: ../app/views/report/_form_filter_chargeback.html.haml:298 -msgid "%{number} Month" -msgid_plural "%{number} Months" -msgstr[0] "%{number} mes" -msgstr[1] "%{number} meses" +msgid "User Roles" +msgstr "Roles de usuario" -#: ../app/views/report/_form_filter_performance.html.haml:4 -msgid "Performance Timeframe" -msgstr "Período de rendimiento" +msgid "User Suffix" +msgstr "Sufijo de usuario" -#: ../app/views/report/_form_filter_performance.html.haml:14 -msgid "Show hourly data from" -msgstr "Mostrar datos por hora de" +msgid "User Suffix:" +msgstr "Sufijo de usuario:" -#: ../app/views/report/_form_filter_performance.html.haml:17 -msgid "Show daily data from" -msgstr "Mostrar datos diarios de" +msgid "User Type" +msgstr "Tipo/Perfil de usuario" -#: ../app/views/report/_form_filter_performance.html.haml:76 -msgid "Note: Only Time Profiles with 'Roll Up Performance' set are shown." -msgstr "" -"Nota: Se muestran únicamente los perfiles de tiempo con 'Acumular rendimiento'" -" establecido." +msgid "User is not authorized to view %{model} \"%{name}\"" +msgstr "El usuario no está autorizado para visualizar %{model} \"%{name}\"" -#: ../app/views/report/_form_formatting.html.haml:6 -msgid "PDF Output" -msgstr "Salida de PDF" +msgid "User must be entered to perform LDAP Group Look Up" +msgstr "Se debe ingresar el nombre de usuario para realizar la búsqueda del grupo LDAP" -#: ../app/views/report/_form_formatting.html.haml:15 -msgid "Page Size" -msgstr "Tamaño de la página" +msgid "User no longer exists" +msgstr "El usuario ya no existe" -#: ../app/views/report/_form_formatting.html.haml:37 -msgid "Specify Column Headers and Formats" -msgstr "Especificar encabezados y formatos de columnas" +msgid "User to Look Up" +msgstr "Usuario para buscar" -#: ../app/views/report/_form_formatting.html.haml:53 -#: ../app/views/report/_form_sort.html.haml:241 -msgid "Header" -msgstr "Encabezado" +msgid "User will input the value" +msgstr "El usuario introducirá el valor" -#: ../app/views/report/_form_formatting.html.haml:88 -#: ../app/views/report/_form_sort.html.haml:119 -msgid "Reset to Default" -msgstr "Restablecer a los valores predeterminados" +msgid "Username" +msgstr "Nombre de usuario" -#: ../app/views/report/_form_preview.html.haml:8 -msgid "Timeline Preview (up to 50 rows)" -msgstr "Vista previa de la cronología (hasta 50 filas)" +msgid "Username (optional):" +msgstr "Nombre de usuario (optional):" -#: ../app/views/report/_form_preview.html.haml:24 -msgid "Chart Preview (up to 50 rows)" -msgstr "Vista previa de diagrama (hasta 50 filas)" +msgid "Username and matching password fields are needed to run a database backup" +msgstr "Se necesitan los campos nombre de usuario y confirmación de contraseña para ejecutar una copia de seguridad de la base de datos" -#: ../app/views/report/_form_preview.html.haml:42 -msgid "Report Preview (up to 50 rows)" -msgstr "Vista previa de informe (hasta 50 filas)" +msgid "Username is required" +msgstr "El nombre de usuario es obligatorio" -#: ../app/views/report/_form_preview.html.haml:51 -msgid "Generate Report Preview" -msgstr "Generar vista previa del informe" +msgid "Username must be entered if Password is entered" +msgstr "El nombre de usuario debe ser ingresado si ha introducido la contraseña" -#: ../app/views/report/_form_preview.html.haml:53 -msgid "Generate Report preview" -msgstr "Generar vista previa del informe" +msgid "Username must be entered to perform LDAP Group Look Up" +msgstr "Se debe ingresar el nombre de usuario para realizar la búsqueda del grupo LDAP" -#: ../app/views/report/_form_sort.html.haml:6 -msgid "Sort Criteria" -msgstr "Criterios de clasificación" +msgid "Username:" +msgstr "Nombre de usuario:" -#: ../app/views/report/_form_sort.html.haml:15 -msgid "Sort the Report By" -msgstr "Clasificar el informe según" +msgid "Users" +msgstr "Usuarios" -#: ../app/views/report/_form_sort.html.haml:35 -#: ../app/views/report/_form_sort.html.haml:183 -msgid "Original Value" -msgstr "Valor original" +msgid "Users (%{users_count})" +msgstr "Usuarios (%{users_count})" -#: ../app/views/report/_form_sort.html.haml:73 -msgid "Show Sort Breaks" -msgstr "Mostrar saltos de orden" +msgid "Users are only allowed to delete their own requests" +msgstr "A los usuarios no se les permite eliminar sus propias peticiones" -#: ../app/views/report/_form_sort.html.haml:96 -msgid "Hide Detail Rows" -msgstr "Ocultar filas de detalles" +msgid "Users in this Group" +msgstr "Usuarios en este grupo" -#: ../app/views/report/_form_sort.html.haml:114 -msgid "Format on Summary Row" -msgstr "Formato en la fila de resumen" +msgid "Utilization" +msgstr "Utilización" -#: ../app/views/report/_form_sort.html.haml:138 -msgid "Label on Summary Row" -msgstr "Etiqueta en la fila de resumen" +msgid "Utilization Summary" +msgstr "Resumen de utilización" -#: ../app/views/report/_form_sort.html.haml:163 -msgid "Within Above Field, Sort By" -msgstr "Dentro de campo anterior, Ordenar por" +msgid "VC Custom Attributes" +msgstr "Atributos personalizados VC" -#: ../app/views/report/_form_sort.html.haml:200 -msgid "Number of Rows to Show" -msgstr "Número de filas para mostrar" +msgid "VM" +msgstr "VM" -#: ../app/views/report/_form_sort.html.haml:206 -msgid "First %{number}" -msgstr "Primero %{number}" +msgid "VM \"%{name}\"" +msgstr "Máquina virtual \"%{name}\"" -#: ../app/views/report/_form_sort.html.haml:225 -msgid "Specify Calculations for Summary Rows" -msgstr "Especificar cálculos para filas de resumen" +msgid "VM %{name} Remote Console" +msgstr "Consola remota de máquina virtual %{name}" -#: ../app/views/report/_form_styling.html.haml:10 -msgid "Specify Column Styles" -msgstr "Especificar estilos de columnas" +msgid "VM Analysis" +msgstr "Análisis de máquina virtual" -#: ../app/views/report/_form_styling.html.haml:26 -msgid "Style" -msgstr "Estilo" +msgid "VM Analysis Collectors" +msgstr "Recolectores de análisis de máquina virtual" -#: ../app/views/report/_form_styling.html.haml:31 -msgid "If" -msgstr "Si" +msgid "VM Compliance Check" +msgstr "Control de cumplimiento de máquina virtual" -#: ../app/views/report/_form_styling.html.haml:57 -msgid "Normal" -msgstr "Normal" +msgid "VM Configuration" +msgstr "Configuración de máquina virtual" -#: ../app/views/report/_form_styling.html.haml:137 -msgid "* Style \"If\" conditions are evaluated top to bottom for each column" +msgid "VM Console" msgstr "" -"* El estilo de las condiciones \"If\" son evaluadas de arriba a abajo para cada " -"columna" -#: ../app/views/report/_form_tl_sample.html.haml:7 -msgid "Sample Timeline" -msgstr "Línea de tiempo de muestra" +msgid "VM Counts per %{model}" +msgstr "Conteos de máquinas virtuales por %{model}" -#: ../app/views/report/_form_tl_settings.html.haml:6 -msgid "Timeline Settings" -msgstr "Parámetros de cronología" +msgid "VM Hardware" +msgstr "Hardware de máquina virtual" -#: ../app/views/report/_form_tl_settings.html.haml:19 -msgid "Base Timeline on" -msgstr "Línea de tiempo de base en" +msgid "VM Limits" +msgstr "Límites de máquina virtual" -#: ../app/views/report/_form_tl_settings.html.haml:47 -msgid "Event to position at" -msgstr "Evento para colocar en" +msgid "VM Memory Files" +msgstr "Achivos de memoria de máquina virtual" -#: ../app/views/report/_menu_form1.html.haml:45 -msgid "Move selected folder top" -msgstr "Mover carpeta seleccionada hacia la parte superior" +msgid "VM Number" +msgstr "Número de máquina virtual" -#: ../app/views/report/_menu_form1.html.haml:119 -msgid "Manage Accordions & Folders" -msgstr "Gestionar acordeones y carpetas" +msgid "VM Options" +msgstr "Opciones de máquina virtual" -#: ../app/views/report/_menu_form1.html.haml:130 -msgid "Please select a node from the tree to edit." -msgstr "Seleccione un nodo del árbol para Modificar." +msgid "VM Power Functions" +msgstr "Funciones de encendido/apagado de máquina virtual" -#: ../app/views/report/_menu_form2.html.haml:8 -msgid "Manage Reports" -msgstr "Gestionar informes" +msgid "VM Provisioned Disk Files" +msgstr "Archivos de discos aprovisionados de máquina virtual" -#: ../app/views/report/_menu_form2.html.haml:19 -msgid "Available Reports:" -msgstr "Informes disponibles:" +msgid "VM Reconfigure Request was cancelled by the user" +msgstr "La petición de reconfiguración de la VM fue cancelada por el usuario" -#: ../app/views/report/_menu_form2.html.haml:26 -msgid "Selected Reports:" -msgstr "Informes seleccionados:" +msgid "VM Reconfigure Request was saved" +msgstr "La petición de reconfiguración de la VM fue almacenada" -#: ../app/views/report/_menu_form2.html.haml:53 -msgid "Move selected reports right" -msgstr "Mover reportes seleccionados a la derecha" +msgid "VM Remote Access" +msgstr "" -#: ../app/views/report/_menu_form2.html.haml:69 -msgid "Move selected reports left" -msgstr "Mover reportes seleccionados a la izquierda" +msgid "VM Reservations" +msgstr "Reservas de máquina virtual" -#: ../app/views/report/_menu_form2.html.haml:85 -msgid "Move selected reports to top" -msgstr "Mover reportes seleccionados hacia la parte superior" +msgid "VM Selection" +msgstr "Selección de máquina virtual" -#: ../app/views/report/_menu_form2.html.haml:101 -msgid "Move selected reports up" -msgstr "Mover reportes seleccionados hacia arriba" +msgid "VM Snapshot Files" +msgstr "Archivos de instantáneas de máquina virtual" -#: ../app/views/report/_menu_form2.html.haml:117 -msgid "Move selected reports down" -msgstr "Mover reportes seleccionados hacia abajo" +msgid "VM Templates" +msgstr "Plantillas de máquina virtual" -#: ../app/views/report/_menu_form2.html.haml:133 -msgid "Move selected reports to bottom" -msgstr "Mover reportes seleccionados hacia la parte inferior" +msgid "VM VMRC Console error: %{error}" +msgstr "Error de consola VMRC de máquina virtual: %{error}" -#: ../app/views/report/_menu_form2.html.haml:163 -msgid "Commit report management changes" -msgstr "Confirmar los cambios de gestión de informes" +msgid "VM Visibility" +msgstr "Visibilidad de MV" -#: ../app/views/report/_menu_form2.html.haml:174 -msgid "Discard report management changes" -msgstr "Descartar los cambios de gestión de informes" +msgid "VM and Instance Conditions" +msgstr "Condiciones de máquina virtual e instancia" -#: ../app/views/report/_menu_form2.html.haml:193 -msgid "* Report is not owned by your group so it cannot be removed" -msgstr "* El informe no pertenece a su grupo por lo que no puede ser eliminado" +msgid "VM data will be collected for VMs under selected %{hosts} only. Data is collected for a %{cluster} and all of its %{hosts} when at least one %{host} is selected." +msgstr "Se recopilarán datos de máquina virtual para las máquinas virtuales en los %{hosts} seleccionados únicamente. Los datos se recopilan para un %{cluster} y todos sus %{hosts} cuando se selecciona al menos un %{host}." -#: ../app/views/report/_report_info.html.haml:20 -#: ../app/views/report/_report_list.html.haml:117 -msgid "Primary (Record) Filter" -msgstr "Filtro primario (registro)" +msgid "VM has too many parents." +msgstr "" -#: ../app/views/report/_report_info.html.haml:31 -#: ../app/views/report/_report_list.html.haml:122 -msgid "Secondary (Display) Filter" -msgstr "Filtro secundario (visualización)" +msgid "VM is already retired" +msgstr "La máquina virtual ya se ha retirado" -#: ../app/views/report/_report_info.html.haml:113 -msgid "Report is not Scheduled." -msgstr "El informe no está programado." +msgid "VM successfully removed from service \"%{name}\"" +msgstr "La máquina virtual se retiró con éxito del servicio \"%{name}\"" + +msgid "VM/Instance Name" +msgstr "Nombre de máquina virtual/instancia" -#: ../app/views/report/_report_info.html.haml:169 -msgid "View this Schedule" -msgstr "Ver esta programación" +msgid "VM: %{name} (Click to view)" +msgstr "Máquina virtual: %{name} (haga clic para ver)" -#: ../app/views/report/_report_info.html.haml:232 -msgid "Report doesn't belong to Widgets." -msgstr "El informe no pertenece a los asistentes." +msgid "VMDB" +msgstr "VMDB" -#: ../app/views/report/_report_info.html.haml:261 -msgid "Click to view selected widget" -msgstr "Haga clic para ver el asistente seleccionado" +msgid "VMDB \"%{name}\" Table Utilization" +msgstr "Utilización de tabla \"%{name}\" de VMDB" -#: ../app/views/report/_report_list.html.haml:198 -msgid "Report Info" -msgstr "Información de informe" +msgid "VMDB Client Connections" +msgstr "Conexiones de cliente de VMDB" -#: ../app/views/report/_report_list.html.haml:214 -#: ../app/views/report/_reports.html.haml:2 -msgid "Choose a Report to view from the menus on the left." -msgstr "Elija un informe para ver de los menús a la izquierda." +msgid "VMDB Settings" +msgstr "Configuración de VMDB" -#: ../app/views/report/_report_saved_reports.html.haml:6 -#: ../app/views/report/_role_list.html.haml:25 -msgid "No Saved Reports available." -msgstr "No hay informes guardados disponibles." +msgid "VMDB Summary" +msgstr "Resumen de VMDB" -#: ../app/views/report/_role_list.html.haml:45 -msgid "Choose a Role to edit from the left." -msgstr "Elija un rol para modificar de los menús a la izquierda." +msgid "VMDB Utilization" +msgstr "Utilización de VMDB" -#: ../app/views/report/_savedreports_list.html.haml:22 -msgid "* No Reports available." -msgstr "* No hay informes disponibles" +msgid "VMM Information" +msgstr "Información de VMM" -#: ../app/views/report/_savedreports_list.html.haml:29 -#: ../app/views/report/show_saved.html.haml:3 -msgid "Choose a Report from the menus on the left." -msgstr "Elija un informe de los menús a la izquierda." +msgid "VMs" +msgstr "VM" -#: ../app/views/report/_schedule_email_options.html.haml:7 -msgid "E-mail Options" -msgstr "Opciones de correos electrónicos" +msgid "VMs & Instances" +msgstr "VM e instancias" -#: ../app/views/report/_schedule_email_options.html.haml:16 -msgid "Send if Report is Empty" -msgstr "Enviar si el informe está vacío" +msgid "VMs & Templates" +msgstr "Máquinas virtuales y plantillas" -#: ../app/views/report/_schedule_email_options.html.haml:30 -msgid "Attachments" -msgstr "Adjuntos" +msgid "VMs And Templates" +msgstr "Máquinas virtuales y plantillas " -#: ../app/views/report/_schedule_email_options.html.haml:50 -msgid "CSV" -msgstr "CSV" +msgid "VMsafe" +msgstr "VMsafe" -#: ../app/views/report/_schedule_email_options.html.haml:60 -msgid "PDF" -msgstr "PDF" +msgid "VMware Console Support" +msgstr "Soporte de consola de VMware" -#: ../app/views/report/_schedule_form.html.haml:68 -msgid "E-mail after Running" -msgstr "Correo electrónico después de la ejecución" +msgid "VMware MKS Plugin" +msgstr "Complemento VMware MKS" -#: ../app/views/report/_schedule_form_filter.html.haml:6 -msgid "Report Selection" -msgstr "Selección de informe" +msgid "VMware MKS Plugin Version" +msgstr "Complemento VMware MKS versión" -#: ../app/views/report/_schedule_form_timer.html.haml:6 -#: ../app/views/report/_widget_show.html.haml:279 -msgid "Timer" -msgstr "Temporizador" +msgid "VMware Server" +msgstr "Servidor VMware" -#: ../app/views/report/_schedule_form_timer.html.haml:20 -msgid "Monthly" -msgstr "Mensual" +msgid "VMware VMRC Plugin" +msgstr "Complemento VMware VMRC" -#: ../app/views/report/_schedule_form_timer.html.haml:20 -msgid "Once" -msgstr "Una vez" +msgid "VMware vCenter" +msgstr "VMware vCenter" -#: ../app/views/report/_schedule_form_timer.html.haml:20 -msgid "Weekly" -msgstr "Semanalmente" +msgid "VNC" +msgstr "VNC" -#: ../app/views/report/_schedule_form_timer.html.haml:151 -msgid "h" -msgstr "h" +msgid "VNC consoles are unsupported on VMware ESXi 6.5 and later." +msgstr "" -#: ../app/views/report/_schedule_form_timer.html.haml:164 -msgid "m" -msgstr "m" +msgid "VNF Templates" +msgstr "Plantillas de VNF" -#: ../app/views/report/_schedule_list.html.haml:12 -msgid "No Schedules available." -msgstr "No hay programaciones disponibles." +msgid "Valid" +msgstr "Válido" -#: ../app/views/report/_schedule_list.html.haml:18 -msgid "Choose a Schedule to view from the menus on the left." -msgstr "Elija un programa para ver de los menús a la izquierda." +msgid "Validate" +msgstr "Validar" -#: ../app/views/report/_show_schedule.html.haml:29 -msgid "E-Mail after Running" -msgstr "Correo electrónico después de la ejecución" +msgid "Validate the Amazon Settings" +msgstr "Validar la configuración de Amazon" -#: ../app/views/report/_show_schedule.html.haml:44 -msgid "From E-mail" -msgstr "Del correo electrónico" +msgid "Validate the LDAP Settings by binding with the %{host}" +msgstr "Validar la configuración de LDAP mediante la vinculación con el %{host}" -#: ../app/views/report/_show_schedule.html.haml:58 -msgid "To E-mail" -msgstr "Al correo electrónico" +msgid "Validate the credentials" +msgstr "Validar los credenciales" -#: ../app/views/report/_show_schedule.html.haml:72 -#: ../app/views/report/_widget_show.html.haml:126 -msgid "Report Filter" -msgstr "Filtro de informe" +msgid "Validate the credentials by logging into the Server" +msgstr "Validar los credenciales para el registro en el Servidor" -#: ../app/views/report/_widget_columns.html.haml:72 -msgid "Column 4" -msgstr "Columna 4" +msgid "Validate the credentials by logging into the selected %{host}" +msgstr "Validar las credenciales iniciando sesión en el %{host} seleccionado" -#: ../app/views/report/_widget_form.html.haml:76 -#: ../app/views/report/_widget_show.html.haml:338 -msgid "* Fields are read only for default Widgets" -msgstr "* Los campos son de sólo lectura para los asistentes predeterminados" +msgid "Validate the credentials by logging into the selected %{title_for_host}" +msgstr "Validar las credenciales iniciando sesión en el %{title_for_host} seleccionado" -#: ../app/views/report/_widget_form_chart.html.haml:4 -#: ../app/views/report/_widget_show.html.haml:112 -msgid "Chart Report" -msgstr "Informe del diagrama" +msgid "Validation Required" +msgstr "Validación requerida" -#: ../app/views/report/_widget_form_menu.html.haml:4 -#: ../app/views/report/_widget_show.html.haml:116 -msgid "Menu Shortcuts" -msgstr "Accesos directos del menú" +msgid "Validation successful" +msgstr "Validación exitosa" -#: ../app/views/report/_widget_form_menu.html.haml:7 -msgid "Add a Shortcut" -msgstr "" +msgid "Validator Rule" +msgstr "Regla del validador " -#: ../app/views/report/_widget_form_menu.html.haml:23 -msgid "Drag this Shortcut to a new location" -msgstr "Arrastrar este atajo a una nueva ubicación" +msgid "Validator Type" +msgstr "Tipo de validador" -#: ../app/views/report/_widget_form_menu.html.haml:33 -msgid "Remove this Shortcut" -msgstr "Eliminar este atajo" +msgid "Value" +msgstr "Valor" -#: ../app/views/report/_widget_form_menu.html.haml:42 -msgid "Reset this Shortcut's text" -msgstr "Restablecer el texto de este atajo" +msgid "Value Threshold must be an integer" +msgstr "El umbral de valor debe ser un valor entero" -#: ../app/views/report/_widget_form_report.html.haml:4 -#: ../app/views/report/_widget_show.html.haml:110 -msgid "Report Options" -msgstr "Opciones de informe" +msgid "Value Type" +msgstr "Tipo de valor" -#: ../app/views/report/_widget_form_report.html.haml:59 -msgid "No Widget compatible Reports found" -msgstr "No se encontraron informes de asistentes compatibles" +msgid "Value and Description fields can't be blank" +msgstr "Los campos de valor y descripción no pueden estar en blanco" -#: ../app/views/report/_widget_form_report.html.haml:69 -#: ../app/views/report/_widget_form_rss.html.haml:86 -#: ../app/views/report/_widget_show.html.haml:268 -msgid "Row Count" -msgstr "Conteo de filas" +msgid "Value missing for %{field}" +msgstr "Valor faltante para %{field}" -#: ../app/views/report/_widget_form_rss.html.haml:4 -#: ../app/views/report/_widget_show.html.haml:114 -msgid "RSS Feed Options" -msgstr "Opciones de fuente RSS" +msgid "Value to Set" +msgstr "Valor para configurar" -#: ../app/views/report/_widget_form_rss.html.haml:20 -#: ../app/views/report/_widget_show.html.haml:164 -msgid "External" -msgstr "Externo" +msgid "Value:" +msgstr "Valor:" -#: ../app/views/report/_widget_form_rss.html.haml:20 -#: ../app/views/report/_widget_show.html.haml:164 -msgid "Internal" -msgstr "Interno" +msgid "Values" +msgstr "Valores" -#: ../app/views/report/_widget_form_rss.html.haml:37 -#: ../app/views/report/_widget_show.html.haml:183 -msgid "Internal RSS Feed" -msgstr "Fuente de RSS interna" +msgid "Variable" +msgstr "Variable" -#: ../app/views/report/_widget_form_rss.html.haml:59 -#: ../app/views/report/_widget_show.html.haml:204 -msgid "External RSS Feed/URL" -msgstr "Fuente RSS/URL externa" +msgid "Variable Object ID" +msgstr "ID de objeto variable" -#: ../app/views/report/_widget_form_rss.html.haml:64 -msgid "Enter URL Manually" -msgstr "Ingresar URL manualmente" +msgid "Variables" +msgstr "Variables" -#: ../app/views/report/_widget_list.html.haml:4 -#: ../app/views/report/_widget_list.html.haml:11 -msgid "No Widgets available." -msgstr "No hay asistentes disponibles." +msgid "Variables & Default Values" +msgstr "" -#: ../app/views/report/_widget_show.html.haml:71 -msgid "Current Status" -msgstr "Estado actual" +msgid "Vendor" +msgstr "Proveedor" -#: ../app/views/report/_widget_show.html.haml:139 -msgid "Report no longer exists" -msgstr "El informe ya no existe" +msgid "Verbosity" +msgstr "" -#: ../app/views/report/_widget_show.html.haml:160 -msgid "Chart no longer exists" -msgstr "El diagrama ya no existe." +msgid "Verify" +msgstr "Verificar" -#: ../app/views/report/_widget_show.html.haml:196 -msgid "RSS Feed no longer exists" -msgstr "La fuente RSS ya no existe" +msgid "Verify %{password_label}" +msgstr "Verificar %{password_label}" -#: ../app/views/report/_widget_show.html.haml:218 -msgid "Shortcuts" -msgstr "Atajos" +msgid "Verify Password" +msgstr "Verificar contraseña" -#: ../app/views/report/_widget_show.html.haml:256 -msgid "Column %{index}" -msgstr "Columna %{index}" +msgid "Verify Peer Certificate" +msgstr "Verificar certificado del mismo nivel" -#: ../app/views/report/_widget_show.html.haml:314 -msgid "No timer is attached to this Widget, its contents will not be updated." +msgid "Verify TLS Certificates" msgstr "" -"No hay un temporizador conectado a este asistente; sus contenidos no se actual" -"izarán." -#: ../app/views/report/_widget_show.html.haml:316 -msgid "Edit this Widget to configure a timer." -msgstr "Modificar este asistente para configurar un temporizador" +msgid "Version" +msgstr "Versión" -#: ../app/views/security_group/_main.html.haml:20 -msgid "Direction" -msgstr "Dirección" +msgid "Version / Build" +msgstr "Versión/Compilación" -#: ../app/views/security_group/_main.html.haml:20 -msgid "End Port" -msgstr "Puerto final" +msgid "View %{name} Folder" +msgstr "Ver carpeta %{name}" -#: ../app/views/security_group/_main.html.haml:20 -msgid "Host Protocol" -msgstr "Protocolo del host" +msgid "View '%{name}' Cluster" +msgstr "Ver clúster '%{name}'" -#: ../app/views/security_group/_main.html.haml:20 -msgid "Network Protocol" -msgstr "Protocolo de red" +msgid "View '%{name}' Folder" +msgstr "Ver carpeta '%{name}'" -#: ../app/views/service/_svcs_show.html.haml:18 -msgid "Totals for Service VMs" -msgstr "Totales para máquinas virtuales de servicio" +msgid "View Analysis Profiles" +msgstr "Ver perfiles de análisis" -#: ../app/views/shared/_file_chooser.html.haml:9 -msgid "Choose file" -msgstr "Eligir un archivo" +msgid "View Compute Rates" +msgstr "Ver las tarifas de cómputo" -#: ../app/views/shared/_topology_header.html.haml:9 -#: ../app/views/shared/_topology_header_toolbar.html.haml:7 -msgid "Display Names" -msgstr "Mostrar nombres" +msgid "View Condition" +msgstr "Ver condición" -#: ../app/views/shared/buttons/_ab_form.html.haml:7 -msgid "Paste object details for use in a Button." -msgstr "Pegar detalles de objeto para usar en un botón." +msgid "View Examples (read only)' Folder" +msgstr "Ver carpeta de ejemplos (solo lectura)" -#: ../app/views/shared/buttons/_ab_form.html.haml:18 -msgid "" -"Paste is not available, no object information has been copied from the Simulat" -"ion screen" +msgid "View Graph" msgstr "" -"No se puede pegar; no se ha copiado información de objeto desde la pantalla Si" -"mulación" -#: ../app/views/shared/buttons/_ab_form.html.haml:36 -#: ../app/views/shared/buttons/_ab_list.html.haml:134 -#: ../app/views/shared/buttons/_ab_show.html.haml:15 -msgid "Button Text" -msgstr "Texto del botón" +msgid "View Groups" +msgstr "Ver grupos" -#: ../app/views/shared/buttons/_ab_form.html.haml:55 -#: ../app/views/shared/buttons/_ab_list.html.haml:146 -#: ../app/views/shared/buttons/_ab_show.html.haml:27 -#: ../app/views/shared/buttons/_group_form.html.haml:36 -msgid "Display on Button" -msgstr "Mostrar en botón" +msgid "View Instances" +msgstr "Ver instancias" + +msgid "View LDAP Regions" +msgstr "Ver regiones de LDAP" -#: ../app/views/shared/buttons/_ab_form.html.haml:69 -#: ../app/views/shared/buttons/_ab_list.html.haml:154 -#: ../app/views/shared/buttons/_ab_show.html.haml:35 -msgid "Button Hover Text" -msgstr "Activación de texto del botón" +msgid "View Parent Tenant" +msgstr "Ver inquilino principal" -#: ../app/views/shared/buttons/_ab_form.html.haml:85 -msgid "Button Image" -msgstr "Imagen del botón" +msgid "View Policy Simulation for the selected Templates" +msgstr "Ver simulación de política para las plantillas seleccionadas" -#: ../app/views/shared/buttons/_ab_form.html.haml:90 -#: ../app/views/shared/buttons/_group_form.html.haml:73 -msgid "No Image" -msgstr "No hay imagen" +msgid "View Policy Simulation for the selected items" +msgstr "Ver simulación de política para los ítemes seleccionados" -#: ../app/views/shared/buttons/_ab_form.html.haml:105 -msgid "" -msgstr "" +msgid "View Policy Simulation for this Image" +msgstr "Ver simulación de política para esta imagen" -#: ../app/views/shared/buttons/_ab_form.html.haml:116 -#: ../app/views/shared/buttons/_ab_show.html.haml:74 -msgid "Open URL" -msgstr "" +msgid "View Policy Simulation for this Instance" +msgstr "Ver simulación de política para esta instancia" -#: ../app/views/shared/buttons/_ab_list.html.haml:32 -msgid "No Items found." -msgstr "No se encontraron ítemes." +msgid "View Policy Simulation for this Template" +msgstr "Ver simulación de política para esta plantilla" -#: ../app/views/shared/buttons/_ab_list.html.haml:56 -#: ../app/views/shared/buttons/_ab_list.html.haml:198 -msgid "Hover Text" -msgstr "Activación de texto" +msgid "View Policy Simulation for this VM" +msgstr "Ver simulación de política para esta máquina virtual" -#: ../app/views/shared/buttons/_ab_list.html.haml:167 -#: ../app/views/shared/buttons/_ab_show.html.haml:48 -msgid "Image" -msgstr "Imagen" +msgid "View Roles" +msgstr "Ver roles" -#: ../app/views/shared/buttons/_ab_list.html.haml:180 -msgid "No Buttons found." -msgstr "No se encontraron botones." +msgid "View SOP" +msgstr "" -#: ../app/views/shared/buttons/_ab_show.html.haml:98 -msgid "System/Process/" -msgstr "Sistema/Process/" +msgid "View Schedules" +msgstr "Ver programaciones" -#: ../app/views/shared/buttons/_ab_show.html.haml:181 -msgid "No Attribute/Value Pairs found." -msgstr "No se encontraron pares de atributo/valor." +msgid "View Storage Rates" +msgstr "Ver las tarifas de almacenamiento" -#: ../app/views/shared/buttons/_ab_show.html.haml:214 -msgid "By Role" -msgstr "Por Rol" +msgid "View Tenants" +msgstr "Ver inquilinos" -#: ../app/views/shared/buttons/_ab_show.html.haml:214 -msgid "To All" -msgstr "A todos" +msgid "View This Alert" +msgstr "Ver esta alerta" -#: ../app/views/shared/buttons/_column_lists.html.haml:39 -msgid "Move selected fields right" -msgstr "Mover campos seleccionados a la derecha" +msgid "View Users" +msgstr "Ver usuarios" -#: ../app/views/shared/buttons/_column_lists.html.haml:55 -msgid "Move selected fields left" -msgstr "Mover campos seleccionados a la izquierda" +msgid "View Zones" +msgstr "Ver zonas" -#: ../app/views/shared/buttons/_column_lists.html.haml:83 -msgid "Move selected fields to top" -msgstr "Mover campos seleccionados hacia la parte superior" +msgid "View the %{title} Guide" +msgstr "Ver la guía %{title}" -#: ../app/views/shared/buttons/_column_lists.html.haml:131 -msgid "Move selected fields to bottom" -msgstr "Mover campos seleccionados hacia la parte inferior" +msgid "View the table" +msgstr "Ver la tabla" -#: ../app/views/shared/buttons/_group_form.html.haml:17 -msgid "Button Group Text" -msgstr "Texto del grupo de botones" +msgid "View this %{model} Policy" +msgstr "Ver esta política %{model}" -#: ../app/views/shared/buttons/_group_form.html.haml:50 -msgid "Button Group Hover Text" -msgstr "Activación de texto del grupo de botones" +msgid "View this Action" +msgstr "Ver esta acción" -#: ../app/views/shared/buttons/_group_form.html.haml:66 -msgid "Button Group Image" -msgstr "Imagen del grupo de botones" +msgid "View this Alert" +msgstr "Ver esta alerta" -#: ../app/views/shared/buttons/_group_form.html.haml:91 -msgid "Assign Buttons" -msgstr "Asignar botones" +msgid "View this Alert Profile" +msgstr "Ver este perfil de alerta" -#: ../app/views/shared/buttons/_group_order_form.html.haml:17 -msgid "Button Group Order:" -msgstr "Orden del grupo de botones:" +msgid "View this Condition" +msgstr "Ver esta condición" -#: ../app/views/shared/summary/_textual_listview.html.haml:30 -msgid "View the table" -msgstr "Ver la tabla" +msgid "View this Event" +msgstr "Ver este evento" -#: ../app/views/shared/views/_ownership.html.haml:11 -msgid "Changes" -msgstr "Cambios" +msgid "View this Event Action" +msgstr "Ver esta acción de evento" -#: ../app/views/shared/views/_ownership.html.haml:20 -msgid "Select an Owner:" -msgstr "Seleccionar un propietario:" +msgid "View this Group" +msgstr "Ver este grupo" -#: ../app/views/shared/views/_ownership.html.haml:26 -#: ../app/views/shared/views/_ownership.html.haml:51 -msgid "Don't change" -msgstr "No modificar" +msgid "View this ISO Image" +msgstr "Ver esta imagen ISO" -#: ../app/views/shared/views/_ownership.html.haml:26 -#: ../app/views/shared/views/_ownership.html.haml:28 -msgid "No Owner" -msgstr "No hay dueño" +msgid "View this MiqServer" +msgstr "Ver este MiqServer" -#: ../app/views/shared/views/_ownership.html.haml:45 -msgid "Select a Group:" -msgstr "Seleccionar un grupo:" +msgid "View this Orchestration Template in Catalogs" +msgstr "Ver esta plantilla de orquestación en catálogos" -#: ../app/views/shared/views/_ownership.html.haml:69 -msgid "Affected Items" -msgstr "Objetos afectados" +msgid "View this PXE Image" +msgstr "Ver esta imagen de PXE" -#: ../app/views/shared/views/_prov_dialog.html.haml:37 -msgid "Select" -msgstr "Seleccionar" +msgid "View this Policy Event" +msgstr "Ver este evento de política" -#: ../app/views/shared/views/_prov_dialog.html.haml:37 -msgid "Selected VM" -msgstr "Máquina virtual seleccionada" +msgid "View this Profile" +msgstr "Ver este perfil" -#: ../app/views/shared/views/_prov_dialog.html.haml:56 -msgid "ISO" -msgstr "ISO" +msgid "View this Project" +msgstr "Ver este proyecto" -#: ../app/views/shared/views/_prov_dialog.html.haml:64 -msgid "Number of Instances" -msgstr "Número de instancias" +msgid "View this Report" +msgstr "Ver este informe" -#: ../app/views/shared/views/_prov_dialog.html.haml:64 -msgid "Number of VMs" -msgstr "Número de máquinas virtuales" +msgid "View this Role" +msgstr "Ver este rol" -#: ../app/views/shared/views/_prov_dialog.html.haml:73 -#: ../app/views/shared/views/_prov_dialog.html.haml:284 -msgid "Naming" -msgstr "Definición de nombre" +msgid "View this Schedule" +msgstr "Ver esta programación" -#: ../app/views/shared/views/_prov_dialog.html.haml:126 -msgid "Folder" -msgstr "Carpeta" +msgid "View this Tenant" +msgstr "Ver este inquilino" -#: ../app/views/shared/views/_prov_dialog.html.haml:152 -msgid "Placement - Options" -msgstr "Ubicación - Opciones" +msgid "View this User" +msgstr "Ver este usuario" -#: ../app/views/shared/views/_prov_dialog.html.haml:163 -msgid "Hardware" -msgstr "Hardware" +msgid "View this Widget" +msgstr "Ver este asistente" -#: ../app/views/shared/views/_prov_dialog.html.haml:173 -msgid "VM Limits" -msgstr "Límites de máquina virtual" +msgid "View this Windows Image" +msgstr "Ver esta imagen de Windows" -#: ../app/views/shared/views/_prov_dialog.html.haml:181 -msgid "VM Reservations" -msgstr "Reservas de máquina virtual" +msgid "View this Zone" +msgstr "Ver esta zona" -#: ../app/views/shared/views/_prov_dialog.html.haml:197 -msgid "Network Adapter Information" -msgstr "Información de adaptador de red" +msgid "View this Zone's settings" +msgstr "Ver la configuración de esta zona" -#: ../app/views/shared/views/_prov_dialog.html.haml:207 -msgid "Basic Options" -msgstr "Opciones básicas" +msgid "View this item" +msgstr "Ver este ítem" -#: ../app/views/shared/views/_prov_dialog.html.haml:216 -#: ../app/views/shared/views/_prov_dialog.html.haml:293 -#: ../app/views/shared/views/_prov_dialog.html.haml:330 -msgid "Custom Specification" -msgstr "Especificación personalizada" +msgid "Virtual Machine" +msgstr "Máquina virtual" -#: ../app/views/shared/views/_prov_dialog.html.haml:225 -msgid "Unattended GUI" -msgstr "GUI no atendida" +msgid "Virtual Machines" +msgstr "Máquinas virtuales " -#: ../app/views/shared/views/_prov_dialog.html.haml:233 -msgid "Identification" -msgstr "Identificación" +msgid "Virtual Private Cloud" +msgstr "Nube privada virtual" -#: ../app/views/shared/views/_prov_dialog.html.haml:242 -msgid "Domain Information" -msgstr "Información de dominio" +msgid "Virtualization Type" +msgstr "Tipo de virtualización" -#: ../app/views/shared/views/_prov_dialog.html.haml:251 -msgid "Workgroup Information" -msgstr "Información de grupo de trabajo" +msgid "Visibility" +msgstr "Visibilidad" -#: ../app/views/shared/views/_prov_dialog.html.haml:259 -msgid "User Data" -msgstr "Datos de usuario" +msgid "Visible" +msgstr "Visible" -#: ../app/views/shared/views/_prov_dialog.html.haml:267 -#: ../app/views/shared/views/_prov_dialog.html.haml:301 -msgid "Windows Options" -msgstr "Opciones de Windows" +msgid "Visual" +msgstr "Visual" -#: ../app/views/shared/views/_prov_dialog.html.haml:275 -msgid "Server License" -msgstr "Licencia de servidor" +msgid "Vm" +msgstr "Máquina virtual" -#: ../app/views/shared/views/_prov_dialog.html.haml:310 -msgid "Upload File" -msgstr "Cargar archivo" +msgid "Vm Compliance Policies" +msgstr "Políticas de cumplimiento de las MV" -#: ../app/views/shared/views/_prov_dialog.html.haml:319 -msgid "Uploaded File '%{filename}'" -msgstr "Archivo cargado '%{filename}'" +msgid "Vm Control Policies" +msgstr "Políticas de control de las VMs" -#: ../app/views/shared/views/_prov_dialog.html.haml:356 -msgid "WINS Server" -msgstr "Servidor WINS" +msgid "Volume" +msgstr "Volumen" -#: ../app/views/shared/views/_prov_dialog.html.haml:416 -msgid "Lifespan" -msgstr "Vida útil" +msgid "Volume Backups" +msgstr "" -#: ../app/views/shared/views/_retire.html.haml:9 -msgid "Set/Remove Retirement Date" -msgstr "Establecer/eliminar fecha de retiro" +msgid "Volume Claim" +msgstr "Pedido de volumen" -#: ../app/views/shared/views/_retire.html.haml:35 -msgid "Set to blank" -msgstr "Establecer en blanco" +msgid "Volume ID" +msgstr "ID de volumen" -#: ../app/views/shared/views/_retire.html.haml:44 -msgid "Retirement Warning" -msgstr "Advertencia de retiro" +msgid "Volume Name" +msgstr "Nombre de volumen" -#: ../app/views/shared/views/_retire.html.haml:49 -msgid "1 Week before retirement" -msgstr "1 semana antes del vencimiento" +msgid "Volume Path" +msgstr "Contenido de ruta" -#: ../app/views/shared/views/_retire.html.haml:49 -msgid "2 Weeks before retirement" -msgstr "2 Semanas antes del vencimiento" +msgid "Volume Snapshots" +msgstr "Instantáneas de volumen" -#: ../app/views/shared/views/_retire.html.haml:49 -msgid "30 Days before retirement" -msgstr "30 Días antes del vencimiento" +msgid "Volumes" +msgstr "Volúmenes" -#: ../app/views/shared/views/_retire.html.haml:69 -msgid "* Saving a blank date will remove all retirement dates" -msgstr "* Al guardar una fecha en blanco se eliminarán todas las fechas de vencimiento" +msgid "WINS Server" +msgstr "Servidor WINS" -#: ../app/views/shared/views/_retire.html.haml:77 -msgid "New setting will affect Service" -msgid_plural "New setting will affect Services" -msgstr[0] "La nueva configuración afectará el servicio" -msgstr[1] "La nueva configuración afectará los servicios" +msgid "Waiting to Start" +msgstr "Esperando para iniciar" -#: ../app/views/shared/views/_retire.html.haml:80 -msgid "New setting will affect Orchestration Stack" -msgid_plural "New setting will affect Orchestration Stacks" -msgstr[0] "La nueva configuración afectará la pila de orquestación" -msgstr[1] "La nueva configuración afectará las pilas de orquestación" +msgid "Warn" +msgstr "Advertir" + +msgid "Warning" +msgstr "" -#: ../app/views/shared/views/_retire.html.haml:84 -msgid "New setting will affect VM" -msgid_plural "New setting will affect VMs" -msgstr[0] "La nueva configuración afectará la máquina virtual" -msgstr[1] "La nueva configuración afectará las máquinas virtuales" +msgid "Warning Count" +msgstr "" -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:105 -msgid "Aggregated Node Utilization" -msgstr "Uso de nodo agregado" +msgid "Warning: Enabling this option may cause performance issues in large environments (i.e. thousands of VMs)" +msgstr "Advertencia: Al habilitar esta opción se pueden presentar problemas de rendimiento en grandes entornos. (p.e., miles de MV)" -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:214 -msgid "Node Utilization" -msgstr "Utilización de nodo" +msgid "Warning: Finished tasks will be permanently removed from the database!" +msgstr "Advertencia: Las tareas finalizadas se eliminarán de manera permanente de la base de datos." -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:72 -msgid "Global Utilization" -msgstr "Utilización global" +msgid "Warning: Selected node will be restarted, do you want to continue?" +msgstr "Advertencia: El nodo seleccionado se reiniciará, ¿desea continuar?" -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:129 -msgid "Cluster Utilization" -msgstr "Utilización de Clúster" +msgid "Warning: Server will be restarted, do you want to continue?" +msgstr "Advertencia: El servidor se reiniciará, ¿desea continuar?" -#: ../app/views/shared/views/ems_common/_form.html.haml:100 -msgid "Openstack Infra provider" -msgstr "Proveedor de infraestuctura de Openstack" +msgid "Warning: Tasks that are older than selected task will be permanently removed from the database!" +msgstr "Advertencia: Las tareas más antiguas que la tarea seleccionada se eliminarán de manera permanente de la base de datos." -#: ../app/views/shared/views/ems_common/_form.html.haml:147 -msgid "Host Default VNC Port Range" -msgstr "Rango de puertos VNC predeterminados del host" +msgid "Warning: The selected Analysis Profiles and ALL of their components will be permanently removed!" +msgstr "Advertencia: Los perfiles de análisis seleccionados y TODOS sus componentes se eliminarán de manera permanente." -#: ../app/views/shared/views/ems_common/_form.html.haml:180 -msgid "Add this %{provider}" -msgstr "Agregar este %{provider}" +msgid "Warning: The selected Block Storage Managers and ALL of their components will be permanently removed!" +msgstr "" -#: ../app/views/shared/views/ems_common/_form.html.haml:188 -msgid "Add of new %{provider} was cancelled by the user" -msgstr "El usuario canceló la adición de un nuevo %{provider}." +msgid "Warning: The selected Button Group will be permanently removed!" +msgstr "Advertencia: El grupo de botones seleccionado se eliminará de manera permanente." -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:124 -msgid "Tenant ID" -msgstr "ID de inquilino" +msgid "Warning: The selected Catalogs will be permanently removed!" +msgstr "Advertencia: Los catálogos seleccionados será eliminados de forma permanente." -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:276 -msgid "Openstack Infra Provider" -msgstr "Proveedor de infraestuctura de Openstack" +msgid "Warning: The selected Chargeback Rate will be permanently removed!" +msgstr "Advertencia: La tasa de anulación seleccionada se eliminará de manera permanente." -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:281 -msgid "blank" -msgstr "blanco" +msgid "Warning: The selected Cloud Providers and ALL of their components will be permanently removed from the Virtual Management Database. Are you sure you want to remove the selected Cloud Providers?" +msgstr "Advertencia: Los proveedores de nube seleccionados y TODOS sus componentes se eliminarán de manera permanente de la base de datos de administración virtual. ¿Está seguro de que desea eliminar los proveedores de nube seleccionados?" -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:326 -msgid "Tenant Mapping Enabled" -msgstr "Mapeo de inquilino habilitado" +msgid "Warning: The selected Cloud Providers and ALL related components will be permanently removed!" +msgstr "Advertencia: Los proveedores de nube seleccionados y TODOS los componentes relacionados se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:7 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:73 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:190 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:283 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:378 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:7 -msgid "Master" -msgstr "Maestro" +msgid "Warning: The selected Cloud Tenants will be permanently deleted!" +msgstr "Advertencia: Los inquilinos seleccionados serán eliminados de forma permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:42 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:108 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:240 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:348 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:411 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:56 -msgid "Etcd" -msgstr "Etcd" +msgid "Warning: The selected Cloud Volume and ALL of their components will be removed!" +msgstr "Advertencia: El volumen de la nube seleccionado y TODOS sus componentes se eliminarán." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-mode-review.html.haml:9 -msgid "Authentication Type:" -msgstr "Tipo de autenticación:" +msgid "Warning: The selected Containers Providers and ALL of their components will be permanently removed!" +msgstr "Advertencia: Los proveedores de contenedores seleccionados y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:11 -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:65 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-review.html.haml:19 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review.html.haml:19 -msgid "Username:" -msgstr "Nombre de usuario:" +msgid "Warning: The selected Customization Templates will be permanently removed!" +msgstr "Advertencia: Las plantillas de personalización seleccionadas se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:21 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-review.html.haml:29 -msgid "Password:" -msgstr "Contraseña:" +msgid "Warning: The selected Datastores and ALL of their components will be permanently removed!" +msgstr "Advertencia: Los almacenes de datos seleccionados y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:35 -msgid "ID:" -msgstr "ID:" +msgid "Warning: The selected Datawarehouse Providers and ALL of their components will be permanently removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:45 -msgid "Email:" -msgstr "Correo electrónico:" +msgid "Warning: The selected Dialog will be permanently removed from the Virtual Management Database!" +msgstr "Advertencia: El cuadro de diálogo seleccionado se eliminará de manera permanente de la base de datos de administración virtual." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:55 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general-review.html.haml:9 -msgid "Name:" -msgstr "Nombre:" +msgid "Warning: The selected Dialog will be permanently removed!" +msgstr "Advertencia: El cuadro de diálogo seleccionado se eliminará de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:75 -msgid "BindDN:" -msgstr "BindDN:" +msgid "Warning: The selected Host Aggregates will be permanently deleted!" +msgstr "Advertencia: Los agregados de hosts seleccionados serán eliminados de forma permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:85 -msgid "Bind Password:" -msgstr "Enlazar contraseña:" +msgid "Warning: The selected ISO Datastores and ALL of their components will be permanently removed!" +msgstr "Advertencia: Los almacenes de datos ISO seleccionados y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:95 -msgid "CA:" -msgstr "CA:" +msgid "Warning: The selected Infrastructure Providers and ALL of their components will be permanently removed!" +msgstr "Advertencia: Los proveedores de infraestructura seleccionados y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:105 -msgid "Insecure:" -msgstr "Inseguro:" +msgid "Warning: The selected Items and ALL of their components will be permanently removed!" +msgstr "Advertencia: Los ítemes seleccionados y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:115 -msgid "URL:" -msgstr "URL:" +msgid "Warning: The selected Jobs and ALL of their components will be permanently removed!" +msgstr "Advertencia: Las tareas seleccionadas y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:128 -msgid "Challenge URL:" -msgstr "URL de desafío:" +msgid "Warning: The selected Key Pair and ALL of its components will be permanently removed!" +msgstr "Advertencia: Los pares de claves seleccionados y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:138 -msgid "Login URL:" -msgstr "URL de inicio de sesión:" +msgid "Warning: The selected Key Pairs and ALL of their components will be permanently removed!" +msgstr "Advertencia: Los pares de clave seleccionados y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:148 -msgid "Client CA:" -msgstr "CA de cliente:" +msgid "Warning: The selected Middleware Providers and ALL of their components will be permanently removed!" +msgstr "Advertencia: Los proveedores de middleware seleccionados y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:158 -msgid "Headers:" -msgstr "Encabezados:" +msgid "Warning: The selected Network Providers and ALL of their components will be permanently removed!" +msgstr "Advertencia: Los proveedores de red seleccionados y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:171 -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:224 -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:257 -msgid "Client ID:" -msgstr "ID de cliente:" +msgid "Warning: The selected Object Storage Container and ALL related Objects will be permanently removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:181 -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:234 -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:267 -msgid "Client Secret:" -msgstr "Secreto del cliente:" +msgid "Warning: The selected Object Storage Containers and ALL related Objects will be permanently removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:191 -msgid "Sub-claim:" -msgstr "Subreclamación:" +msgid "Warning: The selected Object Storage Managers and ALL of their components will be permanently removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:201 -msgid "Authorization-Endpoint:" -msgstr "Autorización-Extremo:" +msgid "Warning: The selected Object Storage Object will be permanently removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:211 -msgid "Token-Endpoint:" -msgstr "Punto de acceso de token:" +msgid "Warning: The selected Orchestration Stacks and ALL of their components will be permanently removed!" +msgstr "Advertencia: Las pilas de orquestación seleccionadas y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:244 -msgid "Hosted Domain:" -msgstr "Dominio alojado:" +msgid "Warning: The selected PXE Servers and ALL of their components will be permanently removed!" +msgstr "Advertencia: Los servidores PXE seleccionados y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:2 -msgid "Authentication Type" -msgstr "Tipo de autenticación" +msgid "Warning: The selected Provider and ALL of their components will be permanently removed!" +msgstr "Advertencia: El proveedor seleccionado y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:6 -msgid "Select authenticaton type" -msgstr "Seleccionar tipo de autenticación" +msgid "Warning: The selected Reports will be permanently removed from the database!" +msgstr "Advertencia: Los informes seleccionados se eliminarán de manera permanente de la base de datos." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:15 -msgid "Allow All" -msgstr "Permitir todo" +msgid "Warning: The selected Resource Pools and ALL of their components will be permanently removed!" +msgstr "Advertencia: Las agrupaciones de recursos seleccionadas y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:23 -msgid "HTPassword" -msgstr "HTPassword" +msgid "Warning: The selected Routers and ALL of their components will be removed!" +msgstr "Advertencia: Los enrutadores seleccionados y TODOS sus componentes serán eliminados." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:39 -msgid "Request Header" -msgstr "Título de la solicitud" +msgid "Warning: The selected Saved Reports will be permanently removed from the database!" +msgstr "Advertencia: Los informes guardados seleccionados se eliminarán de manera permanente de la base de datos." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:47 -msgid "OpenID Connect" -msgstr "OpenID Connect" +msgid "Warning: The selected Schedules and ALL of their components will be permanently removed!" +msgstr "Advertencia: Las programaciones seleccionadas y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:55 -msgid "Google" -msgstr "Google" +msgid "Warning: The selected Services and ALL of their components will be permanently removed!" +msgstr "Advertencia: Los servicios seleccionados y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:63 -msgid "GitHub" -msgstr "GitHub" +msgid "Warning: The selected Storage Managers and ALL of their components will be permanently removed!" +msgstr "Advertencia: Los administradores de almacenamiento seleccionados y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:5 -msgid "Authentication Details" -msgstr "Detalles de autenticación" +msgid "Warning: The selected System Image Types will be permanently removed!" +msgstr "Advertencia: Los tipos de imágenes del sistema seleccionados se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:50 -msgid "ID" -msgstr "ID" +msgid "Warning: The selected Templates and ALL of their components will be permanently removed!" +msgstr "Advertencia: Las plantillas seleccionadas y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:57 -msgid "Email Address" -msgstr "Dirección de correo electrónico" +msgid "Warning: The selected Time Profiles will be permanently removed!" +msgstr "Advertencia: Los perfiles de tiempo seleccionados se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:75 -msgid "BindDN" -msgstr "BindDN" +msgid "Warning: The selected Volumes and ALL of their components will be permanently removed!" +msgstr "Advertencia: Los volúmenes seleccionados y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:92 -msgid "CA" -msgstr "CA" +msgid "Warning: The selected items and ALL of their components will be permanently removed!" +msgstr "Advertencia: Los ítemes seleccionados y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:107 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:165 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:24 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:24 -msgid "Browse" -msgstr "Navegar" +msgid "Warning: The selected items and ALL of their components will be permanently removed!?" +msgstr "Advertencia: Los ítemes seleccionados y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:116 -msgid "Insecure" -msgstr "Inseguro" +msgid "Warning: The selected task will be cancelled. Are you sure you want to cancel the task?" +msgstr "Advertencia: La tarea seleccionada se cancelará. ¿Está seguro de que desea cancelar la tarea?" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:122 -msgid "URL" -msgstr "URL" +msgid "Warning: The selected tasks will be permanently removed from the database!" +msgstr "Advertencia: Las tareas seleccionadas se eliminarán de manera permanente de la base de datos." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:131 -msgid "Challenge URL" -msgstr "URL de desafío" +msgid "Warning: This 'Run Once' timer is in the past and will never run as currently configured" +msgstr "Advertencia: Este temporizador de \"ejecución de una sola vez\" está en el pasado y no se ejecutará nunca." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:138 -msgid "Login URL" -msgstr "URL de inicio de sesión" +msgid "Warning: This Analysis Profile and ALL of its components will be permanently removed!" +msgstr "Advertencia: El perfil de análisis y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:149 -msgid "Client CA" -msgstr "CA de cliente" +msgid "Warning: This Button will be permanently removed from the Virtual Management Database!" +msgstr "Advertencia: Este botón se eliminará de manera permanente de la base de datos de administración virtual." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:174 -msgid "Headers" -msgstr "Encabezados" +msgid "Warning: This Catalog Items and ALL of their components will be permanently removed!" +msgstr "Advertencia: Este ítem del catálogo y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:191 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:228 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:252 -msgid "Client Secret" -msgstr "Secreto del cliente" +msgid "Warning: This Catalog will be permanently removed!" +msgstr "Advertencia: Este catálogo se eliminará de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:198 -msgid "Sub-claim" -msgstr "Subreclamación" +msgid "Warning: This Chargeback Rate will be permanently removed!" +msgstr "Advertencia: Esta tasa de anulación se eliminará de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:204 -msgid "Authorization-Endpoint" -msgstr "Autorización-Extremo" +msgid "Warning: This Cloud Network and ALL of its components will be removed!" +msgstr "Advertencia: Esta red de nube y TODOS sus componentes serán eliminados." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:211 -msgid "Token-Endpoint" -msgstr "Punto de acceso de token" +msgid "Warning: This Cloud Provider and ALL of its components will be permanently removed!" +msgstr "Advertencia: Este proveedor de la nube y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:235 -msgid "Hosted Domain" -msgstr "Dominio alojado" +msgid "Warning: This Cloud Subnet and ALL of its components will be removed!" +msgstr "Advertencia: Esta subred de la nube y TODOS sus componentes se eliminarán." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:9 -msgid "Configure:" -msgstr "Configurar:" +msgid "Warning: This Cloud Volume and ALL of its components will be removed!" +msgstr "Advertencia: Este volumen de la nube y TODOS sus componentes se eliminarán." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:20 -msgid "Configure Router" -msgstr "Configurar enrutador" +msgid "Warning: This Containers Provider and ALL of its components will be permanently removed!" +msgstr "Advertencia: Este proveedor de contenedores y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:28 -msgid "Configure Registry" -msgstr "Configurar registro" +msgid "Warning: This Customization Template will be permanently removed!" +msgstr "Advertencia: Esta plantilla de personalización se eliminará de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:36 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:64 -msgid "Server:" -msgstr "Servidor:" +msgid "Warning: This Dashboard and ALL of its components will be permanently removed!" +msgstr "Advertencia: Este panel y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:46 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:74 -msgid "Path:" -msgstr "Ruta:" +msgid "Warning: This Datastore and ALL of its components will be permanently removed!" +msgstr "Advertencia: Este almacén de datos y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:56 -msgid "Configure Metrics" -msgstr "Configurar métricas" +msgid "Warning: This Datawarehouse Provider and ALL of its components will be permanently removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:8 -msgid "Select items to configure" -msgstr "Seleccionar ítemes a configurar" +msgid "Warning: This Dialog will be permanently removed from the Virtual Management Database!" +msgstr "Advertencia: Este cuadro de diálogo será eliminado de manera permanente de la base de datos de administración virtual." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:19 -msgid "Standard NFS Server" -msgstr "Servidor NFS sellado" +msgid "Warning: This Dialog will be permanently removed!" +msgstr "Advertencia: Este cuadro de diálogo será eliminado de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:31 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:143 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:187 -msgid "Router" -msgstr "Enrutador" +msgid "Warning: This Floating IP and ALL of its components will be removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:131 -msgid "Integrated NFS Server (POC only)" -msgstr "Servidor NFS integrado (solo POC)" +msgid "Warning: This ISO Datastore and ALL of its components will be permanently removed!" +msgstr "Advertencia: Este almacén de datos ISO y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:4 -msgid "CDN Channel" -msgstr "Canal CDN" +msgid "Warning: This Image and ALL of its components will be permanently removed!" +msgstr "Advertencia: Esta imagen y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:8 -msgid "Specify CDN configuration" -msgstr "Especificar configuración de CDN" +msgid "Warning: This Infrastructure Provider and ALL of its components will be permanently removed!" +msgstr "Advertencia: Este proveedor de infraestructura y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:19 -msgid "Enable CDN Channel" -msgstr "Habilitar canal CDN" +msgid "Warning: This Instance and ALL of its components will be permanently removed!" +msgstr "Advertencia: Esta instancia y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:39 -msgid "SKU" -msgstr "SKU" +msgid "Warning: This Job and ALL of its components will be permanently removed!" +msgstr "Advertencia: Esta tarea y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:54 -msgid "RHN Satellite URL" -msgstr "URL de RHN Satellite" +msgid "Warning: This Middleware Provider and ALL of its components will be permanently removed!" +msgstr "Advertencia: Este proveedor de middleware y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-review.html.haml:9 -msgid "CDN Channel:" -msgstr "Canal CDN:" +msgid "Warning: This Network Provider and ALL of its components will be permanently removed!" +msgstr "Advertencia: Este proveedor de red y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-review.html.haml:39 -msgid "SKU:" -msgstr "SKU:" +msgid "Warning: This Orchestration Stack and ALL of its components will be permanently removed!" +msgstr "Advertencia: Esta pila de orquestación y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-review.html.haml:49 -msgid "RHN Satellite URL:" -msgstr "URL de RHN Satellite:" +msgid "Warning: This PXE Server and ALL of its components will be permanently removed!" +msgstr "Advertencia: Este servidor PXE y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:5 -msgid "New VM Settings" -msgstr "Nueva configuración de máquina virtual" +msgid "Warning: This Resource Pool and ALL of its components will be permanently removed!" +msgstr "Advertencia: Esta agrupación de recursos y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:9 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:5 -msgid "Master configuration" -msgstr "Configuración maestra" +msgid "Warning: This Router and ALL of its components will be removed!" +msgstr "Advertencia: Este enrutador y TODOS sus componentes serán eliminados." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:14 -msgid "Number of Masters" -msgstr "Número de ítemes principales" +msgid "Warning: This Saved Report and ALL of its components will be permanently removed!" +msgstr "Advertencia: Este informe guardado y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:34 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:97 -msgid "Base Name" -msgstr "Nombre de base" +msgid "Warning: This Schedule and ALL of its components will be permanently removed!" +msgstr "Advertencia: Esta programación y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:72 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:35 -msgid "Node configuration" -msgstr "Configuración de nodo" +msgid "Warning: This Security Group and ALL of its components will be removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:77 -msgid "Number of Nodes" -msgstr "Número de nodos" +msgid "Warning: This Service and ALL of their components will be permanently removed!" +msgstr "Advertencia: Este servicio y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:111 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:56 -msgid "Same as Master configuration" -msgstr "Misma configuración que la configuración maestra" +msgid "Warning: This Storage Manager and ALL of its components will be permanently removed!" +msgstr "Advertencia: Este administrador de almacenamiento y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:9 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:9 -msgid "Private SSH Key" -msgstr "Clave SSH privada" +msgid "Warning: This System Image Type will be permanently removed!" +msgstr "Advertencia: Este tipo de imágenes del sistema se eliminará de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:42 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:42 -msgid "" -"Add tags individually for each VM or select multiple rows and edit tags as a g" -"roup." -msgstr "" -"Agregar etiquetas individualmente para cada MV o seleccionar varias filas y mo" -"dificar etiquetas como un grupo." +msgid "Warning: This Template and ALL of its components will be permanently removed!" +msgstr "Advertencia: Esta plantilla y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:56 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:64 -msgid "Edit Roles" -msgstr "Modificar roles" +msgid "Warning: This Virtual Machine and ALL of its components will be permanently removed!" +msgstr "Advertencia: Esta máquina virtual y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:67 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:355 -msgid "Select All" -msgstr "Seleccionar todo" +msgid "Warning: This Volume and ALL of its components will be permanently removed!" +msgstr "Advertencia: Este volumen y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:148 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:154 -msgid "VM/Instance Name" -msgstr "Nombre de máquina virtual/instancia" +msgid "Warning: This Widget and ALL of its components will be permanently removed!" +msgstr "Advertencia: Este asistente y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:288 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:12 -msgid "Masters" -msgstr "Maestros" +msgid "Warning: This item and ALL of its components will be permanently removed!" +msgstr "Advertencia: Este ítem y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:21 -msgid "OpenShift Origin" -msgstr "OpenShift Origin" +msgid "Warning: This item and ALL of its components will be permanently removed!?" +msgstr "Advertencia: Este ítem y TODOS sus componentes se eliminarán de manera permanente." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:29 -msgid "OpenShift Enterprise" -msgstr "OpenShift Enterprise" +msgid "Wasted" +msgstr "Desperdiciado" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:37 -msgid "Provider to provision on" -msgstr "Proveedor para el aprovisionamiento " +msgid "Web Console" +msgstr "" + +msgid "Web Service Workers" +msgstr "Trabajadores de servicio web" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:48 -msgid "Use existing VMs from an existing provider" -msgstr "Usar máquinas virtuales existentes de un proveedor existente" +msgid "Web Services" +msgstr "Servicios Web" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:62 -msgid "Create new VMs on provider" -msgstr "Crear nuevas máquinas virtuales en el proveedor" +msgid "Web Services Listen Port must be numeric" +msgstr "El puerto de escucha de servicios web debe ser numérico" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:55 -msgid "Add VM" -msgstr "Agregar MV" +msgid "Web Services Password and Verify Password fields do not match" +msgstr "Los campos Contraseña predeterminada y Verificar contraseña, no coinciden." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:318 -msgid "Add Host" -msgstr "Agregar host" +msgid "Websocket Workers" +msgstr "Trabajadores Websocket" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:324 -msgid "Enter a name or IP address" -msgstr "Ingresar un nombre o una dirección IP" +msgid "Wednesday" +msgstr "Miércoles" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:329 -msgid "Private Host Name" -msgstr "Nombre de host privado" +msgid "Week" +msgstr "Semana" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:335 -msgid "Public Host Name" -msgstr "Nombre del host público" +msgid "Weekly" +msgstr "Semanalmente" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:344 -msgid "Specify role(s) for this host" -msgstr "Especificar roles para este host" +msgid "Weeks" +msgstr "Semanas" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:16 -msgid "Masters Base Name:" -msgstr "Nombre de la base de maestros:" +msgid "What to Evaluate" +msgstr "Qué evaluar" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:26 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:65 -msgid "Template:" -msgstr "Plantilla:" +msgid "Widget content generation error: %{message}" +msgstr "Error de generación de contenido de asistente: %{message}" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:44 -msgid "Nodes Base Name:" -msgstr "Nombre de base de nodos:" +msgid "Widget has to be assigned to a dashboard to generate content" +msgstr "El asistente debe ser asignado a un panel para generar contenido" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:61 -msgid "Etcds" -msgstr "Etcds" +msgid "Widget import cancelled" +msgstr "Importación de asistente cancelada" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:74 -msgid "Infrastructures" -msgstr "Infraestructuras" +msgid "Widget name" +msgstr "Nombre del asistente" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-masters-nodes.html.haml:4 -msgid "Masters & Nodes" -msgstr "Maestros y nodos" +msgid "Widgets" +msgstr "Asistentes" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-progress.html.haml:12 -msgid "Deployment in Progress" -msgstr "Implementación en curso" +msgid "Widgets imported successfully" +msgstr "Los asistentes han sido importados." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-progress.html.haml:17 -msgid "" -"Your deployment %{name} is currently in progress. Updates will be posted here " -"shortly." -msgstr "" -"Su implementación %{name} se encuentra actualmente en curso. Las actualizacion" -"es se publicarán aquí en breve." +msgid "Win32 Service" +msgid_plural "Win32 Services" +msgstr[0] "Servicio de Win32" +msgstr[1] "Servicios de Win32" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-progress.html.haml:22 -msgid "" -"If you choose to close this wizard, deployment status can be monitored under r" -"equests." -msgstr "" -"Si cierra el asistente, podrá controlar el estado de la implementación mediant" -"e solicitudes." +msgid "Win32 Services" +msgstr "Servicios de Win32" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-progress.html.haml:32 -msgid "Deployment %{name} was sucessful." -msgstr "La implementación %{name} fue exitosa." +msgid "Windows Boot Env" +msgstr "Entorno de arranque de Windows" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-progress.html.haml:39 -msgid "Failed to deploy %{name}. Error:" -msgstr "Error en la implementación %{name}. Error:" +msgid "Windows Boot Environment" +msgstr "Entorno de arranque de Windows" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-summary.html.haml:40 -msgid "Loading summary..." -msgstr "Cargando resumen..." +msgid "Windows Images" +msgstr "Imágenes de Windows" -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:56 -msgid "Key Pair" -msgstr "Par de claves" +msgid "Windows Images Directory" +msgstr "Directorio de imágenes de Windows" -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:103 -msgid "Flavor" -msgstr "Clase" +msgid "Windows Options" +msgstr "Opciones de Windows" -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:127 -msgid "Cloud Network" -msgstr "Red de nube" +msgid "Within Above Field, Sort By" +msgstr "Dentro de campo anterior, Ordenar por" -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:175 -msgid "Security Group" -msgstr "Grupo de seguridad" +msgid "Worker on Server '%{name}' restarted" +msgstr "Trabajador en servidor '%{name}' reiniciado" -#: ../app/views/static/notification_drawer/notification-body.html.haml:50 -#: ../app/views/static/notification_drawer/notification-body.html.haml:100 -msgid "% Complete" -msgstr "% completo" +msgid "Workers" +msgstr "Trabajadores" -#: ../app/views/static/notification_drawer/notification-body.html.haml:83 -msgid "Started:" -msgstr "Se inició:" +msgid "Workgroup Information" +msgstr "Información de grupo de trabajo" -#: ../app/views/static/notification_drawer/notification-body.html.haml:110 -msgid "Completed:" -msgstr "Completo:" +msgid "Workloads" +msgstr "Cargas de trabajo" -#: ../app/views/static/notification_drawer/notification-footer.html.haml:11 -msgid "Mark All Read" -msgstr "Marcar todos como leídos" +msgid "Wrap this expression element with a NOT" +msgstr "Añada a esta expresión: NOT" -#: ../app/views/static/notification_drawer/notification-footer.html.haml:24 -msgid "Clear All" -msgstr "Borrar todo" +msgid "XA Datasource:" +msgstr "" -#: ../app/views/static/wizard.html.haml:21 -msgid "Initialization in progress..." -msgstr "Inicialización en curso..." +msgid "XA Properties" +msgstr "" -#: ../app/views/storage/_main.html.haml:9 -msgid "Information for Registered VMs" -msgstr "Información para las máquinas virtuales registradas" +msgid "XML View" +msgstr "Vista XML" -#: ../app/views/storage/_storage_pod_folders.html.haml:10 -msgid "View '%{name}' Cluster" -msgstr "Ver clúster '%{name}'" +msgid "Yellow" +msgstr "Amarillo" -#: ../app/views/storage_manager/_form.html.haml:240 -msgid "Add this Storage Manager" -msgstr "Añadir este Gestor de Almacenamiento" +msgid "Yellow Background" +msgstr "Fondo amarillo" -#: ../app/views/support/show.html.haml:19 -msgid "View the %{title} Guide" -msgstr "Ver la guía %{title}" +msgid "Yellow Text" +msgstr "Texto amarillo" -#: ../app/views/support/show.html.haml:31 -msgid "%{title} Guide" -msgstr "Guía %{title}" +msgid "Yes" +msgstr "Sí" -#: ../app/views/support/show.html.haml:45 -msgid "For questions or problem reporting, visit " -msgstr "Si tiene preguntas o desea informar un problema, visite " +msgid "Yes; VM will run at most 24 hours." +msgstr "Sí; la máquina virtual funcionará 24 horas como máximo." -#: ../app/views/vm_cloud/_main.html.haml:17 -#: ../app/views/vm_common/_main.html.haml:16 -msgid "VMsafe" -msgstr "VMsafe" +msgid "Yesterday" +msgstr "Ayer" -#: ../app/views/vm_cloud/_main.html.haml:28 -#: ../app/views/vm_common/_main.html.haml:29 -msgid "Power Management" -msgstr "Gestión de energía" +msgid "You are about to enter fullscreen mode. Press Ctl+Alt to return to windowed mode." +msgstr "Está a punto de ingresar al modo de pantalla completa. Presione Ctrl + Alt para volver al modo de ventana." -#: ../app/views/vm_common/_add_to_service.html.haml:22 -msgid "Service Selection" -msgstr "Selección de servicio" +msgid "You are not authorized to view %{model_name} '%{resource_name}'" +msgstr "No está autorizado a ver %{model_name} '%{resource_name}'" -#: ../app/views/vm_common/_add_to_service.html.haml:49 -msgid "Add VM to the selected Service" -msgstr "Añadir MV al Servicio seleccionado" +msgid "You can only specify one Storage Node" +msgstr "Solo puede especificar un nodo de almacenamiento" -#: ../app/views/vm_common/_associate_floating_ip.html.haml:7 -msgid "Associate Floating IP" -msgstr "Asociar IP flotante" +msgid "You can specify at most one DNS Node" +msgstr "Puede especificar un nodo DNS como máximo" -#: ../app/views/vm_common/_associate_floating_ip.html.haml:16 -#: ../app/views/vm_common/_disassociate_floating_ip.html.haml:16 -msgid "Floating IP" -msgstr "IP flotante" +msgid "You must select at least one Node" +msgstr "Debe seleccionar al menos un nodo" -#: ../app/views/vm_common/_attach.html.haml:16 -#: ../app/views/vm_common/_detach.html.haml:16 -msgid "Volume" -msgstr "Volumen" +msgid "You must select at least one namespace to import" +msgstr "Debe seleccionar al menos un espacio de nombre para su importación" -#: ../app/views/vm_common/_config.html.haml:74 -#: ../app/views/vm_common/_config.html.haml:230 -msgid "Account Policies" -msgstr "Políticas de cuenta" +msgid "You must select one Storage Node when using Integrated NFS storage" +msgstr "Debe seleccionar un nodo de almacenamiento cuando utilice almacenamiento de NFS integrado" -#: ../app/views/vm_common/_config.html.haml:168 -msgid "Network Type" -msgstr "Tipo de red" +msgid "You need two or more domains to edit domain priorities" +msgstr "" -#: ../app/views/vm_common/_config.html.haml:196 -msgid "Network Adapter" -msgstr "Adaptador de red" +msgid "You will need the following to register:" +msgstr "Necesitará registrar lo siguiente:" -#: ../app/views/vm_common/_config.html.haml:202 -msgid "DHCP Enabled" -msgstr "DHCP habilitado" +msgid "Your Red Hat Account login or Red Hat Network Satellite login" +msgstr "Inicio de sesión con la cuenta de Red Hat o inicio de sesión en Red Hat Network Satellite" -#: ../app/views/vm_common/_config.html.haml:202 -msgid "DHCP Server" -msgstr "Servidor DHCP" +msgid "Your deployment %{name} is currently in progress. Updates will be posted here shortly." +msgstr "Su implementación %{name} se encuentra actualmente en curso. Las actualizaciones se publicarán aquí en breve." -#: ../app/views/vm_common/_config.html.haml:202 -msgid "DNS Server" -msgstr "Servidor DNS" +msgid "Zone" +msgstr "Zona" -#: ../app/views/vm_common/_config.html.haml:202 -msgid "Default Gateway" -msgstr "Puerta de enlace predeterminada" +msgid "Zone Information" +msgstr "Información de zona" -#: ../app/views/vm_common/_config.html.haml:202 -msgid "IPv6 Address" -msgstr "Dirección IPv6" +msgid "Zone name is required" +msgstr "El nombre de zona es obligatorio" -#: ../app/views/vm_common/_config.html.haml:202 -msgid "Subnet Mask" -msgstr "Máscara de subred" +msgid "Zone*" +msgstr "Zona*" -#: ../app/views/vm_common/_disassociate_floating_ip.html.haml:7 -msgid "Disassociate Floating IP" -msgstr "Desasociar IP flotante" +msgid "Zone:" +msgstr "Zona:" -#: ../app/views/vm_common/_disks.html.haml:7 -msgid "Device Type" -msgstr "Tipo de dispositivo" +msgid "Zones" +msgstr "Zonas" -#: ../app/views/vm_common/_disks.html.haml:13 -msgid "Partitions Aligned" -msgstr "Particiones alineadas" +msgid "Zoom in on this chart" +msgstr "Agrandar este gráfico" -#: ../app/views/vm_common/_disks.html.haml:15 -msgid "Provisioned Size" -msgstr "Tamaño aprovisionado" +msgid "[%{name}] Policy Profile %{mode} (db:[%{db}]" +msgstr "Perfil de política [%{name}] %{mode} (db:[%{db}]" -#: ../app/views/vm_common/_disks.html.haml:17 -msgid "Used Size" -msgstr "Tamaño utilizado" +msgid "[%{name}] Record added (" +msgstr "Registro [%{name}] agregado (" -#: ../app/views/vm_common/_disks.html.haml:19 -msgid "Percent Used of Provisioned Size" -msgstr "Porcentaje utilizado de tamaño aprovisionado" +msgid "[%{name}] Record created (" +msgstr "Registro [%{name}] creado (" -#: ../app/views/vm_common/_evacuate.html.haml:7 -msgid "Evacuate Host" -msgstr "Evacuar host" +msgid "[%{name}] Record delete initiated" +msgstr "Eliminación de registro [%{name}] iniciada" -#: ../app/views/vm_common/_evacuate.html.haml:16 -#: ../app/views/vm_common/_live_migrate.html.haml:16 -msgid "Auto-select Host?" -msgstr "¿Seleccionar host automáticamente?" +msgid "[%{name}] Record deleted" +msgstr "Registro [%{name}] eliminado (" -#: ../app/views/vm_common/_evacuate.html.haml:40 -msgid "On Shared Storage" -msgstr "En almacenamiento compartido" +msgid "[%{name}] Record updated (" +msgstr "Registro [%{name}] actualizado (" -#: ../app/views/vm_common/_evacuate.html.haml:55 -msgid "Admin Password" -msgstr "Contraseña de administrador" +msgid "[New Box]" +msgstr "[New Box]" -#: ../app/views/vm_common/_evacuate.html.haml:71 -#: ../app/views/vm_common/_live_migrate.html.haml:75 -msgid "Select Destination Host" -msgstr "Seleccionar host de destino" +msgid "[New Dialog]" +msgstr "[New Dialog]" -#: ../app/views/vm_common/_evacuate.html.haml:80 -#: ../app/views/vm_common/_live_migrate.html.haml:84 -msgid "Destination Host" -msgstr "Host de destino" +msgid "[New Element]" +msgstr "[New Element]" -#: ../app/views/vm_common/_evm_relationship.html.haml:17 -msgid "Select Server:" -msgstr "Seleccionar servidor:" +msgid "[New Tab]" +msgstr "[New Tab]" -#: ../app/views/vm_common/_evm_relationship.html.haml:22 -msgid "Not a Server" -msgstr "No es un servidor" +msgid "[Region: %{description} [%{region}]]" +msgstr "[Region: %{description} [%{region}]]" -#: ../app/views/vm_common/_form.html.haml:64 -msgid "Parent VM Selection" -msgstr "Selección de máquina virtual principal" +msgid "active" +msgstr "activo" -#: ../app/views/vm_common/_form.html.haml:96 -msgid "Child VM Selection" -msgstr "Selección de máquina virtual hija" +msgid "alerts" +msgstr "" -#: ../app/views/vm_common/_form.html.haml:102 -msgid "Child VMs:" -msgstr "Máquinas virtuales secundarias:" +msgid "ansible_tower" +msgstr "ansible_tower" -#: ../app/views/vm_common/_form.html.haml:106 -msgid "Available VMs:" -msgstr "MV disponibles:" +msgid "at" +msgstr "en" -#: ../app/views/vm_common/_form.html.haml:128 -msgid "Move selected VMs to right" -msgstr "Mover máquinas virtuales seleccionadas a la derecha" +msgid "available" +msgstr "disponible" -#: ../app/views/vm_common/_form.html.haml:139 -msgid "Move all VMs to right" -msgstr "Mover todas las máquinas virtuales a la derecha" +msgid "back" +msgstr "atrás" -#: ../app/views/vm_common/_form.html.haml:150 -msgid "Move selected VMs to left" -msgstr "Mover máquinas virtuales seleccionadas a la izquierda" +msgid "blank" +msgstr "blanco" -#: ../app/views/vm_common/_live_migrate.html.haml:40 -msgid "Block Migration" -msgstr "Migración en bloque" +msgid "bold" +msgstr "negrita" -#: ../app/views/vm_common/_live_migrate.html.haml:57 -msgid "Disk Over Commit" -msgstr "Compromiso en exceso del disco" +msgid "centered" +msgstr "centrado" -#: ../app/views/vm_common/_main.html.haml:18 -msgid "Normal Operating Ranges (over 30 days)" -msgstr "Rangos de funcionamiento normal (más de 30 días)" +msgid "clear" +msgstr "transparente" -#: ../app/views/vm_common/_main.html.haml:35 -msgid "Datastore Allocation Summary" -msgstr "Resumen de asignación del almacén de datos" +msgid "description:[%{session}] to [%{name}]" +msgstr "descripción: [%{session}] a [%{name}]" -#: ../app/views/vm_common/_main.html.haml:37 -msgid "Datastore Actual Usage Summary" -msgstr "Resumen de uso real del almacén de datos" +msgid "dimmed" +msgstr "atenuado" -#: ../app/views/vm_common/_policies.html.haml:11 -msgid "Policy Simulation Details" -msgstr "Detalles de simulación de política" +msgid "disabling deployment" +msgstr "Inhabilitar implementación" -#: ../app/views/vm_common/_policies.html.haml:24 -msgid "" -"* Items in red italics do not change the outco" -"me of the scope or expression." -msgstr "" -"* Los ítemes red italics no cambian el resul" -"tado del alcance o expresión." +msgid "do not change the outcome of the scope or expression" +msgstr "no cambie el resultado del alcance o la expresión" -#: ../app/views/vm_common/_policy_options.html.haml:44 -msgid "Successful" -msgstr "Exitoso" +msgid "down" +msgstr "abajo" -#: ../app/views/vm_common/_reconfigure.html.haml:50 -msgid " Memory value not in range or not a multiple of 4" -msgstr "El valor de memoria no pertenece el rango o no es múltiplo de 4" +msgid "enabling deployment" +msgstr "Habilitar implementación" -#: ../app/views/vm_common/_reconfigure.html.haml:55 -msgid " Valid memory value required" -msgstr "Valor válido de memoria requerido" +msgid "ending" +msgstr "finalizando" -#: ../app/views/vm_common/_reconfigure.html.haml:96 -msgid " Processor Options" -msgstr "Opciones del procesador" +msgid "every" +msgstr "cada" -#: ../app/views/vm_common/_reconfigure.html.haml:103 -msgid "Sockets" -msgstr "Sockets" +msgid "false" +msgstr "falso" -#: ../app/views/vm_common/_reconfigure.html.haml:124 -msgid "Cores Per Socket" -msgstr "Núcleos por socket" +msgid "foreman" +msgstr "encargado" -#: ../app/views/vm_common/_reconfigure.html.haml:164 -msgid " Total processors value larger than the maximum allowed" -msgstr "El valor total de procesadores es mayor que el máximo permitido" +msgid "going back" +msgstr "regresando" -#: ../app/views/vm_common/_reconfigure.html.haml:184 -msgid "Add Disk" -msgstr "Añadir disco" +msgid "h" +msgstr "h" -#: ../app/views/vm_common/_reconfigure.html.haml:211 -msgid "Dependent" -msgstr "Dependiente" +msgid "hawkular URL and API port fields are needed to perform validation." +msgstr "Se necesitan los campos de URL de hawkular y puerto de API para realizar la validación." -#: ../app/views/vm_common/_reconfigure.html.haml:213 -msgid "Delete Backing" -msgstr "Eliminar respaldo" +msgid "instances" +msgstr "instancias" -#: ../app/views/vm_common/_reconfigure.html.haml:215 -msgid "Bootable" -msgstr "De arranque" +msgid "invalid button action" +msgstr "acción de botón no válida" -#: ../app/views/vm_common/_reconfigure.html.haml:263 -msgid " Valid numeric disk size required " -msgstr "Se requiere un valor numérico de tamaño de disco" +msgid "killing" +msgstr "Eliminar" -#: ../app/views/vm_common/_reconfigure.html.haml:300 -msgid " Add " -msgstr "Añadir" +msgid "ldap" +msgstr "ldap" -#: ../app/views/vm_common/_reconfigure.html.haml:376 -msgid "Cancel Add" -msgstr "Cancelar adición" +msgid "ldaps" +msgstr "ldap" -#: ../app/views/vm_common/_resize.html.haml:9 -msgid "Reconfigure Instance" -msgstr "Reconfigurar instancia" +msgid "m" +msgstr "m" -#: ../app/views/vm_common/_resize.html.haml:18 -msgid "Current Flavor" -msgstr "Clase actual" +msgid "map a new label to tag" +msgstr "Asignar una nombre a la etiqueta" -#: ../app/views/vm_common/_resize.html.haml:31 -msgid "Choose Flavor" -msgstr "Elija clase" +msgid "name:[%{session}] to [%{name}]" +msgstr "nombre :[%{session}] a [%{name}]" -#: ../app/views/vm_common/_right_size.html.haml:8 -msgid "Normal Operating Ranges (up to 30 days' data)" -msgstr "Rangos de funcionamiento normal (datos de hasta 30 días)" +msgid "no value" +msgstr "ningún valor" -#: ../app/views/vm_common/_right_size.html.haml:187 -msgid "Right-Sizing (Conservative - derived from Absolute Maximum)" -msgstr "Tamaño adecuado (conservador - derivado del máximo absoluto)" +msgid "none" +msgstr "ninguno" -#: ../app/views/vm_common/_right_size.html.haml:197 -#: ../app/views/vm_common/_right_size.html.haml:281 -#: ../app/views/vm_common/_right_size.html.haml:364 -msgid "Current" -msgstr "Actual" +msgid "normal" +msgstr "normal" -#: ../app/views/vm_common/_right_size.html.haml:199 -#: ../app/views/vm_common/_right_size.html.haml:283 -#: ../app/views/vm_common/_right_size.html.haml:366 -msgid "Recommended" -msgstr "Recomendado" +msgid "not yet available" +msgstr "Aún no está disponible" -#: ../app/views/vm_common/_right_size.html.haml:201 -#: ../app/views/vm_common/_right_size.html.haml:285 -#: ../app/views/vm_common/_right_size.html.haml:368 -msgid "% Savings" -msgstr "% Ahorro" +msgid "primary" +msgstr "primario" -#: ../app/views/vm_common/_right_size.html.haml:203 -#: ../app/views/vm_common/_right_size.html.haml:287 -#: ../app/views/vm_common/_right_size.html.haml:370 -msgid "Savings" -msgstr "Archivos guardados" +msgid "primary, " +msgstr "primario, " -#: ../app/views/vm_common/_right_size.html.haml:271 -msgid "Right-Sizing (Moderate - derived from High NORM)" -msgstr "Tamaño adecuado (moderado - derivado de la NORMA alta)" +msgid "red italics" +msgstr "cursiva roja" -#: ../app/views/vm_common/_right_size.html.haml:354 -msgid "Right-Sizing (Aggressive - derived from Average NORM)" -msgstr "Tamaño adecuado (agresivo - derivado de la NORMA promedio)" +msgid "reloading" +msgstr "recargando" -#: ../app/views/vm_common/_right_size.html.haml:438 -msgid "* Recommendations are subject to minimum of CPU: %{cpu} and Memory: %{memory}." -msgstr "" -"* Las recomendaciones están sujetas a un mínimo de CPU: %{cpu} y de memoria: %" -"{memory}." +msgid "removed datasources" +msgstr "Fuentes de datos han sido retiradas" -#: ../app/views/vm_common/_snap.html.haml:9 -msgid "Snapshot Information" -msgstr "Información de instantánea" +msgid "restarting" +msgstr "reiniciando" -#: ../app/views/vm_common/_snap.html.haml:43 -msgid "Snapshot VM memory" -msgstr "Memoria de máquina virtual de instantánea" +msgid "restarting deployment" +msgstr "Reiniciando la implementación" -#: ../app/views/vm_common/_snap.html.haml:63 -msgid "Create snapshot" -msgstr "Crear instantánea" +msgid "resuming" +msgstr "reanundado" -#: ../app/views/vm_common/_snapshots_desc.html.haml:41 -msgid "(%{number} bytes)" -msgstr "(%{number} bytes)" +msgid "running" +msgstr "en ejecución" -#: ../app/views/vm_common/_snapshots_desc.html.haml:63 -msgid "%{record_name} has no snapshots" -msgstr "%{record_name} no tiene instantáneas." +msgid "secondary" +msgstr "secundario" -#: ../app/views/vm_common/_snapshots_tree.html.haml:5 -msgid "Available Snapshots" -msgstr "Instantáneas disponibles" +msgid "secondary, " +msgstr "secundario, " -#: ../app/views/vm_common/console_mks.html.haml:8 -#: ../app/views/vm_common/console_mks.html.haml:95 -msgid "VM %{name} Remote Console" -msgstr "Consola remota de máquina virtual %{name}" +msgid "seconds" +msgstr "segundos" -#: ../app/views/vm_common/console_mks.html.haml:32 -msgid "" -"You are about to enter fullscreen mode. Press Ctl+Alt to return to windowed mo" -"de." -msgstr "" -"Está a punto de ingresar al modo de pantalla completa. Presione Ctrl + Alt par" -"a volver al modo de ventana." +msgid "selected to copy" +msgstr "seleccionado para copiar" -#: ../app/views/vm_common/console_mks.html.haml:43 -msgid "Press Ctl+Alt to release cursor." -msgstr "Presione Ctl + Alt para soltar el cursor." +msgid "shutting down" +msgstr "apagando" -#: ../app/views/vm_common/console_mks.html.haml:138 -msgid "Connection failed." -msgstr "Error en la conexión" +msgid "starting" +msgstr "iniciando" -#: ../app/views/vm_common/console_mks.html.haml:147 -msgid "Press Ctrl+Alt to release cursor." -msgstr "Presione Ctrl + Alt para soltar el cursor." +msgid "stopped" +msgstr "detenido" -#: ../app/views/vm_common/console_mks.html.haml:202 -msgid "This page requires the VMware MKS plugin. Install the plugin and try again." -msgstr "" -"Esta página requiere el complemento de VMware MKS. Instale el complemento e in" -"téntelo nuevamente." +msgid "stopping" +msgstr "deteniendo" -#: ../app/views/vm_common/console_spice.html.haml:9 -msgid "SPICE Console" -msgstr "Consola SPICE" +msgid "suspending" +msgstr "suspendiendo" -#: ../app/views/vm_common/console_spice.html.haml:30 -msgid "Connecting (unencrypted) to: %{url}" -msgstr "Conectando (no cifrado) a: %{url}" +msgid "to bottom" +msgstr "hacia la parte inferior" -#: ../app/views/vm_common/console_vmrc.html.haml:74 -#: ../app/views/vm_common/console_vmrc.html.haml:99 -msgid "Hint: Press Ctrl-Alt to release the cursor from the guest" -msgstr "Sugerencia: Presione Ctrl + Alt para soltar el cursor del invitado" +msgid "to top" +msgstr "hacia la parte superior" -#: ../app/views/vm_common/console_vmrc.html.haml:83 -msgid "" -"The VM has been suspended, powered off or the connection to the server has bee" -"n lost. \n" -"This console window will now close." -msgstr "" -"La máquina virtual ha sido suspendida, se ha desactivado, o el servidor se ha " -"perdido. \n" -"La ventana de esta consola se cerrará." +msgid "true" +msgstr "verdadero" -#: ../app/views/vm_common/console_vmrc.html.haml:423 -msgid "Remote Console plugin is not properly installed." -msgstr "El complemento de la consola remota no está bien instalado." +msgid "true/false" +msgstr "verdadero/falso" -#: ../app/views/vm_common/console_vmrc.html.haml:451 -msgid "Full Screen" -msgstr "Pantalla completa " +msgid "unavailable" +msgstr "no disponible" -#: ../app/views/vm_common/console_vmrc.html.haml:460 -msgid "Send Ctrl-Alt-Delete" -msgstr "Enviar Ctrl-Alt-Delete" +msgid "undeploying deployment" +msgstr "Anulando la implementación " -#: ../app/views/vm_common/console_vmrc.html.haml:481 -msgid "Use CTRL-ALT-INS for CTRL-ALT-DEL" -msgstr "Usar CTRL + ALT + INS para CTRL + ALT + DEL" +msgid "unknown tree in replace_trees: %{name}" +msgstr "árbol desconocido en replace_trees: %{name}" -#: ../app/views/vm_common/console_vmrc.html.haml:485 -msgid "Use CTRL-ALT-Enter to toggle full screen" -msgstr "Usar CTRL + ALT + Enter para alternar a pantalla completa" +msgid "unlimited" +msgstr "sin límites" -#: ../app/views/vm_common/console_vmrc.html.haml:490 -msgid "The Remote Console is connecting" -msgstr "La consola remota está conectándose" +msgid "up" +msgstr "arriba" -#: ../app/views/vm_common/console_vnc.html.haml:9 -msgid "VNC Console" -msgstr "Consola VNC" +msgid "user input" +msgstr "entrada de usuario" -#: ../app/views/vm_common/console_vnc.html.haml:30 -msgid "Loading ..." -msgstr "Cargando..." +msgid "vApp" +msgstr "aplicación virtual" -#: ../app/views/vm_common/console_vnc.html.haml:38 -msgid "Canvas not supported." -msgstr "No soporta lienzo." +msgid "vApp Templates" +msgstr "Plantillas de aplicación virtual" -#: ../lib/report_formatter/chart_common.rb:344 -#: ../lib/report_formatter/chart_common.rb:403 -#: ../lib/report_formatter/chart_common.rb:404 -#: ../lib/report_formatter/chart_common.rb:434 -#: ../lib/report_formatter/chart_common.rb:435 -#: ../lib/report_formatter/chart_common.rb:472 -msgid "Other" -msgstr "Otro" +msgid "vCPU Count" +msgstr "Conteo de CPU virtuales" -#: ../lib/report_formatter/chart_common.rb:394 -#: ../lib/report_formatter/chart_common.rb:424 -#: ../lib/report_formatter/chart_common.rb:469 -#: ../lib/report_formatter/chart_common.rb:498 -#: ../lib/report_formatter/chart_common.rb:501 -msgid "no value" -msgstr "ningún valor" +msgid "vCPU per Core" +msgstr "CPU virtual por núcleo" -#: ../lib/report_formatter/chart_common.rb:560 -msgid "Invalid chart definition" -msgstr "Definición de diagrama no válido" +msgid "vCPUs per Core" +msgstr "CPU virtuales por núcleo" -#: ../lib/report_formatter/timeline_message.rb:43 -msgid "Policy no longer exists" -msgstr "" +msgid "vcpus" +msgstr "Cpu virtuales" diff --git a/locale/fr/ManageIQ_UI_Classic.po b/locale/fr/ManageIQ_UI_Classic.po index 2622babb8ab..0dcf2b26f18 100644 --- a/locale/fr/ManageIQ_UI_Classic.po +++ b/locale/fr/ManageIQ_UI_Classic.po @@ -10,7 +10,6 @@ msgid "" msgstr "" "Project-Id-Version: manageiq 1.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-20 15:56+0100\n" "PO-Revision-Date: 2016-12-20 09:33-0500\n" "Last-Translator: Milan Zázrivec \n" "Language-Team: French\n" @@ -21,32618 +20,19036 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1)\n" "X-Generator: Zanata 3.9.6\n" -#: -#: ../app/assets/javascripts/controllers/auth_key_pair_cloud/auth_key_pair_cloud_controller.js:53 -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:202 -#: ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:57 -#: ../app/assets/javascripts/controllers/ems_common/ems_common_form_controller.js:276 -#: ../app/assets/javascripts/controllers/host/host_form_controller.js:137 -#: ../app/assets/javascripts/controllers/ops/log_collection_form_controller.js:101 -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:43 -#: ../app/assets/javascripts/controllers/ops/tenant_form_controller.js:63 -#: ../app/assets/javascripts/controllers/ops/tenant_quota_form_controller.js:60 -#: ../app/assets/javascripts/controllers/ownership/ownership_form_controller.js:58 -#: ../app/assets/javascripts/controllers/provider_foreman/provider_foreman_form_controller.js:100 -#: ../app/assets/javascripts/controllers/reconfigure/reconfigure_form_controller.js:275 -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:318 -#: ../app/assets/javascripts/controllers/service/service_form_controller.js:41 -#: ../app/controllers/application_controller/automate.rb:115 -#: ../app/controllers/application_controller/buttons.rb:50 -#: ../app/controllers/application_controller/buttons.rb:401 -#: ../app/controllers/application_controller/buttons.rb:536 -#: ../app/controllers/application_controller/ci_processing.rb:177 -#: ../app/controllers/application_controller/ci_processing.rb:181 -#: ../app/controllers/application_controller/dialog_runner.rb:67 -#: ../app/controllers/application_controller/policy_support.rb:32 -#: ../app/controllers/application_controller/tags.rb:161 -#: ../app/controllers/catalog_controller.rb:104 -#: ../app/controllers/catalog_controller.rb:352 -#: ../app/controllers/catalog_controller.rb:597 -#: ../app/controllers/catalog_controller.rb:1013 -#: ../app/controllers/catalog_controller.rb:2045 -#: ../app/controllers/chargeback_controller.rb:178 -#: ../app/controllers/chargeback_controller.rb:297 -#: ../app/controllers/configuration_controller.rb:224 -#: ../app/controllers/ems_common.rb:340 -#: ../app/controllers/host_controller.rb:394 -#: ../app/controllers/miq_ae_class_controller.rb:605 -#: ../app/controllers/miq_ae_class_controller.rb:1000 -#: ../app/controllers/miq_ae_class_controller.rb:1043 -#: ../app/controllers/miq_ae_class_controller.rb:1084 -#: ../app/controllers/miq_ae_class_controller.rb:1133 -#: ../app/controllers/miq_ae_class_controller.rb:1451 -#: ../app/controllers/miq_ae_class_controller.rb:1490 -#: ../app/controllers/miq_ae_class_controller.rb:1682 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:254 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:302 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:22 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:104 -#: ../app/controllers/miq_policy_controller/alerts.rb:44 -#: ../app/controllers/miq_policy_controller/conditions.rb:25 -#: ../app/controllers/miq_policy_controller/events.rb:17 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:23 -#: ../app/controllers/miq_policy_controller/policies.rb:23 -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:22 -#: ../app/controllers/ops_controller/ops_rbac.rb:155 -#: ../app/controllers/ops_controller/ops_rbac.rb:220 -#: ../app/controllers/ops_controller/ops_rbac.rb:426 -#: ../app/controllers/ops_controller/ops_rbac.rb:606 -#: ../app/controllers/ops_controller/ops_rbac.rb:694 -#: ../app/controllers/ops_controller/settings.rb:173 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:338 -#: ../app/controllers/ops_controller/settings/cap_and_u.rb:44 -#: ../app/controllers/ops_controller/settings/common.rb:583 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:47 -#: ../app/controllers/ops_controller/settings/ldap.rb:87 -#: ../app/controllers/ops_controller/settings/ldap.rb:237 -#: ../app/controllers/ops_controller/settings/schedules.rb:113 -#: ../app/controllers/ops_controller/settings/tags.rb:118 -#: ../app/controllers/ops_controller/settings/zones.rb:51 -#: ../app/controllers/pxe_controller/iso_datastores.rb:73 -#: ../app/controllers/pxe_controller/iso_datastores.rb:201 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:143 -#: ../app/controllers/pxe_controller/pxe_image_types.rb:64 -#: ../app/controllers/pxe_controller/pxe_servers.rb:83 -#: ../app/controllers/pxe_controller/pxe_servers.rb:221 -#: ../app/controllers/pxe_controller/pxe_servers.rb:271 -#: ../app/controllers/report_controller/dashboards.rb:42 -#: ../app/controllers/report_controller/dashboards.rb:99 -#: ../app/controllers/report_controller/menus.rb:210 -#: ../app/controllers/report_controller/reports/editor.rb:95 -#: ../app/controllers/report_controller/schedules.rb:269 -#: ../app/controllers/report_controller/widgets.rb:82 -#: ../app/controllers/storage_manager_controller.rb:183 -#: ../app/controllers/vm_common.rb:783 ../app/controllers/vm_common.rb:786 -#: ../app/controllers/vm_common.rb:974 -msgid "All changes have been reset" -msgstr "Tous les champs ont été réinitialisés" +msgid " # of Days" +msgstr "# de Jours" -#: ../app/assets/javascripts/controllers/buttons/button_group_controller.js:5 -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:3 -#: ../app/helpers/application_helper/toolbar/dialog_center.rb:38 -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:6 -#: ../app/views/chargeback/_cb_rate_edit_table.html.haml:85 -#: ../app/views/chargeback/_tier_first_row.haml:46 -#: ../app/views/cloud_volume/new.html.haml:86 -#: ../app/views/host_aggregate/add_host_select.html.haml:40 -#: ../app/views/host_aggregate/new.html.haml:85 -#: ../app/views/layouts/_edit_buttons.html.haml:15 -#: ../app/views/layouts/_edit_buttons.html.haml:15 -#: ../app/views/layouts/_edit_buttons.html.haml:52 -#: ../app/views/layouts/_edit_buttons.html.haml:52 -#: ../app/views/layouts/_edit_to_email.html.haml:92 -#: ../app/views/layouts/_x_edit_buttons.html.haml:46 -#: ../app/views/layouts/_x_edit_buttons.html.haml:141 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:3 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:3 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:3 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:11 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:11 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:11 -#: ../app/views/ops/_ap_form_file.html.haml:33 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:45 -#: ../app/views/ops/_ap_form_registry.html.haml:38 -#: ../app/views/ops/_classification_entry.html.haml:25 -#: ../app/views/ops/_classification_entry.html.haml:78 -#: ../app/views/ops/_settings_co_categories_tab.html.haml:49 -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:34 -#: ../app/views/shared/views/ems_common/_form.html.haml:181 -#: ../app/views/static/buttons.html.haml:3 -#: ../app/views/static/buttons.html.haml:4 -#: ../app/views/static/buttons.html.haml:13 -#: ../app/views/static/buttons.html.haml:14 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:451 -#: ../app/views/storage_manager/_form.html.haml:240 -#: ../app/views/vm_common/_add_to_service.html.haml:49 -msgid "Add" -msgstr "Ajouter" +msgid " %{host_uid_ems} is not a compute node " +msgstr "%{host_uid_ems} n'est pas un nœud de calcul" -#: ../app/assets/javascripts/controllers/buttons/button_group_controller.js:6 -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:4 -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:15 -#: ../app/views/cloud_volume/backup_new.html.haml:57 -#: ../app/views/cloud_volume/backup_select.html.haml:41 -#: ../app/views/cloud_volume/edit.html.haml:40 -#: ../app/views/cloud_volume/new.html.haml:93 -#: ../app/views/cloud_volume/snapshot_new.html.haml:40 -#: ../app/views/host_aggregate/edit.html.haml:39 -#: ../app/views/host_aggregate/new.html.haml:92 -#: ../app/views/layouts/_adv_search_footer.html.haml:84 -#: ../app/views/layouts/_edit_buttons.html.haml:23 -#: ../app/views/layouts/_edit_buttons.html.haml:58 -#: ../app/views/layouts/_edit_form_buttons.html.haml:25 -#: ../app/views/layouts/_edit_form_buttons.html.haml:47 -#: ../app/views/layouts/_edit_form_buttons.html.haml:56 -#: ../app/views/layouts/_edit_form_buttons.html.haml:76 -#: ../app/views/layouts/_edit_form_buttons.html.haml:148 -#: ../app/views/layouts/_form_buttons.html.haml:14 -#: ../app/views/layouts/_form_buttons.html.haml:21 -#: ../app/views/layouts/_form_buttons.html.haml:29 -#: ../app/views/layouts/_form_buttons.html.haml:39 -#: ../app/views/layouts/_form_buttons.html.haml:77 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:18 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:59 -#: ../app/views/layouts/_x_edit_buttons.html.haml:101 -#: ../app/views/layouts/_x_edit_buttons.html.haml:108 -#: ../app/views/layouts/_x_edit_buttons.html.haml:157 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:19 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:27 -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:149 -#: ../app/views/ops/_ap_form_file.html.haml:62 -#: ../app/views/ops/_ap_form_file.html.haml:119 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:106 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:173 -#: ../app/views/ops/_ap_form_registry.html.haml:81 -#: ../app/views/ops/_ap_form_registry.html.haml:128 -#: ../app/views/ops/_classification_entry.html.haml:58 -#: ../app/views/ops/_settings_replication_tab.html.haml:488 -#: ../app/views/ops/_settings_replication_tab.html.haml:488 -#: ../app/views/ops/_settings_replication_tab.html.haml:494 -#: ../app/views/ops/_settings_replication_tab.html.haml:494 -#: ../app/views/shared/dialogs/_dialog_field.html.haml:48 -#: ../app/views/shared/views/_retire.html.haml:99 -#: ../app/views/shared/views/_retire.html.haml:99 -msgid "Save" -msgstr "Enregistrer" +msgid " %{host_uid_ems} needs to be evacuated before it can be removed " +msgstr " %{host_uid_ems} doit être évacué avant de pouvoir être supprimé " -#: ../app/assets/javascripts/controllers/buttons/button_group_controller.js:7 -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:8 -#: ../app/helpers/application_helper/toolbar/host_center.rb:215 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:237 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:265 -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:22 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:225 -#: ../app/views/cloud_volume/attach.html.haml:64 -#: ../app/views/cloud_volume/backup_new.html.haml:63 -#: ../app/views/cloud_volume/backup_select.html.haml:47 -#: ../app/views/cloud_volume/edit.html.haml:46 -#: ../app/views/cloud_volume/new.html.haml:99 -#: ../app/views/cloud_volume/snapshot_new.html.haml:46 -#: ../app/views/host_aggregate/edit.html.haml:45 -#: ../app/views/host_aggregate/new.html.haml:98 -#: ../app/views/layouts/_adv_search_footer.html.haml:54 -#: ../app/views/layouts/_adv_search_footer.html.haml:57 -#: ../app/views/layouts/_edit_buttons.html.haml:32 -#: ../app/views/layouts/_edit_form_buttons.html.haml:87 -#: ../app/views/layouts/_edit_form_buttons.html.haml:103 -#: ../app/views/layouts/_edit_form_buttons.html.haml:112 -#: ../app/views/layouts/_edit_form_buttons.html.haml:151 -#: ../app/views/layouts/_form_buttons.html.haml:49 -#: ../app/views/layouts/_form_buttons.html.haml:56 -#: ../app/views/layouts/_form_buttons.html.haml:79 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:39 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:68 -#: ../app/views/layouts/_x_edit_buttons.html.haml:116 -#: ../app/views/layouts/_x_edit_buttons.html.haml:161 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:19 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:27 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:35 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:43 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:25 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:51 -#: ../app/views/miq_capacity/planning.html.haml:19 -#: ../app/views/miq_capacity/planning.html.haml:36 -#: ../app/views/miq_policy/_rsop_options.html.haml:22 -#: ../app/views/miq_policy/_rsop_options.html.haml:40 -#: ../app/views/miq_request/_prov_options.html.haml:127 -#: ../app/views/miq_request/_prov_options.html.haml:153 -#: ../app/views/miq_task/_tasks_options.html.haml:160 -#: ../app/views/miq_task/_tasks_options.html.haml:185 -#: ../app/views/ops/_settings_replication_tab.html.haml:500 -#: ../app/views/ops/_settings_replication_tab.html.haml:506 -#: ../app/views/vm_common/_reconfigure.html.haml:413 -msgid "Reset" -msgstr "Réinitialiser" +msgid " %{host_uid_ems} needs to be in maintenance mode before it can be removed " +msgstr "%{host_uid_ems} doit être en mode maintenance avant de pouvoir être désactivé" -#: ../app/assets/javascripts/controllers/buttons/button_group_controller.js:8 -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:10 -#: ../app/assets/javascripts/controllers/container_deployment/wizard/wizard-directive.js:46 -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:31 -#: ../app/views/cloud_volume/attach.html.haml:70 -#: ../app/views/cloud_volume/backup_new.html.haml:69 -#: ../app/views/cloud_volume/backup_select.html.haml:53 -#: ../app/views/cloud_volume/detach.html.haml:46 -#: ../app/views/cloud_volume/edit.html.haml:52 -#: ../app/views/cloud_volume/new.html.haml:105 -#: ../app/views/cloud_volume/snapshot_new.html.haml:52 -#: ../app/views/ems_cloud/discover.html.haml:61 -#: ../app/views/ems_cloud/discover.html.haml:61 -#: ../app/views/ems_infra/register_nodes.html.haml:23 -#: ../app/views/ems_infra/scaledown.html.haml:96 -#: ../app/views/ems_infra/scaledown.html.haml:96 -#: ../app/views/ems_infra/scaling.html.haml:66 -#: ../app/views/ems_infra/scaling.html.haml:66 -#: ../app/views/host_aggregate/edit.html.haml:51 -#: ../app/views/host_aggregate/new.html.haml:104 -#: ../app/views/layouts/_adv_search_footer.html.haml:77 -#: ../app/views/layouts/_adv_search_footer.html.haml:90 -#: ../app/views/layouts/_ae_tree_select.html.haml:66 -#: ../app/views/layouts/_ae_tree_select.html.haml:80 -#: ../app/views/layouts/_discover.html.haml:110 -#: ../app/views/layouts/_discover.html.haml:110 -#: ../app/views/layouts/_edit_buttons.html.haml:40 -#: ../app/views/layouts/_edit_buttons.html.haml:40 -#: ../app/views/layouts/_edit_buttons.html.haml:63 -#: ../app/views/layouts/_edit_buttons.html.haml:63 -#: ../app/views/layouts/_edit_form_buttons.html.haml:123 -#: ../app/views/layouts/_edit_form_buttons.html.haml:132 -#: ../app/views/layouts/_edit_form_buttons.html.haml:163 -#: ../app/views/layouts/_edit_form_buttons.html.haml:172 -#: ../app/views/layouts/_form_buttons.html.haml:65 -#: ../app/views/layouts/_form_buttons.html.haml:83 -#: ../app/views/layouts/_user_input_filter.html.haml:123 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:46 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:71 -#: ../app/views/layouts/_x_edit_buttons.html.haml:130 -#: ../app/views/layouts/_x_edit_buttons.html.haml:173 -#: ../app/views/layouts/_x_edit_buttons.html.haml:193 -#: ../app/views/layouts/_x_edit_buttons.html.haml:211 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:35 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:35 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:35 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:51 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:51 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:51 -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:80 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:115 -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:107 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:188 -#: ../app/views/middleware_server/_choose_datasource.html.haml:42 -#: ../app/views/middleware_server/_deploy.html.haml:116 -#: ../app/views/middleware_server/_ops_params.html.haml:93 -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:67 -#: ../app/views/miq_ae_tools/_import_export.html.haml:234 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:37 -#: ../app/views/miq_policy/_export.html.haml:33 -#: ../app/views/miq_policy/import.html.haml:73 -#: ../app/views/miq_request/_prov_form_buttons.html.haml:15 -#: ../app/views/miq_request/_prov_form_buttons.html.haml:46 -#: ../app/views/ontap_file_share/_create_datastore.html.haml:73 -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:70 -#: ../app/views/report/_export_widgets.html.haml:68 -#: ../app/views/shared/views/_retire.html.haml:106 -#: ../app/views/shared/views/_retire.html.haml:106 -#: ../app/views/shared/views/ems_common/_form.html.haml:187 -#: ../app/views/static/buttons.html.haml:52 -#: ../app/views/static/buttons.html.haml:53 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:445 -#: ../app/views/storage_manager/_form.html.haml:246 -#: ../app/views/vm_common/_add_to_service.html.haml:56 -#: ../app/views/vm_common/_associate_floating_ip.html.haml:48 -#: ../app/views/vm_common/_disassociate_floating_ip.html.haml:48 -#: ../app/views/vm_common/_evacuate.html.haml:115 -#: ../app/views/vm_common/_live_migrate.html.haml:119 -#: ../app/views/vm_common/_reconfigure.html.haml:422 -#: ../app/views/vm_common/_reconfigure.html.haml:422 -#: ../app/views/vm_common/_resize.html.haml:70 -#: ../app/views/vm_common/_resize.html.haml:83 -#: ../app/views/vm_common/_snap.html.haml:70 -msgid "Cancel" -msgstr "Annuler" +msgid " %{model} Assignments" +msgstr " %{model} Affectations" -#: -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:5 -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:14 -#: ../app/views/layouts/_edit_buttons.html.haml:23 -#: ../app/views/layouts/_edit_form_buttons.html.haml:1 -#: ../app/views/layouts/_form_buttons.html.haml:1 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:18 -#: ../app/views/layouts/_x_edit_buttons.html.haml:108 -msgid "Save Changes" -msgstr "Enregistrer les modifications" +msgid " %{name} from %{value} to %{parameters} " +msgstr " %{name} de %{value} à %{parameters} " -#: -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:6 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:25 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:62 -#: ../app/views/layouts/_x_edit_buttons.html.haml:71 -#: ../app/views/layouts/_x_edit_buttons.html.haml:148 -#: ../app/views/layouts/angular/_form_button_submit_angular.html.haml:8 -#: ../app/views/layouts/angular/_form_button_submit_angular.html.haml:15 -#: ../app/views/miq_ae_tools/_import_export.html.haml:122 -#: ../app/views/miq_ae_tools/_import_export.html.haml:232 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:6 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:47 -#: ../app/views/miq_capacity/planning.html.haml:9 -#: ../app/views/miq_capacity/planning.html.haml:32 -#: ../app/views/miq_policy/_rsop_options.html.haml:12 -#: ../app/views/miq_policy/_rsop_options.html.haml:35 -#: ../app/views/miq_request/_prov_form_buttons.html.haml:18 -#: ../app/views/miq_request/_prov_form_buttons.html.haml:42 -#: ../app/views/miq_request/_request.html.haml:266 -#: ../app/views/ontap_file_share/_create_datastore.html.haml:67 -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:64 -#: ../app/views/ops/_diagnostics_database_tab.html.haml:217 -#: ../app/views/vm_common/_associate_floating_ip.html.haml:42 -#: ../app/views/vm_common/_disassociate_floating_ip.html.haml:42 -#: ../app/views/vm_common/_evacuate.html.haml:109 -#: ../app/views/vm_common/_live_migrate.html.haml:113 -#: ../app/views/vm_common/_reconfigure.html.haml:401 -#: ../app/views/vm_common/_reconfigure.html.haml:401 -#: ../app/views/vm_common/_reconfigure.html.haml:407 -#: ../app/views/vm_common/_reconfigure.html.haml:407 -#: ../app/views/vm_common/_resize.html.haml:62 -#: ../app/views/vm_common/_resize.html.haml:81 -msgid "Submit" -msgstr "Envoyer" +msgid " (%{priority}active, PID=%{number})" +msgstr " (%{priority}actif, PID=%{number})" -#: -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:7 -msgid "Submit Changes" -msgstr "Envoyer les modifications" +msgid " (%{priority}available, PID=%{number})" +msgstr " (%{priority}disponible, PID=%{number})" -#: -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:9 -#: ../app/views/layouts/_edit_buttons.html.haml:32 -#: ../app/views/layouts/_edit_form_buttons.html.haml:87 -#: ../app/views/layouts/_edit_form_buttons.html.haml:103 -#: ../app/views/layouts/_edit_form_buttons.html.haml:112 -#: ../app/views/layouts/_form_buttons.html.haml:49 -#: ../app/views/layouts/_form_buttons.html.haml:56 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:39 -#: ../app/views/layouts/_x_edit_buttons.html.haml:116 -msgid "Reset Changes" -msgstr "Réinitialiser les modifications" +msgid " (%{priority}unavailable)" +msgstr " (%{priority}indisponible)" -#: -#: ../app/assets/javascripts/controllers/cloud_topology/cloud_topology_controller.js:41 -#: ../app/assets/javascripts/controllers/container_topology/container_topology_controller.js:48 -#: ../app/assets/javascripts/controllers/infra_topology/infra_topology_controller.js:41 -#: ../app/assets/javascripts/controllers/network_topology/network_topology_controller.js:41 -msgid "Click here to show/hide entities of this type" -msgstr "Cliquez ici pour afficher/masquer les entités de ce type" +msgid " (Ad hoc Metrics)" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Friday" -msgstr "Vendredi" +msgid " (All Descendant %{table}(s))" +msgstr " (Tout les Descendants %{table}(s))" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Monday" -msgstr "Lundi" +msgid " (All Resource Pools)" +msgstr " (Toutes les ressources en commun )" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Saturday" -msgstr "Samedi" +msgid " (All VMs - Tree View)" +msgstr " (Toutes les MV - Vue Arborescente)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Sunday" -msgstr "Dimanche" +msgid " (All VMs)" +msgstr " (Toutes les MV)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Thursday" -msgstr "Jeudi" +msgid " (Analysis History)" +msgstr " (Historique des Analyses)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Tuesday" -msgstr "Mardi" +msgid " (Click to view)" +msgstr " (Cliquez pour afficher)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Wednesday" -msgstr "Mercredi" +msgid " (Compliance History - Last %{number} Checks)" +msgstr " (Historique des Conformités - Les %{number} dernières vérifications)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 -msgid "1-2" -msgstr "1-2" +msgid " (Container)" +msgstr " (Container)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 -msgid "12-1" -msgstr "12-1" +msgid " (Dashboard)" +msgstr " (Dashboard)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 -msgid "2-3" -msgstr "2-3" +msgid " (Devices)" +msgstr " (Devices)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 -msgid "3-4" -msgstr "3-4" +msgid " (Direct %{title})" +msgstr " (Direct %{title})" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 -msgid "4-5" -msgstr "4-5" +msgid " (Genealogy)" +msgstr " (Généalogie)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 -msgid "5-6" -msgstr "5-6" +msgid " (Hosts & Clusters)" +msgstr " (Hôtes & Clusters)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 -msgid "10-11" -msgstr "10-11" +msgid " (Inactive)" +msgstr " (Inactive)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 -msgid "11-12" -msgstr "11-12" +msgid " (Latest Compliance Check)" +msgstr " (Dernière Vérification de Conformité)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 -msgid "6-7" -msgstr "6-7" +msgid " (Names with \"%{search_text}\")" +msgstr "(Noms contenant \"%{search_text}\")" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 -msgid "7-8" -msgstr "7-8" +msgid " (Names with \"%{text}\")" +msgstr " (Noms avec \"%{text}\")" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 -msgid "8-9" -msgstr "8-9" +msgid " (Networks)" +msgstr " (Réseaux)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 -msgid "9-10" -msgstr "9-10" +msgid " (OS Information)" +msgstr " (Information SE)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:48 -msgid "In use by %s reports, cannot be disabled" -msgstr "Utilisé par les rapports %s ; désactivation impossible" +msgid " (Parent)" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/container_dashboard_controller.js:25 -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:45 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/ems_infra_dashboard_controller.js:22 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:37 -#: ../app/controllers/miq_capacity_controller.rb:766 -#: ../app/helpers/chargeback_helper.rb:4 -#: ../app/helpers/service_helper/textual_summary.rb:39 -#: ../app/helpers/vm_helper/textual_summary.rb:788 -#: ../app/views/miq_capacity/_utilization_report.html.haml:33 -#: ../app/views/miq_capacity/_utilization_summary.html.haml:18 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:55 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:132 -#: ../app/views/vm_common/_right_size.html.haml:44 -msgid "CPU" -msgstr "CPU" +msgid " (Properties)" +msgstr "(Propriétés)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/container_dashboard_controller.js:31 -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:54 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:35 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/ems_infra_dashboard_controller.js:28 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:46 -#: ../app/controllers/application_controller.rb:1163 -#: ../app/controllers/application_controller/miq_request_methods.rb:410 -#: ../app/controllers/miq_capacity_controller.rb:767 -#: ../app/helpers/chargeback_helper.rb:7 -#: ../app/helpers/container_node_helper/textual_summary.rb:51 -#: ../app/helpers/host_helper/textual_summary.rb:247 -#: ../app/helpers/service_helper/textual_summary.rb:43 -#: ../app/helpers/vm_helper/textual_summary.rb:605 -#: ../app/helpers/vm_helper/textual_summary.rb:807 -#: ../app/views/miq_capacity/_utilization_report.html.haml:33 -#: ../app/views/miq_capacity/_utilization_summary.html.haml:18 -#: ../app/views/miq_request/_reconfigure_show.html.haml:17 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:48 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:125 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:163 -#: ../app/views/vm_common/_reconfigure.html.haml:15 -#: ../app/views/vm_common/_right_size.html.haml:114 -#: ../app/views/vm_common/_right_size.html.haml:241 -#: ../app/views/vm_common/_right_size.html.haml:325 -#: ../app/views/vm_common/_right_size.html.haml:408 -msgid "Memory" -msgstr "Mémoire" +msgid " (Resources)" +msgstr " (Ressources)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:46 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:38 -msgid "Cores" -msgstr "Cœurs" +msgid " (Snapshots)" +msgstr " (Clichés)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:47 -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:56 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:39 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:48 -msgid "Used" -msgstr "Utilisé" +msgid " (Summary)" +msgstr " (Résumé)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:48 -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:57 -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:64 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:40 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:49 -#: ../app/helpers/ui_constants.rb:429 -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:128 -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:146 -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:195 -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:239 -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:95 -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:113 -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:151 -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:173 -msgid "Last 30 Days" -msgstr "30 derniers jours" +msgid " (Topology)" +msgstr " (Topologie)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:55 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:47 -#: ../app/views/miq_capacity/_planning_options.html.haml:251 -msgid "GB" -msgstr "Go" +msgid " (VMs & Templates)" +msgstr " (MV & Modèles)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:63 -msgid "Network Utilization Trend" -msgstr "Tendance sur l'utilisation du réseau" +msgid " (current)" +msgstr "(courant)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:65 -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:66 -#: ../app/assets/javascripts/miq_application.js:95 -msgid "KBps" -msgstr "kbit/s" +msgid " (filtered)" +msgstr "(filtré)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:71 -msgid "Pod Creation and Deletion Trends" -msgstr "Tendances de création et suppression de pods" +msgid " * Multiple UI workers can not be configured with session store as memory" +msgstr "Plusieurs UI workers ne peuvent pas être configurés quand la session est chargée en mémoire" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:72 -#: ../app/views/miq_policy/_policy_details.html.haml:76 -msgid "Created" -msgstr "Créé" +msgid " - %{last_refresh_date} Ago" +msgstr " - Il y a %{last_refresh_date}" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:73 -msgid "Deleted" -msgstr "Supprimé" +msgid " - Filtered by \"%{text}\"" +msgstr " - Filtré par \"%{text}\"" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:86 -msgid "New Image Usage Trend" -msgstr "Nouvelle tendance d'utilisation d'images" +msgid " - Filtered by \"%{text}\" report" +msgstr " - Filtré par rapport \"%{text}\"" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:87 -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:59 -#: ../app/controllers/ems_common.rb:61 -#: ../app/controllers/vm_cloud_controller.rb:165 -#: ../app/controllers/vm_common.rb:1246 -#: ../app/views/configuration/_ui_2.html.haml:175 -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:42 -msgid "Images" -msgstr "Images" +msgid " - Filtered by %{filter}" +msgstr " - Filtré par %{filter}" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:103 -msgid "Node: " -msgstr "Nœud : " +msgid " - Filtered by custom search" +msgstr " - Filtré par recherche personnalisée" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:103 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:85 -#: ../app/assets/javascripts/services/topology_service.js:10 -msgid "Provider: " -msgstr "Fournisseur : " +msgid " Add " +msgstr "Ajout" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:105 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:87 -msgid "Usage: Unknown" -msgstr "Utilisation : inconnue" +msgid " Address" +msgstr " Adresse" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:108 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:90 -msgid "%d%% in use of %d total" -msgstr "%d%% en utilisation sur %d total" +msgid " Build %{number}" +msgstr " Build %{number}" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:108 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:90 -msgid "Usage: " -msgstr "Utilisation : " +msgid " Day" +msgstr "Jour" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:4 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:4 -#: ../app/controllers/provider_foreman_controller.rb:518 -#: ../app/controllers/provider_foreman_controller.rb:1169 -#: ../app/presenters/menu/default_menu.rb:48 -#: ../app/presenters/menu/default_menu.rb:65 -#: ../app/presenters/menu/default_menu.rb:97 -#: ../app/presenters/menu/default_menu.rb:117 -#: ../app/presenters/menu/default_menu.rb:125 -#: ../app/presenters/menu/default_menu.rb:138 -msgid "Providers" -msgstr "Fournisseurs" +msgid " Days" +msgstr "Jours" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:11 -#: ../app/helpers/application_helper.rb:1525 -#: ../app/presenters/menu/default_menu.rb:61 -#: ../app/views/container_topology/show.html.haml:120 -#: ../app/views/infra_topology/show.html.haml:33 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:303 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:25 -msgid "Nodes" -msgstr "Nœuds" +msgid " Download PDF" +msgstr " Télécharger le PDF" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:19 -#: ../app/controllers/ems_common.rb:76 -#: ../app/presenters/menu/default_menu.rb:95 -#: ../app/views/configuration/_ui_2.html.haml:74 -#: ../app/views/container_topology/show.html.haml:63 -msgid "Containers" -msgstr "Conteneurs" +msgid " Full Screen" +msgstr " Plein écran" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:27 -msgid "Registries" -msgstr "Registres" +msgid " Hour" +msgstr "Heure" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:35 -#: ../app/views/ops/_rbac_tenant_details.html.haml:111 -msgid "Projects" -msgstr "Projets" +msgid " Hours" +msgstr "Heures" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:43 -#: ../app/controllers/ems_common.rb:79 -#: ../app/views/container_topology/show.html.haml:44 -msgid "Pods" -msgstr "Pods" +msgid " Maximize" +msgstr "Agrandir" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:51 -#: ../app/controllers/host_controller.rb:190 -#: ../app/controllers/service_controller.rb:150 -#: ../app/helpers/host_helper/textual_summary.rb:448 -#: ../app/helpers/ui_constants.rb:437 ../app/presenters/menu/default_menu.rb:38 -#: ../app/views/configuration/_ui_2.html.haml:46 -#: ../app/views/container_topology/show.html.haml:82 -#: ../app/views/layouts/listnav/_host.html.haml:224 -msgid "Services" -msgstr "Services" +msgid " Memory value not in range or not a multiple of 4" +msgstr "Valeur de la mémoire hors de la plage ou non multiple de 4" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:67 -#: ../app/views/container_topology/show.html.haml:101 -msgid "Routes" -msgstr "Routes" +msgid " Minimize" +msgstr "Réduire" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:23 -#: ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:213 -#: ../app/assets/javascripts/controllers/container_deployment/wizard/wizard-directive.js:52 -msgid "Next >" -msgstr "Suivant >" +msgid " Processor Options" +msgstr "Options de Processeur" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:191 -msgid "An unknown error has occurred." -msgstr "Une erreur inconnue s'est produite." +msgid " Remove Widget" +msgstr " Supprimer le composant d'interface" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:209 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:196 -#: ../app/views/middleware_server/_deploy.html.haml:124 -msgid "Deploy" -msgstr "Déployer" +msgid " Scaling down to %{a} compute nodes" +msgstr " Réduction à %{a} noeuds de calcul" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:211 -#: ../app/views/dashboard/_zoomed_chart.html.haml:14 -#: ../app/views/middleware_server/_add_datasource.html.haml:29 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:29 -#: ../app/views/middleware_server/_ops_params.html.haml:31 -msgid "Close" -msgstr "Fermer" +msgid " Selected Actions:" +msgstr "Actions sélectionnées:" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:20 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-no-provider-controller.js:89 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:238 -#: ../app/controllers/application_controller/miq_request_methods.rb:323 -#: ../app/controllers/application_controller/miq_request_methods.rb:335 -#: ../app/controllers/application_controller/miq_request_methods.rb:346 -#: ../app/controllers/application_controller/miq_request_methods.rb:358 -#: ../app/controllers/application_controller/miq_request_methods.rb:375 -#: ../app/controllers/application_controller/miq_request_methods.rb:390 -#: ../app/controllers/application_controller/miq_request_methods.rb:406 -#: ../app/controllers/application_controller/miq_request_methods.rb:437 -#: ../app/controllers/application_controller/miq_request_methods.rb:443 -#: ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:17 -#: ../app/helpers/container_build_helper/textual_summary.rb:23 -#: ../app/helpers/container_group_helper/textual_summary.rb:16 -#: ../app/helpers/container_group_helper/textual_summary.rb:57 -#: ../app/helpers/container_helper/textual_summary.rb:121 -#: ../app/helpers/container_image_helper/textual_summary.rb:105 -#: ../app/helpers/container_node_helper/textual_summary.rb:17 -#: ../app/helpers/container_project_helper/textual_summary.rb:22 -#: ../app/helpers/container_project_helper/textual_summary.rb:43 -#: ../app/helpers/container_service_helper/textual_summary.rb:18 -#: ../app/helpers/container_template_helper/textual_summary.rb:20 -#: ../app/helpers/container_template_helper/textual_summary.rb:26 -#: ../app/helpers/ems_container_helper/textual_summary.rb:28 -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:27 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:37 -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:27 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:30 -#: ../app/helpers/ops_helper/textual_summary.rb:37 -#: ../app/helpers/ops_helper/textual_summary.rb:101 -#: ../app/helpers/ops_helper/textual_summary.rb:109 -#: ../app/helpers/ops_helper/textual_summary.rb:117 -#: ../app/helpers/ops_helper/textual_summary.rb:139 -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:168 -#: ../app/helpers/provider_foreman_helper.rb:125 -#: ../app/helpers/provider_foreman_helper.rb:205 -#: ../app/helpers/provider_foreman_helper.rb:234 -#: ../app/helpers/provider_foreman_helper.rb:280 -#: ../app/helpers/pxe_helper/textual_summary.rb:48 -#: ../app/helpers/pxe_helper/textual_summary.rb:72 -#: ../app/helpers/pxe_helper/textual_summary.rb:96 -#: ../app/helpers/pxe_helper/textual_summary.rb:116 -#: ../app/helpers/pxe_helper/textual_summary.rb:140 -#: ../app/views/_ldap_domain_form.html.haml:16 -#: ../app/views/auth_key_pair_cloud/_form.html.haml:24 -#: ../app/views/catalog/_form_resources_info.html.haml:55 -#: ../app/views/catalog/_ot_add.html.haml:14 -#: ../app/views/catalog/_ot_copy.html.haml:21 -#: ../app/views/catalog/_ot_edit.html.haml:14 -#: ../app/views/catalog/_ot_tree_show.html.haml:11 -#: ../app/views/catalog/_sandt_tree_show.html.haml:261 -#: ../app/views/catalog/_stcat_form.html.haml:20 -#: ../app/views/catalog/_stcat_tree_show.html.haml:11 -#: ../app/views/catalog/_svccat_tree_show.html.haml:28 -#: ../app/views/chargeback/_cb_assignments.html.haml:94 -#: ../app/views/chargeback/_cb_assignments.html.haml:155 -#: ../app/views/chargeback/_cb_assignments.html.haml:192 -#: ../app/views/chargeback/_cb_assignments.html.haml:229 -#: ../app/views/chargeback/_reports_list.html.haml:52 -#: ../app/views/configuration/_timeprofile_form.html.haml:384 -#: ../app/views/ems_container/_form.html.haml:13 -#: ../app/views/ems_datawarehouse/_form.html.haml:13 -#: ../app/views/ems_infra/_form.html.haml:13 -#: ../app/views/ems_middleware/_form.html.haml:13 -#: ../app/views/generic_object/explorer.html.haml:21 -#: ../app/views/generic_object/explorer.html.haml:52 -#: ../app/views/generic_object/explorer.html.haml:108 -#: ../app/views/host/_form.html.haml:25 -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:15 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:15 -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_class_form.html.haml:27 -#: ../app/views/miq_ae_class/_class_props.html.haml:29 -#: ../app/views/miq_ae_class/_inputs.html.haml:14 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:15 -#: ../app/views/miq_ae_class/_instance_form.html.haml:27 -#: ../app/views/miq_ae_class/_instance_form.html.haml:87 -#: ../app/views/miq_ae_class/_method_form.html.haml:31 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:32 -#: ../app/views/miq_ae_class/_ns_list.html.haml:20 -#: ../app/views/miq_ae_class/_ns_list.html.haml:104 -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:35 -#: ../app/views/miq_ae_customization/_old_dialogs_details.html.haml:20 -#: ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:17 -#: ../app/views/miq_capacity/_planning_summary.html.haml:49 -#: ../app/views/miq_policy/_action_details.html.haml:76 -#: ../app/views/ontap_file_share/_create_datastore.html.haml:18 -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:12 -#: ../app/views/ops/_ap_form.html.haml:18 -#: ../app/views/ops/_ap_form_file.html.haml:12 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:12 -#: ../app/views/ops/_ap_show.html.haml:16 -#: ../app/views/ops/_ap_show.html.haml:94 -#: ../app/views/ops/_category_form.html.haml:118 -#: ../app/views/ops/_classification_entries.html.haml:13 -#: ../app/views/ops/_db_info.html.haml:15 -#: ../app/views/ops/_db_info.html.haml:118 -#: ../app/views/ops/_db_info.html.haml:213 -#: ../app/views/ops/_ldap_domain_form.html.haml:16 -#: ../app/views/ops/_ldap_domain_show.html.haml:16 -#: ../app/views/ops/_ldap_region_form.html.haml:19 -#: ../app/views/ops/_ldap_region_show.html.haml:18 -#: ../app/views/ops/_ldap_region_show.html.haml:71 -#: ../app/views/ops/_rbac_role_details.html.haml:23 -#: ../app/views/ops/_rbac_tenant_details.html.haml:17 -#: ../app/views/ops/_rbac_tenant_details.html.haml:93 -#: ../app/views/ops/_rbac_tenant_details.html.haml:119 -#: ../app/views/ops/_schedule_form.html.haml:19 -#: ../app/views/ops/_settings_co_categories_tab.html.haml:10 -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:13 -#: ../app/views/ops/_tenant_form.html.haml:17 -#: ../app/views/ops/_zone_form.html.haml:16 -#: ../app/views/orchestration_stack/_copy_orchestration_template.html.haml:16 -#: ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 -#: ../app/views/provider_foreman/_form.html.haml:18 -#: ../app/views/pxe/_iso_datastore_details.html.haml:24 -#: ../app/views/pxe/_pxe_form.html.haml:17 -#: ../app/views/pxe/_pxe_image_type_form.html.haml:17 -#: ../app/views/pxe/_pxe_server_details.html.haml:59 -#: ../app/views/pxe/_pxe_server_details.html.haml:106 -#: ../app/views/pxe/_template_form.html.haml:15 -#: ../app/views/report/_db_form.html.haml:20 -#: ../app/views/report/_db_show.html.haml:12 -#: ../app/views/report/_report_info.html.haml:124 -#: ../app/views/report/_report_list.html.haml:49 -#: ../app/views/report/_report_list.html.haml:82 -#: ../app/views/report/_report_list.html.haml:112 -#: ../app/views/report/_schedule_form.html.haml:17 -#: ../app/views/service/_service_form.html.haml:27 -#: ../app/views/shared/views/ems_common/_form.html.haml:18 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:13 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:63 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:9 -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:7 -#: ../app/views/storage_manager/_form.html.haml:23 -#: ../app/views/vm_common/_reconfigure.html.haml:201 -#: ../app/views/vm_common/_snap.html.haml:17 -msgid "Name" -msgstr "Nom" +msgid " Selected Alerts:" +msgstr "Alertes sélectionnées:" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:25 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-no-provider-controller.js:94 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:244 -#: ../app/views/ops/_rbac_group_details.html.haml:55 -#: ../app/views/ops/_rbac_user_details.html.haml:195 -#: ../app/views/ops/_selected_by_roles.html.haml:7 -#: ../app/views/ops/_selected_by_servers.html.haml:168 -msgid "Role" -msgstr "Rôle" +msgid " Total processors value larger than the maximum allowed" +msgstr "Nombre de processeurs supérieur au maximum autorisé" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:30 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:158 -msgid "# CPUS" -msgstr "Nb de processeurs" +msgid " Valid memory value required" +msgstr "Une valeur de mémoire valide est requise" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:40 -#: ../app/controllers/application_controller/miq_request_methods.rb:411 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:62 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:139 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:168 -msgid "Disk Size" -msgstr "Taille du disque" +msgid " Valid numeric disk size required " +msgstr "Valeur numérique valide requise pour la taille du disque" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-no-provider-controller.js:67 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:126 -msgid "Remove Roles" -msgstr "Supprimer les rôles" - -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-no-provider-controller.js:71 -msgid "Remove VM(s)" -msgstr "Supprimer la ou les MV" +msgid " Valid numeric quota value required " +msgstr "Une valeur numérique valide est requise pour le quota" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:76 -msgid "The number of Masters must be 1, 3, or 5" -msgstr "Le nombre de masters doit être 1, 3 ou 5" +msgid " Week" +msgstr "Semaine" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:85 -msgid "You must select at least one Node" -msgstr "Vous devez sélectionner au moins un nœud" +msgid " Weeks" +msgstr "Semaines" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:94 -msgid "You must select one Storage Node when using Integrated NFS storage" -msgstr "" -"Vous devez sélectionner un nœud de stockage lorsque vous utilisez un stockage " -"NFS intégré" +msgid " Zoom in" +msgstr " Zoom avant" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:97 -msgid "You can only specify one Storage Node" -msgstr "Vous ne pouvez spécifier qu'un seul nœud de stockage" +msgid " [%{text} Information]" +msgstr " [%{text} Information]" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:106 -msgid "You can specify at most one DNS Node" -msgstr "Vous ne pouvez spécifier qu'un seul nœud DNS" +msgid " by %{user}" +msgstr " par %{user}" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:120 -msgid "Load balancers can only be assigned to Masters or Nodes" -msgstr "" -"Les équilibreurs de charge ne peuvent être affectés qu'à des maîtres ou des nœ" -"uds" +msgid "\"%{action}\" for %{switch} \"%{name}\"" +msgstr "\"%{action}\" pour %{switch} \"%{name}\"" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:128 -msgid "DNS can only be assigned to Masters or Nodes" -msgstr "Le DNS ne peut être affecté qu'à des maîtres ou des nœuds" +msgid "\"%{action}\" for %{vm_or_template} \"%{name}\"" +msgstr "\"%{action}\" pour %{vm_or_template} \"%{name}\"" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:136 -msgid "Etcd can only be assigned to Masters or Nodes" -msgstr "Etcd ne peut être affecté qu'à des maîtres ou des nœuds" +msgid "\"%{datastore_name}\": cannot be removed, has vms or hosts" +msgstr "\"%{datastore_name}\": ne peut pas être supprimé, possèdent des MV ou des hyperviseurs" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:144 -msgid "Infrastructure can only be assigned to Nodes" -msgstr "L'infrastructure ne peut être affectée qu'à des nœuds" +msgid "\"%{field}\" %{model} cannot be deleted" +msgstr "\"%{field}\" %{model} ne peut être supprimé" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:30 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:36 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:47 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:54 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:73 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:85 -#: ../app/helpers/cloud_volume_backup_helper/textual_summary.rb:37 -#: ../app/helpers/cloud_volume_helper/textual_summary.rb:37 -#: ../app/helpers/cloud_volume_helper/textual_summary.rb:52 -#: ../app/helpers/cloud_volume_helper/textual_summary.rb:64 -#: ../app/helpers/cloud_volume_snapshot_helper/textual_summary.rb:45 -#: ../app/helpers/configuration_job_helper/textual_summary.rb:36 -#: ../app/helpers/configuration_job_helper/textual_summary.rb:49 -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:124 -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:190 -#: ../app/helpers/host_helper/textual_summary.rb:136 -#: ../app/helpers/host_helper/textual_summary.rb:225 -#: ../app/helpers/host_helper/textual_summary.rb:265 -#: ../app/helpers/host_helper/textual_summary.rb:304 -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:61 -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:74 -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:86 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:189 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:211 -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:47 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:60 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:67 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:79 -#: ../app/helpers/service_helper/textual_summary.rb:77 -#: ../app/helpers/storage_helper/textual_summary.rb:61 -#: ../app/helpers/storage_helper/textual_summary.rb:144 -#: ../app/helpers/storage_helper/textual_summary.rb:155 -#: ../app/helpers/textual_mixins/textual_authentications_status.rb:12 -#: ../app/helpers/textual_mixins/textual_authentications_status.rb:38 -#: ../app/helpers/textual_mixins/textual_drift.rb:7 -#: ../app/helpers/textual_mixins/textual_metrics_status.rb:5 -#: ../app/helpers/textual_mixins/textual_metrics_status.rb:6 -#: ../app/helpers/textual_mixins/textual_scan_history.rb:6 -#: ../app/helpers/textual_summary_helper.rb:163 -#: ../app/helpers/textual_summary_helper.rb:178 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:100 -#: ../app/helpers/vm_helper.rb:24 ../app/helpers/vm_helper.rb:29 -#: ../app/helpers/vm_helper/textual_summary.rb:127 -#: ../app/helpers/vm_helper/textual_summary.rb:160 -#: ../app/helpers/vm_helper/textual_summary.rb:221 -#: ../app/helpers/vm_helper/textual_summary.rb:232 -#: ../app/helpers/vm_helper/textual_summary.rb:243 -#: ../app/helpers/vm_helper/textual_summary.rb:256 -#: ../app/helpers/vm_helper/textual_summary.rb:288 -#: ../app/helpers/vm_helper/textual_summary.rb:299 -#: ../app/helpers/vm_helper/textual_summary.rb:310 -#: ../app/helpers/vm_helper/textual_summary.rb:323 -#: ../app/helpers/vm_helper/textual_summary.rb:337 -#: ../app/helpers/vm_helper/textual_summary.rb:349 -#: ../app/helpers/vm_helper/textual_summary.rb:447 -#: ../app/helpers/vm_helper/textual_summary.rb:831 -#: ../app/views/catalog/_form_resources_info.html.haml:121 -#: ../app/views/layouts/_edit_to_email.html.haml:22 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:269 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:126 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:209 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:252 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:350 -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:121 -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:155 -#: ../app/views/miq_capacity/_utilization_options.html.haml:45 -#: ../app/views/miq_policy/_action_options.html.haml:477 -#: ../app/views/miq_policy/_action_options.html.haml:489 -#: ../app/views/miq_policy/_alert_snmp.html.haml:129 -#: ../app/views/miq_request/_prov_ds_grid.html.haml:29 -#: ../app/views/miq_request/_prov_field.html.haml:285 -#: ../app/views/miq_request/_prov_field.html.haml:337 -#: ../app/views/miq_request/_prov_field.html.haml:456 -#: ../app/views/miq_request/_prov_field.html.haml:549 -#: ../app/views/miq_request/_prov_host_grid.html.haml:33 -#: ../app/views/miq_request/_prov_iso_img_grid.html.haml:26 -#: ../app/views/miq_request/_prov_pxe_img_grid.html.haml:26 -#: ../app/views/miq_request/_prov_template_grid.html.haml:26 -#: ../app/views/miq_request/_prov_vc_grid.html.haml:27 -#: ../app/views/miq_request/_prov_vm_grid.html.haml:31 -#: ../app/views/miq_request/_prov_vm_grid.html.haml:108 -#: ../app/views/miq_request/_prov_windows_image_grid.html.haml:26 -#: ../app/views/ops/_rbac_role_details.html.haml:59 -#: ../app/views/ops/_rbac_role_details.html.haml:62 -#: ../app/views/ops/_settings_replication_tab.html.haml:91 -#: ../app/views/report/_form_columns_trend.html.haml:42 -#: ../app/views/report/_form_columns_trend.html.haml:86 -#: ../app/views/report/_form_columns_trend.html.haml:86 -#: ../app/views/report/_form_formatting.html.haml:88 -#: ../app/views/report/_form_sort.html.haml:119 -#: ../app/views/shared/dialogs/_dialog_field_radio_button.html.haml:6 -#: ../app/views/shared/views/_retire.html.haml:49 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:175 -msgid "None" -msgstr "Aucun(e)" +msgid "\"%{name}\": Global %{model} cannot be deleted" +msgstr "\"%{name}\": Global %{model} ne peut être supprimé" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:30 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:36 -msgid "Use existing VMs from an existing provider: " -msgstr "Utiliser les MV existantes d'un fournisseur existant : " +msgid "\"%{name}\": In use by %{rep_count} Report, cannot be deleted" +msgid_plural "\"%{name}\": In use by %{rep_count} Reports, cannot be deleted" +msgstr[0] "\"%{name}\" : en cours d'utilisation par %{rep_count} rapport. Suppression impossible." +msgstr[1] "\"%{name}\" : en cours d'utilisation par %{rep_count} rapports. Suppression impossible." -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:39 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:76 -msgid "Specify a list of machines to deploy on (No existing provider)" -msgstr "" -"Spécifier une liste des machines où effectuer le déploiement (aucun fournisseu" -"r existant)" +msgid "\"%{record}\": %{task} invalid" +msgstr "\"%{record}\" : %{task} non valide" -#: -#: ../app/assets/javascripts/controllers/container_deployment/wizard/wizard-directive.js:49 -msgid "< Back" -msgstr "< Retour" +msgid "\"%{record}\": %{task} successfully initiated" +msgstr "\"%{record}\": %{task} lancé" -#: -#: ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:89 -msgid "Filter by %s..." -msgstr "" +msgid "\"%{record}\": Analysis successfully initiated" +msgstr "\"%{record}\" : analyse lancée" -#: -#: ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:226 -#: ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:248 -msgid "MM/DD/YYYY HH:mm" -msgstr "" +msgid "\"%{record}\": Compliance check successfully initiated" +msgstr "\"%{record}\" : vérification de conformité démarrée" -#: -#: ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:268 -msgid "Use the System Tenant Metrics" -msgstr "" +msgid "\"%{record}\": Refresh successfully initiated" +msgstr "\"%{record}\" : rafraîchissement lancé" -#: -#: ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:274 -msgid "Use the Ops Tenant Metrics" -msgstr "" +msgid "\"%{record}\": Scheduling is %{status} now." +msgstr "\"%{record}\" : l'état du planning est maintenant %{status}." -#: -#: ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:45 -msgid "Add of Arbitration Profile was cancelled by the user" -msgstr "L'ajout du profil d'arbitrage a été annulé par l'utilisateur" +msgid "\"%{task_description}\" was executed" +msgstr "\"%{task_description}\" a été exécuté" -#: -#: ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:47 -msgid "Edit of Arbitration Profile %s was cancelled by the user" -msgstr "La modification du profil d'arbitrage %s a été annulée par l'utilisateur" +msgid "\"%{task}\": not available for %{hostname}" +msgstr "\"%{task}\": pas disponible pour %{hostname}" -#: -#: ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:61 -msgid "Arbitration Profile %s was saved" -msgstr "Le profil d'arbitrage %s a été enregistré" +msgid "\"%{task}\": not available for %{hostname}. %{hostname}'s provision state must be in \"available\", \"adoptfail\", \"cleanfail\", \"enroll\", or \"inspectfail\"" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:70 -msgid "Arbitration Profile %s was added" -msgstr "Le profil d'arbitrage %s a été ajouté" +msgid "\"%{task}\": not available for %{hostname}. %{hostname}'s provision state needs to be in \"manageable\"" +msgstr "\"%{task}\" : non disponible pour %{hostname}. L'état de mise en service de %{hostname} doit être \"manageable\"" -#: -#: ../app/assets/javascripts/controllers/ems_common/ems_common_form_controller.js:57 -#: ../app/views/layouts/_auth_credentials.html.haml:30 -msgid "Note: Username must be in the format: name@realm" -msgstr "Remarque : le nom d'utilisation doit être au format : nom@domaine" +msgid "\"%{task}\": not supported for %{hostname}" +msgstr "\"%{task}\": non supportée pour %{hostname}" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:55 -msgid "Recent Hosts" -msgstr "Hôtes récents" +msgid "\"%{type}\" is not a valid Orchestration Template type" +msgstr "\"%{type}\" : n'est pas un modèle d'orchestration valide" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:56 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:19 -#: ../app/controllers/application_controller/miq_request_methods.rb:617 -#: ../app/controllers/host_controller.rb:31 -#: ../app/controllers/host_controller.rb:686 -#: ../app/helpers/application_helper.rb:1523 ../app/helpers/ui_constants.rb:359 -#: ../app/presenters/menu/default_menu.rb:61 -#: ../app/views/configuration/_ui_2.html.haml:210 -#: ../app/views/container_topology/show.html.haml:158 -msgid "Hosts" -msgstr "Hôtes" +msgid "\"A route named '#{route_name}' is configured to connect to the \"external logging server but it doesn't exist" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:68 -msgid "Recent VMs" -msgstr "MV récentes" +msgid "\"There is no server with the #{role} role enabled\"" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:69 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:35 -#: ../app/controllers/application_controller/miq_request_methods.rb:613 -#: ../app/controllers/ems_common.rb:72 ../app/controllers/host_controller.rb:95 -#: ../app/controllers/vm_common.rb:1262 -#: ../app/controllers/vm_infra_controller.rb:27 -#: ../app/helpers/host_helper/textual_summary.rb:320 -#: ../app/views/cloud_topology/show.html.haml:33 -#: ../app/views/configuration/_ui_2.html.haml:210 -#: ../app/views/container_topology/show.html.haml:139 -#: ../app/views/ems_infra/scaledown.html.haml:46 -#: ../app/views/layouts/listnav/_ems_infra.html.haml:63 -#: ../app/views/layouts/listnav/_host.html.haml:128 -#: ../app/views/layouts/listnav/_storage.html.haml:37 -#: ../app/views/middleware_topology/show.html.haml:108 -#: ../app/views/miq_capacity/_planning_summary.html.haml:20 -#: ../app/views/network_topology/show.html.haml:52 -#: ../app/views/service/_svcs_show.html.haml:30 -msgid "VMs" -msgstr "MV" +msgid "# CPUS" +msgstr "Nb de processeurs" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:85 -msgid "Cluster: " -msgstr "Cluster : " +msgid "% Complete" +msgstr "% terminé" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:11 -#: ../app/controllers/application_controller/compare.rb:867 -#: ../app/controllers/ems_cluster_controller.rb:28 -#: ../app/controllers/ems_cluster_controller.rb:261 -#: ../app/helpers/application_helper.rb:1538 ../app/helpers/ui_constants.rb:358 -#: ../app/presenters/menu/default_menu.rb:62 -#: ../app/views/configuration/_ui_2.html.haml:210 -msgid "Clusters" -msgstr "Clusters" +msgid "% Matched" +msgstr "% Correspondant" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:27 -#: ../app/controllers/storage_controller.rb:416 -#: ../app/controllers/storage_controller.rb:629 -#: ../app/views/configuration/_ui_2.html.haml:210 -msgid "Datastores" -msgstr "Magasins de données" +msgid "% Matched:" +msgstr "% Correspondant :" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:43 -#: ../app/controllers/application_controller/miq_request_methods.rb:615 -#: ../app/controllers/ems_common.rb:71 ../app/controllers/host_controller.rb:95 -#: ../app/controllers/miq_template_controller.rb:20 -#: ../app/controllers/vm_common.rb:1260 -#: ../app/controllers/vm_infra_controller.rb:32 -#: ../app/helpers/ems_infra_helper/textual_summary.rb:153 -#: ../app/views/configuration/_ui_2.html.haml:210 -#: ../app/views/layouts/listnav/_ems_infra.html.haml:70 -#: ../app/views/layouts/listnav/_host.html.haml:136 -msgid "Templates" -msgstr "Modèles" +msgid "% Savings" +msgstr "% Sauvergardes" -#: ../app/assets/javascripts/controllers/header/header_controller.js:43 -msgid "%{count} unread notifications" -msgstr "%{count} notifications non lues" +msgid "%d Months Ago" +msgstr " il y a %d mois" -#: -#: ../app/assets/javascripts/controllers/middleware_datasource/middleware_datasource_controller.js:58 -msgid "Unable to install the Datasource on this server." +msgid "%d Note" msgstr "" -#: -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:25 -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:83 -msgid "No replication role has been set" -msgstr "Aucun rôle de réplication n'a été défini" - -#: -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:85 -msgid "Replication will be disabled for this region" -msgstr "La réplication sera désactivée pour cette région" +msgid "%d Notes" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:87 -msgid "All current subscriptions will be removed" -msgstr "Toutes les souscriptions en cours vont être supprimées" +msgid "%d Weeks Ago" +msgstr "%d Semaines Avant" -#: -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:89 -msgid "Changing to remote replication role will remove all current subscriptions" +msgid "%d%% in use of %d %s total" msgstr "" -"La modification du rôle de réplication distant supprimera tous les abonnements" -" en cours" -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:161 -#: ../app/views/miq_policy/_rsop_form.html.haml:45 -msgid "VM Selection" -msgstr "Sélection de MV" +msgid "%d%% in use of %d total" +msgstr "%d%% en utilisation sur %d total" -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:163 -msgid "Host Selection" -msgstr "Sélection d'hôte" +msgid "%{action} \"%{item_name}\" for %{switch} \"%{name}\"" +msgstr "%{action} \"%{item_name}\" pour %{switch} \"%{name}\"" -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:165 -msgid "Template Selection" -msgstr "Sélection du modèle" +msgid "%{action} \"%{item_name}\" for %{vm_or_template} \"%{name}\"" +msgstr "%{action} \"%{item_name}\" pour %{vm_or_template} \"%{name}\"" -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:167 -msgid "Cluster Selection" -msgstr "Sélection de Cluster" +msgid "%{alert_profiles} with %{type} Tags" +msgstr "%{alert_profiles} avec %{type} Balises" -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:169 -msgid "Datastore Selection" -msgstr "Sélection de magasin de données" +msgid "%{amount} %{object} Being Tagged" +msgid_plural "%{amount} %{objects} Being Tagged" +msgstr[0] "%{amount} %{object} en cours de balisage" +msgstr[1] "%{amount} %{objects} en cours de balisage" -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:171 -msgid "Database Backup Selection" -msgstr "Sélection de la sauvegarde de base de données" +msgid "%{approval_states} requests cannot be deleted" +msgstr "%{approval_states} requêtes ne peuvent être supprimées" -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:173 -msgid "Automate Tasks Selection" -msgstr "Automatiser la sélection des tâches" +msgid "%{button_group_name} (Group)" +msgstr "%{button_group_name} (Groupe)" -#: ../app/assets/javascripts/dialog_field_refresh.js:97 -#: ../app/assets/javascripts/dialog_field_refresh.js:178 -#: ../app/helpers/application_helper/dialogs.rb:133 -msgid "This element is disabled because it is read only" -msgstr "Cet élément est désactivé car il est en lecture seule" +msgid "%{button_name} Button not yet implemented" +msgstr "%{button_name} Bouton non encore implémenté" -#: ../app/assets/javascripts/miq_application.js:86 -msgid "true/false" -msgstr "vrai/faux" +msgid "%{chargeback_interval} Ending with" +msgstr "%{chargeback_interval} se terminant par" -#: ../app/assets/javascripts/miq_application.js:87 -msgid "Number (Bytes)" -msgstr "Nombre (Octets)" +msgid "%{children} (%{count})" +msgstr "%{children} (%{count})" -#: ../app/assets/javascripts/miq_application.js:88 -#: ../app/views/layouts/_perf_options.html.haml:82 -#: ../app/views/report/_form_filter_chargeback.html.haml:200 -msgid "Date" -msgstr "Date" +msgid "%{children} (0)" +msgstr "%{children} (0)" -#: ../app/assets/javascripts/miq_application.js:89 -msgid "Date/Time" -msgstr "Date/Heure" +msgid "%{count} unread notifications" +msgstr "%{count} notifications non lues" -#: ../app/assets/javascripts/miq_application.js:90 -#: ../app/assets/javascripts/miq_application.js:91 -#: ../app/assets/javascripts/miq_application.js:94 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:76 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:231 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:329 -msgid "Integer" -msgstr "Nombre entier" +msgid "%{current_tenant} Tags" +msgstr "" -#: ../app/assets/javascripts/miq_application.js:92 -msgid "Number" -msgstr "Nombre" +msgid "%{date_from} to %{date_to}" +msgstr "Du %{date_from} au %{date_to}" -#: ../app/assets/javascripts/miq_application.js:93 -msgid "Number (GB)" -msgstr "Nombre (Go)" +msgid "%{description} category Scan" +msgstr "%{description} Analyse de la catégorie" -#: ../app/assets/javascripts/miq_application.js:96 -msgid "Number (kB)" -msgstr "Nombre (ko)" +msgid "%{description} registry Scan" +msgstr "%{description} analyse du registre" -#: ../app/assets/javascripts/miq_application.js:97 -msgid "Number (MB)" -msgstr "Nombre (Mo)" +msgid "%{entry_point} Entry Point (NameSpace/Class/Instance)" +msgstr "Point d'entrée %{entry_point} (Espace de nommage/Classe/Instance)" -#: ../app/assets/javascripts/miq_application.js:98 -#: ../app/assets/javascripts/miq_application.js:99 -#: ../app/views/miq_capacity/_planning_options.html.haml:168 -msgid "MHz" -msgstr "MHz" +msgid "%{field} '%{value}' is already in use" +msgstr "%{field} '%{value}' est déjà utilisé" -#: ../app/assets/javascripts/miq_application.js:100 -msgid "Number List" -msgstr "Liste de nombres" +msgid "%{field} is required" +msgstr "" -#: ../app/assets/javascripts/miq_application.js:101 -msgid "Percent" -msgstr "Pour cent" +msgid "%{hosts} & %{clusters}" +msgstr "%{hosts} & %{clusters}" -#: ../app/assets/javascripts/miq_application.js:102 -msgid "Text (REGEX)" -msgstr "Texte (REGEX)" +msgid "%{host} to validate against, Username and matching password fields are needed to perform verification of credentials" +msgstr "%{host} à utiliser pour la validation, le nom d'utilisateur et les champs de mot de passe correspondants sont nécessaires pour effectuer la vérification des informations d'identification" -#: ../app/assets/javascripts/miq_application.js:103 -msgid "Ruby Script" -msgstr "Script Ruby" +msgid "%{instance_model} \"%{instance_name}\" has no attached %{volumes}" +msgstr "Aucun %{volumes} n'est associé à %{instance_model} \"%{instance_name}\" " -#: ../app/assets/javascripts/miq_application.js:104 -#: ../app/assets/javascripts/miq_application.js:106 -#: ../app/views/report/_schedule_email_options.html.haml:41 -#: ../app/views/shared/buttons/_ab_list.html.haml:45 -#: ../app/views/shared/buttons/_ab_list.html.haml:193 -msgid "Text" -msgstr "Texte" +msgid "%{item} (Selected)" +msgstr "" -#: ../app/assets/javascripts/miq_application.js:105 -msgid "String List" -msgstr "Liste de chaînes" +msgid "%{item} has been initiated for the selected Servers" +msgstr "%{item} a été initié pour les serveurs séléctionnés" -#: ../app/assets/javascripts/miq_application.js:125 -#: ../app/views/ops/_ap_form_registry.html.haml:14 -msgid "Registry Key" -msgstr "Clé de registre" +msgid "%{key} changed to %{value}" +msgstr "%{key} modifiée pour %{value}" -#: ../app/assets/javascripts/miq_application.js:131 -msgid "Registry Key Value" -msgstr "Valeur de clé de registre" +msgid "%{labels} are not in the current region and will be skipped" +msgstr "%{labels} ne font pas partie de la région courante et seront ignorés" -#: ../app/assets/javascripts/miq_application.js:297 -#: ../app/assets/javascripts/miq_application.js:307 -msgid "Abandon changes?" -msgstr "Abandonner les changements?" +msgid "%{label} Authentication" +msgstr "Authentification %{label}" -#: ../app/assets/javascripts/miq_application.js:744 -#: ../app/assets/javascripts/miq_application.js:1063 -#: ../app/assets/javascripts/miq_application.js:1197 -msgid "Error requesting data from server" -msgstr "" +msgid "%{label} Credentials" +msgstr "%{label} Identification" -#: ../app/assets/javascripts/miq_application.js:830 -msgid "Incorrect username or password" -msgstr "Nom d'utilisateur ou mot de passe incorrect" +msgid "%{label} is not in the current region and will be skipped" +msgstr "%{label} ne font pas partie de la région courante et seront ignorés" -#: ../app/assets/javascripts/miq_application.js:907 -#: ../app/views/dashboard/login.html.haml:32 -msgid "Click to remove message" -msgstr "Cliquez pour supprimer le message" +msgid "%{log_description} log downloaded" +msgstr "%{log_description} journal téléchargé" -#: ../app/assets/javascripts/miq_application.js:1559 -msgid "Enter Support Case:" -msgstr "Saisir le dossier d'assistance :" +msgid "%{message} %{key}:[%{old_value}] to [%{new_value}]" +msgstr "" -#: ../app/assets/javascripts/miq_application.js:1563 -msgid "Support Case must be provided to collect logs" -msgstr "Le dossier d'assistance doit être renseigné pour collecter les journaux" +msgid "%{message} %{key}:[%{old_value}] to [new_value]" +msgstr "%{message} %{key}:[%{old_value}] vers [new_value]" -#: ../app/assets/javascripts/miq_application.js:1575 -msgid "Are you sure you want to reset this Dashboard's Widgets to the defaults?" +msgid "%{message} %{key}:[*] to [*]" +msgstr "%{message} %{key}:[*] vers [*]" + +msgid "%{missing_field_name} is required" msgstr "" -"Voulez-vous vraiment rétablir les composants d'interface par défaut de ce tabl" -"eau de bord ?" -#: ../app/assets/javascripts/miq_formatters.js:253 -#: ../app/helpers/ui_constants.rb:290 -#: ../app/views/report/_form_filter_chargeback.html.haml:254 -msgid "Day" -msgstr "Jour" - -#: ../app/assets/javascripts/miq_formatters.js:253 -#: ../app/helpers/ui_constants.rb:298 -msgid "Hour" -msgstr "Heure" +msgid "%{model_name} Group Reorder cancelled" +msgstr "%{model_name} Ordonnancement groupe annulé " -#: ../app/assets/javascripts/miq_formatters.js:253 -msgid "Minute" -msgstr "Minute" +msgid "%{model_name} Group Reorder saved" +msgstr "%{model_name} Ordonnancement groupe sauvegardé" -#: ../app/assets/javascripts/miq_formatters.js:253 -msgid "Second" -msgstr "Seconde" +msgid "%{models} Group Reorder" +msgstr "%{models} Ordonnancement groupe" -#: ../app/assets/javascripts/miq_tree.js:336 -msgid "New name?" -msgstr "Nouveau nom ?" +msgid "%{models} can not be deleted" +msgstr "%{models} ne peut être supprimé " -#: ../app/assets/javascripts/miq_tree.js:360 -msgid "New Folder" -msgstr "Nouveau dossier" +msgid "%{models} no longer exists" +msgstr "%{models} n'existe plus" -#: ../app/assets/javascripts/miq_tree.js:409 -msgid "Collapse All" -msgstr "Réduire tout" +msgid "%{model} \"%{name}\"" +msgstr "%{model} \"%{name}\"" -#: ../app/assets/javascripts/miq_tree.js:414 -#: ../app/views/configuration/_ui_3.html.haml:17 -#: ../app/views/miq_policy/_rsop_results.html.haml:86 -#: ../app/views/shared/views/_compliance_history.html.haml:5 -#: ../app/views/vm_common/_policies.html.haml:15 -msgid "Expand All" -msgstr "Tout agrandir" +msgid "%{model} \"%{name}\" (Summary)" +msgstr "%{model} \"%{name}\" (résumé)" -#: ../app/assets/javascripts/services/event_notifications_service.js:54 -#: ../app/controllers/miq_policy_controller.rb:1104 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:27 -#: ../app/views/miq_policy/_policy_details.html.haml:303 -msgid "Events" -msgstr "Événements" +msgid "%{model} \"%{name}\" Bottlenecks Summary" +msgstr "%{model} \"%{name}\" Synthèse goulets d'étranglement" -#: ../app/assets/javascripts/services/event_notifications_service.js:62 -#: ../app/presenters/menu/default_menu.rb:250 -msgid "Tasks" -msgstr "Tâches" +msgid "%{model} \"%{name}\" Utilization Trend Summary" +msgstr "%{model} \"%{name}\" Synthèse tendance d'utilisation" -#: ../app/assets/javascripts/services/miq_service.js:47 -msgid "Click to remove messages" -msgstr "Cliquez pour supprimer les messages" +msgid "%{model} \"%{name}\" already exists" +msgstr "%{model} \"%{name}\" existe déjà" -#: ../app/assets/javascripts/services/post_service.js:18 -msgid "Error during Save: [%s - %s]" -msgstr "Erreur lors de l'enregistrement : [%s - %s]" +msgid "%{model} \"%{name}\" cannot be removed because it is attached to one or more %{instances}" +msgstr "%{model} \"%{name}\" ne peut pas être supprimé, car il est associé à une ou plusieurs %{instances}" -#: ../app/assets/javascripts/services/post_service.js:40 -msgid "Error during Add: [%s - %s]" -msgstr "Erreur lors de l'ajout : [%s - %s]" +msgid "%{model} \"%{name}\" created" +msgstr "%{model} \"%{name}\" créé" -#: ../app/assets/javascripts/services/topology_service.js:4 -msgid "Name: " -msgstr "Nom : " +msgid "%{model} \"%{name}\" is not attached to any %{instances}" +msgstr "%{model} \"%{name}\" n'est associé à aucune %{instances}" -#: ../app/assets/javascripts/services/topology_service.js:5 -msgid "Type: " -msgstr "Type : " +msgid "%{model} \"%{name}\" successfully added to Service \"%{to_name}\"" +msgstr "%{model} \"%{name}\" ajouté au service \"%{to_name}\"" -#: ../app/assets/javascripts/services/topology_service.js:6 -msgid "Status: " -msgstr "Statut : " +msgid "%{model} \"%{name}\" updated" +msgstr "%{model} \"%{name}\" mis à jour" -#: ../app/controllers/alert_controller.rb:22 -msgid "All RSS Feeds" -msgstr "Tous les Flux RSS" +msgid "%{model} \"%{name}\" was added" +msgstr "%{model} \"%{name}\" a été ajouté" -#: ../app/controllers/alert_controller.rb:25 -msgid "%{name} RSS Feeds" -msgstr "%{name} RSS Feeds" +msgid "%{model} \"%{name}\" was saved" +msgstr "%{model} \"%{name}\" a été sauvegardé" -#: ../app/controllers/alert_controller.rb:42 -msgid "Requested feed is invalid" -msgstr "Le fil demandé n'est pas valide" +msgid "%{model} \"%{name}\" was updated" +msgstr "%{model} \"%{name}\" a été mis à jour" -#: ../app/controllers/alert_controller.rb:66 -#: ../app/presenters/menu/default_menu.rb:27 -msgid "RSS" -msgstr "RSS" +msgid "%{model} \"%{name}\": %{task} successfully initiated" +msgstr "%{model} \"%{name}\": %{task} lancé" -#: ../app/controllers/application_controller.rb:119 -msgid "Action not implemented" -msgstr "L''Action n'est pas implémentée" +msgid "%{model} \"%{name}\": Delete successful" +msgstr "%{model} \"%{name}\": Supprimé" -#: ../app/controllers/application_controller.rb:121 -msgid "Unknown Action" -msgstr "Action inconnue" +msgid "%{model} \"%{name}\": Error during '%{task}': " +msgstr "%{model} \"%{name}\": Erreur durant '%{task}': " -#: ../app/controllers/application_controller.rb:204 -msgid "Invalid input for \"wait_for_task\"." -msgstr "Entrée non valide pour \"wait_for_task\"." +msgid "%{model} \"%{name}\": Error during '%{task}': %{error_message}" +msgstr "%{model} \"%{name}\": Erreur durant '%{task}': %{error_message}" -#: ../app/controllers/application_controller.rb:256 -#: ../app/helpers/host_helper/textual_summary.rb:481 -#: ../app/views/layouts/listnav/_host.html.haml:84 -msgid "ESX Logs" -msgstr "Logs ESX" +msgid "%{model} \"%{name}\": Error during '%{task}': %{error_msg}" +msgstr "%{model} \"%{name}\": Erreur durant '%{task}': %{error_msg}" -#: ../app/controllers/application_controller.rb:256 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:240 -#: ../app/helpers/vm_helper/textual_summary.rb:673 -msgid "Event Logs" -msgstr "Journaux des événements" +msgid "%{model} \"%{name}\": Error during '%{task}': %{message}" +msgstr "%{model} \"%{name}\": Erreur durant '%{task}': %{message}" -#: ../app/controllers/application_controller.rb:339 -#: ../app/controllers/miq_capacity_controller.rb:19 -#: ../app/controllers/miq_capacity_controller.rb:773 -#: ../app/helpers/application_helper/toolbar/availability_zone_center.rb:28 -#: ../app/helpers/application_helper/toolbar/container_center.rb:21 -#: ../app/helpers/application_helper/toolbar/container_group_center.rb:22 -#: ../app/helpers/application_helper/toolbar/container_node_center.rb:22 -#: ../app/helpers/application_helper/toolbar/container_project_center.rb:22 -#: ../app/helpers/application_helper/toolbar/container_replicator_center.rb:22 -#: ../app/helpers/application_helper/toolbar/container_service_center.rb:13 -#: ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:56 -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:55 -#: ../app/helpers/application_helper/toolbar/host_center.rb:127 -#: ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:13 -#: ../app/helpers/application_helper/toolbar/middleware_messaging_center.rb:14 -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:14 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:106 -#: ../app/helpers/application_helper/toolbar/ontap_file_share_center.rb:43 -#: ../app/helpers/application_helper/toolbar/ontap_logical_disk_center.rb:28 -#: ../app/helpers/application_helper/toolbar/ontap_storage_system_center.rb:43 -#: ../app/helpers/application_helper/toolbar/ontap_storage_volume_center.rb:28 -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:163 -#: ../app/helpers/application_helper/toolbar/storage_center.rb:52 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:112 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:157 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:112 -#: ../app/presenters/menu/default_menu.rb:241 -#: ../app/views/ops/_all_tabs.html.haml:187 -#: ../app/views/ops/_all_tabs.html.haml:295 -msgid "Utilization" -msgstr "Utilisation" +msgid "%{model} \"%{name}\": Error during 'Analysis': %{message}" +msgstr "%{model} \"%{name}\": Erreur durant 'Analyse': %{message}" -#: ../app/controllers/application_controller.rb:375 -msgid "PXE Credentials successfuly validated" -msgstr "Informations d'identification PXE validées" +msgid "%{model} \"%{name}\": Error during 'Check Compliance': %{error}" +msgstr "" -#: ../app/controllers/application_controller.rb:378 -#: ../app/controllers/ops_controller/settings/schedules.rb:261 -msgid "Depot Settings successfuly validated" -msgstr "Les paramètres du dépôt ont été validés" +msgid "%{model} \"%{name}\": Error during 'delete': %{error_message}" +msgstr "%{model} \"%{name}\": Erreur durant 'suppression': %{error_message}" -#: ../app/controllers/application_controller.rb:382 -msgid "Error during 'Validate': %{error_message}" -msgstr "Erreur pendant 'la Validation': %{error_message}" +msgid "%{model} \"%{name}\": Error during 'miq_report_delete': %{message}" +msgstr "%{model} \"%{name}\": Erreur durant 'miq_report_delete': %{message}" -#: ../app/controllers/application_controller.rb:420 -#: ../app/controllers/report_controller/menus.rb:358 -msgid "No fields were selected to move left" -msgstr "Aucun champ sélectionné à déplacer vers la gauche" +msgid "%{model} \"%{name}\": Error during delete: %{error_msg}" +msgstr "%{model} \"%{name}\": Erreur durant suppression: %{error_msg}" -#: ../app/controllers/application_controller.rb:421 -#: ../app/controllers/report_controller/menus.rb:373 -msgid "No fields were selected to move right" -msgstr "Aucun champ sélectionné à déplacer vers la droite" +msgid "%{model} (%{tag} running %{time})" +msgstr "%{model} (%{tag} fonctionne %{time})" -#: ../app/controllers/application_controller.rb:595 -#: ../app/controllers/chargeback_controller.rb:381 -#: ../app/controllers/report_controller/saved_reports.rb:77 -#: ../app/helpers/application_helper/button/chargeback_download_choice.rb:3 -#: ../app/helpers/application_helper/button/chargeback_report_only.rb:3 -#: ../app/helpers/application_helper/button/utilization_download.rb:13 -#: ../app/helpers/application_helper/toolbar_builder.rb:809 -#: ../app/helpers/application_helper/toolbar_builder.rb:815 -msgid "No records found for this report" -msgstr "Aucun enregistrement trouvé pour ce rapport" +msgid "%{model} Alert Profiles" +msgstr "Profils d'alerte %{model}" -#: ../app/controllers/application_controller.rb:617 -msgid "" -"Edit aborted! %{product} does not support the browser's back button or access" -" from multiple tabs or windows of the same browser. Please close any duplicat" -"e sessions before proceeding." -msgstr "" -"Modification annulée ! %{product} ne prend pas en charge le bouton Précédent d" -"u navigateur, ni l'accès à partir de plusieurs onglets ou fenêtres du même nav" -"igateur. Veuillez fermer les sessions en double avant de continuer." +msgid "%{model} Analysis" +msgstr "%{model} Analyse" -#: ../app/controllers/application_controller.rb:719 -msgid "%{tenant_name} (All %{groups})" -msgstr "%{tenant_name} (Tous %{groups})" +msgid "%{model} Condition \"%{name}\"" +msgstr "%{model} Condition \"%{name}\"" -#: ../app/controllers/application_controller.rb:721 -msgid "%{tenant_name} (%{group}): %{group_description}" -msgstr "%{tenant_name} (%{group}): %{group_description}" +msgid "%{model} Order was cancelled by the user" +msgstr "%{model} Demande annulée par l'utilisateur" -#: ../app/controllers/application_controller.rb:877 -msgid "View this item" -msgstr "Afficher cet élément" +msgid "%{model} [%{name} - Updated %{time}%{update}]" +msgstr "%{model} [%{name} - mis-à-jour %{time}%{update}]" -#: ../app/controllers/application_controller.rb:1037 -#: ../app/controllers/vm_common.rb:1355 -msgid " (Names with \"%{search_text}\")" -msgstr "(Noms contenant \"%{search_text}\")" +msgid "%{model} for %{group} \"%{name}\"" +msgstr "%{model} pour %{group} \"%{name}\"" -#: ../app/controllers/application_controller.rb:1077 -#: ../app/controllers/application_controller.rb:2303 -#: ../app/controllers/dashboard_controller.rb:599 -#: ../app/controllers/ontap_file_share_controller.rb:48 -#: ../app/controllers/ontap_storage_system_controller.rb:53 -msgid "The user is not authorized for this task or item." -msgstr "L'utilisateur n'est pas autorisé pour cette tâche ou cet élément." +msgid "%{model} must contain at least one %{field}" +msgstr "%{model} doit contenir au moins %{field}" -#: ../app/controllers/application_controller.rb:1152 -#: ../app/views/vm_common/_reconfigure.html.haml:78 -#: ../app/views/vm_common/_right_size.html.haml:213 -#: ../app/views/vm_common/_right_size.html.haml:297 -#: ../app/views/vm_common/_right_size.html.haml:380 -msgid "Processors" -msgstr "Processeurs" +msgid "%{model} no longer exists" +msgstr "%{model} n'existe plus" -#: ../app/controllers/application_controller.rb:1157 -msgid "CPU Type" -msgstr "Type de processeur" +msgid "%{model} no longer exists." +msgstr "%{model} n'existe plus." -#: ../app/controllers/application_controller.rb:1160 -#: ../app/views/miq_capacity/_planning_options.html.haml:148 -#: ../app/views/miq_capacity/_planning_options.html.haml:320 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:16 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:67 -msgid "CPU Speed" -msgstr "Vitesse du processeur" +msgid "%{model} search \"%{name}\" was saved" +msgstr "%{model} recherche \"%{name}\" a été sauvegardée" -#: ../app/controllers/application_controller.rb:1182 -msgid ", Connect at Power On = No" -msgstr ", Connexion à mise sous tension = Non" +msgid "%{model} search \"%{name}\" was successfully loaded" +msgstr "%{model} recherche \"%{name}\" a été chargé" -#: ../app/controllers/application_controller.rb:1182 -msgid ", Connect at Power On = Yes" -msgstr ", Connexion à mise sous tension = Oui" +msgid "%{model} search \"%{name}\": Delete successful" +msgstr "%{model} recherche \"%{name}\": supprimé" -#: ../app/controllers/application_controller.rb:1186 -msgid "CD-ROM (IDE %{location})%{connection}" -msgstr "CD-ROM (IDE %{location})%{connection}" +msgid "%{model} under %{record_model} \"%{name}\"" +msgstr "%{model} sous %{record_model} \"%{name}\"" -#: ../app/controllers/application_controller.rb:1189 -msgid "ATAPI CD-ROM (IDE %{location})%{connection}" -msgstr "ATAPI CD-ROM (IDE %{location})%{connection}" +msgid "%{model} under Inventory Group \"%{name}\"" +msgstr "%{model} sous le groupe d'inventaires \"%{name}\"" -#: ../app/controllers/application_controller.rb:1192 -msgid "CD-ROM Image (IDE %{location})%{connection}" -msgstr "Image CD-ROM (IDE %{location})%{connection}" +msgid "%{model} under Unassigned Profiles Group" +msgstr "%{model} sous un Profile de Groupe non assigné" -#: ../app/controllers/application_controller.rb:1197 -#: ../app/controllers/application_controller.rb:1215 -msgid "Hard Disk (IDE %{location})" -msgstr "Disque dur (IDE %{location})" +msgid "%{model}: %{name}" +msgstr "%{model}: %{name}" -#: ../app/controllers/application_controller.rb:1199 -#: ../app/controllers/application_controller.rb:1229 -msgid "Hard Disk (SCSI %{location})" -msgstr "Disque dur (SCSI %{location})" +msgid "%{model}: %{task} successfully initiated" +msgstr "%{model}: %{task} lancée" -#: ../app/controllers/application_controller.rb:1203 -#: ../app/controllers/application_controller.rb:1217 -#: ../app/controllers/application_controller.rb:1231 -msgid ", Size: %{number}" -msgstr ", Taille: %{number}" +msgid "%{model}: Discovery successfully initiated" +msgstr "%{model}: Découverte lancée" -#: ../app/controllers/application_controller.rb:1206 -#: ../app/controllers/application_controller.rb:1220 -#: ../app/controllers/application_controller.rb:1234 -msgid ", Size on disk: %{number}" -msgstr ", Taille sur le disque: %{number}" +msgid "%{name} '%{vm_name}' Drift Report" +msgstr "%{name} '%{vm_name}' Rapport de dérive" -#: ../app/controllers/application_controller.rb:1210 -#: ../app/controllers/application_controller.rb:1223 -#: ../app/controllers/application_controller.rb:1238 -msgid ", Percent Used Provisioned Space: %{number}%%" -msgstr "Pourcentage d'espace alloué configuré : %{number}%%" +msgid "%{name} (%{table}(s))" +msgstr "%{name} (%{table}(s))" -#: ../app/controllers/application_controller.rb:1213 -#: ../app/controllers/application_controller.rb:1226 -#: ../app/controllers/application_controller.rb:1241 -msgid ", Mode: %{mode}" -msgstr ", Mode: %{mode}" +msgid "%{name} (All %{children})" +msgstr "%{name} (Tous %{children})" -#: ../app/controllers/application_controller.rb:1244 -msgid "Generic SCSI (%{location})" -msgstr "SCSI générique (%{location})" +msgid "%{name} (All %{tables})" +msgstr "%{name} (Tous %{tables})" -#: ../app/controllers/application_controller.rb:1271 -msgid "Default Adapter" -msgstr "Adaptateur par défaut" +msgid "%{name} (All %{titles})" +msgstr "%{name} (Tous%{titles})" -#: ../app/controllers/application_controller.rb:1287 -#: ../app/controllers/application_controller/miq_request_methods.rb:311 -#: ../app/controllers/application_controller/miq_request_methods.rb:407 -#: ../app/helpers/host_helper/textual_summary.rb:166 -#: ../app/helpers/textual_mixins/textual_os_info.rb:3 -#: ../app/views/provider_foreman/_main.html.haml:11 -#: ../app/views/provider_foreman/_main_configuration_profile.html.haml:11 -msgid "Operating System" -msgstr "Système d'exploitation" +msgid "%{name} (All %{title})" +msgstr "%{name} (Tous %{title})" -#: ../app/controllers/application_controller.rb:1289 -msgid "Service Pack" -msgstr "Service Pack" +msgid "%{name} (All Registered %{title})" +msgstr "%{name} (Tous %{title} enregistrés)" -#: ../app/controllers/application_controller.rb:1291 -msgid "Product ID" -msgstr "ID du produit" +msgid "%{name} (All Registered Hosts)" +msgstr "%{name} (Tous hôtes enregistrés)" -#: ../app/controllers/application_controller.rb:1293 -#: ../app/controllers/application_controller.rb:1325 -#: ../app/controllers/application_controller.rb:1338 -#: ../app/controllers/application_controller/miq_request_methods.rb:446 -#: ../app/helpers/ops_helper/textual_summary.rb:49 -#: ../app/views/layouts/_about_modal.html.haml:26 -#: ../app/views/miq_policy/_action_details.html.haml:355 -#: ../app/views/miq_policy/_action_options.html.haml:395 -#: ../app/views/miq_policy/_alert_details.html.haml:362 -#: ../app/views/miq_policy/_alert_snmp.html.haml:64 -msgid "Version" -msgstr "Version" +msgid "%{name} (All Resource Pools)" +msgstr "%{name} (Tous pools de ressources)" -#: ../app/controllers/application_controller.rb:1295 -#: ../app/controllers/application_controller.rb:1327 -msgid "Build Number" -msgstr "Numéro de compilation" +msgid "%{name} (All VMs - Tree View)" +msgstr "%{name} (Toutes les MV - Vue arborescente)" -#: ../app/controllers/application_controller.rb:1297 -msgid "System Type" -msgstr "Type de système" +msgid "%{name} (All cloud tenants present on this host)" +msgstr "%{name} (Tous les locataires Cloud présents sur cet hôte)" -#: ../app/controllers/application_controller.rb:1299 -msgid "Password History" -msgstr "Historique des mots de passe" +msgid "%{name} (Applications)" +msgstr "%{name} (Applications)" -#: ../app/controllers/application_controller.rb:1301 -msgid "Max Password Age" -msgstr "Âge max. du mot de passe" +msgid "%{name} (Compliance History - Last %{number} Checks)" +msgstr "%{name} (Historique des conformités - Dernières %{number} vérifications)" -#: ../app/controllers/application_controller.rb:1303 -msgid "Min Password Age" -msgstr "Durée min. du mot de passe" +msgid "%{name} (Devices)" +msgstr "%{name} (Périphériques)" -#: ../app/controllers/application_controller.rb:1305 -msgid "Min Password Length" -msgstr "Longueur min. du mot de passe" +msgid "%{name} (Disks)" +msgstr "%{name} (Disques)" -#: ../app/controllers/application_controller.rb:1307 -msgid "Password Complex" -msgstr "Complexité du mot de passe" +msgid "%{name} (Groups)" +msgstr "%{name} (Groupes)" -#: ../app/controllers/application_controller.rb:1309 -msgid "Password Encrypt" -msgstr "Chiffrement du mot de passe" +msgid "%{name} (Hosts)" +msgstr "%{name} (Hôtes)" -#: ../app/controllers/application_controller.rb:1311 -msgid "Lockout Threshold" -msgstr "Seuil de verrouillage" +msgid "%{name} (Latest Compliance Check)" +msgstr "%{name} (Dernier contrôle de conformité)" -#: ../app/controllers/application_controller.rb:1313 -msgid "Lockout Duration" -msgstr "Durée de verrouillage" +msgid "%{name} (Network)" +msgstr "%{name} (Réseau)" -#: ../app/controllers/application_controller.rb:1315 -msgid "Reset Lockout Counter" -msgstr "Réinitaliser le compteur de cadenassage" +msgid "%{name} (OS Information)" +msgstr "%{name} (Information SE)" -#: ../app/controllers/application_controller.rb:1321 -#: ../app/controllers/application_controller.rb:1334 -#: ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:21 -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:35 -#: ../app/helpers/ops_helper/textual_summary.rb:45 -msgid "Vendor" -msgstr "Fournisseur" +msgid "%{name} (Packages)" +msgstr "%{name} (Paquetages)" -#: ../app/controllers/application_controller.rb:1323 -msgid "Product" -msgstr "Produit" +msgid "%{name} (Patches)" +msgstr "%{name} (Patches)" -#: ../app/controllers/application_controller.rb:1336 -#: ../app/views/report/_form_formatting.html.haml:58 -msgid "Format" -msgstr "Format" +msgid "%{name} (Storage Adapters)" +msgstr "%{name} (Adaptateurs stockage)" -#: ../app/controllers/application_controller.rb:1342 -msgid "" -msgstr "" +msgid "%{name} (Summary)" +msgstr "%{name} (Résumé)" -#: ../app/controllers/application_controller.rb:1346 -#: ../app/views/miq_policy/_alert_profile_details.html.haml:150 -#: ../app/views/miq_policy/_alert_profile_details.html.haml:174 -#: ../app/views/miq_policy/_condition_details.html.haml:95 -#: ../app/views/miq_policy/_condition_details.html.haml:112 -#: ../app/views/miq_policy/_policy_details.html.haml:385 -#: ../app/views/miq_policy/_policy_details.html.haml:402 -#: ../app/views/miq_policy/_profile_details.html.haml:161 -#: ../app/views/miq_policy/_profile_details.html.haml:180 -msgid "Notes" -msgstr "Remarques" +msgid "%{name} (Users)" +msgstr "%{name} (Utilisateurs)" -#: ../app/controllers/application_controller.rb:1390 -#: ../app/controllers/application_controller/ci_processing.rb:2345 -#: ../app/controllers/application_controller/ci_processing.rb:2355 -#: ../app/controllers/application_controller/ci_processing.rb:2363 -#: ../app/controllers/application_controller/ci_processing.rb:2394 -#: ../app/controllers/application_controller/ci_processing.rb:2403 -#: ../app/controllers/application_controller/ci_processing.rb:2412 -#: ../app/controllers/application_controller/ci_processing.rb:2421 -#: ../app/controllers/application_controller/ci_processing.rb:2611 -#: ../app/controllers/miq_task_controller.rb:222 -msgid "\"%{record}\": %{task} successfully initiated" -msgstr "\"%{record}\": %{task} lancé" +msgid "%{name} (VM Monitor Information)" +msgstr "%{name} (Information surveillance MV)" -#: ../app/controllers/application_controller.rb:1395 -msgid "Successfully deleted Saved Report from the %{product} Database" -msgid_plural "Successfully deleted Saved Reports from the %{product} Database" -msgstr[0] "Le rapport enregistré a été supprimé de la base de données %{product}" -msgstr[1] "Les rapports enregistrés ont été supprimés de la base de données %{product}" +msgid "%{name} (no longer exists)" +msgstr "%{name} (n'existe plus)" -#: ../app/controllers/application_controller.rb:1399 -msgid "Error during Saved Report delete from the %{product} Database" -msgid_plural "Error during Saved Reports delete from the %{product} Database" -msgstr[0] "" -"Erreur lors de la suppression du rapport enregistré de la base de données %{pr" -"oduct}" -msgstr[1] "" -"Erreur lors de la suppression des rapports enregistrés de la base de données %" -"{product}" +msgid "%{name} Capacity & Utilization" +msgstr "%{name} Capacité & Utilisation" -#: ../app/controllers/application_controller.rb:1412 -msgid "The selected %{label} is not in the current region" -msgstr "Le/la %{label} sélectionné(e) n'est pas dans la région actuelle" +msgid "%{name} Capacity & Utilization (by %{option}:%{model})" +msgstr "%{name} Capacité et utilisation (par %{option}:%{model})" -#: ../app/controllers/application_controller.rb:1414 -msgid "All selected %{labels} are not in the current region" -msgstr "Tous les %{labels} sélectionnés ne sont pas dans la région actuelle" +msgid "%{name} Compare Report (* = Value does not match base)" +msgstr "%{name} Comparer rapport (* = valeur ne correspondant pas à la valeur de base)" -#: ../app/controllers/application_controller.rb:1417 -msgid "%{label} is not in the current region and will be skipped" -msgstr "%{label} ne font pas partie de la région courante et seront ignorés" +msgid "%{name} Configured Systems" +msgstr "Systèmes configurés %{name}" -#: ../app/controllers/application_controller.rb:1419 -msgid "%{labels} are not in the current region and will be skipped" -msgstr "%{labels} ne font pas partie de la région courante et seront ignorés" +msgid "%{name} Providers" +msgstr "Fournisseurs %{name}" -#: ../app/controllers/application_controller.rb:2208 -#: ../app/controllers/infra_networking_controller.rb:723 -#: ../app/controllers/provider_foreman_controller.rb:1155 -#: ../app/controllers/storage_controller.rb:337 -msgid "Invalid input" -msgstr "Entrée non valide" +msgid "%{name} RSS Feeds" +msgstr "%{name} RSS Feeds" -#: ../app/controllers/application_controller.rb:2212 -msgid "Selected %{model_name} no longer exists" -msgstr "Le %{model_name} sélectionné n'existe plus" +msgid "%{name} Tags" +msgstr "%{name} balises" -#: ../app/controllers/application_controller.rb:2217 -msgid "" -"User '%{user_id}' is not authorized to access '%{model}' record id '%{record_i" -"d}'" -msgstr "" -"L'utilisateur '%{user_id}' n'est pas autorisé à accéder à l'enregistrement de " -"'%{model}' ID '%{record_id}'" +msgid "%{name} dashboard for user %{id} in group id %{current_group_id}" +msgstr "%{name} tableau de bord %{id} pour groupe d''ID %{current_group_id}" -#: ../app/controllers/application_controller.rb:2280 -msgid "%{record_name} no longer exists in the database" -msgstr "%{record_name} n''existe plus en base de donnée." +msgid "%{name} domain: Current version - %{version}, Available version - %{available_version}" +msgstr "%{name} domaine: Version courante - %{version}, Version disponible - %{available_version}" -#: ../app/controllers/application_controller.rb:2282 -msgid "You are not authorized to view %{model_name} '%{resource_name}'" -msgstr "Vous n'êtes pas autorisé à voir %{model_name} '%{resource_name}'" +msgid "%{name} is currently being used in the Display Filter" +msgstr "%{name} est en cours d''utilisation pour le filtre d''affichage" -#: ../app/controllers/application_controller.rb:2308 -msgid "Unauthorized object or action" -msgstr "Objet ou action non autorisé(e)" +msgid "%{name} is required" +msgstr "%{name} est requis" -#: ../app/controllers/application_controller.rb:2346 -msgid "%{task} does not apply to at least one of the selected %{model}" -msgstr "%{task} ne s''applique pas à au moins l''un des %{model} sélectionnés" +msgid "%{name} is the base" +msgstr "%{name} est la base" -#: ../app/controllers/application_controller.rb:2350 -msgid "%{task} does not apply to at least one of the selected items" -msgstr "" +msgid "%{name}: '%{task}' successfully initiated" +msgstr "%{name}: '%{task}' initialisée" -#: ../app/controllers/application_controller/automate.rb:6 -msgid "Automation Simulation has been run" -msgstr "La simulation d'automatisation a été lancée" +msgid "%{name}: Delete successful" +msgstr "%{name}: Suppression" -#: ../app/controllers/application_controller/automate.rb:21 -msgid "Automation Error: %{error_message}" -msgstr "Erreur d'automatisation : %{error_message}" +msgid "%{name}: Error during '%{task}': %{message}" +msgstr "%{name}: Erreur durant '%{task}': %{message}" -#: ../app/controllers/application_controller/automate.rb:102 -#: ../app/controllers/miq_policy_controller/rsop.rb:51 -#: ../app/views/layouts/_tl_options.html.haml:16 -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:110 -#: ../app/views/miq_capacity/_bottlenecks_options.html.haml:6 -#: ../app/views/miq_capacity/_utilization_options.html.haml:7 -#: ../app/views/miq_request/_reconfigure_show.html.haml:7 -#: ../app/views/ontap_file_share/_create_datastore.html.haml:9 -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:6 -#: ../app/views/vm_common/_policy_options.html.haml:7 -#: ../app/views/vm_common/_reconfigure.html.haml:9 -msgid "Options" -msgstr "Options" +msgid "%{name}:[%{key}] to [%{new_key}]" +msgstr "%{name}:[%{key}] to [%{new_key}]" -#: ../app/controllers/application_controller/automate.rb:129 -msgid "Resolve" -msgstr "Résoudre" +msgid "%{number} (%{percentage} of Used Space, %{amount} file)" +msgid_plural "%{number} (%{percentage} of Used Space, %{amount} files)" +msgstr[0] "%{number} (%{percentage} d'espace utilisé, %{amount} fichier)" +msgstr[1] "%{number} (%{percentage} d'espace utilisé, %{amount} fichiers)" -#: ../app/controllers/application_controller/automate.rb:131 -#: ../app/presenters/menu/default_menu.rb:216 -#: ../app/presenters/menu/default_menu.rb:230 -msgid "Simulation" -msgstr "Simulation" +msgid "%{number} (Virtual to Real Ratio: %{ratio})" +msgstr "%{number} (Ratio Virtuel/Réel: %{ratio})" -#: ../app/controllers/application_controller/buttons.rb:18 -msgid "%{model_name} Group Reorder cancelled" -msgstr "%{model_name} Ordonnancement groupe annulé " +msgid "%{number} Day" +msgid_plural "%{number} Days" +msgstr[0] "%{number} jour" +msgstr[1] "%{number} jours" -#: ../app/controllers/application_controller/buttons.rb:43 -msgid "%{model_name} Group Reorder saved" -msgstr "%{model_name} Ordonnancement groupe sauvegardé" +msgid "%{number} Days Ago" +msgstr "Il y a %{number} jours" -#: ../app/controllers/application_controller/buttons.rb:75 -msgid "No Button Group was selected!" -msgstr "Aucun groupe de bouton sélectionné." +msgid "%{number} Hour" +msgid_plural "%{number} Hours" +msgstr[0] "%{number} heure" +msgstr[1] "%{number} heures" -#: ../app/controllers/application_controller/buttons.rb:151 -#: ../app/controllers/application_controller/buttons.rb:228 -#: ../app/controllers/application_controller/ci_processing.rb:1583 -#: ../app/controllers/miq_ae_class_controller.rb:2590 -#: ../app/controllers/miq_request_controller.rb:569 -#: ../app/controllers/miq_task_controller.rb:219 -#: ../app/controllers/ops_controller/diagnostics.rb:713 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:194 -#: ../app/controllers/ops_controller/settings/tags.rb:24 -#: ../app/controllers/ops_controller/settings/zones.rb:70 -#: ../app/controllers/report_controller/reports.rb:101 -#: ../app/controllers/storage_manager_controller.rb:458 -msgid "%{model} \"%{name}\": Delete successful" -msgstr "%{model} \"%{name}\": Supprimé" +msgid "%{number} Month" +msgid_plural "%{number} Months" +msgstr[0] "%{number} mois" +msgstr[1] "%{number} mois" -#: ../app/controllers/application_controller/buttons.rb:210 -msgid "'Unassigned Buttons Group' can not be deleted" -msgstr "'Groupe de boutons non assigné' ne peut être détruit" +msgid "%{number} Week" +msgid_plural "%{number} Weeks" +msgstr[0] "%{number} semaine" +msgstr[1] "%{number} semaines" -#: ../app/controllers/application_controller/buttons.rb:260 -msgid "No url was returned from automate." +msgid "%{number} bytes" +msgstr "%{number} octets" + +msgid "%{object_types} under %{datastore_or_provider} \"%{provider_or_datastore_name}\"" msgstr "" -#: ../app/controllers/application_controller/buttons.rb:272 -msgid "%{record} - \"%{button_text}\"" -msgstr "%{record} - \"%{button_text}\"" +msgid "%{object} Conditions" +msgstr "Conditions de %{object}" -#: ../app/controllers/application_controller/buttons.rb:286 -msgid "Error executing: \"%{task_description}\" %{error_message}" -msgstr "Erreur lors de l'exécution : \"%{task_description}\" %{error_message}" +msgid "%{operation} initiated for given server group." +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:289 -msgid "\"%{task_description}\" was executed" -msgstr "\"%{task_description}\" a été exécuté" +msgid "%{operation} initiated for selected server(s)" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:304 -#: ../app/controllers/application_controller/buttons.rb:426 -#: ../app/controllers/catalog_controller.rb:89 -#: ../app/controllers/catalog_controller.rb:558 -#: ../app/controllers/chargeback_controller.rb:105 -#: ../app/controllers/cloud_tenant_controller.rb:142 -#: ../app/controllers/cloud_volume_controller.rb:320 -#: ../app/controllers/configuration_controller.rb:398 -#: ../app/controllers/ems_common.rb:288 -#: ../app/controllers/host_aggregate_controller.rb:253 -#: ../app/controllers/host_controller.rb:347 -#: ../app/controllers/miq_ae_class_controller.rb:571 -#: ../app/controllers/miq_ae_class_controller.rb:974 -#: ../app/controllers/miq_ae_class_controller.rb:1061 -#: ../app/controllers/miq_ae_class_controller.rb:1101 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:194 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:247 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:13 -#: ../app/controllers/miq_policy_controller/alerts.rb:13 -#: ../app/controllers/miq_policy_controller/conditions.rb:11 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:11 -#: ../app/controllers/miq_policy_controller/policies.rb:11 -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:13 -#: ../app/controllers/mixins/ems_common_angular.rb:17 -#: ../app/controllers/ops_controller/ops_rbac.rb:111 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:226 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:12 -#: ../app/controllers/ops_controller/settings/ldap.rb:39 -#: ../app/controllers/ops_controller/settings/ldap.rb:156 -#: ../app/controllers/ops_controller/settings/schedules.rb:50 -#: ../app/controllers/ops_controller/settings/tags.rb:44 -#: ../app/controllers/ops_controller/settings/zones.rb:9 -#: ../app/controllers/pxe_controller/iso_datastores.rb:171 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:102 -#: ../app/controllers/pxe_controller/pxe_image_types.rb:29 -#: ../app/controllers/pxe_controller/pxe_servers.rb:46 -#: ../app/controllers/pxe_controller/pxe_servers.rb:191 -#: ../app/controllers/pxe_controller/pxe_servers.rb:242 -#: ../app/controllers/report_controller/reports/editor.rb:43 -#: ../app/controllers/report_controller/schedules.rb:227 -#: ../app/controllers/report_controller/widgets.rb:49 -#: ../app/controllers/storage_manager_controller.rb:158 -#: ../app/controllers/vm_common.rb:919 ../app/controllers/vm_common.rb:923 -msgid "Edit of %{model} \"%{name}\" was cancelled by the user" -msgstr "La modification de %{model} \"%{name}\" a été annulée par l'utilisateur" +msgid "%{operation} was not initiated for given group." +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:307 -#: ../app/controllers/application_controller/buttons.rb:428 -msgid "Add of new %{model_name} was cancelled by the user" -msgstr "L''ajout d''un nouveau %{model_name} a été annulé par l''utilisateur" +msgid "%{product} Appliance restart initiated successfully" +msgstr "Le redémarrage de l'application %{product} a été lancé" -#: ../app/controllers/application_controller/buttons.rb:318 -#: ../app/controllers/catalog_controller.rb:310 -#: ../app/controllers/catalog_controller.rb:854 -#: ../app/controllers/miq_ae_class_controller.rb:576 -#: ../app/controllers/miq_ae_class_controller.rb:624 -#: ../app/controllers/miq_ae_class_controller.rb:2079 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:255 -#: ../app/controllers/ontap_file_share_controller.rb:100 -#: ../app/controllers/ontap_storage_system_controller.rb:108 -#: ../app/controllers/ops_controller/settings/ldap.rb:50 -#: ../app/controllers/ops_controller/settings/ldap.rb:167 -#: ../app/controllers/ops_controller/settings/tags.rb:55 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:115 -#: ../app/controllers/pxe_controller/pxe_image_types.rb:164 -#: ../app/controllers/pxe_controller/pxe_servers.rb:292 -msgid "Name is required" -msgstr "Le nom est requis" +msgid "%{product} Log" +msgstr "Journal %{product}" -#: ../app/controllers/application_controller/buttons.rb:322 -#: ../app/controllers/chargeback_controller.rb:118 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:370 -#: ../app/controllers/ops_controller/settings/tags.rb:58 -#: ../app/controllers/ops_controller/settings/zones.rb:22 -msgid "Description is required" -msgstr "La description est obligatoire" +msgid "%{product} Region: %{region_description} [%{region}]" +msgstr "Région %{product} : %{region_description} [%{region}]" -#: ../app/controllers/application_controller/buttons.rb:326 -#: ../app/controllers/application_controller/buttons.rb:732 -msgid "Button Image must be selected" -msgstr "L'image du bouton doit être sélectionnée" +msgid "%{product} Server \"%{name}\" set as %{priority} for Role \"%{role_description}\"" +msgstr "Serveur %{product} \"%{name}\" défini comme %{priority} pour le rôle \"%{role_description}\"" -#: ../app/controllers/application_controller/buttons.rb:347 -#: ../app/controllers/application_controller/buttons.rb:517 -#: ../app/controllers/catalog_controller.rb:579 -#: ../app/controllers/catalog_controller.rb:913 -#: ../app/controllers/catalog_controller.rb:1001 -#: ../app/controllers/catalog_controller.rb:1054 -#: ../app/controllers/catalog_controller.rb:1100 -#: ../app/controllers/chargeback_controller.rb:141 -#: ../app/controllers/configuration_controller.rb:426 -#: ../app/controllers/ems_common.rb:193 ../app/controllers/ems_common.rb:310 -#: ../app/controllers/host_controller.rb:358 -#: ../app/controllers/miq_ae_class_controller.rb:599 -#: ../app/controllers/miq_ae_class_controller.rb:990 -#: ../app/controllers/miq_ae_class_controller.rb:1075 -#: ../app/controllers/miq_ae_class_controller.rb:1121 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:227 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:285 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:53 -#: ../app/controllers/miq_policy_controller/alerts.rb:25 -#: ../app/controllers/miq_policy_controller/conditions.rb:60 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:45 -#: ../app/controllers/miq_policy_controller/policies.rb:62 -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:53 -#: ../app/controllers/mixins/ems_common_angular.rb:33 -#: ../app/controllers/mixins/ems_common_angular.rb:87 -#: ../app/controllers/ops_controller/ops_rbac.rb:132 -#: ../app/controllers/ops_controller/ops_rbac.rb:731 -#: ../app/controllers/ops_controller/settings.rb:165 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:271 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:174 -#: ../app/controllers/ops_controller/settings/ldap.rb:61 -#: ../app/controllers/ops_controller/settings/ldap.rb:182 -#: ../app/controllers/ops_controller/settings/schedules.rb:80 -#: ../app/controllers/ops_controller/settings/tags.rb:100 -#: ../app/controllers/ops_controller/settings/zones.rb:32 -#: ../app/controllers/orchestration_stack_controller.rb:259 -#: ../app/controllers/pxe_controller/iso_datastores.rb:180 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:128 -#: ../app/controllers/pxe_controller/pxe_servers.rb:66 -#: ../app/controllers/pxe_controller/pxe_servers.rb:200 -#: ../app/controllers/pxe_controller/pxe_servers.rb:251 -#: ../app/controllers/report_controller/reports.rb:33 -#: ../app/controllers/report_controller/reports/editor.rb:72 -#: ../app/controllers/report_controller/schedules.rb:246 -#: ../app/controllers/report_controller/widgets.rb:63 -#: ../app/controllers/storage_manager_controller.rb:167 -#: ../app/controllers/vm_common.rb:958 -msgid "%{model} \"%{name}\" was saved" -msgstr "%{model} \"%{name}\" a été sauvegardé" +msgid "%{product} Version" +msgstr "Version %{product}" -#: ../app/controllers/application_controller/buttons.rb:353 -#: ../app/controllers/application_controller/buttons.rb:523 -msgid "Error during 'edit': %{field_name} %{error_message}" -msgstr "Erreur lors de la modification : %{field_name} %{error_message}" +msgid "%{protocol} port %{port} to pods on target port:'%{target_port}'" +msgstr "%{protocol} port %{port} vers pods sur port cible:'%{target_port}'" -#: ../app/controllers/application_controller/buttons.rb:382 -#: ../app/controllers/application_controller/buttons.rb:465 -#: ../app/controllers/catalog_controller.rb:913 -#: ../app/controllers/chargeback_controller.rb:138 -#: ../app/controllers/host_controller.rb:276 -#: ../app/controllers/miq_ae_class_controller.rb:644 -#: ../app/controllers/miq_ae_class_controller.rb:1191 -#: ../app/controllers/miq_ae_class_controller.rb:1226 -#: ../app/controllers/miq_ae_class_controller.rb:1255 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:225 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:283 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:54 -#: ../app/controllers/miq_policy_controller/alerts.rb:26 -#: ../app/controllers/miq_policy_controller/conditions.rb:61 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:46 -#: ../app/controllers/miq_policy_controller/policies.rb:63 -#: ../app/controllers/miq_policy_controller/policies.rb:108 -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:54 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:156 -#: ../app/controllers/ops_controller/settings/tags.rb:81 -#: ../app/controllers/ops_controller/settings/zones.rb:33 -#: ../app/controllers/provider_foreman_controller.rb:181 -#: ../app/controllers/pxe_controller/iso_datastores.rb:57 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:128 -#: ../app/controllers/pxe_controller/pxe_image_types.rb:52 -#: ../app/controllers/pxe_controller/pxe_servers.rb:66 -#: ../app/controllers/report_controller/reports/editor.rb:73 -#: ../app/controllers/report_controller/schedules.rb:247 -#: ../app/controllers/storage_manager_controller.rb:84 -msgid "%{model} \"%{name}\" was added" -msgstr "%{model} \"%{name}\" a été ajouté" +msgid "%{record_name} has no snapshots" +msgstr "%{record_name} ne comporte pas de clichés" -#: ../app/controllers/application_controller/buttons.rb:388 -msgid "Error during 'add': %{field_name} %{error_name}" -msgstr "Erreur lors de l'ajout : %{field_name} %{error_name}" +msgid "%{record_name} no longer exists in the database" +msgstr "%{record_name} n''existe plus en base de donnée." -#: ../app/controllers/application_controller/buttons.rb:440 -#: ../app/controllers/application_controller/buttons.rb:510 -#: ../app/controllers/application_controller/buttons.rb:539 -msgid "Edit of Button" -msgstr "Modification du bouton" +msgid "%{record} - \"%{button_text}\"" +msgstr "%{record} - \"%{button_text}\"" -#: ../app/controllers/application_controller/buttons.rb:489 -#: ../app/controllers/miq_ae_class_controller.rb:1184 -#: ../app/controllers/miq_ae_class_controller.rb:1222 -msgid "Error during 'add': %{error_message}" -msgstr "Erreur lors de l'ajout : %{error_message}" +msgid "%{record} no longer exists" +msgstr "%{record} n''existe plus" -#: ../app/controllers/application_controller/buttons.rb:582 -msgid "'Unassigned Buttons Group' can not be edited" -msgstr "'Groupe de boutons non assigné' ne peut être édité" +msgid "%{role} on %{model}: %{name} [%{id}]" +msgstr "%{role} sur %{model}: %{name} [%{id}]" -#: ../app/controllers/application_controller/buttons.rb:605 -msgid "Add Button" -msgstr "Ajouter un Bouton" +msgid "%{schedule} %{name} was deleted" +msgstr "%{schedule} %{name} a été supprimé" -#: ../app/controllers/application_controller/buttons.rb:607 -msgid "Edit of '%{description}' Button" -msgstr "Modification du bouton '%{description}'" +msgid "%{server}: %{server_name} [%{server_id}] (current)" +msgstr "%{server} : %{server_name} [%{server_id}] (en cours)" -#: ../app/controllers/application_controller/buttons.rb:686 -msgid "No fields were selected to move top" -msgstr "Aucun champ sélectionné à déplacer en haut" +msgid "%{start_number} of %{total_items}" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:691 -msgid "Select only one or consecutive fields to move to the top" -msgstr "Sélectionner un seul champ ou des champs consécutifs à déplacer au début" +msgid "%{start_number}-%{end_number} of %{total_items}" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:707 -msgid "No fields were selected to move bottom" -msgstr "Aucun champ sélectionné à déplacer en bas" +msgid "%{start_number}-%{total_items} of %{total_items}" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:712 -msgid "Select only one or consecutive fields to move to the bottom" -msgstr "Sélectionner un seul champ ou des champs consécutifs à déplacer à la fin" +msgid "%{status} - %{time}" +msgstr "%{status} - %{time}" -#: ../app/controllers/application_controller/buttons.rb:729 -msgid "Button Text is required" -msgstr "Le texte du bouton est obligatoire" +msgid "%{storage} Type" +msgstr "%{storage} Type" -#: ../app/controllers/application_controller/buttons.rb:734 -msgid "Button Hover Text is required" -msgstr "Le texte de l'infobulle du bouton est obligatoire" +msgid "%{table} (%{count})" +msgstr "%{table} (%{count})" -#: ../app/controllers/application_controller/buttons.rb:736 -#: ../app/controllers/miq_ae_tools_controller.rb:407 -msgid "Starting Process is required" -msgstr "Le processus de début est obligatoire" +msgid "%{table} no longer exists" +msgstr "%{table} n''existe plus" -#: ../app/controllers/application_controller/buttons.rb:737 -#: ../app/controllers/miq_ae_tools_controller.rb:409 -msgid "Request is required" -msgstr "La demande est obligatoire" +msgid "%{table}: %{name}" +msgstr "%{table}: %{name}" -#: ../app/controllers/application_controller/buttons.rb:739 -msgid "At least one Role must be selected" -msgstr "Au moins un Rôle doit être sélectionné" +msgid "%{task} does not apply to at least one of the selected %{model}" +msgstr "%{task} ne s''applique pas à au moins l''un des %{model} sélectionnés" -#: ../app/controllers/application_controller/buttons.rb:913 -msgid "Buttons for \"%{record}\"" -msgstr "Boutons pour \"%{record}\"" +msgid "%{task} does not apply to at least one of the selected items" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:941 -msgid "Button Group \"%{name}\"" -msgstr "Groupe de boutons \"%{name}\"" +msgid "%{task} does not apply to this item" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:982 -#: ../app/controllers/catalog_controller.rb:1720 -#: ../app/views/catalog/_form_basic_info.html.haml:85 -msgid "No Dialog" -msgstr "Aucune boîte de dialogue" +msgid "%{task} initiated for %{count} %{model} from the %{product} Database" +msgid_plural "%{task} initiated for %{count} %{models} from the %{product} Database" +msgstr[0] "%{task} lancée pour %{count} %{model} à partir de la base de données %{product}" +msgstr[1] "%{task} lancée pour %{count} %{models} à partir de la base de données %{product}" -#: ../app/controllers/application_controller/buttons.rb:983 -#: ../app/controllers/miq_ae_customization_controller/custom_buttons.rb:101 -msgid "Button \"%{name}\"" -msgstr "Bouton \"%{name}\"" +msgid "%{task} initiated for %{count} Host from the %{product} Database" +msgid_plural "%{task} initiated for %{count} Hosts from the %{product} Database" +msgstr[0] "%{task} lancée pour %{count} hôte à partir de la base de données %{product}" +msgstr[1] "%{task} lancée pour %{count} hôtes à partir de la base de données %{product}" -#: ../app/controllers/application_controller/buttons.rb:1017 -msgid "Simulation unavailable: Required Class \"System/Process\" is missing" -msgstr "" -"Simulation non disponible : la classe obligatoire \"System/Process\" est manquan" -"te" +msgid "%{task} initiated for %{count} Storage Manager from the %{product} Database" +msgid_plural "%{task} initiated for %{count} Storage Managers from the %{product} Database" +msgstr[0] "%{task} lancée pour %{count} gestionnaire de stockage à partir de la base de données %{product}" +msgstr[1] "%{task} lancée pour %{count} gestionnaires de stockage à partir de la base de données %{product}" -#: ../app/controllers/application_controller/buttons.rb:1023 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:655 -#: ../app/controllers/ops_controller/ops_rbac.rb:453 -#: ../app/controllers/report_controller/dashboards.rb:435 -#: ../app/controllers/report_controller/menus.rb:402 -#: ../app/controllers/report_controller/menus.rb:446 -#: ../app/controllers/report_controller/reports/editor.rb:824 -msgid "No fields were selected to move up" -msgstr "Aucun champ sélectionné à déplacer vers le haut" +msgid "%{task} initiated for %{count} provider" +msgid_plural "%{task} initiated for %{count} providers)" +msgstr[0] "" +msgstr[1] "" -#: ../app/controllers/application_controller/buttons.rb:1028 -#: ../app/controllers/ops_controller/ops_rbac.rb:458 -#: ../app/controllers/report_controller/dashboards.rb:442 -#: ../app/controllers/report_controller/menus.rb:407 -#: ../app/controllers/report_controller/menus.rb:451 -msgid "Select only one or consecutive fields to move up" -msgstr "Sélectionner un seul champ ou des champs consécutifs à déplacer vers le haut" +msgid "%{task} initiated for %{number} %{model} from the %{product} Database" +msgid_plural "%{task} initiated for %{number} %{models} from the %{product} Database" +msgstr[0] "%{task} lancée pour %{number} %{model} à partir de la base de données %{product}" +msgstr[1] "%{task} lancée pour %{number} %{models} à partir de la base de données %{product}" -#: ../app/controllers/application_controller/buttons.rb:1044 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:664 -#: ../app/controllers/ops_controller/ops_rbac.rb:475 -#: ../app/controllers/report_controller/dashboards.rb:459 -#: ../app/controllers/report_controller/menus.rb:423 -#: ../app/controllers/report_controller/menus.rb:467 -#: ../app/controllers/report_controller/reports/editor.rb:796 -msgid "No fields were selected to move down" -msgstr "Aucun champ sélectionné à déplacer vers le bas" +msgid "%{tenant_name} (%{group}): %{group_description}" +msgstr "%{tenant_name} (%{group}): %{group_description}" -#: ../app/controllers/application_controller/buttons.rb:1049 -#: ../app/controllers/ops_controller/ops_rbac.rb:480 -#: ../app/controllers/report_controller/dashboards.rb:466 -#: ../app/controllers/report_controller/menus.rb:428 -#: ../app/controllers/report_controller/menus.rb:472 -msgid "Select only one or consecutive fields to move down" -msgstr "Sélectionner un seul champ ou des champs consécutifs à déplacer vers le bas" +msgid "%{tenant_name} (All %{groups})" +msgstr "%{tenant_name} (Tous %{groups})" -#: ../app/controllers/application_controller/ci_processing.rb:35 -msgid "One or more %{model} must be selected to Set Ownership" -msgstr "Au moins un %{model} doit être sélectionné pour configurer la propriété" +msgid "%{time} Ago" +msgstr "Il y a %{time}" -#: ../app/controllers/application_controller/ci_processing.rb:49 -#: ../app/controllers/application_controller/ci_processing.rb:77 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:34 -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:41 -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:32 -#: ../app/helpers/application_helper/toolbar/service_center.rb:27 -#: ../app/helpers/application_helper/toolbar/services_center.rb:33 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:50 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:50 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:51 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:60 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:41 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:33 -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:32 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:41 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:32 -msgid "Set Ownership" -msgstr "Définir la propriété" +msgid "%{title_for_hosts} & %{title_for_clusters}" +msgstr "%{title_for_hosts} & %{title_for_clusters}" -#: ../app/controllers/application_controller/ci_processing.rb:128 -msgid "Set Ownership was cancelled by the user" -msgstr "La définition de la propriété a été annulée par l'utilisateur" +msgid "%{title} '%{description}'" +msgstr "%{title} '%{description}'" -#: ../app/controllers/application_controller/ci_processing.rb:163 -msgid "Ownership saved for selected %{object_types}" -msgstr "Propriété enregistrée pour les %{object_types} sélectionnés" +msgid "%{title} Default VNC Port Range" +msgstr "%{title} Port VNC Par Default" -#: ../app/controllers/application_controller/ci_processing.rb:194 -msgid "Set Retirement Date does not apply to selected %{model}" -msgstr "" -"Impossible de définir une date de désactivation pour le/la %{model} sélectionn" -"é(e)" +msgid "%{title} Discovery" +msgstr "%{title} Découverte" -#: ../app/controllers/application_controller/ci_processing.rb:202 -msgid "Retire VM or Instance" -msgstr "Désactiver une MV ou une instance" +msgid "%{title} Discovery returned: %{error_message}" +msgstr "%{title} Erreur dans la découverte: %{error_message}" -#: ../app/controllers/application_controller/ci_processing.rb:205 -msgid "Retire Service" -msgstr "Désactiver un service" +msgid "%{title} Discovery was cancelled by the user" +msgstr "%{title} La Découverte a été annulé par l''utilisateur" -#: ../app/controllers/application_controller/ci_processing.rb:208 -msgid "Retire Orchestration Stack" -msgstr "Désactiver une pile d'orchestration" +msgid "%{title} Guide" +msgstr "Guide %{title}" -#: ../app/controllers/application_controller/ci_processing.rb:214 -msgid "At least one %{model} must be selected for tagging" -msgstr "Au moins un %{model} doit être sélectionné pour le balisage" +msgid "%{title} Main Tab" +msgstr "%{title} Onglet Principal" -#: ../app/controllers/application_controller/ci_processing.rb:272 -msgid "Set/remove retirement date was cancelled by the user" -msgstr "" -"La définition/l'annulation de la date de désactivation a été annulée par l'uti" -"lisateur" +msgid "%{type} Information" +msgstr "%{type} Information" -#: ../app/controllers/application_controller/ci_processing.rb:280 -msgid "Retirement date removed" -msgstr "Date de désactivation supprimée" +msgid "%{type} Storage Adapter: %{name}" +msgstr "%{type} Adapteur Stockage: %{name}" -#: ../app/controllers/application_controller/ci_processing.rb:282 -msgid "Retirement dates removed" -msgstr "Dates de désactivation supprimées" +msgid "%{typ} %{model}" +msgstr "%{typ} %{model}" -#: ../app/controllers/application_controller/ci_processing.rb:290 -msgid "Retirement date set to %{date}" -msgstr "Date de désactivation définie à %{date}" +msgid "%{typ} %{model} \"%{name}\"" +msgstr "%{typ} %{model} \"%{name}\"" -#: ../app/controllers/application_controller/ci_processing.rb:292 -msgid "Retirement dates set to %{date}" -msgstr "Dates de désactivation définies à %{date}" +msgid "%{typ} Button Group \"%{name}\"" +msgstr "%{typ} Groupe de Bouton \"%{name}\"" -#: ../app/controllers/application_controller/ci_processing.rb:308 -msgid "Retire %{name}" -msgstr "Désactiver %{name}" +msgid "%{typ} Button Group \"Unassigned Buttons\"" +msgstr "%{typ} Groupe de Bouton \"Boutons non assignés\"" -#: ../app/controllers/application_controller/ci_processing.rb:330 -msgid "Reconfigure Instance '%{name}'" -msgstr "Reconfigurer l'instance '%{name}'" +msgid "%{typ} Button Groups" +msgstr "%{typ} Groupes de Bouton" -#: ../app/controllers/application_controller/ci_processing.rb:370 -#: ../app/controllers/application_controller/ci_processing.rb:401 -#: ../app/controllers/application_controller/ci_processing.rb:407 -msgid "Unable to reconfigure %{instance} \"%{name}\": %{details}" -msgstr "Impossible de reconfigurer l'%{instance} \"%{name}\": %{details}" +msgid "%{typ} Request was Submitted, you will be notified when your %{title} are ready" +msgstr "%{typ} La requête a été soumise , vous serez notifié quand votre %{title} sera prêt" -#: ../app/controllers/application_controller/ci_processing.rb:387 -msgid "Reconfigure of %{model} \"%{name}\" was cancelled by the user" -msgstr "La reconfiguration du/de la %{model} \"%{name}\" a été annulée par l'utilisateur" +msgid "%{typ} Request was re-submitted, you will be notified when your %{title} are ready" +msgstr "%{typ} La requête a été re-soumise , vous serez notifié quand votre %{title} sera prêt" -#: ../app/controllers/application_controller/ci_processing.rb:395 -msgid "Reconfiguring %{instance} \"%{name}\" from %{old_flavor} to %{new_flavor}" -msgstr "Reconfiguration de %{instance} \"%{name}\" de %{old_flavor} vers %{new_flavor}" +msgid "%{typ} in %{model} \"%{name}\"" +msgstr "%{typ} dans %{model} \"%{name}\"" -#: ../app/controllers/application_controller/ci_processing.rb:452 -#: ../app/controllers/application_controller/ci_processing.rb:525 -#: ../app/controllers/application_controller/ci_processing.rb:531 -msgid "Unable to live migrate %{instance} \"%{name}\": %{details}" -msgstr "Impossible de migrer en live l'%{instance} \"%{name}\": %{details}" +msgid "%{typ} in %{model} \"Unassigned\"" +msgstr "%{typ} dans %{model} \"Non assigné\"" -#: ../app/controllers/application_controller/ci_processing.rb:464 -msgid "Live Migrate Instance '%{name}'" -msgstr "Migrer de façon dynamique l'instance '%{name}'" +msgid "%{val} missing for %{field}" +msgstr "%{val} manquant pour %{field}" -#: ../app/controllers/application_controller/ci_processing.rb:503 -msgid "Live Migration of %{model} \"%{name}\" was cancelled by the user" -msgstr "La migration dynamique de %{model} \"%{name}\" a été annulée par l'utilisateur" +msgid "%{vm_or_template} Policy Assignment" +msgstr "%{vm_or_template} Affectation de Politique" -#: ../app/controllers/application_controller/ci_processing.rb:521 -msgid "Live Migrating %{instance} \"%{name}\"" -msgstr "Migration dynamique de %{instance} \"%{name}\"" +msgid "%{vm_or_template} Policy Simulation" +msgstr "%{vm_or_template} Simulation de Politique" -#: ../app/controllers/application_controller/ci_processing.rb:553 -msgid "Evacuate Instance '%{name}'" -msgstr "Évacuer l'instance '%{name}'" +msgid "%{volume} \"%{volume_name}\" is not attached to any %{instances}" +msgstr "%{volume} \"%{volume_name}\" n'est associé à aucune %{instances}" -#: ../app/controllers/application_controller/ci_processing.rb:575 -#: ../app/controllers/application_controller/ci_processing.rb:611 -#: ../app/controllers/application_controller/ci_processing.rb:617 -msgid "Unable to evacuate %{instance} \"%{name}\": %{details}" -msgstr "Impossible d'évacuer l'%{instance} \"%{name}\" : %{details}" +msgid "'%{model}' Policy Assignment" +msgstr "'%{model}' Affectation de Politique" -#: ../app/controllers/application_controller/ci_processing.rb:589 -msgid "Evacuation of %{model} \"%{name}\" was cancelled by the user" -msgstr "L'évacuation de %{model} \"%{name}\" a été annulée par l'utilisateur" +msgid "'%{name}' Drift Analysis" +msgstr "Analyse de dérive '%{name}'" -#: ../app/controllers/application_controller/ci_processing.rb:607 -msgid "Evacuating %{instance} \"%{name}\"" -msgstr "Évacuation de %{instance} \"%{name}\"" +msgid "'%{task}' successfully initiated for %{items}" +msgstr "'%{task}' démarrée pour %{items}" -#: ../app/controllers/application_controller/ci_processing.rb:675 -#: ../app/controllers/application_controller/ci_processing.rb:729 -msgid "Unable to associate Floating IP with Instance \"%{name}\": %{details}" -msgstr "Impossible d'associer l'IP flottante à l'instance \"%{name}\" : %{details}" +msgid "'%{task}' successfully initiated for %{table}" +msgstr "'%{task}' démarrée pour %{table}" -#: ../app/controllers/application_controller/ci_processing.rb:686 -msgid "Associate Floating IP with Instance '%{name}'" -msgstr "Associer une adresse IP flottante à l'instance '%{name}'" +msgid "'%{type}' Worker restart initiated successfully" +msgstr "'%{type}' Redémarrage Worker initié" -#: ../app/controllers/application_controller/ci_processing.rb:712 -msgid "Association of Floating IP with Instance \"%{name}\" was cancelled by the user" -msgstr "" -"L'association de l'adresse IP flottante à l'instance \"%{name}\" a été annulée p" -"ar l'utilisateur" +msgid "'Default' zone cannot be deleted" +msgstr "La zone \"par défaut\" ne peut pas être supprimée" -#: ../app/controllers/application_controller/ci_processing.rb:719 -msgid "Associating Floating IP %{address} with Instance \"%{name}\"" -msgstr "Association de l'adresse IP flottante %{address} à l'instance \"%{name}\"" +msgid "'Unassigned Buttons Group' can not be deleted" +msgstr "'Groupe de boutons non assigné' ne peut être détruit" -#: ../app/controllers/application_controller/ci_processing.rb:723 -msgid "Unable to associate Floating IP %{address} with Instance \"%{name}\": %{details}" -msgstr "" -"Impossible d'associer l'IP flottante %{address} à l'instance \"%{name}\" : %{det" -"ails}" +msgid "'Unassigned Buttons Group' can not be edited" +msgstr "'Groupe de boutons non assigné' ne peut être édité" -#: ../app/controllers/application_controller/ci_processing.rb:767 -#: ../app/controllers/application_controller/ci_processing.rb:823 -msgid "Unable to disassociate Floating IP from Instance \"%{name}\": %{details}" -msgstr "Impossible de dissocier l'IP flottante de l'instance \"%{name}\" : %{details}" +msgid "(%{number} bytes)" +msgstr "(%{number} octets)" -#: ../app/controllers/application_controller/ci_processing.rb:778 -msgid "Disssociate Floating IP from Instance '%{name}'" -msgstr "Dissocier l'adresse IP flottante de l'instance '%{name}'" +msgid "(%{value}) * Overallocated" +msgstr "(%{value}) * Sur-alloué" -#: ../app/controllers/application_controller/ci_processing.rb:806 -msgid "" -"Disassociation of Floating IP from Instance \"%{name}\" was cancelled by the use" -"r" -msgstr "" -"La dissociation de l'adresse IP flottante de l'instance \"%{name}\" a été annulé" -"e par l'utilisateur" +msgid "(All)" +msgstr "(Tous)" -#: ../app/controllers/application_controller/ci_processing.rb:813 -msgid "Disassociating Floating IP %{address} from Instance \"%{name}\"" -msgstr "Dissociation de l'adresse IP flottante %{address} de l'instance \"%{name}\"" +msgid "(Check All)" +msgstr "(Controler tout)" -#: ../app/controllers/application_controller/ci_processing.rb:817 -msgid "" -"Unable to disassociate Floating IP %{address} from Instance \"%{name}\": %{detai" -"ls}" -msgstr "" -"Impossible de dissocier l'IP flottante %{address} de l'instance \"%{name}\" : %{" -"details}" +msgid "(Checked default filters will be visible.)" +msgstr "(Les filtres par défaut validés seront visibles)" -#: ../app/controllers/application_controller/ci_processing.rb:848 -msgid "One or more %{model} must be selected to Right-Size Recommendations" -msgstr "" -"Au moins un %{model} doit être sélectionné pour les recommandations de dimensi" -"ons correctes" +msgid "(Click to remove)" +msgstr "(Cliquez pour ôter)" -#: ../app/controllers/application_controller/ci_processing.rb:855 -msgid "Right-Size Recommendations does not apply to selected %{model}" -msgstr "" -"Les recommandations de calibrage ne s'appliquent pas au/à la %{model} sélectio" -"nné(e)" +msgid "(Default: %{email_from})" +msgstr "(Par défaut : %{email_from})" -#: ../app/controllers/application_controller/ci_processing.rb:880 -#: ../app/controllers/catalog_controller.rb:874 -#: ../app/views/catalog/_sandt_tree_show.html.haml:145 -msgid "Reconfigure" -msgstr "Reconfigurer" +msgid "(Enter the value between 4 - 65636 MB)" +msgstr "(Entrez la valeur de 4 à 65636 MO)" -#: ../app/controllers/application_controller/ci_processing.rb:900 -msgid "VM Reconfigure Request was cancelled by the user" -msgstr "La demande de reconfiguration de la MV a été annulée par l'utilisateur" +msgid "(Look up %{authentication_mode_name} Groups)" +msgstr "(Rechercher %{authentication_mode_name} groupes)" -#: ../app/controllers/application_controller/ci_processing.rb:956 -msgid "VM Reconfigure Request was saved" -msgstr "La demande de reconfiguration de la MV a été enregistrée" +msgid "(MB) memory" +msgstr "(MO) mémoire" -#: ../app/controllers/application_controller/ci_processing.rb:1155 -#: ../app/controllers/cim_instance_controller.rb:135 -#: ../app/controllers/host_controller.rb:115 -#: ../app/controllers/host_controller.rb:122 -#: ../app/controllers/host_controller.rb:129 -#: ../app/controllers/host_controller.rb:136 -#: ../app/controllers/host_controller.rb:143 -#: ../app/controllers/storage_controller.rb:101 -#: ../app/controllers/storage_controller.rb:108 -#: ../app/controllers/storage_controller.rb:115 -msgid "%{name} (All %{tables})" -msgstr "%{name} (Tous %{tables})" +msgid "(current)" +msgstr "(courant)" -#: ../app/controllers/application_controller/ci_processing.rb:1191 -#: ../app/controllers/application_controller/ci_processing.rb:1203 -msgid "%{name} (Packages)" -msgstr "%{name} (Paquetages)" +msgid "(leave blank for default)" +msgstr "(laisser vide pour valeur par défaut)" -#: ../app/controllers/application_controller/ci_processing.rb:1194 -#: ../app/controllers/application_controller/ci_processing.rb:1206 -msgid "%{name} (Applications)" -msgstr "%{name} (Applications)" +msgid "(missing)" +msgstr "(manquant)" -#: ../app/controllers/application_controller/ci_processing.rb:1227 -#: ../app/controllers/application_controller/ci_processing.rb:1233 -msgid "%{name} (Patches)" -msgstr "%{name} (Patches)" +msgid "(optional) the address of an alternate service" +msgstr "(optionnel) l’adresse d'un service alternatif" -#: ../app/controllers/application_controller/ci_processing.rb:1253 -#: ../app/controllers/application_controller/ci_processing.rb:1260 -msgid "%{name} (Groups)" -msgstr "%{name} (Groupes)" +msgid "(optional) your HTTP proxy information" +msgstr "(optional) vos information de proxy HTTP" -#: ../app/controllers/application_controller/ci_processing.rb:1280 -#: ../app/controllers/application_controller/ci_processing.rb:1287 -msgid "%{name} (Users)" -msgstr "%{name} (Utilisateurs)" +msgid "* 'Name' and 'Single Value' fields cannot be edited after adding a category." +msgstr "* Les champs 'Nom' et 'Valeur unitaire' ne peuvent être édités après l'ajout d'une catégorie." -#: ../app/controllers/application_controller/ci_processing.rb:1308 -#: ../app/controllers/application_controller/ci_processing.rb:1314 -msgid "%{name} (Hosts)" -msgstr "%{name} (Hôtes)" +msgid "* Base the report on" +msgstr "* Baser le rapport sur" -#: ../app/controllers/application_controller/ci_processing.rb:1328 -msgid "%{title} Discovery was cancelled by the user" -msgstr "%{title} La Découverte a été annulé par l''utilisateur" +msgid "* Cannot be changed while this Alert belongs to an Alert Profile." +msgstr "* Ne peut être changé tant que cette alerte est liée à un profil d'alerte." -#: ../app/controllers/application_controller/ci_processing.rb:1381 -#: ../app/controllers/application_controller/ci_processing.rb:1453 -msgid "%{title} Discovery" -msgstr "%{title} Découverte" +msgid "* Caution: Changing these fields will clear all selected values below them!" +msgstr "* Attention : Le changement de ces champs impliquera l'effacement de toutes valeurs sélectionnées suivantes!" -#: ../app/controllers/application_controller/ci_processing.rb:1391 -msgid "Client ID, Client Key, Azure Tenant ID and Subscription ID are required" -msgstr "" -"ID du client, Clé du client, ID du locataire Azure et ID d'abonnement sont des" -" champs obligatoires" +msgid "* Caution: The value Range end will not be included in the tier." +msgstr "* Attention : la fin de la plage de valeurs ne sera pas incluse dans le niveau." -#: ../app/controllers/application_controller/ci_processing.rb:1400 -#: ../app/controllers/pxe_controller/pxe_servers.rb:305 -msgid "Username is required" -msgstr "Le nom d'utilisateur est obligatoire" +msgid "* Changing the Time Zone will reset the Starting Date and Time fields below" +msgstr "*Changer la zone de temps réinitialisera la date initiale et les champs de date suivants" -#: ../app/controllers/application_controller/ci_processing.rb:1405 -#: ../app/controllers/ems_common.rb:696 -#: ../app/controllers/ops_controller/settings/ldap.rb:171 -#: ../app/controllers/ops_controller/settings/zones.rb:123 -#: ../app/controllers/storage_manager_controller.rb:243 -msgid "Username must be entered if Password is entered" -msgstr "Le nom d'utilisateur doit être saisi si le mot de passe est saisi" +msgid "* Changing the Zone will reset all of this Server's priorities to secondary." +msgstr "* Changer la zone réinitialisera toutes les priorités de ce serveurs en tant que secondaires." -#: ../app/controllers/application_controller/ci_processing.rb:1410 -#: ../app/controllers/ems_common.rb:699 -#: ../app/controllers/ops_controller/ops_rbac.rb:999 -#: ../app/controllers/pxe_controller/pxe_servers.rb:310 -msgid "Password/Verify Password do not match" -msgstr "Mot de passe/Vérifier le mot de passe ne correspondent pas" +msgid "* Checking this box will remove this setting from all other PXE Images on this PXE Server" +msgstr "* Valider cette option supprimera ce paramétrage pour toutes les images PXE hébergées par ce serveur PXE" -#: ../app/controllers/application_controller/ci_processing.rb:1417 -msgid "At least 1 item must be selected for discovery" -msgstr "Au moins un élément doit être sélectionné pour la découverte" +msgid "* Daily charts only include days for which all 24 hours of data has been collected." +msgstr "* Les diagrammes journaliers n'incluent que les jours pour lesquels la totalité des données pour les 24h00 associées ont été collectées." -#: ../app/controllers/application_controller/ci_processing.rb:1440 -msgid "%{title} Discovery returned: %{error_message}" -msgstr "%{title} Erreur dans la découverte: %{error_message}" +msgid "* Dashboard name cannot be changed" +msgstr "* Le nom du tableau de bord ne peut être changé" -#: ../app/controllers/application_controller/ci_processing.rb:1447 -msgid "%{model}: Discovery successfully initiated" -msgstr "%{model}: Découverte lancée" +msgid "* Dates/Times on this page are based on time zone: %{time_zone}." +msgstr "* Les dates/heures de cette page sont basées sur le fuseau horaire : %{time_zone}." -#: ../app/controllers/application_controller/ci_processing.rb:1460 -#: ../app/helpers/application_helper.rb:1527 -#: ../app/presenters/menu/default_menu.rb:61 -msgid "Hosts / Nodes" -msgstr "Hôtes / Nœuds" +msgid "* Disk space not supported for OpenStack providers" +msgstr "* Espace disque non pris en charge pour les fournisseurs OpenStack" -#: ../app/controllers/application_controller/ci_processing.rb:1540 -msgid "%{model} \"%{name}\": Error during '%{task}': %{error_msg}" -msgstr "%{model} \"%{name}\": Erreur durant '%{task}': %{error_msg}" +msgid "* Enter Policy Simulation options on the left and press Submit" +msgstr "* Entrez les options de simulation de politique à gauche et cliquez soumettre" -#: ../app/controllers/application_controller/ci_processing.rb:1544 -#: ../app/controllers/application_controller/ci_processing.rb:2238 -#: ../app/controllers/ems_common.rb:1038 -#: ../app/controllers/miq_request_controller.rb:571 -#: ../app/controllers/ontap_file_share_controller.rb:70 -#: ../app/controllers/storage_manager_controller.rb:463 -msgid "%{model} \"%{name}\": %{task} successfully initiated" -msgstr "%{model} \"%{name}\": %{task} lancé" - -#: ../app/controllers/application_controller/ci_processing.rb:1578 -#: ../app/controllers/application_controller/ci_processing.rb:1586 -#: ../app/controllers/miq_ae_class_controller.rb:2592 -msgid "%{model} \"%{name}\": Error during delete: %{error_msg}" -msgstr "%{model} \"%{name}\": Erreur durant suppression: %{error_msg}" +msgid "* Enter a reason for this approval and press Submit" +msgstr "* Entrez le motif de cette approbation et cliquez soumettre" -#: ../app/controllers/application_controller/ci_processing.rb:1663 -msgid "One or more %{model} must be selected to Reconfigure" -msgstr "Au moins un %{model} doit être sélectionné pour la reconfiguration" +msgid "* Enter a reason for this denial and press Submit" +msgstr "* Entrez le motif de ce rejet et cliquez soumettre" -#: ../app/controllers/application_controller/ci_processing.rb:1669 -msgid "Reconfigure does not apply because you selected at least one %{model}" -msgstr "Reconfiguration impossible : vous avez sélectionné au moins un(e) %{model}" +msgid "* Fields are read only for default Widgets" +msgstr "* Pour les widgets pas défaut, ces champs sont en lecture uniquement." -#: ../app/controllers/application_controller/ci_processing.rb:1675 -msgid "" -"Reconfigure does not apply because you selected at least one un-reconfigurable" -" VM" -msgstr "" -"Reconfiguration impossible : vous avez sélectionné au moins une MV non reconfi" -"gurable" +msgid "* If all Conditions are removed from a Policy, it will be unconditional and always evaluate to true." +msgstr "*Si toutes les conditions sont supprimées d'une politique, elle sera toujours évaluée positivement" -#: ../app/controllers/application_controller/ci_processing.rb:1843 -msgid "Retire does not apply to selected %{model}" -msgstr "Désactivation impossible pour le/la %{model} sélectionné(e)" +msgid "* Information shown is based on available trend data from %{start_time} to %{end_time} in the %{timezone} time zone." +msgstr "* Les informations affichées sont basées sur les tendances disponibles du %{start_time} au %{end_time} dans le fuseau horaire %{timezone}." -#: ../app/controllers/application_controller/ci_processing.rb:1855 -#: ../app/controllers/application_controller/ci_processing.rb:2251 -#: ../app/controllers/application_controller/ci_processing.rb:2542 -#: ../app/controllers/application_controller/ci_processing.rb:2630 -#: ../app/controllers/application_controller/ci_processing.rb:2698 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:1357 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:62 -#: ../app/controllers/mixins/containers_common_mixin.rb:179 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:380 -#: ../app/controllers/provider_foreman_controller.rb:84 -msgid "No %{model} were selected for %{task}" -msgstr "Aucun %{model} n'était sélectionné pour %{task}" +msgid "* Information shown is based on available trend data going back %{weeks}." +msgstr "* Les informations affichées sont basées sur les tendances remontant à %{weeks}." -#: ../app/controllers/application_controller/ci_processing.rb:1868 -#: ../app/controllers/application_controller/ci_processing.rb:1941 -#: ../app/controllers/application_controller/ci_processing.rb:2263 -#: ../app/controllers/application_controller/ci_processing.rb:2554 -#: ../app/controllers/application_controller/ci_processing.rb:2642 -#: ../app/controllers/application_controller/ci_processing.rb:2713 -#: ../app/controllers/application_controller/ci_processing.rb:2746 -#: ../app/controllers/chargeback_controller.rb:219 -#: ../app/controllers/ems_common.rb:642 ../app/controllers/ems_common.rb:1065 -#: ../app/controllers/ems_common.rb:1100 ../app/controllers/ems_common.rb:1141 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:1365 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:83 -#: ../app/controllers/miq_policy_controller.rb:239 -msgid "%{record} no longer exists" -msgstr "%{record} n''existe plus" +msgid "* Items in" +msgstr "* Items dans" -#: ../app/controllers/application_controller/ci_processing.rb:1926 -msgid "Error during '%{task}': %{error_message}" -msgstr "Erreur pendant '%{task}': %{error_message}" +msgid "* Items in red italics do not change the outcome of the scope or expression." +msgstr "* Les éléments en italique rouge ne modifient pas le résultat de l'étendue ou de l'expression." -#: ../app/controllers/application_controller/ci_processing.rb:1928 -msgid "%{task} initiated for %{number} %{model} from the %{product} Database" -msgid_plural "%{task} initiated for %{number} %{models} from the %{product} Database" -msgstr[0] "" -"%{task} lancée pour %{number} %{model} à partir de la base de données %{produc" -"t}" -msgstr[1] "" -"%{task} lancée pour %{number} %{models} à partir de la base de données %{produ" -"ct}" +msgid "* No Actions are configured for this Event." +msgstr "* Aucune Action n'est configurée pour cet Evénement" -#: ../app/controllers/application_controller/ci_processing.rb:1950 -msgid "No providers were selected for %{task}" -msgstr "Aucun fournisseur n'a été sélectionné pour %{task}" +msgid "* No Reports available." +msgstr "* Aucun Rapports disponible." -#: ../app/controllers/application_controller/ci_processing.rb:1964 -#: ../app/controllers/storage_manager_controller.rb:417 -msgid "Error during '%{task}': %{message}" -msgstr "Erreur pendant '%{task}' : %{message}" +msgid "* Only a single value can be assigned from these Tag Categories" +msgstr "* Seule une valeur peut être assignée depuis ces Catégories de balises" -#: ../app/controllers/application_controller/ci_processing.rb:1966 -msgid "%{task} initiated for %{count} provider (%{controller})" -msgid_plural "%{task} initiated for %{count} providers (%{controller})" -msgstr[0] "%{task} lancée pour %{count} fournisseur (%{controller})" -msgstr[1] "%{task} lancée pour %{count} fournisseurs (%{controller})" +msgid "* Only a single value can be assigned from these categories" +msgstr "* Seule une valeur peut être assignée depuis ces Catégories" -#: ../app/controllers/application_controller/ci_processing.rb:2157 -msgid "At least 1 %{model} must be selected for Policy Simulation" -msgstr "Au moins 1 %{model} doit être sélectionné pour la Simulation de stratégie" +msgid "* Performance Interval" +msgstr "* Intervalle de Performance" -#: ../app/controllers/application_controller/ci_processing.rb:2184 -#: ../app/helpers/application_helper.rb:1538 -#: ../app/helpers/application_helper.rb:1551 -msgid "Cluster" -msgstr "Cluster" +msgid "* Policy Profile is only applied to some of the items below." +msgstr "* Le Profil de Stratégie a été appliqué uniquement sur les items ci-dessous." -#: ../app/controllers/application_controller/ci_processing.rb:2201 -#: ../app/controllers/application_controller/ci_processing.rb:2232 -#: ../app/controllers/application_controller/ci_processing.rb:2602 -#: ../app/controllers/catalog_controller.rb:631 -#: ../app/controllers/ems_common.rb:1031 -msgid "%{model} \"%{name}\": Error during '%{task}': %{error_message}" -msgstr "%{model} \"%{name}\": Erreur durant '%{task}': %{error_message}" +msgid "* Primary Server Roles shown as %{bold} text." +msgstr "* Roles primaires du serveur montrés comme texte %{bold}." -#: ../app/controllers/application_controller/ci_processing.rb:2207 -msgid "%{model}: %{task} successfully initiated" -msgstr "%{model}: %{task} lancée" +msgid "* Recommendations are subject to minimum of CPU: %{cpu} and Memory: %{memory}." +msgstr "* Les recommandations minimales sont les suivantes, pour le processeur : %{cpu} et pour la mémoire : %{memory}." -#: ../app/controllers/application_controller/ci_processing.rb:2290 -#: ../app/controllers/application_controller/ci_processing.rb:2478 -#: ../app/controllers/application_controller/ci_processing.rb:2669 -#: ../app/helpers/application_helper/tasks.rb:14 -#: ../app/views/ops/_schedule_show.html.haml:49 -msgid "Analysis" -msgstr "Analyse" +msgid "* Report is not owned by your group so it cannot be removed" +msgstr "* Rapport non possédé par votre groupe ne pouvant être supprimé" -#: ../app/controllers/application_controller/ci_processing.rb:2298 -#: ../app/controllers/miq_request_controller.rb:560 -#: ../app/controllers/miq_task_controller.rb:211 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:514 -#: ../app/controllers/storage_manager_controller.rb:445 -msgid "%{model} \"%{name}\": Error during '%{task}': %{message}" -msgstr "%{model} \"%{name}\": Erreur durant '%{task}': %{message}" +msgid "* Requirements: CSV formatted file." +msgstr "* Pré-requis: fichier au format CSV." -#: ../app/controllers/application_controller/ci_processing.rb:2311 -#: ../app/controllers/infra_networking_controller.rb:579 -#: ../app/helpers/application_helper.rb:1523 -#: ../app/helpers/application_helper.rb:1547 -#: ../app/views/configuration/_ui_1.html.haml:25 -#: ../app/views/host/_form.html.haml:166 -#: ../app/views/host_aggregate/add_host_select.html.haml:16 -#: ../app/views/host_aggregate/remove_host_select.html.haml:16 -#: ../app/views/ops/_settings_replication_tab.html.haml:138 -#: ../app/views/ops/_settings_server_tab.html.haml:386 -msgid "Host" -msgid_plural "Hosts" -msgstr[0] "Hôte" -msgstr[1] "Hôtes" +msgid "* Requirements: File-type - PNG; Dimensions - 1280x1000." +msgstr "* Pré-requis: type-fichier - PNG; Dimensions - 1280x1000." -#: ../app/controllers/application_controller/ci_processing.rb:2318 -msgid "%{task} initiated for %{count} Host from the %{product} Database" -msgid_plural "%{task} initiated for %{count} Hosts from the %{product} Database" -msgstr[0] "%{task} lancée pour %{count} hôte à partir de la base de données %{product}" -msgstr[1] "%{task} lancée pour %{count} hôtes à partir de la base de données %{product}" +msgid "* Requirements: File-type - PNG; Dimensions - 350x70." +msgstr "* ré-requis: type-fichier - PNG; Dimensions - 350x70." -#: ../app/controllers/application_controller/ci_processing.rb:2347 -#: ../app/controllers/application_controller/ci_processing.rb:2358 -#: ../app/controllers/application_controller/ci_processing.rb:2366 -msgid "\"%{task}\": not supported for %{hostname}" -msgstr "\"%{task}\": non supportée pour %{hostname}" +msgid "* Requires image file in .png or .jpg format" +msgstr "* Nécessite un fichier image au format .png ou .jpg." -#: ../app/controllers/application_controller/ci_processing.rb:2378 -#: ../app/controllers/application_controller/ci_processing.rb:2383 -msgid "\"%{record}\": Scheduling is %{status} now." -msgstr "\"%{record}\" : l'état du planning est maintenant %{status}." +msgid "* Saving a blank date will remove all retirement dates" +msgstr "* Sauvegarder une date vierge détruira toutes les dates de désactivation" -#: ../app/controllers/application_controller/ci_processing.rb:2385 -msgid "\"%{record}\": %{task} invalid" -msgstr "\"%{record}\" : %{task} non valide" +msgid "* Select one or more consecutive fields to move up or down." +msgstr "* Selectionner un ou plusieurs champs contigus pour les déplacer en haut ou en bas." -#: ../app/controllers/application_controller/ci_processing.rb:2396 -msgid "" -"\"%{task}\": not available for %{hostname}. %{hostname}'s provision state must b" -"e in \"available\", \"adoptfail\", \"cleanfail\", or \"inspectfail\"" -msgstr "" -"\"%{task}\" : non disponible pour %{hostname}. L'état de mise en service de %{ho" -"stname} doit être \"available\", \"adoptfail\", \"cleanfail\", ou \"inspectfail\"" +msgid "* Select one or more consecutive groups to move up or down." +msgstr "* Sélectionner un ou plusieurs groupes pour les déplacer en haut ou en bas." -#: ../app/controllers/application_controller/ci_processing.rb:2405 -#: ../app/controllers/application_controller/ci_processing.rb:2414 -msgid "" -"\"%{task}\": not available for %{hostname}. %{hostname}'s provision state needs " -"to be in \"manageable\"" -msgstr "" -"\"%{task}\" : non disponible pour %{hostname}. L'état de mise en service de %{ho" -"stname} doit être \"manageable\"" +msgid "* Set in Time Profile" +msgstr "* Initialisé des les profils de temps." -#: ../app/controllers/application_controller/ci_processing.rb:2423 -msgid "\"%{task}\": not available for %{hostname}" -msgstr "\"%{task}\": pas disponible pour %{hostname}" +msgid "* Some charts my not produce desired results with a single sort field" +msgstr "* Certains diagrammes peuvent ne pas produire les résultats escomptés avec un seul champ de tri." -#: ../app/controllers/application_controller/ci_processing.rb:2472 -#: ../app/controllers/application_controller/ci_processing.rb:2663 -#: ../app/controllers/provider_foreman_controller.rb:107 -#: ../app/views/ems_container/_show_ad_hoc_metrics.html.haml:163 -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:92 -#: ../app/views/ops/_settings_workers_tab.html.haml:418 -#: ../app/views/shared/_topology_header.html.haml:19 -#: ../app/views/shared/_topology_header_toolbar.html.haml:17 -#: ../app/views/shared/dialogs/_dialog_field_check_box.html.haml:14 -#: ../app/views/shared/dialogs/_dialog_field_date_and_date_time_control.html.haml:45 -#: ../app/views/shared/dialogs/_dialog_field_drop_down_list.html.haml:33 -#: ../app/views/shared/dialogs/_dialog_field_radio_button.html.haml:41 -#: ../app/views/shared/dialogs/_dialog_field_text_area_box.html.haml:18 -#: ../app/views/shared/dialogs/_dialog_field_text_box.html.haml:19 -msgid "Refresh" -msgstr "Actualiser" +msgid "* Specified NTP settings apply to this zone only and are not global." +msgstr "* Les paramétrages NTP spécifiés ne s'appliquent qu'à cette zone et ne sont pas globaux." -#: ../app/controllers/application_controller/ci_processing.rb:2484 -msgid "Toggle Maintenance" -msgstr "Basculer la maintenance" +msgid "* Style \"If\" conditions are evaluated top to bottom for each column" +msgstr "* Les conditions de style \"Si\" sont évaluées de haut en bas pour chaque colonne." -#: ../app/controllers/application_controller/ci_processing.rb:2490 -msgid "Toggle Scheduling for Cloud Service" -msgstr "Basculer l'ordonnancement pour un service cloud" +msgid ", Connect at Power On = No" +msgstr ", Connexion à mise sous tension = Non" -#: ../app/controllers/application_controller/ci_processing.rb:2495 -#: ../app/views/ops/_schedule_show.html.haml:38 -msgid "Compliance Check" -msgstr "Vérification de Conformité" +msgid ", Connect at Power On = Yes" +msgstr ", Connexion à mise sous tension = Oui" -#: ../app/controllers/application_controller/ci_processing.rb:2500 -msgid "Analyze and Compliance Check" -msgstr "Analyser et vérifier la conformité" +msgid ", Mode: %{mode}" +msgstr ", Mode: %{mode}" -#: ../app/controllers/application_controller/ci_processing.rb:2506 -msgid "Manageable" -msgstr "Gérable" +msgid ", Percent Used Provisioned Space: %{number}%%" +msgstr "Pourcentage d'espace alloué configuré : %{number}%%" -#: ../app/controllers/application_controller/ci_processing.rb:2512 -msgid "Introspect" -msgstr "Introspecter" +msgid ", Size on disk: %{number}" +msgstr ", Taille sur le disque: %{number}" -#: ../app/controllers/application_controller/ci_processing.rb:2518 -msgid "Provide" -msgstr "Fournir" +msgid ", Size: %{number}" +msgstr ", Taille: %{number}" -#: ../app/controllers/application_controller/ci_processing.rb:2523 -#: ../app/controllers/middleware_server_controller.rb:46 -#: ../app/controllers/middleware_server_controller.rb:81 -#: ../app/helpers/application_helper/toolbar/host_center.rb:187 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:204 -#: ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:30 -#: ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:36 -msgid "Restart" -msgstr "Redémarrer" +msgid "-- OR --" +msgstr "-- OU --" -#: ../app/controllers/application_controller/ci_processing.rb:2524 -#: ../app/helpers/application_helper/toolbar/host_center.rb:197 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:217 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:235 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:198 -#: ../app/views/catalog/_form_resources_info.html.haml:119 -msgid "Power On" -msgstr "Activer" +msgid "1 - Select a Reference VM." +msgstr "1 - Selectionnez une MV de référence." -#: ../app/controllers/application_controller/ci_processing.rb:2525 -#: ../app/helpers/application_helper/toolbar/host_center.rb:206 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:227 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:245 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:207 -#: ../app/views/catalog/_form_resources_info.html.haml:120 -msgid "Power Off" -msgstr "Désactiver" +msgid "1 Day" +msgstr "1 Jour" -#: ../app/controllers/application_controller/ci_processing.rb:2526 -#: ../app/helpers/application_helper/toolbar/host_center.rb:151 -msgid "Enter Maintenance Mode" -msgstr "Entrer en Mode Maintenance" +msgid "1 Day Ago" +msgstr "1 Jour Passé" -#: ../app/controllers/application_controller/ci_processing.rb:2527 -#: ../app/helpers/application_helper/toolbar/host_center.rb:160 -msgid "Exit Maintenance Mode" -msgstr "Sortir du Mode Maintenance" +msgid "1 Hour" +msgstr "1 Heure" -#: ../app/controllers/application_controller/ci_processing.rb:2528 -msgid "Shutdown to Standby Mode" -msgstr "Mettre en veille" +msgid "1 Minute" +msgstr "1 Minute" -#: ../app/controllers/application_controller/ci_processing.rb:2579 -#: ../app/controllers/miq_ae_class_controller.rb:80 -#: ../app/controllers/miq_ae_class_controller.rb:88 -#: ../app/controllers/miq_ae_class_controller.rb:176 -#: ../app/controllers/miq_ae_class_controller.rb:1600 -#: ../app/controllers/miq_ae_class_controller.rb:2557 -#: ../app/presenters/tree_builder_ae_class.rb:17 -#: ../app/presenters/tree_builder_automate.rb:25 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:65 -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:63 -#: ../app/views/shared/views/_prov_dialog.html.haml:143 -msgid "Datastore" -msgstr "Magasin de données" +msgid "1 Week" +msgstr "1 Semaine" -#: ../app/controllers/application_controller/ci_processing.rb:2590 -msgid "Delete initiated for Datastore from the %{product} Database" -msgid_plural "Delete initiated for Datastores from the %{product} Database" -msgstr[0] "" -"Supprimer l'élément lancé pour le magasin de données à partir de la base de do" -"nnées %{product}" -msgstr[1] "" -"Supprimer l'élément lancé pour les magasins de données à partir de la base de " -"données %{product}" +msgid "1 Week Ago" +msgstr "1 Semaine Plus tôt" -#: ../app/controllers/application_controller/ci_processing.rb:2609 -msgid "\"%{record}\": Refresh successfully initiated" -msgstr "\"%{record}\" : rafraîchissement lancé" +msgid "1 Week before retirement" +msgstr "Une Semaine avant désactivation" -#: ../app/controllers/application_controller/ci_processing.rb:2626 -msgid "Smartstate Analysis" -msgstr "Analyse SmartState" +msgid "1-2" +msgstr "1-2" -#: ../app/controllers/application_controller/ci_processing.rb:2706 -msgid "\"%{datastore_name}\": cannot be removed, has vms or hosts" -msgstr "" -"\"%{datastore_name}\": ne peut pas être supprimé, possèdent des MV ou des hyperv" -"iseurs" +msgid "10 Hours Ago" +msgstr "Il y a 10 heures" -#: ../app/controllers/application_controller/ci_processing.rb:2719 -#: ../app/controllers/application_controller/ci_processing.rb:2752 -#: ../app/controllers/catalog_controller.rb:274 -#: ../app/controllers/ems_common.rb:1071 -msgid "The selected %{record} was deleted" -msgstr "Le %{record} sélectionné a été supprimé" +msgid "10 Minutes" +msgstr "10 Minutes" -#: ../app/controllers/application_controller/ci_processing.rb:2734 -#: ../app/controllers/catalog_controller.rb:280 -#: ../app/controllers/catalog_controller.rb:1195 -#: ../app/controllers/miq_request_controller.rb:525 -#: ../app/controllers/miq_task_controller.rb:130 -#: ../app/controllers/miq_task_controller.rb:155 -#: ../app/controllers/ops_controller/settings/ldap.rb:111 -#: ../app/controllers/ops_controller/settings/schedules.rb:197 -#: ../app/controllers/service_controller.rb:168 -msgid "No %{model} were selected for deletion" -msgstr "Aucun %{model} sélectionné à supprimer." +msgid "10 items" +msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2738 -#: ../app/controllers/ems_common.rb:1018 ../app/controllers/ems_common.rb:1057 -msgid "Delete initiated for %{count} %{model} from the %{product} Database" -msgid_plural "Delete initiated for %{count} %{models} from the %{product} Database" -msgstr[0] "" -"Supprimer l'élément lancé pour %{count} %{model} à partir de la base de donnée" -"s %{product}" -msgstr[1] "" -"Supprimer l'élément lancé pour %{count} %{models} à partir de la base de donné" -"es %{product}" +msgid "10-11" +msgstr "10-11" -#: ../app/controllers/application_controller/compare.rb:50 -#: ../app/controllers/application_controller/compare.rb:108 -msgid "Compare %{name}" -msgstr "Comparer %{name}" +msgid "100 items" +msgstr "" -#: ../app/controllers/application_controller/compare.rb:416 -msgid "%{name} Compare Report (* = Value does not match base)" +msgid "1000 items" msgstr "" -"%{name} Comparer rapport (* = valeur ne correspondant pas à la valeur de base" -")" -#: ../app/controllers/application_controller/compare.rb:420 -msgid "%{name} '%{vm_name}' Drift Report" -msgstr "%{name} '%{vm_name}' Rapport de dérive" +msgid "11 Hours Ago" +msgstr "Il y a 11 heures" -#: ../app/controllers/application_controller/compare.rb:564 -#: ../app/controllers/application_controller/compare.rb:592 -msgid "'%{name}' Drift Analysis" -msgstr "Analyse de dérive '%{name}'" +msgid "11-12" +msgstr "11-12" -#: ../app/controllers/application_controller/compare.rb:753 -#: ../app/controllers/vm_common.rb:1620 -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:190 -#: ../app/helpers/host_helper/textual_summary.rb:288 -#: ../app/helpers/textual_mixins/textual_drift.rb:4 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:86 -#: ../app/views/layouts/listnav/_host.html.haml:144 -msgid "Drift History" -msgid_plural "Drift History" -msgstr[0] "Historique de dérive" -msgstr[1] "Historique de dérive" +msgid "12 Hours" +msgstr "12 Heures" -#: ../app/controllers/application_controller/compare.rb:869 -#: ../app/controllers/vm_common.rb:244 ../app/controllers/vm_controller.rb:22 -#: ../app/helpers/ems_infra_helper/textual_summary.rb:149 -#: ../app/presenters/menu/default_menu.rb:68 -msgid "Virtual Machines" -msgstr "Machines virtuelles" +msgid "12 Hours Ago" +msgstr "Il y a 12 heures" -#: ../app/controllers/application_controller/compare.rb:871 -msgid "VM Templates" -msgstr "Modèles de MV" +msgid "12-1" +msgstr "12-1" -#: ../app/controllers/application_controller/compare.rb:876 -msgid "At least 2 %{model} must be selected for Compare" -msgstr "Au moins 2 %{model} doivent être sélectionnés pour la comparaison" +msgid "13 Hours Ago" +msgstr "Il y a 13 heures" -#: ../app/controllers/application_controller/compare.rb:882 -msgid "No more than 32 %{model} can be selected for Compare" -msgstr "Impossible de sélectionner plus de 32 %{model} pour la comparaison" +msgid "14 Days Ago" +msgstr "14 Jours Plus tôt" -#: ../app/controllers/application_controller/compare.rb:925 -msgid "At least 2 Analyses must be selected for Drift" -msgstr "Au moins 2 analyses doivent être sélectionnées pour la dérive" +msgid "14 Hours Ago" +msgstr "Il y a 14 heures" -#: ../app/controllers/application_controller/compare.rb:929 -msgid "No more than 10 Analyses can be selected for Drift" -msgstr "Impossible de sélectionner plus de 10 analyses pour la dérive" +msgid "15 Hours Ago" +msgstr "Il y a 15 heures" -#: ../app/controllers/application_controller/compare.rb:993 -msgid "All Sections" -msgstr "Toutes les Sections" +msgid "15 Minutes" +msgstr "15 Minutes" -#: ../app/controllers/application_controller/compare.rb:999 -#: ../app/controllers/application_controller/compare.rb:1002 -#: ../app/controllers/application_controller/compare.rb:1043 -msgid "Same as previous" -msgstr "Comme précédent" +msgid "16 Hours Ago" +msgstr "Il y a 16 heures" -#: ../app/controllers/application_controller/compare.rb:1004 -#: ../app/controllers/application_controller/compare.rb:1045 -msgid "Changed from previous" -msgstr "Modifié par rapport aux éléments précédents" +msgid "17 Hours Ago" +msgstr "Il y a 17 heures" -#: ../app/controllers/application_controller/compare.rb:1037 -msgid "Starting values" -msgstr "Valeurs de départ" +msgid "18 Hours Ago" +msgstr "Il y a 18 heures" -#: ../app/controllers/application_controller/compare.rb:1309 -#: ../app/controllers/application_controller/compare.rb:1933 -msgid "No Value Found" -msgstr "Aucune valeur trouvée" +msgid "19 Hours Ago" +msgstr "Il y a 19 heures" -#: ../app/controllers/application_controller/compare.rb:1471 -#: ../app/views/shared/_compare_header_expanded.html.haml:2 -msgid "%{name} is the base" -msgstr "%{name} est la base" +msgid "2 - Specify the VM Options to define the source of the values used for the plan calculations." +msgstr "2 - Renseignez les options de mémoire virtuelle afin de définir la source des valeurs utilisées pour les calculs du plan." -#: ../app/controllers/application_controller/compare.rb:1475 -#: ../app/views/shared/_compare_header_expanded.html.haml:11 -msgid "Make %{name} the base" -msgstr "Faire de %{name} la base" - -#: ../app/controllers/application_controller/compare.rb:1506 -msgid "Remove this %{title} from the comparison" -msgstr "Supprimer ce(tte) %{title} de la comparaison" - -#: ../app/controllers/application_controller/compare.rb:1555 -msgid "Total Matches" -msgstr "Total des correspondances" - -#: ../app/controllers/application_controller/compare.rb:1561 -#: ../app/controllers/application_controller/compare.rb:1599 -#: ../app/controllers/application_controller/compare.rb:1682 -msgid "% Matched" -msgstr "% Correspondant" +msgid "2 Days" +msgstr "2 Jours" -#: ../app/controllers/application_controller/compare.rb:1561 -#: ../app/controllers/application_controller/compare.rb:1599 -msgid "% Matched:" -msgstr "% Correspondant :" +msgid "2 Days Ago" +msgstr "2 Jours Plus tôt" -#: ../app/controllers/application_controller/compare.rb:1896 -#: ../app/controllers/application_controller/compare.rb:1899 -msgid "(missing)" -msgstr "(manquant)" +msgid "2 Hours" +msgstr "2 Heures" -#: ../app/controllers/application_controller/dialog_runner.rb:27 -msgid "%{model} Order was cancelled by the user" -msgstr "%{model} Demande annulée par l'utilisateur" +msgid "2 Hours Ago" +msgstr "Il y a 2 heures" -#: ../app/controllers/application_controller/dialog_runner.rb:34 -msgid "Error during 'Provisioning': %{error_message}" -msgstr "Erreur lors du mise en service : %{error_message}" +msgid "2 Minutes" +msgstr "2 Minutes" -#: ../app/controllers/application_controller/dialog_runner.rb:44 -msgid "Order Request was Submitted" -msgstr "La demande de tri a été envoyée" +msgid "2 Months" +msgstr "2 Mois" -#: ../app/controllers/application_controller/dialog_runner.rb:76 -msgid "%{button_name} Button not yet implemented" -msgstr "%{button_name} Bouton non encore implémenté" +msgid "2 Months Ago" +msgstr "2 Mois Plus tôt" -#: ../app/controllers/application_controller/explorer.rb:74 -#: ../app/controllers/application_controller/explorer.rb:176 -msgid "invalid button action" -msgstr "action de bouton non valide" +msgid "2 Quarters Ago" +msgstr "2 Trimestres Plus tôt" -#: ../app/controllers/application_controller/explorer.rb:130 -msgid "Button not yet implemented %{model}:%{action}" -msgstr "Bouton non implémenté à ce stade %{model} :%{action}" +msgid "2 Weeks" +msgstr "2 Semaines" -#: ../app/controllers/application_controller/explorer.rb:228 -#: ../app/controllers/application_controller/tags.rb:187 -#: ../app/controllers/ops_controller/ops_rbac.rb:615 -msgid "Tag Edit was cancelled by the user" -msgstr "La modification des balises a été annulée par l'utilisateur" +msgid "2 Weeks Ago" +msgstr "2 Semaines Plus tôt" -#: ../app/controllers/application_controller/explorer.rb:246 -msgid "No Class found for explorer tree node id '%{number}'" -msgstr "" -"Aucune classe trouvée pour l'ID de nœud d'arborescence de l'explorateur '%{num" -"ber}'" +msgid "2 Weeks before retirement" +msgstr "2 Semaines avant désactivation" -#: ../app/controllers/application_controller/explorer.rb:253 -msgid "Last selected %{record_name} no longer exists" -msgstr "Le dernier %{record_name} sélectionné n'existe plus" +msgid "2 Years Ago" +msgstr "2 Ans Plus tôt" -#: ../app/controllers/application_controller/feature.rb:27 -msgid "No TreeBuilder found for feature '%{name}'" -msgstr "Aucun TreeBuilder trouvé pour la fonction '%{name}'" +msgid "2-3" +msgstr "2-3" -#: ../app/controllers/application_controller/filter.rb:46 -#: ../app/controllers/application_controller/policy_support.rb:145 -#: ../app/controllers/availability_zone_controller.rb:109 -#: ../app/controllers/cim_instance_controller.rb:82 -#: ../app/controllers/configuration_controller.rb:56 -#: ../app/controllers/configuration_job_controller.rb:68 -#: ../app/controllers/ems_cluster_controller.rb:189 -#: ../app/controllers/host_aggregate_controller.rb:157 -#: ../app/controllers/host_controller.rb:520 -#: ../app/controllers/infra_networking_controller.rb:85 -#: ../app/controllers/miq_ae_tools_controller.rb:25 -#: ../app/controllers/miq_policy_controller.rb:84 -#: ../app/controllers/miq_request_controller.rb:23 -#: ../app/controllers/orchestration_stack_controller.rb:137 -#: ../app/controllers/storage_controller.rb:175 -#: ../app/controllers/storage_manager_controller.rb:21 -#: ../app/controllers/vm_common.rb:26 ../app/controllers/vm_common.rb:827 -#: ../app/helpers/application_helper.rb:698 -msgid "Button not yet implemented" -msgstr "Bouton non implémenté à ce stade" +msgid "20 Hours Ago" +msgstr "Il y a 20 heures" -#: ../app/controllers/application_controller/filter.rb:100 -msgid "" -"There is an error in the selected expression element, perhaps it was imported " -"or edited manually." +msgid "20 items" msgstr "" -"L'élément d'expression sélectionné contient une erreur, il a peut-être été imp" -"orté ou modifié manuellement." -#: ../app/controllers/application_controller/filter.rb:101 -msgid "" -"This element should be removed and recreated or you can report the error to yo" -"ur %{product} administrator." +msgid "200 items" msgstr "" -"Cet élément doit être supprimé et recréé ou vous pouvez signaler l'erreur ) vo" -"tre administrateur %{product}." -#: ../app/controllers/application_controller/filter.rb:102 -msgid "Error details: %{message}" -msgstr "Infos erreur: %{message}" +msgid "21 Hours Ago" +msgstr "Il y a 21 heures" -#: ../app/controllers/application_controller/filter.rb:300 -msgid "Search Name is required" -msgstr " Le nom de la recherche est obligatoire" +msgid "22 Hours Ago" +msgstr "Il y a 22 heures" -#: ../app/controllers/application_controller/filter.rb:306 -msgid "%{model} search \"%{name}\" was saved" -msgstr "%{model} recherche \"%{name}\" a été sauvegardée" +msgid "23 Hours Ago" +msgstr "Il y a 23 heures" -#: ../app/controllers/application_controller/filter.rb:343 -msgid "%{model} search \"%{name}\" was successfully loaded" -msgstr "%{model} recherche \"%{name}\" a été chargé" +msgid "24 Hour Time Period" +msgstr "Période Horaire de 24 Heures" -#: ../app/controllers/application_controller/filter.rb:353 -msgid "%{model} \"%{name}\": Error during 'delete': %{error_message}" -msgstr "%{model} \"%{name}\": Erreur durant 'suppression': %{error_message}" +msgid "3 - Specify Target Options to qualify target %{hosts} or %{clusters}." +msgstr "3 - Renseignez les options Cible pour qualifier les %{hosts} ou %{clusters} cibles." -#: ../app/controllers/application_controller/filter.rb:365 -msgid "%{model} search \"%{name}\": Delete successful" -msgstr "%{model} recherche \"%{name}\": supprimé" +msgid "3 Days" +msgstr "3 Jours" -#: ../app/controllers/application_controller/filter.rb:376 -msgid "The current search details have been reset" -msgstr "Les détails de la recherche actuelle ont été réinitialisés" +msgid "3 Days Ago" +msgstr " il y a 3 Jours" -#: ../app/controllers/application_controller/filter.rb:555 -msgid "The selected Filter record was not found" -msgstr "L'enregistrement de filtre sélectionné est introuvable" +msgid "3 Hours" +msgstr "3 Heures" -#: ../app/controllers/application_controller/filter.rb:557 -msgid "The selected Filter can not be set as Default because it requires user input" -msgstr "" -"Le filtre sélectionné ne peut pas être défini comme filtre par défaut car il e" -"xige une saisie de l'utilisateur" +msgid "3 Hours Ago" +msgstr "Il y a 3 heures" -#: ../app/controllers/application_controller/filter.rb:673 -msgid " - Filtered by \"%{text}\"" -msgstr " - Filtré par \"%{text}\"" +msgid "3 Minutes" +msgstr "3 Minutes" -#: ../app/controllers/application_controller/filter.rb:675 -msgid " - Filtered by \"%{text}\" report" -msgstr " - Filtré par rapport \"%{text}\"" +msgid "3 Months" +msgstr "3 Mois" -#: ../app/controllers/application_controller/filter.rb:680 -msgid " - Filtered by custom search" -msgstr " - Filtré par recherche personnalisée" +msgid "3 Months Ago" +msgstr "3 Mois plus tôt" -#: ../app/controllers/application_controller/filter.rb:774 -msgid "A field must be chosen to commit this expression element" -msgstr "Un champ doit être choisi pour valider cet élément de l'expression" +msgid "3 Quarters Ago" +msgstr "3 Trimestres passés" -#: ../app/controllers/application_controller/filter.rb:782 -#: ../app/controllers/application_controller/filter.rb:803 -msgid "Field Value Error: %{msg}" -msgstr "Erreur de valeur du champ : %{msg}" +msgid "3 Weeks" +msgstr "3 Semaines" -#: ../app/controllers/application_controller/filter.rb:813 -msgid "A tag category must be chosen to commit this expression element" -msgstr "" -"Une catégorie d'étiquette doit être choisie pour valider cet élément de l'expr" -"ession" +msgid "3 Weeks Ago" +msgstr "3 Semaines passées" -#: ../app/controllers/application_controller/filter.rb:815 -msgid "A tag value must be chosen to commit this expression element" -msgstr "" -"Une valeure d'étiquette doit être choisie pour valider cet élément de l'expres" -"sion" +msgid "3 Years Ago" +msgstr "3 Années passées" -#: ../app/controllers/application_controller/filter.rb:827 -msgid "A registry key name must be entered to commit this expression element" -msgstr "" -"Un nom de clef de registre doit être entré pour valider cet élément de l'expre" -"ssion" +msgid "3-4" +msgstr "3-4" -#: ../app/controllers/application_controller/filter.rb:829 -msgid "A registry value name must be entered to commit this expression element" -msgstr "" -"Une valeure de clef de registre doit être entré pour valider cet élément de l'" -"expression" +msgid "30 Days before retirement" +msgstr "30 Jours avant désactivation" -#: ../app/controllers/application_controller/filter.rb:831 -msgid "Registry Value Error: %{msg}" -msgstr "Erreur de valeur de registre : %{msg}" +msgid "30 Minutes" +msgstr "30 Minutes" -#: ../app/controllers/application_controller/filter.rb:847 -msgid "A find field must be chosen to commit this expression element" -msgstr "" -"Un champ de recherche doit être choisi pour valider cet élément de l'expressio" -"n" +msgid "32 Bit Architecture" +msgstr "Architecture 32 Bit" -#: ../app/controllers/application_controller/filter.rb:850 -msgid "A check field must be chosen to commit this expression element" -msgstr "" -"Un champ de vérification doit être sélectionné pour valider cet élément d'expr" -"ession" +msgid "4 - Change the Trend Options used to calculate the daily trends, if desired." +msgstr "4 - Si souhaité, changer les options de tendance utiliser pour calculer les tendances journalière." -#: ../app/controllers/application_controller/filter.rb:853 -msgid "The check count value must be an integer to commit this expression element" -msgstr "" -"La valeur du nombre de contrôle doit être un nombre entier pour valider cet él" -"ément d'expression" +msgid "4 Days" +msgstr "4 Jours" -#: ../app/controllers/application_controller/filter.rb:860 -msgid "Find Value Error: %{msg}" -msgstr "Erreur de la valeur du recherche : %{msg}" +msgid "4 Days Ago" +msgstr "4 Jours passés" -#: ../app/controllers/application_controller/filter.rb:867 -msgid "Check Value Error: %{msg}" -msgstr "Erreur de la valeur de vérification : %{msg}" +msgid "4 Hours" +msgstr "4 Heures" -#: ../app/controllers/application_controller/filter.rb:903 -msgid "Select an expression element type" -msgstr "Sélectionner un type d'élément d'expression" +msgid "4 Hours Ago" +msgstr "Il y a 4 heures" -#: ../app/controllers/application_controller/filter.rb:992 -#: ../app/views/miq_capacity/_bottlenecks_options.html.haml:20 -#: ../app/views/miq_request/_prov_field.html.haml:31 -msgid "ALL" -msgstr "TOUT" +msgid "4 Minutes" +msgstr "4 Minutes" -#: ../app/controllers/application_controller/miq_request_methods.rb:74 -msgid "Add of new %{type} Request was cancelled by the user" -msgstr "L''ajout d''une nouvelle requête %{type} a été annulée par l''utilisateur" +msgid "4 Months" +msgstr "4 Mois" -#: ../app/controllers/application_controller/miq_request_methods.rb:197 -msgid "Edit of %{model} Request \"%{name}\" was cancelled by the user" -msgstr "" -"La modification de la demande %{model} \"%{name}\" a été annulée par l'utilisate" -"ur" +msgid "4 Months Ago" +msgstr "4 Mois passés" -#: ../app/controllers/application_controller/miq_request_methods.rb:200 -msgid "Provision %{type} Request was cancelled by the user" -msgstr "La demande de %{type} de mise en service a été annulée par l'utilisateur" +msgid "4 Quarters Ago" +msgstr "4 Trimestres passés" -#: ../app/controllers/application_controller/miq_request_methods.rb:226 -msgid "Edit %{type}" -msgstr "Modifier %{type}" +msgid "4 Weeks" +msgstr "4 Semaines" -#: ../app/controllers/application_controller/miq_request_methods.rb:228 -msgid "Add %{type}" -msgstr "Ajouter %{type}" +msgid "4 Weeks Ago" +msgstr "4 Semaines passées" -#: ../app/controllers/application_controller/miq_request_methods.rb:308 -#: ../app/helpers/provider_configuration_manager_helper.rb:14 -#: ../app/helpers/provider_foreman_helper.rb:15 -#: ../app/helpers/storage_manager_helper/textual_summary.rb:15 -#: ../app/helpers/vm_helper/textual_summary.rb:95 -#: ../app/views/host/_config.html.haml:47 -#: ../app/views/ops/_diagnostics_database_tab.html.haml:35 -#: ../app/views/ops/_ldap_domain_show.html.haml:255 -#: ../app/views/ops/_ldap_server_entries.html.haml:17 -#: ../app/views/ops/_selected_by_servers.html.haml:22 -#: ../app/views/ops/_server_desc.html.haml:9 -#: ../app/views/ops/_settings_server_tab.html.haml:16 -#: ../app/views/storage_manager/_form.html.haml:65 -msgid "Hostname" -msgid_plural "Hostnames" -msgstr[0] "Nom d'hôte" -msgstr[1] "Noms d'hôte" +msgid "4 Years Ago" +msgstr "4 Années passées" -#: ../app/controllers/application_controller/miq_request_methods.rb:309 -#: ../app/helpers/provider_foreman_helper.rb:107 -#: ../app/helpers/provider_foreman_helper.rb:188 -msgid "Configuration Location" -msgstr "Emplacement de configuration" +msgid "4-5" +msgstr "4-5" -#: ../app/controllers/application_controller/miq_request_methods.rb:310 -#: ../app/helpers/provider_foreman_helper.rb:113 -#: ../app/helpers/provider_foreman_helper.rb:194 -msgid "Configuration Organization" -msgstr "Organisation de configuration" +msgid "45 Minutes" +msgstr "45 Minutes" -#: ../app/controllers/application_controller/miq_request_methods.rb:312 -#: ../app/helpers/configuration_job_helper/textual_summary.rb:46 -#: ../app/helpers/provider_configuration_manager_helper.rb:33 -#: ../app/helpers/provider_foreman_helper.rb:44 -#: ../app/views/auth_key_pair_cloud/_form.html.haml:68 -#: ../app/views/catalog/_form_basic_info.html.haml:152 -#: ../app/views/catalog/_form_basic_info.html.haml:174 -#: ../app/views/catalog/_ot_add.html.haml:80 -#: ../app/views/catalog/_ot_copy.html.haml:63 -#: ../app/views/catalog/_ot_edit.html.haml:56 -#: ../app/views/catalog/_sandt_tree_show.html.haml:120 -#: ../app/views/host_aggregate/new.html.haml:59 -#: ../app/views/report/_form_filter_chargeback.html.haml:132 -msgid "Provider" -msgstr "Fournisseur" +msgid "5 - Press the Submit button." +msgstr "5 -Presser le bouton soumettre." -#: ../app/controllers/application_controller/miq_request_methods.rb:324 -#: ../app/controllers/application_controller/miq_request_methods.rb:347 -#: ../app/controllers/application_controller/miq_request_methods.rb:376 -#: ../app/controllers/application_controller/miq_request_methods.rb:391 -#: ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:29 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:53 -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:43 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:46 -#: ../app/helpers/pxe_helper/textual_summary.rb:52 -#: ../app/helpers/pxe_helper/textual_summary.rb:76 -#: ../app/helpers/pxe_helper/textual_summary.rb:100 -#: ../app/views/alert/_rss_list.html.haml:41 -#: ../app/views/catalog/_ot_add.html.haml:34 -#: ../app/views/catalog/_ot_copy.html.haml:41 -#: ../app/views/catalog/_ot_edit.html.haml:34 -#: ../app/views/catalog/_ot_tree_show.html.haml:24 -#: ../app/views/catalog/_sandt_tree_show.html.haml:261 -#: ../app/views/catalog/_stcat_form.html.haml:43 -#: ../app/views/catalog/_stcat_tree_show.html.haml:27 -#: ../app/views/catalog/_svccat_tree_show.html.haml:44 -#: ../app/views/chargeback/_cb_rate_edit.html.haml:16 -#: ../app/views/chargeback/_cb_rate_edit_table.html.haml:10 -#: ../app/views/chargeback/_cb_rate_show.html.haml:15 -#: ../app/views/chargeback/_cb_rate_show.html.haml:40 -#: ../app/views/configuration/_timeprofile_form.html.haml:24 -#: ../app/views/configuration/_ui_4.html.haml:16 -#: ../app/views/generic_object/explorer.html.haml:26 -#: ../app/views/generic_object/explorer.html.haml:72 -#: ../app/views/generic_object/explorer.html.haml:122 -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_class_form.html.haml:61 -#: ../app/views/miq_ae_class/_class_props.html.haml:55 -#: ../app/views/miq_ae_class/_instance_form.html.haml:63 -#: ../app/views/miq_ae_class/_ns_list.html.haml:22 -#: ../app/views/miq_ae_class/_ns_list.html.haml:124 -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:52 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:252 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:350 -#: ../app/views/miq_ae_customization/_dialog_group_form.html.haml:32 -#: ../app/views/miq_ae_customization/_dialog_info.html.haml:28 -#: ../app/views/miq_ae_customization/_dialog_info_form.html.haml:33 -#: ../app/views/miq_ae_customization/_dialog_tab_form.html.haml:31 -#: ../app/views/miq_ae_customization/_field_values.html.haml:20 -#: ../app/views/miq_ae_customization/_old_dialogs_details.html.haml:36 -#: ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:36 -#: ../app/views/miq_ae_customization/_tag_field_values.html.haml:13 -#: ../app/views/miq_policy/_action_details.html.haml:21 -#: ../app/views/miq_policy/_alert_details.html.haml:23 -#: ../app/views/miq_policy/_alert_profile_details.html.haml:21 -#: ../app/views/miq_policy/_condition_details.html.haml:20 -#: ../app/views/miq_policy/_event_details.html.haml:15 -#: ../app/views/miq_policy/_event_details.html.haml:214 -#: ../app/views/miq_policy/_event_details.html.haml:394 -#: ../app/views/miq_policy/_policy_details.html.haml:24 -#: ../app/views/miq_policy/_policy_details.html.haml:225 -#: ../app/views/miq_policy/_policy_details.html.haml:317 -#: ../app/views/miq_policy/_profile_details.html.haml:22 -#: ../app/views/miq_request/_ae_prov_show.html.haml:16 -#: ../app/views/miq_request/_request.html.haml:87 -#: ../app/views/ops/_ap_form.html.haml:38 -#: ../app/views/ops/_ap_show.html.haml:32 -#: ../app/views/ops/_category_form.html.haml:136 -#: ../app/views/ops/_classification_entries.html.haml:15 -#: ../app/views/ops/_ldap_region_form.html.haml:38 -#: ../app/views/ops/_ldap_region_show.html.haml:31 -#: ../app/views/ops/_rbac_group_details.html.haml:23 -#: ../app/views/ops/_rbac_tenant_details.html.haml:30 -#: ../app/views/ops/_schedule_form.html.haml:45 -#: ../app/views/ops/_schedule_show.html.haml:9 -#: ../app/views/ops/_settings_co_categories_tab.html.haml:12 -#: ../app/views/ops/_settings_details_tab.html.haml:19 -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:29 -#: ../app/views/ops/_settings_server_tab.html.haml:678 -#: ../app/views/ops/_tenant_form.html.haml:42 -#: ../app/views/ops/_tenant_quota_form.html.haml:27 -#: ../app/views/ops/_zone_form.html.haml:37 -#: ../app/views/orchestration_stack/_copy_orchestration_template.html.haml:34 -#: ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 -#: ../app/views/pxe/_pxe_server_details.html.haml:61 -#: ../app/views/pxe/_pxe_server_details.html.haml:108 -#: ../app/views/pxe/_template_form.html.haml:34 -#: ../app/views/report/_db_list.html.haml:51 -#: ../app/views/report/_db_list.html.haml:90 -#: ../app/views/report/_report_info.html.haml:129 -#: ../app/views/report/_report_info.html.haml:248 -#: ../app/views/report/_schedule_form.html.haml:35 -#: ../app/views/report/_show_schedule.html.haml:9 -#: ../app/views/report/_widget_form.html.haml:37 -#: ../app/views/report/_widget_show.html.haml:29 -#: ../app/views/service/_service_form.html.haml:52 -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:32 -#: ../app/views/vm_common/_config.html.haml:202 -#: ../app/views/vm_common/_form.html.haml:36 -#: ../app/views/vm_common/_snap.html.haml:30 -#: ../app/views/vm_common/_snapshots_desc.html.haml:15 -msgid "Description" -msgstr "Description" +msgid "5 Days" +msgstr "5 Jours" -#: ../app/controllers/application_controller/miq_request_methods.rb:359 -#: ../app/helpers/storage_helper/textual_summary.rb:42 -msgid "Free Space" -msgstr "Espace libre" +msgid "5 Days Ago" +msgstr "5 Jours passés" -#: ../app/controllers/application_controller/miq_request_methods.rb:360 -#: ../app/helpers/storage_helper/textual_summary.rb:55 -msgid "Total Space" -msgstr "Espace total" +msgid "5 Hours Ago" +msgstr "Il y a 5 heures" -#: ../app/controllers/application_controller/miq_request_methods.rb:361 -msgid "Storage Clusters" -msgstr "Clusters de stockage" +msgid "5 Minutes" +msgstr "5 Minutes" -#: ../app/controllers/application_controller/miq_request_methods.rb:377 -#: ../app/controllers/application_controller/miq_request_methods.rb:392 -#: ../app/views/miq_policy/_policy_details.html.haml:91 -msgid "Last Updated" -msgstr "Dernière mise à jour" +msgid "5 Months" +msgstr "5 Mois" -#: ../app/controllers/application_controller/miq_request_methods.rb:408 -#: ../app/controllers/application_controller/miq_request_methods.rb:445 -msgid "Platform" -msgstr "Plateforme" +msgid "5 items" +msgstr "" -#: ../app/controllers/application_controller/miq_request_methods.rb:409 -#: ../app/helpers/flavor_helper/textual_summary.rb:35 -msgid "CPUs" -msgstr "Processeurs" +msgid "5-6" +msgstr "5-6" -#: ../app/controllers/application_controller/miq_request_methods.rb:412 -msgid "Deprecated" -msgstr "Déprécié" +msgid "50 items" +msgstr "" -#: ../app/controllers/application_controller/miq_request_methods.rb:414 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:100 -#: ../app/helpers/vm_helper/textual_summary.rb:160 -#: ../app/helpers/vm_helper/textual_summary.rb:627 -msgid "Snapshots" -msgstr "Clichés" +msgid "500 items" +msgstr "" -#: ../app/controllers/application_controller/miq_request_methods.rb:438 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:70 -#: ../app/views/host/_form.html.haml:139 -msgid "MAC Address" -msgid_plural "MAC Addresses" -msgstr[0] "Adresse MAC" -msgstr[1] "Adresses MAC" +msgid "6 Days" +msgstr "6 Jours" -#: ../app/controllers/application_controller/miq_request_methods.rb:444 -msgid "Total VMs" -msgstr "Total MV" +msgid "6 Days Ago" +msgstr "6 Jours passés" -#: ../app/controllers/application_controller/miq_request_methods.rb:447 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:118 -#: ../app/views/miq_request/_ae_prov_show.html.haml:18 -msgid "State" -msgstr "État" - -#: ../app/controllers/application_controller/miq_request_methods.rb:619 -msgid "" -"%{typ} Request was Submitted, you will be notified when your %{title} are read" -"y" -msgstr "" -"%{typ} La requête a été soumise , vous serez notifié quand votre %{title} ser" -"a prêt" +msgid "6 Hours" +msgstr "6 Heures" -#: ../app/controllers/application_controller/miq_request_methods.rb:619 -msgid "" -"%{typ} Request was re-submitted, you will be notified when your %{title} are r" -"eady" -msgstr "" -"%{typ} La requête a été re-soumise , vous serez notifié quand votre %{title} " -"sera prêt" +msgid "6 Hours Ago" +msgstr "Il y a 6 heures" -#: ../app/controllers/application_controller/miq_request_methods.rb:781 -#: ../app/controllers/application_controller/miq_request_methods.rb:969 -msgid "Cannot create Request Info, error: %{error_message}" -msgstr "Impossible de créer les informations de demande, erreur : %{error_message}" +msgid "6 Months" +msgstr "6 Mois" -#: ../app/controllers/application_controller/performance.rb:48 -msgid "" -"No Hourly or Daily data is available, real time data from the Most Recent Hour" -" is being displayed" -msgstr "" -"Aucune donnée de date/heure n'est disponible, les données en temps réel de du " -"paramètre Heure la plus récente sont affichées." +msgid "6 Months Ago" +msgstr " il y a 6 mois" -#: ../app/controllers/application_controller/performance.rb:52 -msgid "No Daily data is available" -msgstr "Aucune donnée journalière disponible" +msgid "6-7" +msgstr "6-7" -#: ../app/controllers/application_controller/performance.rb:175 -msgid "Refresh of recent C&U data has been initiated" -msgstr "L'actualisation des données C&U récentes a été lancée" +msgid "64 Bit Architecture" +msgstr "Architecture 64 Bit" -#: ../app/controllers/application_controller/performance.rb:186 -msgid "No Utilization data available" -msgstr "Aucune donnée d'utilisation disponible" +msgid "7 Days Ago" +msgstr "7 Jours plus tôt" -#: ../app/controllers/application_controller/performance.rb:271 -msgid "No %{tag} %{model} were running %{time}" -msgstr "Aucun %{model} %{tag} n'était en cours d'exécution à %{time}" +msgid "7 Hours Ago" +msgstr "Il y a 7 heures" -#: ../app/controllers/application_controller/performance.rb:276 -msgid "%{model} (%{tag} running %{time})" -msgstr "%{model} (%{tag} fonctionne %{time})" +msgid "7-8" +msgstr "7-8" -#: ../app/controllers/application_controller/performance.rb:289 -msgid "running" -msgstr "en cours" +msgid "8 Hours" +msgstr "8 Heures" -#: ../app/controllers/application_controller/performance.rb:289 -msgid "stopped" -msgstr "stoppé" +msgid "8 Hours Ago" +msgstr "Il y a 8 heures" -#: ../app/controllers/application_controller/performance.rb:291 -msgid "No %{model} were %{state} %{time}" -msgstr "Aucun %{model} n'était %{state} à %{time}" +msgid "8-9" +msgstr "8-9" -#: ../app/controllers/application_controller/performance.rb:318 -#: ../app/controllers/application_controller/performance.rb:355 -msgid "No events available for this Cluster" -msgstr "Aucun événement disponible pour ce cluster" +msgid "9 Hours Ago" +msgstr "Il y a 9 heures" -#: ../app/controllers/application_controller/performance.rb:320 -#: ../app/controllers/application_controller/performance.rb:357 -msgid "No events available for this %{model}" -msgstr "Aucun événement disponible pour ce %{model}" +msgid "9-10" +msgstr "9-10" -#: ../app/controllers/application_controller/performance.rb:512 -msgid "No %{model} were running %{time}" -msgstr "Aucun %{model} n'était en cours d'exécution à %{time}" +msgid ": About" +msgstr "" -#: ../app/controllers/application_controller/performance.rb:523 -msgid "Chart menu selection not yet implemented" -msgstr "Sélection du menu du graphique non implémentée à ce stade" +msgid ": All UI Tasks" +msgstr "Toutes les tâches UI" -#: ../app/controllers/application_controller/performance.rb:526 -msgid "Unknown error has occurred" -msgstr "Une erreur inconnue s'est produite" +msgid ": Analysis Profiles" +msgstr "Profils d''analyse" -#: ../app/controllers/application_controller/performance.rb:596 -#: ../app/controllers/application_controller/performance.rb:609 -msgid "%{name} Capacity & Utilization (by %{option}:%{model})" -msgstr "%{name} Capacité et utilisation (par %{option}:%{model})" +msgid ": Automation" +msgstr "" -#: ../app/controllers/application_controller/performance.rb:600 -#: ../app/controllers/application_controller/performance.rb:615 -#: ../app/controllers/availability_zone_controller.rb:31 -#: ../app/controllers/cim_instance_controller.rb:127 -#: ../app/controllers/ems_cluster_controller.rb:74 -#: ../app/controllers/ems_common.rb:53 ../app/controllers/ems_common.rb:497 -#: ../app/controllers/host_aggregate_controller.rb:32 -#: ../app/controllers/host_controller.rb:58 -#: ../app/controllers/mixins/containers_common_mixin.rb:72 -#: ../app/controllers/storage_controller.rb:89 -#: ../app/controllers/vm_common.rb:304 -msgid "%{name} Capacity & Utilization" -msgstr "%{name} Capacité & Utilisation" +msgid ": Chargeback" +msgstr "" -#: ../app/controllers/application_controller/performance.rb:725 -msgid "%{date_from} to %{date_to}" -msgstr "Du %{date_from} au %{date_to}" +msgid ": Configuration" +msgstr ": Configuration" -#: ../app/controllers/application_controller/performance.rb:1102 -msgid "Error while generating report: %{error_message}" -msgstr "Erreur lors de la génération du rapport : %{error_message}" +msgid ": Configuration Management" +msgstr ": gestion de la configuration" -#: ../app/controllers/application_controller/policy_support.rb:29 -msgid "Edit policy assignments was cancelled by the user" -msgstr "La modification des affectations de stratégie a été annulée par l'utilisateur" +msgid ": Control" +msgstr ": Contrôle" -#: ../app/controllers/application_controller/policy_support.rb:57 -msgid "Policy assignments successfully changed" -msgstr "Affectations de stratégies modifiées" +msgid ": Credentials" +msgstr "" -#: ../app/controllers/application_controller/policy_support.rb:84 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:62 -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:78 -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:100 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:122 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:87 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:98 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:114 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:79 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:61 -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:87 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:86 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:65 -msgid "Policy Simulation" -msgstr "Simulation de stratégie" +msgid ": Dashboard" +msgstr "" -#: ../app/controllers/application_controller/policy_support.rb:161 -msgid "One or more %{model} must be selected to Policy assignment" -msgstr "Au moins un %{model} doit être sélectionné pour l'affectation de stratégie" +msgid ": Instances" +msgstr ": Instances" -#: ../app/controllers/application_controller/policy_support.rb:185 -msgid "'%{model}' Policy Assignment" -msgstr "'%{model}' Affectation de Politique" +msgid ": Login" +msgstr ": Se connecter" -#: ../app/controllers/application_controller/policy_support.rb:218 -msgid "[%{name}] Policy Profile %{mode} (db:[%{db}]" -msgstr "[%{name}] Profil de stratégie %{mode} (bd:[%{db}]" +msgid ": My UI Tasks" +msgstr ": Mes Tâches UI" -#: ../app/controllers/application_controller/policy_support.rb:266 -msgid "No Policy Profiles are available" -msgstr "Aucun profil de stratégie n'est disponible" +msgid ": Optimize" +msgstr ": Optimiser" -#: ../app/controllers/application_controller/report_downloads.rb:64 -msgid "Report generation returned: Status [%{status}] Message [%{message}]" -msgstr "La génération du rapport a renvoyé : Statut [%{status}] Message [%{message}]" +msgid ": PXE" +msgstr ": PXE" -#: ../app/controllers/application_controller/sysprep_answer_file.rb:12 -msgid "Sysprep \"%{params}\" upload was successful" -msgstr "Sysprep \"%{params}\" : téléchargement réussi" +msgid ": Playbooks (Ansible Tower)" +msgstr "" -#: ../app/controllers/application_controller/sysprep_answer_file.rb:16 -msgid "Error during Sysprep \"%{params}\" file upload: %{message}" -msgstr "Erreur lors du téléchargement du fichier \"%{params}\" de Sysprep : %{message}" +msgid ": Policy Simulation" +msgstr ": Simulation de Politique" -#: ../app/controllers/application_controller/sysprep_answer_file.rb:22 -msgid "Use the Choose file button to locate an Upload file" -msgstr "Utiliser le bouton Choisir un fichier pour localiser un fichier à télécharger" +msgid ": RSS" +msgstr ": RSS" -#: ../app/controllers/application_controller/tags.rb:136 -msgid "One or more %{model} must be selected to Smart Tagging" -msgstr "Au moins un %{model} doit être sélectionné pour le Smart Tagging" +msgid ": Repositories" +msgstr "" -#: ../app/controllers/application_controller/tags.rb:162 -#: ../app/controllers/application_controller/tags.rb:384 -#: ../app/views/layouts/_tag_edit.html.haml:8 -msgid "Tag Assignment" -msgstr "Affectation de balises" +msgid ": Requests" +msgstr ": Requêtes" -#: ../app/controllers/application_controller/tags.rb:236 -msgid "Error during 'Save Tags': %{error_message}" -msgstr "Erreur pendant 'la Sauvegarde des balises': %{error_message}" +msgid ": Servers" +msgstr ": Serveurs" -#: ../app/controllers/application_controller/tags.rb:238 -msgid "Tag edits were successfully saved" -msgstr "Les modifications des balises ont été enregistrées" +msgid ": Storage - Storage Managers" +msgstr ": Stockage - Manageurs de Stockage" -#: ../app/controllers/application_controller/timelines.rb:24 -msgid "No events available for this timeline" -msgstr "Aucun événement disponible pour cette chronologie" +msgid ": VM Usage" +msgstr ": Utilisation de MV" -#: ../app/controllers/application_controller/timelines.rb:65 -msgid "Group: %{name}" -msgstr "Groupe : %{name}" +msgid ": Virtual Machines" +msgstr ": Machines Virtuelles" -#: ../app/controllers/application_controller/timelines.rb:106 -msgid "Report: %{name}" -msgstr "Rapport : %{name}" +msgid ": Workloads" +msgstr ": Charge de travail" -#: ../app/controllers/application_controller/timelines.rb:232 -#: ../app/controllers/miq_capacity_controller.rb:724 -msgid "Error building timeline %{error_message}" -msgstr "Erreur lors de la création de la chronologie %{error_message}" +msgid "< Back" +msgstr "< Retour" -#: ../app/controllers/application_controller/timelines.rb:236 -#: ../app/controllers/dashboard_controller.rb:619 -#: ../app/controllers/dashboard_controller.rb:747 -#: ../app/controllers/miq_capacity_controller.rb:735 -msgid "No records found for this timeline" -msgstr "Aucun enregistrement trouvé pour cette chronologie" +msgid "" +msgstr "" -#: ../app/controllers/application_controller/timelines/options.rb:2 -msgid "Management Events" -msgstr "Événements de gestion" +msgid "" +msgstr "" -#: ../app/controllers/application_controller/timelines/options.rb:2 -msgid "Policy Events" -msgstr "Événements de stratégie" +msgid "" +msgstr "" -#: ../app/controllers/application_controller/tree_support.rb:131 -msgid "Datacenter: %{name}" -msgstr "Datacenter : %{name}" +msgid "" +msgstr "" -#: ../app/controllers/application_controller/tree_support.rb:189 -msgid "Folder: %{name}" -msgstr "Dossier : %{name}" +msgid "" +msgstr "" -#: ../app/controllers/application_controller/tree_support.rb:226 -#: ../app/presenters/tree_builder_clusters.rb:75 -#: ../app/presenters/tree_builder_network.rb:32 -#: ../app/presenters/tree_builder_storage_adapters.rb:23 -msgid "Host: %{name}" -msgstr "Hôte : %{name}" +msgid "" +msgstr "" -#: ../app/controllers/application_controller/tree_support.rb:248 -#: ../app/presenters/tree_builder_datacenter.rb:36 -msgid "Cluster: %{name}" -msgstr "Cluster: %{name}" +msgid "" +msgstr "" -#: ../app/controllers/application_controller/tree_support.rb:278 -msgid "Resource Pool: #%{name}" -msgstr "Pool de ressources : #%{name}" +msgid "" +msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:91 -#: ../app/controllers/auth_key_pair_cloud_controller.rb:134 -#: ../app/controllers/cloud_tenant_controller.rb:71 -#: ../app/controllers/cloud_volume_controller.rb:246 -#: ../app/controllers/cloud_volume_controller.rb:283 -msgid "Add New %{model}" -msgstr "Ajouter un Nouveau %{model}" +msgid "" +msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:109 -#: ../app/controllers/catalog_controller.rb:92 -#: ../app/controllers/catalog_controller.rb:561 -#: ../app/controllers/chargeback_controller.rb:107 -#: ../app/controllers/cloud_tenant_controller.rb:81 -#: ../app/controllers/cloud_volume_controller.rb:256 -#: ../app/controllers/host_controller.rb:266 -#: ../app/controllers/miq_ae_class_controller.rb:617 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:196 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:11 -#: ../app/controllers/miq_policy_controller/conditions.rb:13 -#: ../app/controllers/ops_controller/ops_rbac.rb:108 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:228 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:9 -#: ../app/controllers/ops_controller/settings/ldap.rb:37 -#: ../app/controllers/ops_controller/settings/ldap.rb:154 -#: ../app/controllers/ops_controller/settings/schedules.rb:48 -#: ../app/controllers/ops_controller/settings/tags.rb:41 -#: ../app/controllers/pxe_controller/iso_datastores.rb:43 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:103 -#: ../app/controllers/pxe_controller/pxe_image_types.rb:31 -#: ../app/controllers/pxe_controller/pxe_servers.rb:48 -#: ../app/controllers/report_controller/reports/editor.rb:44 -#: ../app/controllers/report_controller/schedules.rb:225 -#: ../app/controllers/report_controller/widgets.rb:47 -#: ../app/controllers/storage_manager_controller.rb:65 -msgid "Add of new %{model} was cancelled by the user" -msgstr "L''ajout d''un nouveau %{model} a été annulé par l''utilisateur" +msgid "" +msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:117 -msgid "Creating %{model} %{name}" -msgstr "Création de %{model} %{name}" +msgid "" +msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:121 -msgid "Unable to create %{model} %{name}. %{error}" -msgstr "Impossible de créer le %{model} %{name}. %{error}" +msgid "" +msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:144 -#: ../app/controllers/cloud_volume_controller.rb:295 -#: ../app/controllers/cloud_volume_controller.rb:356 -msgid "Validation successful" -msgstr "Validation réussie" +msgid "" +msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:163 -msgid "No Key Pairs were selected for deletion" -msgstr "" +msgid "" +msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:169 -#: ../app/controllers/cloud_tenant_controller.rb:214 -#: ../app/controllers/cloud_volume_controller.rb:385 -#: ../app/controllers/host_aggregate_controller.rb:333 -msgid "%{model} no longer exists." -msgstr "%{model} n'existe plus." +msgid "" +msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:174 -#: ../app/controllers/cloud_volume_controller.rb:397 -#: ../app/controllers/cloud_volume_controller.rb:403 -msgid "Couldn't initiate deletion of %{model} \"%{name}\": %{details}" -msgstr "Impossible de lancer la suppression de %{model} \"%{name}\" : %{details}" +msgid "" +msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:190 -#: ../app/controllers/cloud_volume_controller.rb:420 -#: ../app/controllers/host_aggregate_controller.rb:352 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:418 -msgid "The selected %{model} was deleted" -msgstr "Le %{model} sélectionné a été supprimé" +msgid "" +msgstr "" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:211 -msgid "Delete initiated for %{number} Key Pair" -msgid_plural "Delete initiated for %{number} Key Pairs" -msgstr[0] "Supprimer l'élément lancé pour %{number} paire de clés" -msgstr[1] "Supprimer l'élément lancé pour %{number} paires de clés" +msgid "" +msgstr "" -#: ../app/controllers/availability_zone_controller.rb:19 -msgid "Availabilty Zones" -msgstr "Zones de Disponibilité" +msgid "" +msgstr "" -#: ../app/controllers/availability_zone_controller.rb:24 -#: ../app/controllers/cim_instance_controller.rb:120 -#: ../app/controllers/cloud_object_store_object_controller.rb:38 -#: ../app/controllers/cloud_volume_controller.rb:86 -#: ../app/controllers/configuration_job_controller.rb:35 -#: ../app/controllers/host_aggregate_controller.rb:25 -#: ../app/controllers/host_controller.rb:32 -#: ../app/controllers/infra_networking_controller.rb:60 -#: ../app/controllers/mixins/containers_common_mixin.rb:58 -#: ../app/controllers/mixins/generic_show_mixin.rb:33 -#: ../app/controllers/mixins/generic_show_mixin.rb:83 -#: ../app/controllers/orchestration_stack_controller.rb:29 -#: ../app/controllers/storage_manager_controller.rb:218 -msgid "%{name} (Summary)" -msgstr "%{name} (Résumé)" +msgid "" +msgstr "" -#: ../app/controllers/availability_zone_controller.rb:36 -#: ../app/controllers/host_aggregate_controller.rb:37 -msgid "%{name} (%{table}(s))" -msgstr "%{name} (%{table}(s))" +msgid "" +msgstr "" -#: ../app/controllers/availability_zone_controller.rb:44 -#: ../app/controllers/availability_zone_controller.rb:52 -#: ../app/controllers/cloud_volume_controller.rb:113 -#: ../app/controllers/host_aggregate_controller.rb:46 -#: ../app/controllers/host_aggregate_controller.rb:54 -#: ../app/controllers/host_controller.rb:97 -#: ../app/controllers/mixins/containers_common_mixin.rb:150 -#: ../app/controllers/mixins/generic_show_mixin.rb:85 -#: ../app/controllers/mixins/middleware_common_mixin.rb:48 -#: ../app/controllers/orchestration_stack_controller.rb:35 -#: ../app/controllers/orchestration_stack_controller.rb:42 -#: ../app/controllers/orchestration_stack_controller.rb:49 -#: ../app/controllers/resource_pool_controller.rb:52 -msgid "%{name} (All %{title})" -msgstr "%{name} (Tous %{title})" +msgid "" +msgstr "" -#: ../app/controllers/availability_zone_controller.rb:66 -#: ../app/controllers/dashboard_controller.rb:502 -#: ../app/controllers/dashboard_controller.rb:521 -#: ../app/controllers/ems_cluster_controller.rb:85 -#: ../app/controllers/ems_common.rb:30 ../app/controllers/ems_common.rb:489 -#: ../app/controllers/host_aggregate_controller.rb:66 -#: ../app/controllers/host_controller.rb:69 -#: ../app/controllers/mixins/containers_common_mixin.rb:67 -#: ../app/controllers/vm_common.rb:83 -#: ../app/helpers/application_helper/toolbar/availability_zone_center.rb:35 -#: ../app/helpers/application_helper/toolbar/container_center.rb:13 -#: ../app/helpers/application_helper/toolbar/container_group_center.rb:13 -#: ../app/helpers/application_helper/toolbar/container_node_center.rb:13 -#: ../app/helpers/application_helper/toolbar/container_project_center.rb:13 -#: ../app/helpers/application_helper/toolbar/container_replicator_center.rb:13 -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:80 -#: ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:63 -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:47 -#: ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:43 -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:94 -#: ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:42 -#: ../app/helpers/application_helper/toolbar/ems_network_center.rb:68 -#: ../app/helpers/application_helper/toolbar/ems_storage_center.rb:62 -#: ../app/helpers/application_helper/toolbar/host_center.rb:134 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:113 -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:169 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:118 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:163 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:118 -#: ../app/presenters/menu/default_menu.rb:26 -#: ../app/views/layouts/listnav/_container_group.html.haml:42 -#: ../app/views/layouts/listnav/_container_node.html.haml:42 -#: ../app/views/layouts/listnav/_container_project.html.haml:42 -#: ../app/views/layouts/listnav/_container_replicator.html.haml:42 -#: ../app/views/layouts/listnav/_ems_cloud.html.haml:14 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:32 -#: ../app/views/layouts/listnav/_ems_container.html.haml:34 -#: ../app/views/layouts/listnav/_ems_container.html.haml:41 -#: ../app/views/layouts/listnav/_ems_infra.html.haml:17 -#: ../app/views/layouts/listnav/_ems_network.html.haml:15 -#: ../app/views/layouts/listnav/_ems_storage.html.haml:16 -#: ../app/views/layouts/listnav/_host.html.haml:77 -#: ../app/views/ops/_all_tabs.html.haml:190 -msgid "Timelines" -msgstr "Chronologies" +msgid "" -#: ../app/controllers/availability_zone_controller.rb:143 -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:79 -msgid "Availability Zone" -msgstr "Zone de Disponibilité" +msgid "" +msgstr "<À tous les utilisateurs>" -#: ../app/controllers/catalog_controller.rb:237 -#: ../app/controllers/catalog_controller.rb:1160 -#: ../app/controllers/catalog_controller.rb:1314 -#: ../app/controllers/miq_ae_class_controller.rb:543 -#: ../app/controllers/miq_ae_class_controller.rb:673 -#: ../app/controllers/miq_ae_class_controller.rb:711 -#: ../app/controllers/miq_ae_class_controller.rb:754 -#: ../app/controllers/miq_ae_class_controller.rb:2389 -#: ../app/controllers/miq_ae_customization_controller.rb:385 -#: ../app/controllers/miq_ae_customization_controller.rb:392 -#: ../app/controllers/miq_ae_customization_controller.rb:408 -#: ../app/controllers/miq_ae_customization_controller.rb:447 -#: ../app/controllers/miq_policy_controller.rb:625 -#: ../app/controllers/ops_controller.rb:538 -#: ../app/controllers/ops_controller.rb:566 -#: ../app/controllers/ops_controller.rb:579 -#: ../app/controllers/ops_controller.rb:590 -#: ../app/controllers/ops_controller.rb:601 -#: ../app/controllers/pxe_controller.rb:132 -#: ../app/controllers/pxe_controller.rb:164 -#: ../app/controllers/report_controller.rb:699 -#: ../app/controllers/report_controller.rb:707 -#: ../app/controllers/report_controller.rb:716 -#: ../app/controllers/report_controller.rb:731 -msgid "Adding a new %{model}" -msgstr "Ajout d''un nouveau %{model}" +msgid "" +msgstr "" -#: ../app/controllers/catalog_controller.rb:284 -msgid "The selected %{number} Catalog Item was deleted" -msgid_plural "The selected %{number} Catalog Items were deleted" -msgstr[0] "Le %{number} élément de catalogue sélectionné a été supprimé" -msgstr[1] "Les %{number} éléments de catalogue sélectionnés ont été supprimés" +msgid "" +msgstr "" -#: ../app/controllers/catalog_controller.rb:298 -msgid "Edit of Catalog Bundle \"%{name}\" was cancelled by the user" -msgstr "" -"La modification du regroupement de catalogues \"%{name}\" a été annulée par l'ut" -"ilisateur" +msgid "A %{type} must be selected" +msgstr "Un %{type} doit être séléctionné" -#: ../app/controllers/catalog_controller.rb:301 -msgid "Add of new Catalog Bundle was cancelled by the user" -msgstr "L''ajout d''un nouveau Bundle de Catalogues été annulé par l''utilisateur" +msgid "A Driving Event must be selected" +msgstr "Un évènement déclencheur doit être sélectionné" -#: ../app/controllers/catalog_controller.rb:314 -msgid "Resource must be selected" -msgstr "La ressource doit être sélectionnée" +msgid "A Group by Tag must be selected" +msgstr "Un Groupe Par balise doit être sélectionné" -#: ../app/controllers/catalog_controller.rb:316 -#: ../app/controllers/catalog_controller.rb:859 -msgid "Provisioning Entry Point is required" -msgstr "Le point d'entrée de mise en service est obligatoire" +msgid "A Red Hat subscription that covers your product" +msgstr "Un abonnement Red Hat couvrant votre produit" -#: ../app/controllers/catalog_controller.rb:329 -msgid "Catalog Bundle \"%{name}\" was saved" -msgstr "Le regroupement de catalogues \"%{name}\" a été enregistré" +msgid "A Report must be selected" +msgstr "Un rapport doit être sélectionné" -#: ../app/controllers/catalog_controller.rb:331 -msgid "Catalog Bundle \"%{name}\" was added" -msgstr "Le regroupement de catalogues \"%{name}\" a été ajouté" +msgid "A Tag Category must be selected" +msgstr "Une Catégorie de balise doit être sélectionnée" -#: ../app/controllers/catalog_controller.rb:390 -msgid "Custom Image successfully removed" -msgstr "Image personnalisée supprimée" +msgid "A Tag must be selected" +msgstr "Une balise doit être sélectionnée" -#: ../app/controllers/catalog_controller.rb:396 -msgid "Custom Image must be a .png or .jpg file" -msgstr "L'image personnalisée doit être un fichier .png ou .jpg" +msgid "A Tenant Category must be selected" +msgstr "Vous devez sélectionner une catégorie de locataires" -#: ../app/controllers/catalog_controller.rb:403 -msgid "Custom Image file \"%{name}\" successfully uploaded" -msgstr "Le fichier image personnalisé \"%{name}\" a été téléchargé" +msgid "A User Group must be assigned a Role" +msgstr "Un Rôle doit être assigné au Groupe d'Utilisateurs" -#: ../app/controllers/catalog_controller.rb:408 -msgid "Use the Choose file button to locate a .png or .jpg image file" +msgid "A User must be assigned to a Group" +msgstr "Un Utilisateur doit être assigné à un Groupe" + +msgid "A User must be assigned to an allowed Group" msgstr "" -"Utiliser le bouton Choisir un fichier pour localiser un fichier d'image .png o" -"u .jpg" -#: ../app/controllers/catalog_controller.rb:530 -msgid "Order %{model} \"%{name}\"" -msgstr "Trier %{model} \"%{name}\"" +msgid "A check field must be chosen to commit this expression element" +msgstr "Un champ de vérification doit être sélectionné pour valider cet élément d'expression" -#: ../app/controllers/catalog_controller.rb:549 -#: ../app/helpers/application_helper/toolbar_builder.rb:657 -msgid "No Ordering Dialog is available" -msgstr "Aucune boîte de dialogue d'ordonnancement n'est disponible" +msgid "A condition must contain a valid expression." +msgstr "Une condition doit contenir une expression valide" -#: ../app/controllers/catalog_controller.rb:576 -msgid "Error during 'Catalog Edit': %{error_message}" -msgstr "Erreur lors de la modification du catalogue : %{error_message}" +msgid "A field must be chosen to commit this expression element" +msgstr "Un champ doit être choisi pour valider cet élément de l'expression" -#: ../app/controllers/catalog_controller.rb:623 -#: ../app/controllers/miq_request_controller.rb:552 -#: ../app/controllers/miq_task_controller.rb:203 -#: ../app/controllers/ops_controller/diagnostics.rb:708 -#: ../app/controllers/ops_controller/settings/tags.rb:18 -#: ../app/controllers/storage_manager_controller.rb:437 -msgid "[%{name}] Record deleted" -msgstr "[%{name}] Enregistrement supprimé" +msgid "A find field must be chosen to commit this expression element" +msgstr "Un champ de recherche doit être choisi pour valider cet élément de l'expression" -#: ../app/controllers/catalog_controller.rb:657 -msgid "Orchestration template \"%{name}\" is read-only and cannot be edited." -msgstr "" -"Le modèle d'orchestration \"%{name}\" est en lecture seule et ne peut pas être m" -"odifié." +msgid "A registry key name must be entered to commit this expression element" +msgstr "Un nom de clef de registre doit être entré pour valider cet élément de l'expression" -#: ../app/controllers/catalog_controller.rb:663 -#: ../app/controllers/catalog_controller.rb:1014 -msgid "Editing %{record_name}" -msgstr "Modification de %{record_name}" +msgid "A registry value name must be entered to commit this expression element" +msgstr "Une valeure de clef de registre doit être entré pour valider cet élément de l'expression" -#: ../app/controllers/catalog_controller.rb:669 -msgid "Copying %{record_name}" -msgstr "Copie de %{record_name}" +msgid "A single Cluster" +msgstr "Un cluster unitaire" -#: ../app/controllers/catalog_controller.rb:670 -msgid "Copy of %{name}" -msgstr "Copie de %{name}" +msgid "A single Container Image" +msgstr "Un seul Conteneur Image" -#: ../app/controllers/catalog_controller.rb:714 -msgid "Orchestration template \"%{name}\" is read-only and cannot be deleted." -msgstr "" -"Le modèle d'orchestration \"%{name}\" est en lecture seule et ne peut pas être s" -"upprimé." +msgid "A single Datastore" +msgstr "Un datastore unitaire" -#: ../app/controllers/catalog_controller.rb:721 -msgid "Error during 'Orchestration Template Deletion': %{error_message}" -msgstr "" -"Erreur lors de l'opération \"Suppression du modèle d'orchestration\" : %{error_m" -"essage}" +msgid "A single Host" +msgstr "Un hôte unitaire" -#: ../app/controllers/catalog_controller.rb:724 -msgid "Orchestration Template \"%{name}\" was deleted." -msgstr "Le modèle d'orchestration \"%{name}\" a été supprimé." +msgid "A single Template" +msgstr "Un template unitaire" -#: ../app/controllers/catalog_controller.rb:748 -msgid "Adding a new Orchestration Template" -msgstr "Ajout d'un nouveau modèle d'orchestration" +msgid "A single VM" +msgstr "Une MV unitaire" -#: ../app/controllers/catalog_controller.rb:784 -msgid "Adding a new Service Dialog from Orchestration Template \"%{name}\"" +msgid "A specific %{chargeback} or all must be selected" msgstr "" -"Ajout d'une nouvelle boîte de dialogue de service à partir du modèle d'orchest" -"ration \"%{name}\"" - -#: ../app/controllers/catalog_controller.rb:822 -#: ../app/views/configuration/_ui_2.html.haml:49 -msgid "Service Catalogs" -msgstr "Catalogues de services" -#: ../app/controllers/catalog_controller.rb:827 -#: ../app/controllers/catalog_controller.rb:2009 -#: ../app/views/catalog/_stcat_tree_show.html.haml:49 -#: ../app/views/configuration/_ui_2.html.haml:49 -msgid "Catalog Items" -msgstr "Éléments de catalogue" +msgid "A tag category must be chosen to commit this expression element" +msgstr "Une catégorie d'étiquette doit être choisie pour valider cet élément de l'expression" -#: ../app/controllers/catalog_controller.rb:832 -#: ../app/views/configuration/_ui_2.html.haml:49 -msgid "Orchestration Templates" -msgstr "Modèles d'orchestration" +msgid "A tag value must be chosen to commit this expression element" +msgstr "Une valeure d'étiquette doit être choisie pour valider cet élément de l'expression" -#: ../app/controllers/catalog_controller.rb:837 -#: ../app/presenters/menu/default_menu.rb:40 -msgid "Catalogs" -msgstr "Catalogues" +msgid "A valid expression must be present" +msgstr "Une expression valide doit exister" -#: ../app/controllers/catalog_controller.rb:857 -msgid "Subtype is required." -msgstr "Le sous-type est obligatoire." +msgid "A value must be changed or provider stack will not be updated." +msgstr "Une valeur doit être modifiée, sans quoi la pile du fournisseur ne sera pas mise à jour." -#: ../app/controllers/catalog_controller.rb:869 -msgid "Please correct invalid %{adjective} Entry Point prior to saving" -msgstr "Corrigez le Point d'entrée %{adjective} invalide avant d'enregistrer" +msgid "A0 - 841mm x 1189mm" +msgstr "A0 - 841mm x 1189mm" -#: ../app/controllers/catalog_controller.rb:872 -#: ../app/views/catalog/_sandt_tree_show.html.haml:143 -msgid "Provisioning" -msgstr "Mise en service" +msgid "A1 - 594mm x 841mm" +msgstr "A1 - 594mm x 841mm" -#: ../app/controllers/catalog_controller.rb:876 -#: ../app/helpers/application_helper/tasks.rb:12 -#: ../app/views/catalog/_sandt_tree_show.html.haml:145 -msgid "Retirement" -msgstr "Désactivation" +msgid "A2 - 420mm x 594mm" +msgstr "A2 - 420mm x 594mm" -#: ../app/controllers/catalog_controller.rb:934 -#: ../app/views/catalog/_svccat_tree_show.html.haml:80 -msgid "Order" -msgstr "Tri" +msgid "A3 - 297mm x 420mm" +msgstr "A3 - 297mm x 420mm" -#: ../app/controllers/catalog_controller.rb:936 -#: ../app/views/catalog/_svccat_tree_show.html.haml:80 -msgid "Order this Service" -msgstr "Commander ce service" +msgid "A4 - 210mm x 297mm (default)" +msgstr "A4 - 210mm x 297mm (default)" -#: ../app/controllers/catalog_controller.rb:972 -msgid "Edit of Orchestration Template \"%{name}\" was cancelled by the user" -msgstr "" -"La modification du modèle d'orchestration \"%{name}\" a été annulée par l'utilis" -"ateur" +msgid "ALL" +msgstr "TOUT" -#: ../app/controllers/catalog_controller.rb:984 -msgid "New template content cannot be empty" -msgstr "Le contenu du nouveau modèle ne doit pas être vide" +msgid "AM" +msgstr "AM" -#: ../app/controllers/catalog_controller.rb:998 -msgid "Error during 'Orchestration Template Edit': %{error_message}" -msgstr "" -"Erreur lors de l'opération \"Modification du modèle d'orchestration\" : %{error_" -"message}" +msgid "AM:" +msgstr "AM:" -#: ../app/controllers/catalog_controller.rb:1020 -msgid "Copy of Orchestration Template \"%{name}\" was cancelled by the user" -msgstr "La copie du modèle d'orchestration \"%{name}\" a été annulée par l'utilisateur" +msgid "AMQP" +msgstr "AMQP" -#: ../app/controllers/catalog_controller.rb:1034 -#: ../app/controllers/orchestration_stack_controller.rb:237 -msgid "" -"Unable to create a new template copy \"%{name}\": old and new template content h" -"ave to differ." -msgstr "" -"Impossible de créer une copie du modèle \"%{name}\" : l'ancien et le nouveau mod" -"èle doivent être différents." +msgid "AND with a new expression element" +msgstr "ET avec un nouvel élément d'expression" -#: ../app/controllers/catalog_controller.rb:1037 -#: ../app/controllers/orchestration_stack_controller.rb:241 -msgid "" -"Unable to create a new template copy \"%{name}\": new template content cannot be" -" empty." -msgstr "" -"Impossible de créer une copie du modèle \"%{name}\" : le contenu du nouveau modè" -"le ne peut pas être vide." +msgid "API Port" +msgstr "Port API" -#: ../app/controllers/catalog_controller.rb:1051 -#: ../app/controllers/orchestration_stack_controller.rb:255 -msgid "Error during 'Orchestration Template Copy': %{error_message}" -msgstr "" -"Erreur lors de l'opération \"Copie du modèle d'orchestration\" : %{error_message" -"}" +msgid "API Version" +msgstr "Version de l''API" -#: ../app/controllers/catalog_controller.rb:1072 -msgid "Creation of a new Orchestration Template was cancelled by the user" -msgstr "La création d'un modèle d'orchestration a été annulée par l'utilisateur" +msgid "ATAPI CD-ROM (IDE %{location})%{connection}" +msgstr "ATAPI CD-ROM (IDE %{location})%{connection}" -#: ../app/controllers/catalog_controller.rb:1082 -msgid "\"%{type}\" is not a valid Orchestration Template type" -msgstr "\"%{type}\" : n'est pas un modèle d'orchestration valide" +msgid "Abandon changes?" +msgstr "Abandonner les changements?" -#: ../app/controllers/catalog_controller.rb:1084 -msgid "" -"Error during Orchestration Template creation: new template content cannot be e" -"mpty" -msgstr "" -"Erreur lors de la création du modèle d'orchestration : le contenu du nouveau m" -"odèle ne peut pas être vide" +msgid "Aborting" +msgstr "Annulation" -#: ../app/controllers/catalog_controller.rb:1097 -msgid "Error during 'Orchestration Template creation': %{error_message}" -msgstr "" -"Erreur lors de l'opération \"Création du modèle d'orchestration\" : %{error_mess" -"age}" +msgid "About" +msgstr "À propos" -#: ../app/controllers/catalog_controller.rb:1118 -#: ../app/controllers/provider_foreman_controller.rb:1188 -msgid "Creation of a new Service Dialog was cancelled by the user" -msgstr "La création d'un nouveau Dialogue de service a été annulée par l'utilisateur" +msgid "Accept" +msgstr "Accepter" -#: ../app/controllers/catalog_controller.rb:1131 -msgid "" -"Error when creating a Service Dialog from Orchestration Template: %{error_mess" -"age}" +msgid "Access" msgstr "" -"Erreur lors de la création d'une boîte de dialogue de service à partir du modè" -"le d'orchestration : %{error_message}" -#: ../app/controllers/catalog_controller.rb:1135 -#: ../app/controllers/provider_foreman_controller.rb:1205 -msgid "Service Dialog \"%{name}\" was successfully created" -msgstr "La boîte de dialogue de service \"%{name}\" a été créée" +msgid "Access Control" +msgstr "Contrôle d'Accès" -#: ../app/controllers/catalog_controller.rb:1159 -#: ../app/controllers/catalog_controller.rb:1316 -#: ../app/controllers/container_controller.rb:197 -#: ../app/controllers/miq_ae_class_controller.rb:545 -#: ../app/controllers/miq_ae_class_controller.rb:675 -#: ../app/controllers/miq_ae_class_controller.rb:713 -#: ../app/controllers/miq_ae_class_controller.rb:756 -#: ../app/controllers/miq_ae_class_controller.rb:2391 -#: ../app/controllers/miq_ae_customization_controller.rb:382 -#: ../app/controllers/miq_ae_customization_controller.rb:389 -#: ../app/controllers/miq_ae_customization_controller.rb:410 -#: ../app/controllers/miq_ae_customization_controller.rb:458 -#: ../app/controllers/miq_policy_controller.rb:562 -#: ../app/controllers/miq_policy_controller.rb:605 -#: ../app/controllers/miq_policy_controller.rb:638 -#: ../app/controllers/miq_policy_controller.rb:644 -#: ../app/controllers/miq_policy_controller.rb:653 -#: ../app/controllers/miq_policy_controller.rb:665 -#: ../app/controllers/ops_controller.rb:542 -#: ../app/controllers/ops_controller.rb:552 -#: ../app/controllers/ops_controller.rb:569 -#: ../app/controllers/ops_controller.rb:583 -#: ../app/controllers/ops_controller.rb:594 -#: ../app/controllers/ops_controller.rb:605 -#: ../app/controllers/ops_controller.rb:648 -#: ../app/controllers/ops_controller/ops_rbac.rb:698 -#: ../app/controllers/pxe_controller.rb:166 -#: ../app/controllers/report_controller.rb:698 -#: ../app/controllers/report_controller.rb:704 -#: ../app/controllers/report_controller.rb:715 -#: ../app/controllers/report_controller.rb:730 -#: ../app/controllers/report_controller.rb:842 -#: ../app/controllers/report_controller/menus.rb:670 -#: ../app/controllers/service_controller.rb:224 -msgid "Editing %{model} \"%{name}\"" -msgstr "Modification de %{model} \"%{name}\"" +msgid "Access Control %{model}" +msgstr "Contrôle d''Accès %{model}" -#: ../app/controllers/catalog_controller.rb:1271 -msgid "Error during 'Resource Add': %{error_message}" -msgstr "Erreur pendant 'Ajout de Ressource': %{error_message}" +msgid "Access Control %{model} \"%{name}\"" +msgstr "Contrôle d''Accès %{model} \"%{name}\"" -#: ../app/controllers/catalog_controller.rb:1365 -msgid "Adding a new Catalog Bundle" -msgstr "Ajout d'un nouveau regroupement de catalogues" +msgid "Access Control %{text}" +msgstr "Contrôle d''Accès %{text}" -#: ../app/controllers/catalog_controller.rb:1367 -msgid "Editing Catalog Bundle \"%{name}\"" -msgstr "Modification du regroupement de catalogues \"%{name}\"" +msgid "Access Key" +msgstr "Clé d''Accès" -#: ../app/controllers/catalog_controller.rb:1662 -#: ../app/controllers/catalog_controller.rb:1694 -#: ../app/controllers/catalog_controller.rb:1697 -#: ../app/controllers/catalog_controller.rb:1747 -#: ../app/controllers/infra_networking_controller.rb:266 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:1395 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:114 -#: ../app/controllers/miq_policy_controller.rb:562 -#: ../app/controllers/miq_policy_controller.rb:605 -#: ../app/controllers/miq_policy_controller.rb:638 -#: ../app/controllers/miq_policy_controller.rb:644 -#: ../app/controllers/miq_policy_controller.rb:656 -#: ../app/controllers/miq_policy_controller.rb:665 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:356 -#: ../app/controllers/miq_policy_controller/alerts.rb:642 -#: ../app/controllers/miq_policy_controller/conditions.rb:240 -#: ../app/controllers/miq_policy_controller/events.rb:116 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:413 -#: ../app/controllers/miq_policy_controller/policies.rb:242 -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:154 -#: ../app/controllers/ops_controller.rb:543 -#: ../app/controllers/ops_controller.rb:570 -#: ../app/controllers/ops_controller.rb:584 -#: ../app/controllers/ops_controller.rb:595 -#: ../app/controllers/ops_controller.rb:606 -#: ../app/controllers/ops_controller.rb:649 -#: ../app/controllers/ops_controller.rb:657 -#: ../app/controllers/ops_controller/db.rb:139 -#: ../app/controllers/ops_controller/db.rb:153 -#: ../app/controllers/ops_controller/ops_rbac.rb:881 -#: ../app/controllers/ops_controller/ops_rbac.rb:884 -#: ../app/controllers/ops_controller/ops_rbac.rb:887 -#: ../app/controllers/ops_controller/ops_rbac.rb:891 -#: ../app/controllers/provider_foreman_controller.rb:494 -#: ../app/controllers/provider_foreman_controller.rb:601 -#: ../app/controllers/provider_foreman_controller.rb:608 -#: ../app/controllers/provider_foreman_controller.rb:621 -#: ../app/controllers/provider_foreman_controller.rb:653 -#: ../app/controllers/provider_foreman_controller.rb:675 -#: ../app/controllers/pxe_controller.rb:134 -#: ../app/controllers/pxe_controller.rb:138 -#: ../app/controllers/pxe_controller.rb:140 -#: ../app/controllers/pxe_controller.rb:152 -#: ../app/controllers/pxe_controller.rb:156 -#: ../app/controllers/pxe_controller.rb:167 -#: ../app/controllers/pxe_controller.rb:179 -#: ../app/controllers/pxe_controller/iso_datastores.rb:314 -#: ../app/controllers/pxe_controller/iso_datastores.rb:317 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:256 -#: ../app/controllers/pxe_controller/pxe_image_types.rb:220 -#: ../app/controllers/pxe_controller/pxe_servers.rb:486 -#: ../app/controllers/pxe_controller/pxe_servers.rb:489 -#: ../app/controllers/pxe_controller/pxe_servers.rb:492 -#: ../app/controllers/report_controller/reports.rb:32 -#: ../app/controllers/report_controller/reports.rb:190 -#: ../app/controllers/report_controller/schedules.rb:500 -#: ../app/controllers/service_controller.rb:188 -#: ../app/controllers/service_controller.rb:201 -#: ../app/controllers/storage_controller/storage_d.rb:62 -#: ../app/controllers/storage_controller/storage_pod.rb:53 -#: ../app/controllers/vm_common.rb:1278 -msgid "%{model} \"%{name}\"" -msgstr "%{model} \"%{name}\"" +msgid "Access Key ID" +msgstr "ID de la Clé d''Accès" -#: ../app/controllers/catalog_controller.rb:1681 -#: ../app/controllers/catalog_controller.rb:1684 -#: ../app/controllers/chargeback_controller.rb:393 -#: ../app/controllers/container_controller.rb:170 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:1386 -#: ../app/controllers/miq_policy_controller.rb:555 -#: ../app/controllers/miq_policy_controller/conditions.rb:225 -#: ../app/controllers/miq_policy_controller/conditions.rb:233 -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:146 -#: ../app/controllers/ops_controller/db.rb:118 -#: ../app/controllers/pxe_controller.rb:127 -#: ../app/controllers/pxe_controller.rb:147 -#: ../app/controllers/pxe_controller.rb:177 -#: ../app/controllers/pxe_controller/iso_datastores.rb:306 -#: ../app/controllers/pxe_controller/pxe_image_types.rb:214 -#: ../app/controllers/pxe_controller/pxe_servers.rb:478 -#: ../app/controllers/report_controller.rb:488 -#: ../app/controllers/report_controller/dashboards.rb:232 -#: ../app/controllers/report_controller/menus.rb:661 -#: ../app/controllers/report_controller/schedules.rb:52 -#: ../app/controllers/report_controller/widgets.rb:254 -#: ../app/controllers/service_controller.rb:197 -#: ../app/controllers/storage_controller/storage_d.rb:56 -#: ../app/controllers/vm_common.rb:1321 -#: ../app/presenters/tree_builder_report_roles.rb:19 -msgid "All %{models}" -msgstr "Tous %{models}" +msgid "Access Key ID and matching Secret Access Key fields are needed to perform verification of credentials" +msgstr "Les champs ID de Clé d''Accès et Clé d''Accès Secrète sont nécessaires pour exécuter la verification des données d'identification" -#: ../app/controllers/catalog_controller.rb:1705 -msgid "%{typ} in %{model} \"Unassigned\"" -msgstr "%{typ} dans %{model} \"Non assigné\"" +msgid "Access Restriction for Services, VMs, and Templates" +msgstr "" -#: ../app/controllers/catalog_controller.rb:1712 -msgid "%{typ} in %{model} \"%{name}\"" -msgstr "%{typ} dans %{model} \"%{name}\"" +msgid "Access Rules for all Virtual Machines" +msgstr "Règles d''Accès pour toutes les Machines Virtuelles " -#: ../app/controllers/catalog_controller.rb:1851 -msgid "Editing Button \"%{name}\"" -msgstr "Modification du bouton \"%{name}\"" +msgid "Access URL" +msgstr "URL d'accès" -#: ../app/controllers/catalog_controller.rb:1853 -msgid "Adding a new Button" -msgstr "Ajout d''un nouveau Bouton" +msgid "Accessing Management Engine from multiple tabs or windows of the same browser on a single machine." +msgstr "Accès au moteur de gestion à partir de plusieurs onglets ou fenêtres du même navigateur sur une seule machine." -#: ../app/controllers/catalog_controller.rb:1857 -msgid "Editing Button Group \"%{name}\"" -msgstr "Modification du groupe de boutons \"%{name}\"" +msgid "Account" +msgstr "Compte" -#: ../app/controllers/catalog_controller.rb:1859 -msgid "Adding a new Button Group" -msgstr "Ajout d''un nouveau Groupe de Boutons" +msgid "Account Policies" +msgstr "Politiques de Comptes" -#: ../app/controllers/catalog_controller.rb:1862 -msgid "Buttons Group Reorder" -msgstr "Réarranger le Groupe de boutons" +msgid "Acknowledge" +msgstr "" -#: ../app/controllers/catalog_controller.rb:2024 -msgid "Dialog has to be set if Display in Catalog is chosen" +msgid "Acknowledge Alert" msgstr "" -"La boîte de dialogue doit être définie si l'option Affichage dans le catalogue" -" est active" -#: ../app/controllers/catalog_controller.rb:2046 -msgid "Editing %{model} Tags for \"%{name}\"" -msgstr "Modification des balises %{model} pour \"%{name}\"" +msgid "Acknowledged" +msgstr "" -#: ../app/controllers/chargeback_controller.rb:49 -msgid "All Chargeback Rates" -msgstr "Tous les taux de rétrofacturation" +msgid "Action" +msgstr "Action" -#: ../app/controllers/chargeback_controller.rb:50 -#: ../app/controllers/chargeback_controller.rb:418 -msgid "All Assignments" -msgstr "Toutes les Affectations" +msgid "Action Order" +msgstr "Ordre des actions" -#: ../app/controllers/chargeback_controller.rb:51 -#: ../app/controllers/chargeback_controller.rb:429 -msgid "All Saved Chargeback Reports" -msgstr "Tous les rapports de rétrofacturations enregistrés" +msgid "Action Type" +msgstr "Type d''Action" -#: ../app/controllers/chargeback_controller.rb:172 -msgid "Default Chargeback Rate \"%{name}\" cannot be edited." -msgstr "Impossible de modifier le taux de rejet de débit \"%{name}\" par défaut." +msgid "Action Type must be selected" +msgstr "Le Type d''Action doit être sélectionné" -#: ../app/controllers/chargeback_controller.rb:200 -#: ../app/controllers/infra_networking_controller.rb:170 -#: ../app/controllers/mixins/vm_show_mixin.rb:100 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:24 -#: ../app/controllers/provider_foreman_controller.rb:399 -#: ../app/controllers/report_controller/schedules.rb:6 -#: ../app/controllers/storage_controller.rb:357 -#: ../app/controllers/vm_common.rb:1051 -#: ../app/helpers/application_helper.rb:1190 -msgid "Error: Record no longer exists in the database" -msgstr "Erreur : l'enregistrement n'existe plus dans la base de données" +msgid "Action not implemented" +msgstr "L''Action n'est pas implémentée" -#: ../app/controllers/chargeback_controller.rb:212 -#: ../app/controllers/configuration_controller.rb:314 -msgid "No %{records} were selected for deletion" -msgstr "Aucun %{records} sélectionné à supprimer" +msgid "Actions" +msgstr "Actions" -#: ../app/controllers/chargeback_controller.rb:230 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:121 -#: ../app/controllers/miq_policy_controller.rb:583 -#: ../app/controllers/miq_policy_controller.rb:918 -#: ../app/controllers/report_controller.rb:448 -#: ../app/controllers/report_controller.rb:468 -#: ../app/controllers/report_controller/widgets.rb:260 -msgid "%{typ} %{model}" -msgstr "%{typ} %{model}" +msgid "Actions assigned to Policies can not be deleted" +msgstr "Impossible de supprimer les actions affectées à des stratégies" -#: ../app/controllers/chargeback_controller.rb:306 -msgid "Error during 'Rate assignments': %{error_message}" -msgstr "Erreur lors de l'opération \"Affectations de taux\" : %{error_message}" +msgid "Actions for Policy Event \"%{events}\" were saved" +msgstr "Les actions relatives à l'événement de stratégie \"%{events}\" ont été enregistrées" -#: ../app/controllers/chargeback_controller.rb:308 -msgid "Rate Assignments saved" -msgstr "Affectations de vitesse enregistrées" +msgid "Activate the %{server_role_description} Role on another Server to suspend it on %{server_name} [%{server_id}]" +msgstr "Activez le rôle %{server_role_description} sur un autre serveur pour le suspendre sur %{server_name} [%{server_id}]" -#: ../app/controllers/chargeback_controller.rb:320 -#: ../app/controllers/report_controller.rb:20 -#: ../app/controllers/report_controller.rb:274 -#: ../app/helpers/ui_constants.rb:621 ../app/presenters/menu/default_menu.rb:22 -#: ../app/views/configuration/_ui_1.html.haml:114 -#: ../app/views/report/_role_list.html.haml:10 -msgid "Reports" -msgstr "Rapports" - -#: ../app/controllers/chargeback_controller.rb:324 -#: ../app/presenters/tree_builder_chargeback_rates.rb:9 -msgid "Rates" -msgstr "Vitesses" - -#: ../app/controllers/chargeback_controller.rb:328 -#: ../app/presenters/tree_builder_chargeback_assignments.rb:9 -#: ../app/views/miq_policy/_alert_profile_assign.html.haml:8 -msgid "Assignments" -msgstr "Affectations" - -#: ../app/controllers/chargeback_controller.rb:351 -msgid "Saved Chargeback Report [%{name}]" -msgstr "Rapport de rétrofacturation enregistré [%{name}]" - -#: ../app/controllers/chargeback_controller.rb:353 -#: ../app/controllers/report_controller/saved_reports.rb:84 -msgid "Report is not authorized for the logged in user" -msgstr "Le rapport n'est pas autorisé pour l'utilisateur connecté" +msgid "Active" +msgstr "Actif" -#: ../app/controllers/chargeback_controller.rb:397 -msgid "Compute Chargeback Rates" -msgstr "Calculer les taux de rejet de débit" +msgid "Active Services" +msgstr "" -#: ../app/controllers/chargeback_controller.rb:398 -msgid "Storage Chargeback Rates" -msgstr "Taux de rétrofacturation de stockage" +msgid "Activity" +msgstr "Activité" -#: ../app/controllers/chargeback_controller.rb:405 -msgid "Compute Chargeback Rate \"%{name}\"" +msgid "Ad hoc Metrics" msgstr "" -#: ../app/controllers/chargeback_controller.rb:406 -msgid "Storage Chargeback Rate \"%{name}\"" -msgstr "" +msgid "Add" +msgstr "Ajouter" -#: ../app/controllers/chargeback_controller.rb:414 -msgid "Compute Rate Assignments" -msgstr "Calculer les affectations de taux" +msgid "Add %{type}" +msgstr "Ajouter %{type}" -#: ../app/controllers/chargeback_controller.rb:415 -msgid "Storage Rate Assignments" -msgstr "Affectations de taux de stockage" +msgid "Add (enter manually)" +msgstr "Ajouter (entrée manuelle)" -#: ../app/controllers/chargeback_controller.rb:436 -msgid "Saved Chargeback Report \"%{last_run_on}\"" -msgstr "Rapport de rétrofacturation enregistré \"%{last_run_on}\"" +msgid "Add Button" +msgstr "Ajouter un Bouton" -#: ../app/controllers/chargeback_controller.rb:438 -msgid "Selected Saved Chargeback Report no longer exists" -msgstr "Le rapport de rétrofacturation enregistré sélectionné n'existe plus" +msgid "Add Capabilities" +msgstr "Ajouter des capacités" -#: ../app/controllers/chargeback_controller.rb:450 -msgid "Saved Chargeback Reports \"%{report_name}\"" -msgstr "Rapports de rétrofacturation enregistrés \"%{report_name}\"" +msgid "Add Datasource" +msgstr "Ajouter une source de données" -#: ../app/controllers/chargeback_controller.rb:453 -msgid "Selected Chargeback Report no longer exists" -msgstr "Le rapport de rétrofacturation sélectionné n'existe plus" +msgid "Add Deployment" +msgstr "Ajouter un déploiement" -#: ../app/controllers/chargeback_controller.rb:479 -msgid "Report \"%{report_name}\"" -msgstr "Rapport \"%{report_name}\"" +msgid "Add Disk" +msgstr "Ajouter un Disque" -#: ../app/controllers/chargeback_controller.rb:924 -#: ../app/presenters/menu/default_menu.rb:25 -msgid "Chargeback" -msgstr "Rétrofacturation" +msgid "Add Disks" +msgstr "Ajouter des Disques" -#: ../app/controllers/cloud_network_controller.rb:73 -msgid "Add of new Cloud Network was cancelled by the user" -msgstr "" +msgid "Add Existing Containers Provider" +msgstr "Ajouter un fournisseur de conteneurs existant" -#: ../app/controllers/cloud_network_controller.rb:82 -msgid "Cloud Network creation failed: Task start failed: ID [%{id}]" +msgid "Add Filter" msgstr "" -#: ../app/controllers/cloud_network_controller.rb:92 -msgid "Add New Cloud Network " -msgstr "" +msgid "Add Host" +msgstr "Ajouter un hôte" -#: ../app/controllers/cloud_network_controller.rb:103 -msgid "Cloud Network \"%{name}\" created" -msgstr "" +msgid "Add Host Analysis Profile" +msgstr "Ajouter un profil d'analyse d'hôte" -#: ../app/controllers/cloud_network_controller.rb:106 -msgid "Unable to create Cloud Network \"%{name}\": %{details}" -msgstr "" +msgid "Add Host not supported by %{model} \"%{name}\"" +msgstr "L'ajout d'hôtes n'est pas pris en charge par %{model} \"%{name}\"" -#: ../app/controllers/cloud_network_controller.rb:125 -msgid "No Cloud Network were selected for deletion." -msgstr "" +msgid "Add Host to %{model} \"%{name}\"" +msgstr "L'ajout d'hôtes à %{model} \"%{name}\"" -#: ../app/controllers/cloud_network_controller.rb:131 -msgid "Cloud Network no longer exists." -msgstr "" +msgid "Add Host to %{model} \"%{name}\" failed: Task start failed: ID [%{id}]" +msgstr "L'ajout d'hôte au %{model} \"%{name}\" a échoué : échec de démarrage de la tâche : ID [%{id}]" -#: ../app/controllers/cloud_network_controller.rb:135 -msgid "Couldn't initiate deletion of Network \"%{name}\": %{details}" -msgstr "" +msgid "Add Host to %{model} \"%{name}\" was cancelled by the user" +msgstr "L'ajout d'un Hôte à %{model} \"%{name}\" a été annulé par l'utilisateur" -#: ../app/controllers/cloud_network_controller.rb:153 -msgid "The selected Cloud Network was deleted" -msgstr "" +msgid "Add Host to Host Aggregate" +msgstr "Ajouter l'Hôte à la Collection d'hôtes" -#: ../app/controllers/cloud_network_controller.rb:165 -msgid "Edit Cloud Network \"%{name}\"" -msgstr "" +msgid "Add Host to Selected Host Aggregate" +msgstr "Ajouter l'Hôte à la Collection d'hôtes sélectionnés" -#: ../app/controllers/cloud_network_controller.rb:182 -msgid "Add New Cloud Network" +msgid "Add Interface not supported by Router \"%{name}\"" msgstr "" -#: ../app/controllers/cloud_network_controller.rb:191 -msgid "Edit of Cloud Network \"%{name}\" was cancelled by the user" +msgid "Add Interface on Subnet to Router \"%{name}\" failed: Task start failed: ID [%{id}]" msgstr "" -#: ../app/controllers/cloud_network_controller.rb:196 -msgid "Cloud Network update failed: Task start failed: ID [%{id}]" +msgid "Add Interface on Subnet to Router \"%{name}\" was cancelled by the user" msgstr "" -#: ../app/controllers/cloud_network_controller.rb:204 -msgid "Couldn't initiate update of Network \"%{name}\": %{details}" +msgid "Add Interface to Router" msgstr "" -#: ../app/controllers/cloud_network_controller.rb:218 -msgid "Cloud Network \"%{name}\" updated" +msgid "Add Interface to Router \"%{name}\"" msgstr "" -#: ../app/controllers/cloud_network_controller.rb:221 -msgid "Unable to update Cloud Network \"%{name}\": %{details}" +msgid "Add Interface to selected Router" msgstr "" -#: ../app/controllers/cloud_network_controller.rb:291 -msgid "Delete initiated for %{number} Cloud Network." -msgid_plural "Delete initiated for %{number} Cloud Networks." -msgstr[0] "Supprimer l'élément lancé pour %{number} du réseau cloud." -msgstr[1] "Supprimer l'élément lancé pour %{number} des réseaux cloud." +msgid "Add Interface to this Router" +msgstr "" -#: ../app/controllers/cloud_object_store_object_controller.rb:51 -msgid "Cloud Objects" -msgstr "Objets Cloud" +msgid "Add JDBC Driver" +msgstr "Ajouter un pilote JDBC" -#: ../app/controllers/cloud_subnet_controller.rb:67 -msgid "Add New Subnet" -msgstr "Ajouter un nouveau sous-réseau" +msgid "Add Middleware Deployment" +msgstr "Ajouter un déploiement de middleware" -#: ../app/controllers/cloud_subnet_controller.rb:77 -msgid "Creation of a Cloud Subnet was cancelled by the user" -msgstr "" +msgid "Add New %{model}" +msgstr "Ajouter un Nouveau %{model}" -#: ../app/controllers/cloud_subnet_controller.rb:90 -msgid "Cloud Subnet creation: Task start failed: ID [%{id}]" -msgstr "" +msgid "Add New %{tables}" +msgstr "Ajouter de nouvelles %{tables}" -#: ../app/controllers/cloud_subnet_controller.rb:103 -msgid "Cloud Subnet \"%{name}\" created" -msgstr "" +msgid "Add New %{table}" +msgstr "Ajouter une nouvelle %{table}" -#: ../app/controllers/cloud_subnet_controller.rb:105 -msgid "Unable to create Cloud Subnet: %{details}" +msgid "Add New Cloud Network" msgstr "" -#: ../app/controllers/cloud_subnet_controller.rb:125 -msgid "No Cloud Subnet were selected for deletion." +msgid "Add New Cloud Network " msgstr "" -#: ../app/controllers/cloud_subnet_controller.rb:132 -msgid "Cloud Subnet no longer exists." +msgid "Add New Cloud Tenant" msgstr "" -#: ../app/controllers/cloud_subnet_controller.rb:148 -msgid "The selected Cloud Subnet was deleted" +msgid "Add New Floating IP" msgstr "" -#: ../app/controllers/cloud_subnet_controller.rb:164 -msgid "Edit Subnet \"%{name}\"" -msgstr "Modifier le sous-réseau \"%{name}\"" +msgid "Add New Host" +msgstr "Ajouter un Nouvel Hôte" -#: ../app/controllers/cloud_subnet_controller.rb:175 -msgid "Edit of Subnet \"%{name}\" was cancelled by the user" -msgstr "La modification du sous-réseau \"%{name}\" a été annulée par l'utilisateur" +msgid "Add New Router" +msgstr "Ajouter nouveau router" -#: ../app/controllers/cloud_subnet_controller.rb:184 -msgid "Cloud Subnet update failed: Task start failed: ID [%{id}]" +msgid "Add New Security Group" msgstr "" -#: ../app/controllers/cloud_subnet_controller.rb:197 -msgid "Cloud Subnet \"%{name}\" updated" +msgid "Add New Security Group " msgstr "" -#: ../app/controllers/cloud_subnet_controller.rb:200 -msgid "Unable to update Cloud Subnet \"%{name}\": %{details}" -msgstr "" +msgid "Add New Storage Manager" +msgstr "Ajouter un nouveau Gestionnaire de Stockage" -#: ../app/controllers/cloud_tenant_controller.rb:34 -#: ../app/controllers/cloud_volume_controller.rb:41 -msgid "%{volume} \"%{volume_name}\" is not attached to any %{instances}" -msgstr "%{volume} \"%{volume_name}\" n'est associé à aucune %{instances}" +msgid "Add New Subnet" +msgstr "Ajouter un nouveau sous-réseau" -#: ../app/controllers/cloud_tenant_controller.rb:91 -#: ../app/controllers/cloud_tenant_controller.rb:151 -msgid "Cloud tenant creation failed: Task start failed: ID [%{id}]" +msgid "Add Note" msgstr "" -"La création d'un locataire cloud a échoué : échec de démarrage de la tâche : I" -"D [%{id}]" - -#: ../app/controllers/cloud_tenant_controller.rb:107 -#: ../app/controllers/host_aggregate_controller.rb:217 -#: ../app/controllers/network_router_controller.rb:105 -msgid "%{model} \"%{name}\" created" -msgstr "%{model} \"%{name}\" créé" -#: ../app/controllers/cloud_tenant_controller.rb:112 -#: ../app/controllers/host_aggregate_controller.rb:222 -#: ../app/controllers/network_router_controller.rb:109 -msgid "Unable to create %{model} \"%{name}\": %{details}" -msgstr "Impossible de créer le %{model} \"%{name}\" : %{details}" +msgid "Add Project to this Tenant" +msgstr "Ajouter un projet à ce locataire" -#: ../app/controllers/cloud_tenant_controller.rb:131 -#: ../app/controllers/cloud_volume_controller.rb:309 -#: ../app/controllers/host_aggregate_controller.rb:241 -msgid "Edit %{model} \"%{name}\"" -msgstr "Modifier %{model} \"%{name}\"" +msgid "Add Subscription" +msgstr "Ajouter une souscription" -#: ../app/controllers/cloud_tenant_controller.rb:168 -#: ../app/controllers/host_aggregate_controller.rb:295 -#: ../app/controllers/network_router_controller.rb:207 -msgid "%{model} \"%{name}\" updated" -msgstr "%{model} \"%{name}\" mis à jour" +msgid "Add VM" +msgstr "Ajouter une machine virtuelle" -#: ../app/controllers/cloud_tenant_controller.rb:173 -#: ../app/controllers/cloud_volume_controller.rb:336 -#: ../app/controllers/host_aggregate_controller.rb:300 -#: ../app/controllers/host_aggregate_controller.rb:450 -#: ../app/controllers/host_aggregate_controller.rb:552 -#: ../app/controllers/network_router_controller.rb:211 -msgid "Unable to update %{model} \"%{name}\": %{details}" -msgstr "Impossible de mettre à jour le %{model} \"%{name}\" : %{details}" +msgid "Add VM \"%{name}\" to a Service was cancelled by the user" +msgstr "L'ajout de la machine virtuelle \"%{name}\" à un service a été annulé par l'utilisateur" -#: ../app/controllers/cloud_tenant_controller.rb:205 -#: ../app/controllers/cloud_volume_controller.rb:376 -#: ../app/controllers/host_aggregate_controller.rb:324 -msgid "No %{models} were selected for deletion." -msgstr "Aucun %{models} sélectionné à supprimer." +msgid "Add VM Analysis Profile" +msgstr "Ajouter un Profil d'Analyse de MV" -#: ../app/controllers/cloud_tenant_controller.rb:216 -#: ../app/controllers/cloud_volume_controller.rb:387 -msgid "" -"%{model} \"%{name}\" cannot be removed because it is attached to one or more %{i" -"nstances}" -msgstr "" -"%{model} \"%{name}\" ne peut pas être supprimé, car il est associé à une ou plus" -"ieurs %{instances}" +msgid "Add VM to a Service" +msgstr "Ajouter une MV à un Service" -#: ../app/controllers/cloud_tenant_controller.rb:272 -msgid "Delete initiated for %{number} Cloud Tenant." -msgid_plural "Delete initiated for %{number} Cloud Tenants." -msgstr[0] "Supprimer l'élément lancé pour %{number} du locataire cloud." -msgstr[1] "Supprimer l'élément lancé pour %{number} des locataires cloud." +msgid "Add VM to the selected Service" +msgstr "Ajouter une MV au service sélectionné" -#: ../app/controllers/cloud_tenant_controller.rb:279 -#: ../app/views/cloud_network/edit.html.haml:46 -#: ../app/views/cloud_network/new.html.haml:72 -#: ../app/views/cloud_subnet/new.html.haml:113 -#: ../app/views/cloud_volume/new.html.haml:60 -#: ../app/views/network_router/new.html.haml:95 -msgid "Cloud Tenant" -msgstr "Locataire cloud" +msgid "Add a New %{alert_profile_type} Alert Profile" +msgstr "Ajouter une nouvelle alerte de profil %{alert_profile_type}" -#: ../app/controllers/cloud_volume_controller.rb:78 -#: ../app/controllers/ems_common.rb:96 ../app/controllers/vm_common.rb:521 -msgid "Cloud Volumes" -msgstr "Volumes cloud" +msgid "Add a New %{condition_type} Condition" +msgstr "Ajouter une nouvelle condition %{condition_type}" -#: ../app/controllers/cloud_volume_controller.rb:95 -#: ../app/controllers/cloud_volume_controller.rb:104 -msgid "%{name} (All %{children})" -msgstr "%{name} (Tous %{children})" +msgid "Add a New %{model} %{mode} Policy" +msgstr "Ajouter une nouvelle stratégie %{model} %{mode}" -#: ../app/controllers/cloud_volume_controller.rb:142 -msgid "Attach %{model} \"%{name}\"" -msgstr "Associer %{model} \"%{name}\"" +msgid "Add a New Alert" +msgstr "Ajouter une Nouvelle Alerte" -#: ../app/controllers/cloud_volume_controller.rb:157 -msgid "Detach %{model} \"%{name}\"" -msgstr "Dissocier %{model} \"%{name}\"" +msgid "Add a New Catalog" +msgstr "Ajouter un Nouveau Catalogue" -#: ../app/controllers/cloud_volume_controller.rb:170 -msgid "Attaching %{model} \"%{name}\" was cancelled by the user" -msgstr "L'association de %{model} \"%{name}\" a été annulée par l'utilisateur" +msgid "Add a New Catalog Bundle" +msgstr "Ajouter un Nouveau Bundle de Catalogues" -#: ../app/controllers/cloud_volume_controller.rb:180 -#: ../app/controllers/vm_cloud_controller.rb:76 -msgid "Attaching %{volume} \"%{volume_name}\" to %{vm_name}" -msgstr "Association de %{volume} \"%{volume_name}\" à %{vm_name}" +msgid "Add a New Catalog Item" +msgstr "Ajouter un Nouvel Elément de Catalogue" -#: ../app/controllers/cloud_volume_controller.rb:185 -#: ../app/controllers/vm_cloud_controller.rb:81 -msgid "Unable to attach %{volume} \"%{volume_name}\" to %{vm_name}: %{details}" -msgstr "Impossible d'attacher le %{volume} \"%{volume_name}\" à %{vm_name} : %{details}" +msgid "Add a New Class" +msgstr "Ajouter une Nouvelle Classe" -#: ../app/controllers/cloud_volume_controller.rb:207 -msgid "Detaching %{model} \"%{name}\" was cancelled by the user" -msgstr "La dissociation de %{model} \"%{name}\" a été annulée par l'utilisateur" +msgid "Add a New Cloud Provider" +msgstr "Ajouter un nouveau fournisseur cloud" -#: ../app/controllers/cloud_volume_controller.rb:218 -#: ../app/controllers/vm_cloud_controller.rb:115 -msgid "Detaching %{volume} \"%{volume_name}\" from %{vm_name}" -msgstr "Dissociation de %{volume} \"%{volume_name}\" de %{vm_name}" +msgid "Add a New Customization Template" +msgstr "Ajouter un Nouveau Modèle de Personnalisation" -#: ../app/controllers/cloud_volume_controller.rb:223 -#: ../app/controllers/vm_cloud_controller.rb:120 -msgid "Unable to detach %{volume} \"%{volume_name}\" from %{vm_name}: %{details}" +msgid "Add a New Datawarehouse Provider" msgstr "" -"Impossible de détacher le %{volume} \"%{volume_name}\" de %{vm_name} : %{details" -"}" -#: ../app/controllers/cloud_volume_controller.rb:267 -msgid "Creating %{volume} \"%{volume_name}\"" -msgstr "Création de %{volume} \"%{volume_name}\"" +msgid "Add a New Domain" +msgstr "Ajouter un Nouveau Domaine" -#: ../app/controllers/cloud_volume_controller.rb:271 -msgid "Unable to create %{volume} \"%{volume_name}\": %{details}" -msgstr "Impossible de créer le %{volume} \"%{volume_name}\" : %{details}" +msgid "Add a New Host Aggregate" +msgstr "Ajouter un nouvel Agrégat d'hôtes" -#: ../app/controllers/cloud_volume_controller.rb:331 -msgid "Updating %{model} \"%{name}\"" -msgstr "Mise à jour du %{model} \"%{name}\"" +msgid "Add a New ISO Datastore" +msgstr "Ajouter un nouveau magasin de données ISO" -#: ../app/controllers/cloud_volume_controller.rb:434 -msgid "Create Backup for %{model} \"%{name}\"" -msgstr "Créer une sauvegarde pour %{model} \"%{name}\"" +msgid "Add a New Infrastructure Provider" +msgstr "Ajouter un nouveau fournisseur d'infrastructure" -#: ../app/controllers/cloud_volume_controller.rb:448 -msgid "Backup of %{model} \"%{name}\" was cancelled by the user" -msgstr "La sauvegarde du/de la %{model} \"%{name}\" a été annulée par l'utilisateur" +msgid "Add a New Instance" +msgstr "Ajouter une Nouvelle Instance" -#: ../app/controllers/cloud_volume_controller.rb:464 -msgid "Cloud volume backup creation failed: Task start failed: ID [%{id}]" -msgstr "" -"La création de la sauvegarde du volume cloud a échoué : échec de démarrage de " -"la tâche : ID [%{id}]" +msgid "Add a New Method" +msgstr "Ajouter un Nouvelle Méthode" -#: ../app/controllers/cloud_volume_controller.rb:479 -msgid "Backup for %{model} \"%{name}\" created" -msgstr "Sauvegarde de %{model} \"%{name}\" créée" +msgid "Add a New Middleware Provider" +msgstr "Ajouter un nouveau fournisseur de middleware" -#: ../app/controllers/cloud_volume_controller.rb:484 -msgid "Unable to create backup for %{model} \"%{name}\": %{details}" -msgstr "Impossible de créer la sauvegarde de %{model} \"%{name}\" : %{details}" +msgid "Add a New Namespace" +msgstr "Ajouter un nouvel espace de nommage" -#: ../app/controllers/cloud_volume_controller.rb:506 -msgid "Restore %{model} \"%{name}\" from a Backup" -msgstr "Restaurer %{model} \"%{name}\" à partir d'une sauvegarde" +msgid "Add a New Network Provider" +msgstr "Ajouter un nouveau Fournisseur réseau" -#: ../app/controllers/cloud_volume_controller.rb:520 -msgid "Restore of %{model} \"%{name}\" was cancelled by the user" -msgstr "La restauration de %{model} \"%{name}\" a été annulée par l'utilisateur" +msgid "Add a New PXE Server" +msgstr "Ajouter un Nouveau Serveur PXE" -#: ../app/controllers/cloud_volume_controller.rb:529 -msgid "Cloud volume restore failed: Task start failed: ID [%{id}]" -msgstr "" -"La restauration du volume cloud a échoué : échec de démarrage de la tâche : ID" -" [%{id}]" +msgid "Add a New Policy Profile" +msgstr "Ajouter un nouveau profil de stratégie" -#: ../app/controllers/cloud_volume_controller.rb:546 -msgid "Restoring %{model} \"%{name}\" from backup" -msgstr "Restaurer %{model} \"%{name}\" à partir de la sauvegarde" +msgid "Add a New Storage Manager" +msgstr "Ajouter un nouveau gestionnaire de stockage" -#: ../app/controllers/cloud_volume_controller.rb:551 -msgid "Unable to restore %{model} \"%{name}\" from backup: %{details}" -msgstr "" -"Impossible de restaurer %{model} \"%{name}\" à partir de la sauvegarde : %{detai" -"ls}" +msgid "Add a New VM Condition" +msgstr "Ajouter une nouvelle condition de machine virtuelle" -#: ../app/controllers/cloud_volume_controller.rb:569 -msgid "Create Snapshot for Cloud Volume \"%{name}\"" -msgstr "Créer un cliché pour le volume cloud \"%{name}\"" +msgid "Add a New Volume" +msgstr "Ajouter un nouveau volume" -#: ../app/controllers/cloud_volume_controller.rb:581 -msgid "Snapshot of Cloud Volume \"%{name}\" was cancelled by the user" -msgstr "Le cliché du volume cloud %{name} a été annulé par l'utilisateur" +msgid "Add a New item" +msgstr "Ajouter un Nouvel élément" -#: ../app/controllers/cloud_volume_controller.rb:588 -msgid "Cloud volume snapshot creation failed: Task start failed: ID [%{id}]" +msgid "Add a Resource" +msgstr "Ajouter une ressource" + +msgid "Add a Shortcut" msgstr "" -"La création de la sauvegarde du cliché cloud a échoué : échec de démarrage de " -"la tâche : ID [%{id}]" -#: ../app/controllers/cloud_volume_controller.rb:604 -msgid "Snapshot for Cloud Volume \"%{name}\" created" -msgstr "Cliché du volume cloud \"%{name}\" créé" +msgid "Add a User" +msgstr "Ajouter un Utilisateur" -#: ../app/controllers/cloud_volume_controller.rb:608 -msgid "Unable to create snapshot for Cloud Volume \"%{name}\": %{details}" -msgstr "Impossible de créer un cliché pour la volume cloud \"%{name}\": %{details}" +msgid "Add a new Action" +msgstr "Ajouter une Nouvelle Action" -#: ../app/controllers/cloud_volume_controller.rb:647 -msgid "Delete initiated for %{number} Cloud Volume." -msgid_plural "Delete initiated for %{number} Cloud Volumes." -msgstr[0] "Supprimer l'élément lancé pour %{number} volume cloud." -msgstr[1] "Supprimer l'élément lancé pour %{number} volumes cloud." +msgid "Add a new Arbitration Profile" +msgstr "Ajouter un nouveau profil d'arbitrage" -#: ../app/controllers/cloud_volume_snapshot_controller.rb:40 -msgid "No Cloud Volume Snapshots were selected for deletion." -msgstr "Aucuns clichés de volume cloud n'ont été sélectionnés afin d'être supprimés." +msgid "Add a new Arbitration Profile to this Cloud Provider" +msgstr "Ajouter un nouveau profil d'arbitrage à ce fournisseur cloud" -#: ../app/controllers/cloud_volume_snapshot_controller.rb:47 -msgid "Cloud Volume Snapshot no longer exists." -msgstr "Le cliché du volume cloud n'existe plus." +msgid "Add a new Automation Manager Provider" +msgstr "" -#: ../app/controllers/cloud_volume_snapshot_controller.rb:61 -msgid "The selected Cloud Volume Snapshot was deleted" -msgstr "Le cliché de volume cloud sélectionné a été supprimé" +msgid "Add a new Box to this Tab" +msgstr "Ajouter une nouvelle zone à cet onglet" -#: ../app/controllers/cloud_volume_snapshot_controller.rb:83 -msgid "Delete initiated for %{number} Cloud Volume Snapshot." -msgid_plural "Delete initiated for %{number} Cloud Volume Snapshots." -msgstr[0] "Supprimer l'élément lancé pour %{number} du cliché de volume cloud." -msgstr[1] "Supprimer l'élément lancé pour %{number} des clichés de volume cloud." +msgid "Add a new Button" +msgstr "Ajouter un Nouveau Bouton" -#: ../app/controllers/configuration_controller.rb:191 -#: ../app/controllers/configuration_controller.rb:204 -msgid "User Interface settings saved for User %{name}" -msgstr "Paramètres d'interface utilisateur enregistrés pour l'utilisateur %{name}" +msgid "Add a new Button Group" +msgstr "Ajouter un Nouveau Groupe de Boutons" -#: ../app/controllers/configuration_controller.rb:193 -#: ../app/controllers/configuration_controller.rb:206 -msgid "User Interface settings saved for this session" -msgstr "Paramètres d'interface utilisateur enregistrés pour cette session" +msgid "Add a new Chargeback Rate" +msgstr "Ajouter un nouveau taux de rétrofacturation" -#: ../app/controllers/configuration_controller.rb:217 -msgid "Default Filters saved successfully" -msgstr "Les filtres par défaut ont été enregistrés" +msgid "Add a new Cloud Network" +msgstr "Ajouter un nouveau Réseau Cloud" -#: ../app/controllers/configuration_controller.rb:238 -#: ../app/controllers/configuration_controller.rb:504 -msgid "Time Profiles" -msgstr "Profils de temps" +msgid "Add a new Cloud Subnet" +msgstr "Ajouter un nouveau sous-réseau cloud" -#: ../app/controllers/configuration_controller.rb:289 -msgid "Add new Time Profile" -msgstr "Ajouter un nouveau profil temporel" +msgid "Add a new Cloud Volume" +msgstr "Ajouter un nouveau volume cloud" -#: ../app/controllers/configuration_controller.rb:298 -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:79 -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:127 -msgid "Edit" -msgstr "Modifier" +msgid "Add a new Configuration Management Provider" +msgstr "Ajouter un nouveau fournisseur de gestion de configuration" -#: ../app/controllers/configuration_controller.rb:298 -#: ../app/views/layouts/_perf_options.html.haml:161 -#: ../app/views/miq_capacity/_planning_options.html.haml:447 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:116 -#: ../app/views/miq_capacity/_utilization_options.html.haml:65 -#: ../app/views/report/_form_filter_performance.html.haml:50 -msgid "Time Profile" -msgstr "Profil de temps" +msgid "Add a new Dashboard" +msgstr "Ajouter un Nouveau Dashboard" -#: ../app/controllers/configuration_controller.rb:299 -msgid "Global Time Profile cannot be edited" -msgstr "Le profil temporel global ne peut pas être modifié" +msgid "Add a new Deployment" +msgstr "" -#: ../app/controllers/configuration_controller.rb:302 -msgid "%{title} '%{description}'" -msgstr "%{title} '%{description}'" +msgid "Add a new Dialog" +msgstr "Ajouter une nouvelle boîte de Dialogue" -#: ../app/controllers/configuration_controller.rb:321 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:69 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:90 -#: ../app/controllers/ops_controller/ops_rbac.rb:268 -#: ../app/controllers/ops_controller/ops_rbac.rb:580 -msgid "Default %{model} \"%{name}\" cannot be deleted" -msgstr "Impossible de supprimer le %{model} \"%{name}\" par défaut" +msgid "Add a new Element to this Box" +msgstr "Ajouter un nouvel Elément à cette Boîte" -#: ../app/controllers/configuration_controller.rb:325 -msgid "\"%{name}\": Global %{model} cannot be deleted" -msgstr "\"%{name}\": Global %{model} ne peut être supprimé" +msgid "Add a new Floating IP" +msgstr "" -#: ../app/controllers/configuration_controller.rb:329 -msgid "\"%{name}\": In use by %{rep_count} Report, cannot be deleted" -msgid_plural "\"%{name}\": In use by %{rep_count} Reports, cannot be deleted" -msgstr[0] "" -"\"%{name}\" : en cours d'utilisation par %{rep_count} rapport. Suppression impos" -"sible." -msgstr[1] "" -"\"%{name}\" : en cours d'utilisation par %{rep_count} rapports. Suppression impo" -"ssible." +msgid "Add a new Group" +msgstr "Ajouter un nouveau Groupe" -#: ../app/controllers/configuration_controller.rb:369 -#: ../app/controllers/miq_request_controller.rb:249 -msgid "Copy of %{description}" -msgstr "Copie de %{description}" +msgid "Add a new Host Analysis Profile" +msgstr "Ajouter un nouveau profil d'analyse d'hôte" -#: ../app/controllers/configuration_controller.rb:380 -msgid "Adding copy of '%{description}'" -msgstr "Ajout d'une copie de '%{description}'" +msgid "Add a new Key Pair" +msgstr "Ajouter une nouvelle paire de clés" -#: ../app/controllers/configuration_controller.rb:417 -msgid "TimeProfile \"%{name}\": Error during 'save': %{error_message}" -msgstr "Profil de temps \"%{name}\" : Erreur lors de l'enregistrement : %{error_message}" +msgid "Add a new LDAP Domain" +msgstr "Ajouter un nouveau Domaine LDAP" -#: ../app/controllers/configuration_controller.rb:420 -msgid "Edit '%{description}'" -msgstr "Modifier '%{description}'" +msgid "Add a new LDAP Region" +msgstr "Ajouter une nouvelle Région LDAP" -#: ../app/controllers/configuration_controller.rb:495 -msgid "User Interface Configuration" -msgstr "Configuration de l'interface utilisateur" +msgid "Add a new Middleware Datasource" +msgstr "Ajouter une nouvelle Source de données de Middleware" -#: ../app/controllers/configuration_controller.rb:501 -msgid "Visual" -msgstr "Visuel" +msgid "Add a new Middleware Deployment" +msgstr "Ajouter un nouveau déploiement de middleware" -#: ../app/controllers/configuration_controller.rb:502 -msgid "Default Views" -msgstr "Vues Par défaut" +msgid "Add a new Middleware JDBC Driver" +msgstr "Ajouter un nouveau pilote JDBC de middleware" -#: ../app/controllers/configuration_controller.rb:503 -msgid "Default Filters" -msgstr "Filtres par défaut" +msgid "Add a new Provider" +msgstr "Ajouter un nouveau Fournisseur" -#: ../app/controllers/configuration_controller.rb:622 -#: ../app/controllers/ems_cluster_controller.rb:70 -#: ../app/controllers/ops_controller.rb:793 -#: ../app/controllers/resource_pool_controller.rb:65 -#: ../app/helpers/application_helper/toolbar/arbitration_profile_center.rb:6 -#: ../app/helpers/application_helper/toolbar/arbitration_profiles_center.rb:6 -#: ../app/helpers/application_helper/toolbar/auth_key_pair_cloud_center.rb:6 -#: ../app/helpers/application_helper/toolbar/auth_key_pair_clouds_center.rb:26 -#: ../app/helpers/application_helper/toolbar/catalogitem_button_center.rb:6 -#: ../app/helpers/application_helper/toolbar/catalogitem_button_set_center.rb:6 -#: ../app/helpers/application_helper/toolbar/catalogitem_buttons_center.rb:6 -#: ../app/helpers/application_helper/toolbar/chargeback_center.rb:47 -#: ../app/helpers/application_helper/toolbar/chargebacks_center.rb:6 -#: ../app/helpers/application_helper/toolbar/cloud_network_center.rb:8 -#: ../app/helpers/application_helper/toolbar/cloud_networks_center.rb:8 -#: ../app/helpers/application_helper/toolbar/cloud_subnet_center.rb:6 -#: ../app/helpers/application_helper/toolbar/cloud_subnets_center.rb:6 -#: ../app/helpers/application_helper/toolbar/cloud_tenant_center.rb:6 -#: ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:6 -#: ../app/helpers/application_helper/toolbar/cloud_volume_center.rb:6 -#: ../app/helpers/application_helper/toolbar/cloud_volume_snapshot_center.rb:6 -#: ../app/helpers/application_helper/toolbar/cloud_volumes_center.rb:6 -#: ../app/helpers/application_helper/toolbar/condition_center.rb:6 -#: ../app/helpers/application_helper/toolbar/conditions_center.rb:6 -#: ../app/helpers/application_helper/toolbar/configuration_job_center.rb:6 -#: ../app/helpers/application_helper/toolbar/configuration_jobs_center.rb:6 -#: ../app/helpers/application_helper/toolbar/configuration_manager_provider_center.rb:6 -#: ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:6 -#: ../app/helpers/application_helper/toolbar/configuration_script_center.rb:6 -#: ../app/helpers/application_helper/toolbar/container_build_center.rb:6 -#: ../app/helpers/application_helper/toolbar/container_builds_center.rb:6 -#: ../app/helpers/application_helper/toolbar/container_image_center.rb:6 -#: ../app/helpers/application_helper/toolbar/container_images_center.rb:6 -#: ../app/helpers/application_helper/toolbar/custom_button_center.rb:6 -#: ../app/helpers/application_helper/toolbar/custom_button_set_center.rb:6 -#: ../app/helpers/application_helper/toolbar/custom_buttons_center.rb:6 -#: ../app/helpers/application_helper/toolbar/customization_template_center.rb:6 -#: ../app/helpers/application_helper/toolbar/customization_templates_center.rb:6 -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:13 -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:83 -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:13 -#: ../app/helpers/application_helper/toolbar/dialog_center.rb:6 -#: ../app/helpers/application_helper/toolbar/dialogs_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ems_block_storages_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:11 -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:11 -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:11 -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ems_network_center.rb:11 -#: ../app/helpers/application_helper/toolbar/ems_networks_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ems_storage_center.rb:11 -#: ../app/helpers/application_helper/toolbar/ems_storages_center.rb:6 -#: ../app/helpers/application_helper/toolbar/generic_object_definition.rb:6 -#: ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:6 -#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:6 -#: ../app/helpers/application_helper/toolbar/host_center.rb:6 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:6 -#: ../app/helpers/application_helper/toolbar/inventory_group_center.rb:6 -#: ../app/helpers/application_helper/toolbar/iso_datastore_center.rb:6 -#: ../app/helpers/application_helper/toolbar/iso_datastores_center.rb:6 -#: ../app/helpers/application_helper/toolbar/iso_image_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ldap_domain_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ldap_region_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ldap_regions_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_action_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_actions_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_ae_class_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_ae_domain_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_ae_domains_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_ae_fields_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_ae_instance_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_ae_instances_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_ae_method_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_ae_methods_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_ae_namespace_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_alert_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_alert_profile_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_alert_profiles_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_alerts_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_dialog_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_dialogs_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_event_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_group_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_groups_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_policies_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_policy_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_policy_profile_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_policy_profiles_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_report_center.rb:14 -#: ../app/helpers/application_helper/toolbar/miq_report_schedule_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_report_schedules_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_reports_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_schedule_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_schedules_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_widget_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_widget_set_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_widget_sets_center.rb:6 -#: ../app/helpers/application_helper/toolbar/miq_widgets_center.rb:13 -#: ../app/helpers/application_helper/toolbar/network_router_center.rb:8 -#: ../app/helpers/application_helper/toolbar/network_routers_center.rb:8 -#: ../app/helpers/application_helper/toolbar/ontap_file_share_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ontap_storage_system_center.rb:6 -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:6 -#: ../app/helpers/application_helper/toolbar/orchestration_stack_center.rb:6 -#: ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:6 -#: ../app/helpers/application_helper/toolbar/orchestration_template_center.rb:6 -#: ../app/helpers/application_helper/toolbar/orchestration_templates_center.rb:6 -#: ../app/helpers/application_helper/toolbar/persistent_volume_center.rb:6 -#: ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:6 -#: ../app/helpers/application_helper/toolbar/pxe_image_center.rb:6 -#: ../app/helpers/application_helper/toolbar/pxe_image_type_center.rb:6 -#: ../app/helpers/application_helper/toolbar/pxe_image_types_center.rb:6 -#: ../app/helpers/application_helper/toolbar/pxe_server_center.rb:6 -#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:6 -#: ../app/helpers/application_helper/toolbar/resource_pool_center.rb:6 -#: ../app/helpers/application_helper/toolbar/resource_pools_center.rb:6 -#: ../app/helpers/application_helper/toolbar/saved_report_center.rb:6 -#: ../app/helpers/application_helper/toolbar/saved_reports_center.rb:15 -#: ../app/helpers/application_helper/toolbar/scan_profile_center.rb:6 -#: ../app/helpers/application_helper/toolbar/scan_profiles_center.rb:6 -#: ../app/helpers/application_helper/toolbar/service_center.rb:6 -#: ../app/helpers/application_helper/toolbar/services_center.rb:6 -#: ../app/helpers/application_helper/toolbar/servicetemplate_center.rb:6 -#: ../app/helpers/application_helper/toolbar/servicetemplatecatalog_center.rb:6 -#: ../app/helpers/application_helper/toolbar/servicetemplatecatalogs_center.rb:6 -#: ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:6 -#: ../app/helpers/application_helper/toolbar/stack_orchestration_template_center.rb:6 -#: ../app/helpers/application_helper/toolbar/storage_center.rb:6 -#: ../app/helpers/application_helper/toolbar/storage_manager_center.rb:6 -#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:6 -#: ../app/helpers/application_helper/toolbar/storages_center.rb:6 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:6 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:6 -#: ../app/helpers/application_helper/toolbar/tenant_center.rb:6 -#: ../app/helpers/application_helper/toolbar/tenants_center.rb:6 -#: ../app/helpers/application_helper/toolbar/time_profiles_center.rb:6 -#: ../app/helpers/application_helper/toolbar/user_center.rb:6 -#: ../app/helpers/application_helper/toolbar/user_role_center.rb:6 -#: ../app/helpers/application_helper/toolbar/user_roles_center.rb:6 -#: ../app/helpers/application_helper/toolbar/users_center.rb:6 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:6 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:6 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:6 -#: ../app/helpers/application_helper/toolbar/windows_image_center.rb:6 -#: ../app/helpers/application_helper/toolbar/x_configuration_script_center.rb:6 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:6 -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:6 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:6 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:6 -#: ../app/helpers/application_helper/toolbar/zone_center.rb:6 -#: ../app/helpers/application_helper/toolbar/zones_center.rb:6 -#: ../app/presenters/menu/default_menu.rb:13 -#: ../app/presenters/menu/default_menu.rb:251 -#: ../app/views/container_image/_main.html.haml:25 -#: ../app/views/ems_cluster/_main.html.haml:19 -#: ../app/views/ems_container/_deploy.html.haml:28 -#: ../app/views/host/_main.html.haml:21 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:19 -#: ../app/views/layouts/listnav/_host.html.haml:215 -#: ../app/views/resource_pool/_main.html.haml:14 -#: ../app/views/shared/views/ems_common/_main.html.haml:12 -#: ../app/views/vm_cloud/_main.html.haml:32 -#: ../app/views/vm_common/_main.html.haml:33 -msgid "Configuration" -msgstr "Configuration" +msgid "Add a new Report" +msgstr "Ajouter un nouveau Rapport" -#: ../app/controllers/configuration_job_controller.rb:30 -msgid "Configuration_Jobs" -msgstr "Tâches_configuration" +msgid "Add a new Role" +msgstr "Ajouter un nouveau Role" -#: ../app/controllers/configuration_job_controller.rb:48 -#: ../app/controllers/orchestration_stack_controller.rb:79 -#: ../app/helpers/configuration_job_helper/textual_summary.rb:60 -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:108 -#: ../app/views/container_template/_main.html.haml:13 -#: ../app/views/layouts/listnav/_configuration_job.html.haml:37 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:58 -#: ../app/views/miq_policy/_alert_details.html.haml:226 -#: ../app/views/miq_policy/_alert_details.html.haml:266 -msgid "Parameters" -msgstr "Paramètres" +msgid "Add a new Router" +msgstr "Ajouter un nouveau Router" -#: ../app/controllers/configuration_job_controller.rb:87 -#: ../app/helpers/service_helper/textual_summary.rb:103 -msgid "Job" -msgstr "Tâche" +msgid "Add a new Schedule" +msgstr "Ajouter un nouveau Planning" -#: ../app/controllers/container_controller.rb:35 -msgid "Button not yet implemented %{model}: %{action}" -msgstr "Bouton non implémenté à ce stade %{model} : %{action}" +msgid "Add a new Security Group" +msgstr "" -#: ../app/controllers/container_controller.rb:154 -#: ../app/views/configuration/_ui_3.html.haml:10 -#: ../app/views/layouts/listnav/_show_list.html.haml:11 -msgid "Filters" -msgstr "Filtres" +msgid "Add a new System Image Type" +msgstr "Ajouter un nouveau type d'image système" -#: ../app/controllers/container_controller.rb:173 -msgid "%{model} \"%{name}\" (Summary)" -msgstr "%{model} \"%{name}\" (résumé)" +msgid "Add a new Tab to this Dialog" +msgstr "Ajouter un nouvel Onglet à ce Dialogue" -#: ../app/controllers/container_controller.rb:188 -msgid " (Names with \"%{text}\")" -msgstr " (Noms avec \"%{text}\")" +msgid "Add a new Time Profile" +msgstr "Ajouter un nouveau profil temporel" -#: ../app/controllers/container_controller.rb:202 -#: ../app/controllers/service_controller.rb:228 -msgid "Edit Tags for %{model}" -msgstr "Modifier les balises pour %{model}" +msgid "Add a new User" +msgstr "Ajouter un nouvel utilisateur" -#: ../app/controllers/container_image_controller.rb:14 -#: ../app/controllers/host_controller.rb:241 -#: ../app/helpers/container_summary_helper.rb:108 -#: ../app/helpers/host_helper/textual_summary.rb:437 -#: ../app/views/layouts/listnav/_host.html.haml:218 -msgid "Packages" -msgstr "Packages" +msgid "Add a new VM Analysis Profile" +msgstr "Ajouter un nouveau Profil d''Analyse de VM" -#: ../app/controllers/dashboard_controller.rb:173 -msgid "Add this Menu Widget" -msgstr "Ajouter ce composant d'interface de menu" +msgid "Add a new Widget" +msgstr "Ajouter un nouveau Widget" -#: ../app/controllers/dashboard_controller.rb:174 -msgid "Add this RSS Feed Widget" -msgstr "Ajouter ce composant d'interface de flux RSS" +msgid "Add a new Zone" +msgstr "Ajouter une nouvelle Zone" -#: ../app/controllers/dashboard_controller.rb:175 -msgid "Add this Chart Widget" -msgstr "Ajouter ce composant d'interface de graphique" +msgid "Add a new tier" +msgstr "Ajouter un nouveau niveau" -#: ../app/controllers/dashboard_controller.rb:176 -msgid "Add this Report Widget" -msgstr "Ajouter ce composant d'interface de rapport" +msgid "Add a widget" +msgstr "Ajouter un widget" -#: ../app/controllers/dashboard_controller.rb:326 -msgid "The widget \"%{widget_name}\" is already part of the edited dashboard" -msgstr "" -"Le composant graphique \"%{widget_name}\" fait déjà partie du tableau de bord mo" -"difié" +msgid "Add child Tenant to this Tenant" +msgstr "Ajouter un locataire enfant à ce locataire" -#: ../app/controllers/dashboard_controller.rb:349 -msgid "Session was timed out due to inactivity. Please log in again." -msgstr "La session a expiré pour cause d'inactivité. Reconnectez-vous." +msgid "Add folder to selected Accordion" +msgstr "Ajouter un dossier à l'accordéon sélectionné" -#: ../app/controllers/dashboard_controller.rb:477 -#: ../app/services/user_validation_service.rb:25 -msgid "Error: Authentication failed" -msgstr "Erreur : échec de l'authentification" +msgid "Add new Time Profile" +msgstr "Ajouter un nouveau profil temporel" -#: ../app/controllers/dashboard_controller.rb:600 -msgid "Press your browser's Back button or click a tab to continue" -msgstr "Appuyez sur la touche Retour arrière ou cliquez sur un onglet pour continuer" +msgid "Add of %{model} was cancelled by the user" +msgstr "L''ajout de %{model} a été annulé par l''utilisateur" -#: ../app/controllers/dashboard_controller.rb:616 -msgid "Download this Timeline data in %{typ} format" -msgstr "Télécharger ces éléments de chronologie au format %{typ}" +msgid "Add of %{provider} was cancelled by the user" +msgstr "" -#: ../app/controllers/dashboard_controller.rb:690 -msgid "%{name} dashboard for user %{id} in group id %{current_group_id}" -msgstr "%{name} tableau de bord %{id} pour groupe d''ID %{current_group_id}" +msgid "Add of Catalog Item was cancelled by the user" +msgstr "" -#: ../app/controllers/dashboard_controller.rb:741 -msgid "Error building timeline %{error_message}" -msgstr "Erreur lors de la création de la chronologie %{error_message}" +msgid "Add of new %{model_name} was cancelled by the user" +msgstr "L''ajout d''un nouveau %{model_name} a été annulé par l''utilisateur" -#: ../app/controllers/ems_cluster_controller.rb:29 -#: ../app/controllers/vm_common.rb:246 -msgid " (Summary)" -msgstr " (Résumé)" +msgid "Add of new %{models} was cancelled by the user" +msgstr "L''ajout de nouveaux %{models} ont été annulés par l''utilisateur" -#: ../app/controllers/ems_cluster_controller.rb:34 -msgid " (All VMs - Tree View)" -msgstr " (Toutes les MV - Vue Arborescente)" +msgid "Add of new %{model} was cancelled by the user" +msgstr "L''ajout d''un nouveau %{model} a été annulé par l''utilisateur" -#: ../app/controllers/ems_cluster_controller.rb:43 -msgid " (All VMs)" -msgstr " (Toutes les MV)" +msgid "Add of new %{name} was cancelled by the user" +msgstr "L''ajout d''un nouveau %{name} a été annulé par l''utilisateur" -#: ../app/controllers/ems_cluster_controller.rb:50 -msgid " (Direct %{title})" -msgstr " (Direct %{title})" +msgid "Add of new %{provider} was cancelled by the user" +msgstr "L'ajout d'un nouveau %{provider} a été annulé par l'utilisateur" -#: ../app/controllers/ems_cluster_controller.rb:63 -msgid " (All Resource Pools)" -msgstr " (Toutes les ressources en commun )" +msgid "Add of new %{record} was cancelled by the user" +msgstr "L''ajout d''un nouveau %{record} a été annulé par l''utilisateur" -#: ../app/controllers/ems_cluster_controller.rb:88 -msgid " (All Descendant %{table}(s))" -msgstr " (Tout les Descendants %{table}(s))" +msgid "Add of new %{table} was cancelled by the user" +msgstr "L''ajout d''un nouveau %{table} a été annulé par l''utilisateur" -#: ../app/controllers/ems_cluster_controller.rb:95 -#: ../app/controllers/ems_cluster_controller.rb:102 -#: ../app/controllers/ems_cluster_controller.rb:109 -#: ../app/controllers/ems_cluster_controller.rb:116 -#: ../app/controllers/storage_controller.rb:94 -#: ../app/controllers/vm_common.rb:313 -msgid " (All %{tables})" -msgstr " (Toutes %{tables})" - -#: ../app/controllers/ems_cluster_controller.rb:216 -#: ../app/controllers/infra_networking_controller.rb:233 -msgid "%{name} (All %{titles})" -msgstr "%{name} (Tous%{titles})" +msgid "Add of new %{type} Request was cancelled by the user" +msgstr "L''ajout d''une nouvelle requête %{type} a été annulée par l''utilisateur" -#: ../app/controllers/ems_cluster_controller.rb:224 -#: ../app/controllers/infra_networking_controller.rb:241 -msgid "Hosts with running %{name}" -msgstr "Hôtes avec %{name} en cours d'exécution" +msgid "Add of new Catalog Bundle was cancelled by the user" +msgstr "L''ajout d''un nouveau Bundle de Catalogues été annulé par l''utilisateur" -#: ../app/controllers/ems_cluster_controller.rb:227 -#: ../app/controllers/infra_networking_controller.rb:244 -msgid "Hosts with failed %{name}" -msgstr "Hôtes avec %{name} en échec" +msgid "Add of new Cloud Network was cancelled by the user" +msgstr "" -#: ../app/controllers/ems_cluster_controller.rb:230 -#: ../app/controllers/infra_networking_controller.rb:247 -msgid "All %{titles} with %{name}" -msgstr "Tout %{titles} avec %{name}" +msgid "Add of new Cloud Tenenat was cancelled by the user" +msgstr "" -#: ../app/controllers/ems_common.rb:5 -msgid " (Properties)" -msgstr "(Propriétés)" +msgid "Add of new Dashboard was cancelled by the user" +msgstr "L''ajout d''un nouveau Dashboard été annulé par l''utilisateur" -#: ../app/controllers/ems_common.rb:10 -msgid " (VMs & Templates)" -msgstr " (MV & Modèles)" - -#: ../app/controllers/ems_common.rb:13 -msgid " (Hosts & Clusters)" -msgstr " (Hôtes & Clusters)" +msgid "Add of new Floating IP was cancelled by the user" +msgstr "" -#: ../app/controllers/ems_common.rb:36 -msgid " (Dashboard)" -msgstr " (Dashboard)" +msgid "Add of new Router was cancelled by the user" +msgstr "L'ajout d'un nouveau router a été annulé par l'utilisateur" -#: ../app/controllers/ems_common.rb:42 ../app/controllers/ems_common.rb:506 -msgid " (Ad hoc Metrics)" +msgid "Add of new Security Group was cancelled by the user" msgstr "" -#: ../app/controllers/ems_common.rb:48 -msgid " (Topology)" -msgstr " (Topologie)" +msgid "Add subfolder to selected folder" +msgstr "Ajouter un sous-dossier au dossier sélectionné" -#: ../app/controllers/ems_common.rb:60 -#: ../app/controllers/vm_cloud_controller.rb:160 -#: ../app/controllers/vm_common.rb:1250 -#: ../app/presenters/menu/default_menu.rb:53 -#: ../app/views/configuration/_ui_2.html.haml:175 -#: ../app/views/layouts/listnav/_availability_zone.html.haml:28 -#: ../app/views/layouts/listnav/_cloud_network.html.haml:25 -#: ../app/views/layouts/listnav/_cloud_subnet.html.haml:25 -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:35 -#: ../app/views/layouts/listnav/_flavor.html.haml:31 -#: ../app/views/layouts/listnav/_host_aggregate.html.haml:28 -#: ../app/views/layouts/listnav/_load_balancer.html.haml:25 -#: ../app/views/layouts/listnav/_network_router.html.haml:25 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:38 -#: ../app/views/layouts/listnav/_security_group.html.haml:25 -#: ../app/views/miq_ae_class/_all_tabs.html.haml:8 -#: ../app/views/miq_ae_class/_all_tabs.html.haml:35 -#: ../app/views/miq_ae_class/_class_instances.html.haml:5 -#: ../app/views/miq_ae_class/_class_props.html.haml:68 -msgid "Instances" -msgstr "Instances" +msgid "Add tags individually for each VM or select multiple rows and edit tags as a group." +msgstr "Ajoutez des balises séparément pour chaque machine virtuelle ou sélectionnez plusieurs lignes et modifiez des balises sous la forme d'un groupe." -#: ../app/controllers/ems_common.rb:63 -msgid "Block Storage Managers" +msgid "Add tags to view available metrics" msgstr "" -#: ../app/controllers/ems_common.rb:66 -msgid "Object Storage Managers" -msgstr "" +msgid "Add this %{provider}" +msgstr "Ajouter ce %{provider}" -#: ../app/controllers/ems_common.rb:69 -#: ../app/controllers/storage_manager_controller.rb:486 -#: ../app/helpers/ems_cloud_helper/textual_summary.rb:106 -#: ../app/presenters/menu/default_menu.rb:209 -#: ../app/views/configuration/_ui_2.html.haml:269 -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:132 -msgid "Storage Managers" -msgstr "Gestionnaires de stockage" +msgid "Add this Chart Widget" +msgstr "Ajouter ce composant d'interface de graphique" -#: ../app/controllers/ems_common.rb:73 -#: ../app/presenters/menu/default_menu.rb:54 -#: ../app/views/configuration/_ui_2.html.haml:175 -msgid "Stacks" -msgstr "Piles" +msgid "Add this LDAP Server" +msgstr "Ajouter ce Serveur LDAP" -#: ../app/controllers/ems_common.rb:75 -msgid "Cloud Object Store Containers" -msgstr "" +msgid "Add this Menu Widget" +msgstr "Ajouter ce composant d'interface de menu" -#: ../app/controllers/ems_common.rb:77 -msgid "Container Replicators" -msgstr "Réplicateurs de conteneurs" +msgid "Add this RSS Feed Widget" +msgstr "Ajouter ce composant d'interface de flux RSS" -#: ../app/controllers/ems_common.rb:78 -#: ../app/presenters/menu/default_menu.rb:104 -msgid "Container Nodes" -msgstr "Nœuds de conteneur" +msgid "Add this Report Widget" +msgstr "Ajouter ce composant d'interface de rapport" -#: ../app/controllers/ems_common.rb:80 -#: ../app/presenters/menu/default_menu.rb:100 -msgid "Container Services" -msgstr "Services de conteneur" +msgid "Add this Storage Manager" +msgstr "Ajouter ce Gestionnaire de stockage." -#: ../app/controllers/ems_common.rb:81 -#: ../app/presenters/menu/default_menu.rb:108 -msgid "Container Images" -msgstr "Images du conteneur" +msgid "Add this entry" +msgstr "Ajouter cette entrée" -#: ../app/controllers/ems_common.rb:82 -msgid "Container Routes" -msgstr "Itinéraires de conteneur" +msgid "Adding a new %{alerts}" +msgstr "Ajout d''une nouvelle %{alerts}" -#: ../app/controllers/ems_common.rb:83 -#: ../app/presenters/menu/default_menu.rb:106 -msgid "Container Builds" -msgstr "Compilations du conteneur" +msgid "Adding a new %{model_name} %{mode} Policy" +msgstr "Ajout d''une nouvelle Stratégie %{model_name} %{mode}" -#: ../app/controllers/ems_common.rb:84 -msgid "Container Projects" -msgstr "Projets de conteneur" +msgid "Adding a new %{model_name} Policy" +msgstr "Ajout d''une nouvelle Stratégie %{model_name} " -#: ../app/controllers/ems_common.rb:85 -msgid "Container Image Registries" -msgstr "Registres d'images du conteneur" +msgid "Adding a new %{models}" +msgstr "Ajout d''un nouveau %{models}" -#: ../app/controllers/ems_common.rb:86 -#: ../app/presenters/menu/default_menu.rb:109 -msgid "Container Templates" -msgstr "Modèles de conteneur" +msgid "Adding a new %{model}" +msgstr "Ajout d''un nouveau %{model}" -#: ../app/controllers/ems_common.rb:87 -#: ../app/presenters/menu/default_menu.rb:49 -#: ../app/views/cloud_topology/show.html.haml:52 -#: ../app/views/configuration/_ui_2.html.haml:175 -msgid "Availability Zones" -msgstr "Zones de disponibilité" +msgid "Adding a new %{name}" +msgstr "Ajout d''un nouveau %{name}" -#: ../app/controllers/ems_common.rb:88 -#: ../app/controllers/host_aggregate_controller.rb:20 -#: ../app/presenters/menu/default_menu.rb:50 -#: ../app/views/configuration/_ui_2.html.haml:175 -msgid "Host Aggregates" -msgstr "Agrégats d'hôtes" +msgid "Adding a new %{record}" +msgstr "Ajout d''un nouveau %{record}" -#: ../app/controllers/ems_common.rb:89 -#: ../app/views/configuration/_ui_2.html.haml:146 -msgid "Middleware Servers" -msgstr "Serveurs de middleware" +msgid "Adding a new %{snapshot}" +msgstr "Ajout d''un nouveau %{snapshot}" -#: ../app/controllers/ems_common.rb:90 -#: ../app/views/configuration/_ui_2.html.haml:146 -msgid "Middleware Deployments" -msgstr "Déploiements de middleware" +msgid "Adding a new %{tenant}" +msgstr "Ajout d'un nouveau %{tenant}" -#: ../app/controllers/ems_common.rb:91 -#: ../app/views/configuration/_ui_2.html.haml:146 -msgid "Middleware Datasources" -msgstr "Sources de données de middleware" +msgid "Adding a new Button" +msgstr "Ajout d''un nouveau Bouton" -#: ../app/controllers/ems_common.rb:92 -#: ../app/views/configuration/_ui_2.html.haml:146 -msgid "Middleware Domains" -msgstr "Domaines de middleware" +msgid "Adding a new Button Group" +msgstr "Ajout d''un nouveau Groupe de Boutons" -#: ../app/controllers/ems_common.rb:93 -#: ../app/views/configuration/_ui_2.html.haml:146 -msgid "Middleware Server Groups" -msgstr "Groupes de serveurs de middleware" +msgid "Adding a new Catalog Bundle" +msgstr "Ajout d'un nouveau regroupement de catalogues" -#: ../app/controllers/ems_common.rb:94 -msgid "Middleware Messagings" -msgstr "Messageries de middleware" +msgid "Adding a new Category" +msgstr "Ajout d'une nouvelle catégorie" -#: ../app/controllers/ems_common.rb:95 -#: ../app/views/cloud_topology/show.html.haml:71 -#: ../app/views/network_topology/show.html.haml:147 -msgid "Cloud Tenants" -msgstr "Locataires cloud" +msgid "Adding a new Mapping" +msgstr "Ajouter un nouveau Mappage" -#: ../app/controllers/ems_common.rb:97 -#: ../app/presenters/menu/default_menu.rb:52 -#: ../app/views/configuration/_ui_2.html.haml:175 -msgid "Flavors" -msgstr "Gabarits" +msgid "Adding a new Orchestration Template" +msgstr "Ajout d'un nouveau modèle d'orchestration" -#: ../app/controllers/ems_common.rb:98 ../app/controllers/vm_common.rb:505 -#: ../app/helpers/ems_network_helper/textual_summary.rb:63 -#: ../app/presenters/menu/default_menu.rb:142 -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:28 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:46 -#: ../app/views/network_topology/show.html.haml:71 -msgid "Security Groups" -msgstr "Groupes de sécurité" +msgid "Adding a new Service Dialog from \"%{name}\"" +msgstr "Ajout d'une nouvelle boîte de dialogue de service à partir de \"%{name}\"" -#: ../app/controllers/ems_common.rb:99 ../app/controllers/vm_common.rb:509 -#: ../app/helpers/ems_network_helper/textual_summary.rb:67 -#: ../app/presenters/menu/default_menu.rb:143 -msgid "Floating IPs" -msgstr "IP flottantes" +msgid "Adding a new Service Dialog from Orchestration Template \"%{name}\"" +msgstr "Ajout d'une nouvelle boîte de dialogue de service à partir du modèle d'orchestration \"%{name}\"" -#: ../app/controllers/ems_common.rb:100 -#: ../app/helpers/ems_network_helper/textual_summary.rb:71 -#: ../app/presenters/menu/default_menu.rb:141 -#: ../app/views/network_topology/show.html.haml:128 -msgid "Network Routers" -msgstr "Routeurs réseau" +msgid "Adding a new dashboard" +msgstr "Ajout d'un nouveau tableau de bord" -#: ../app/controllers/ems_common.rb:101 -#: ../app/helpers/ems_network_helper/textual_summary.rb:75 -#: ../app/presenters/menu/default_menu.rb:144 -msgid "Network Ports" -msgstr "Ports réseau" +msgid "Adding copy of '%{description}'" +msgstr "Ajout d'une copie de '%{description}'" -#: ../app/controllers/ems_common.rb:102 -#: ../app/helpers/ems_network_helper/textual_summary.rb:86 -#: ../app/views/network_topology/show.html.haml:33 -msgid "Cloud Subnets" -msgstr "Sous-réseaux de Cloud" +msgid "Adhoc DB Backup at %{time}" +msgstr "Sauvegarde de base de données ad hoc à %{time}" -#: ../app/controllers/ems_common.rb:103 -#: ../app/controllers/orchestration_stack_controller.rb:71 -#: ../app/helpers/ems_network_helper/textual_summary.rb:83 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:52 -#: ../app/views/network_topology/show.html.haml:109 -msgid "Cloud Networks" -msgstr "Réseaux Cloud" +msgid "Admin Password" +msgstr "Mot de passe d'administrateur" -#: ../app/controllers/ems_common.rb:104 ../app/controllers/vm_common.rb:533 -#: ../app/helpers/ems_network_helper/textual_summary.rb:79 -#: ../app/presenters/menu/default_menu.rb:145 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:338 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:43 -msgid "Load Balancers" -msgstr "Équilibreurs de charge" +msgid "Admin Role Filter:" +msgstr "Filtre du Rôle Admin" -#: ../app/controllers/ems_common.rb:105 -msgid "Managed Datastores" -msgstr "Magasins de données" +msgid "Administrative State" +msgstr "État administratif" -#: ../app/controllers/ems_common.rb:107 -#: ../app/controllers/persistent_volume_controller.rb:12 -#: ../app/helpers/cloud_tenant_helper/textual_summary.rb:55 -#: ../app/presenters/menu/default_menu.rb:105 -#: ../app/presenters/menu/default_menu.rb:166 -#: ../app/views/configuration/_ui_2.html.haml:175 -#: ../app/views/container_group/_main.html.haml:15 -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:49 -#: ../app/views/shared/views/_prov_dialog.html.haml:82 -msgid "Volumes" -msgstr "Volumes" +msgid "Advanced" +msgstr "Avancé" -#: ../app/controllers/ems_common.rb:108 -msgid "Managed Hosts" -msgstr "Hôtes gérés" +msgid "Advanced Search" +msgstr "Recherché avancée" -#: ../app/controllers/ems_common.rb:151 -msgid " (All %{title})" -msgstr " (Tout %{title})" +msgid "Advanced Setting" +msgid_plural "Advanced Settings" +msgstr[0] "Paramètre avancé" +msgstr[1] "Paramètres avancés" -#: ../app/controllers/ems_common.rb:168 ../app/controllers/ems_common.rb:202 -msgid "Add New %{table}" -msgstr "Ajouter une nouvelle %{table}" +msgid "Advanced Settings" +msgstr "Paramètres avancés" -#: ../app/controllers/ems_common.rb:179 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:118 -#: ../app/controllers/storage_manager_controller.rb:69 -#: ../app/controllers/storage_manager_controller.rb:74 -#: ../app/controllers/storage_manager_controller.rb:99 -msgid "Type is required" -msgstr "Le type est obligatoire" +msgid "Affected Items" +msgstr "Items Affectés" -#: ../app/controllers/ems_common.rb:183 ../app/controllers/ems_common.rb:693 -msgid "Realm is required" -msgstr "Le royaume est obligatoire" +msgid "Affected VMs" +msgstr "VM impactées" -#: ../app/controllers/ems_common.rb:225 -msgid "Edit %{object_type} '%{object_name}'" +msgid "Age" msgstr "" -#: ../app/controllers/ems_common.rb:327 -#: ../app/controllers/mixins/ems_common_angular.rb:46 -msgid "Edit %{table} '%{name}'" -msgstr "Modifier %{table} '%{name}'" - -#: ../app/controllers/ems_common.rb:363 -#: ../app/controllers/host_controller.rb:297 -#: ../app/controllers/host_controller.rb:420 -#: ../app/controllers/mixins/ems_common_angular.rb:63 -#: ../app/controllers/ops_controller/settings/ldap.rb:148 -#: ../app/controllers/ops_controller/settings/rhn.rb:177 -#: ../app/controllers/provider_foreman_controller.rb:237 -#: ../app/controllers/storage_manager_controller.rb:111 -#: ../app/controllers/storage_manager_controller.rb:198 -msgid "Credential validation was successful" -msgstr "La validation des données d'identification a réussi" +msgid "Agent Address" +msgstr "Adresse de l'agent" -#: ../app/controllers/ems_common.rb:365 -#: ../app/controllers/mixins/ems_common_angular.rb:65 -#: ../app/controllers/provider_foreman_controller.rb:235 -msgid "Credential validation was not successful: %{details}" -msgstr "La validation des données d'identification a échoué : %{details}" +msgid "Agent Port" +msgstr "Port de l'agent" -#: ../app/controllers/ems_common.rb:521 -msgid "" -"Re-checking Authentication status for this %{controller_name} was not successf" -"ul: %{details}" -msgstr "" -"Échec de la revérification du statut d'authentification pour ce %{controller_n" -"ame}: %{details}" +msgid "Agent Type" +msgstr "Type d''Agent" -#: ../app/controllers/ems_common.rb:528 -msgid "" -"Re-checking Authentication status for the selected %{controller_name} %{name} " -"was not successful: %{details}" -msgstr "" -"Échec de la revérification du statut d'authentification pour le %{controller_n" -"ame} %{name} : %{details}" +msgid "Aggregate %{title} CPU Cores" +msgstr "Cœurs de processeur de l'agrégat %{title}" -#: ../app/controllers/ems_common.rb:534 -msgid "" -"Authentication status will be saved and workers will be restarted for the sele" -"cted %{controller_name}" -msgstr "" -"L'état de l'authentification sera enregistré et les workers redémarreront pour" -" le %{controller_name} sélectionné" +msgid "Aggregate %{title} CPU Resources" +msgstr "Ressources de processeur de l'agrégat %{title}" -#: ../app/controllers/ems_common.rb:576 -msgid "No %{record} were selected for %{task}" -msgstr "" +msgid "Aggregate %{title} CPUs" +msgstr "Processeurs de l'agrégat %{title} " -#: ../app/controllers/ems_common.rb:590 -#: ../app/helpers/ems_cloud_helper/textual_summary.rb:149 -msgid "Arbitration Profiles" -msgstr "Profils d'arbitrage" +msgid "Aggregate %{title} Memory" +msgstr "Mémoire de l'agrégat %{title}" -#: ../app/controllers/ems_common.rb:609 ../app/controllers/ems_common.rb:617 -msgid "%{name} (Arbitration Profiles)" -msgstr "%{name} (Profils d'arbitrage)" +msgid "Aggregate Node CPU Cores" +msgstr "Cœurs de processeur du nœud d'agrégat" -#: ../app/controllers/ems_common.rb:627 -msgid "Delete initiated for %{count_model} from the Database" -msgstr "Supprimer l'élément lancé pour %{count_model} à partir de la base de données" +msgid "Aggregate Node Memory" +msgstr "Mémoire du nœud d'agrégat" -#: ../app/controllers/ems_common.rb:638 ../app/controllers/ems_common.rb:1054 -msgid "No %{record} were selected for deletion" -msgstr "Aucun %{record} sélectionné à supprimer" +msgid "Aggregated Node Utilization" +msgstr "Utilisation du nœud agrégé" -#: ../app/controllers/ems_common.rb:702 -msgid "C & U Database Login Password and Verify Password fields do not match" +msgid "Alert Profile \"%{alert_profile}\" assignments successfully saved" msgstr "" -"Les champs de connexion à la base de données C & U Mot de passe et Vérifier le" -" mot de passe ne correspondent pas" -#: ../app/controllers/ems_common.rb:706 -msgid "Default Host VNC Port Range Start must be numeric" -msgstr "" -"La valeur de début de la plage de ports VNC de l'hôte par défaut doit être num" -"érique" +msgid "Alert Profiles" +msgstr "Profils d''Alerte" -#: ../app/controllers/ems_common.rb:709 -msgid "Default Host VNC Port Range End must be numeric" -msgstr "" -"La valeur de fin de la plage de ports VNC de l'hôte par défaut doit être numér" -"ique" +msgid "Alert Selection" +msgstr "Sélection d''Alerte" -#: ../app/controllers/ems_common.rb:715 -msgid "" -"To configure the Host Default VNC Port Range, both start and end ports are req" -"uired" -msgstr "" -"Pour configurer la plage de ports VNC par défaut de l'hôte, les ports de début" -" et de fin sont obligatoires" +msgid "Alerts" +msgstr "Alertes" -#: ../app/controllers/ems_common.rb:720 -msgid "" -"The Host Default VNC Port Range ending port must be equal to or higher than th" -"e starting point" -msgstr "" -"Le port de fin de la plage de ports VNC par défaut de l'hôte doit être identiq" -"ue ou supérieur au point de départ" +msgid "Alerts referenced by Actions can not be deleted" +msgstr "Les alertes référencées par des actions ne peuvent pas être supprimées" -#: ../app/controllers/ems_common.rb:829 ../app/controllers/ems_common.rb:908 -msgid "Basic (SSL)" -msgstr "De base (SSL)" +msgid "Alerts that belong to Alert Profiles can not be deleted" +msgstr "Les alertes appartenant à des profils d'alerte ne peuvent pas être supprimées" -#: ../app/controllers/ems_common.rb:864 ../app/controllers/ems_common.rb:877 -msgid "Non-SSL" -msgstr "Non SSL" +msgid "Alerts to Evaluate" +msgstr "Alertes à Evaluer" -#: ../app/controllers/ems_common.rb:864 -msgid "SSL" -msgstr "SSL" +msgid "All" +msgstr "Tout" -#: ../app/controllers/ems_common.rb:864 -msgid "SSL without validation" -msgstr "SSL sans validation" +msgid "All %{dialogs}" +msgstr "Tout %{dialogs}" -#: ../app/controllers/ems_common.rb:995 -msgid "%{task} initiated for %{count} %{model} from the %{product} Database" -msgid_plural "%{task} initiated for %{count} %{models} from the %{product} Database" -msgstr[0] "" -"%{task} lancée pour %{count} %{model} à partir de la base de données %{product" -"}" -msgstr[1] "" -"%{task} lancée pour %{count} %{models} à partir de la base de données %{produc" -"t}" +msgid "All %{items}" +msgstr "Tout %{items}" -#: ../app/controllers/ems_common.rb:1003 -msgid "'%{task}' successfully initiated for %{table}" -msgstr "'%{task}' démarrée pour %{table}" +msgid "All %{models}" +msgstr "Tous %{models}" -#: ../app/controllers/ems_common.rb:1011 -msgid "[%{name}] Record delete initiated" -msgstr "[%{name}] Démarrage de la suppression de l'enregistrement" +msgid "All %{model} - %{group}" +msgstr "Tous %{model} - %{group}" -#: ../app/controllers/ems_common.rb:1034 -#: ../app/controllers/storage_manager_controller.rb:451 -msgid "%{name}: Error during '%{task}': %{message}" -msgstr "%{name}: Erreur durant '%{task}': %{message}" +msgid "All %{records}" +msgstr "Tout %{records}" -#: ../app/controllers/ems_common.rb:1040 -#: ../app/controllers/storage_manager_controller.rb:465 -msgid "%{name}: '%{task}' successfully initiated" -msgstr "%{name}: '%{task}' initialisée" +msgid "All %{reports}" +msgstr "Tous les %{reports}" -#: ../app/controllers/ems_common.rb:1087 -msgid "No %{model} were selected for scanning" -msgstr "Aucun %{model} sélectionné à scanner" +msgid "All %{tables}" +msgstr "Tout %{tables}" -#: ../app/controllers/ems_common.rb:1090 ../app/controllers/ems_common.rb:1105 -msgid "Analysis initiated for %{count} %{model} from the %{product} Database" -msgid_plural "Analysis initiated for %{count} %{models} from the %{product} Database" -msgstr[0] "" -"Analyse lancée pour %{count} %{model} à partir de la base de données %{product" -"}" -msgstr[1] "" -"Analyse lancée pour %{count} %{models} à partir de la base de données %{produc" -"t}" +msgid "All %{titles} with %{name}" +msgstr "Tout %{titles} avec %{name}" -#: ../app/controllers/ems_common.rb:1128 -msgid "No %{model} were selected for refresh" -msgstr "Aucun %{model} n'était sélectionné pour actualisation" +msgid "All %{title}" +msgstr "Tout %{title}" -#: ../app/controllers/ems_common.rb:1131 ../app/controllers/ems_common.rb:1146 -msgid "Refresh initiated for %{count} %{model} from the %{product} Database" -msgid_plural "Refresh initiated for %{count} %{models} from the %{product} Database" -msgstr[0] "" -"Actualisation lancée pour %{count} %{model} à partir de la base de données %{p" -"roduct}" -msgstr[1] "" -"Actualisation lancée pour %{count} %{models} à partir de la base de données %{" -"product}" - -#: ../app/controllers/ems_infra_controller.rb:40 -#: ../app/views/ems_infra/scaling.html.haml:59 -msgid "Scale Infrastructure Provider" -msgstr "Moduler le fournisseur d'infrastructure" - -#: ../app/controllers/ems_infra_controller.rb:46 -#: ../app/controllers/ems_infra_controller.rb:87 -msgid "Orchestration stack could not be found." -msgstr "La pile d'orchestration est introuvable." +msgid "All %{title} " +msgstr "Tous %{title} " -#: ../app/controllers/ems_infra_controller.rb:59 -msgid "Assigning %{hosts} but only have %{hosts_count} hosts available." -msgstr "Affectation de %{hosts}, mais %{hosts_count} hôtes seulement sont disponibles." +msgid "All %{title} Configured Systems" +msgstr "Tous les systèmes configurés %{title}" -#: ../app/controllers/ems_infra_controller.rb:62 -msgid "Scaling" -msgstr "Modulation" +msgid "All %{title} Providers" +msgstr "Tous les fournisseurs %{title}" -#: ../app/controllers/ems_infra_controller.rb:65 -msgid " %{name} from %{value} to %{parameters} " -msgstr " %{name} de %{value} à %{parameters} " +msgid "All %{typ} %{model}" +msgstr "Tout %{typ} %{model}" -#: ../app/controllers/ems_infra_controller.rb:81 -#: ../app/views/ems_infra/scaledown.html.haml:89 -msgid "Scale Infrastructure Provider Down" -msgstr "Réduire le fournisseur d'infrastructure" +msgid "All %{typ} Alert Profiles" +msgstr "Tous les profils d'alerte %{typ}" -#: ../app/controllers/ems_infra_controller.rb:97 -msgid "No compute hosts were selected for scale down." -msgstr "Aucun hôte de calcul sélectionné pour la mise à l'échelle vers le bas." +msgid "All %{typ} Conditions" +msgstr "Toutes les conditions %{typ}" -#: ../app/controllers/ems_infra_controller.rb:111 -msgid " Scaling down to %{a} compute nodes" -msgstr " Réduction à %{a} noeuds de calcul" +msgid "All (%{number})" +msgstr "Tout (%{number})" -#: ../app/controllers/ems_infra_controller.rb:122 -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:23 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:38 -msgid "Register Nodes" -msgstr "Enregistrer des nœuds" +msgid "All Actions" +msgstr "Toutes les Actions" -#: ../app/controllers/ems_infra_controller.rb:128 -msgid "Please select a JSON file containing the nodes you would like to register." -msgstr "Sélectionnez un fichier JSON contenant les nœuds à enregistrer." +msgid "All Alert Profiles" +msgstr "Tous les Profils d''Alerte" -#: ../app/controllers/ems_infra_controller.rb:136 -msgid "JSON file format is incorrect, missing 'nodes'." -msgstr "Le format de fichier JSON est incorrect ; 'nœuds' manquants." +msgid "All Alerts" +msgstr "Toutes les Alertes" -#: ../app/controllers/ems_infra_controller.rb:139 -msgid "Cannot parse JSON file: %{message}" -msgstr "Impossible d'analyser le fichier JSON : %{message}" +msgid "All Ansible Tower Configured Systems" +msgstr "" -#: ../app/controllers/ems_infra_controller.rb:147 -msgid "Cannot connect to workflow service: %{message}" -msgstr "Impossible de se connecter au service de workflow : %{message}" +msgid "All Ansible Tower Job Templates" +msgstr "Tous les modèles de tâche Ansible Tower" -#: ../app/controllers/ems_infra_controller.rb:154 -msgid "Error executing register and configure workflows: %{message}" -msgstr "Erreur lors de l'enregistrement et la configuration des workflows : %{message}" +msgid "All Ansible Tower Providers" +msgstr "" -#: ../app/controllers/ems_infra_controller.rb:161 -msgid "Nodes were added successfully. Refresh queued." -msgstr "Les nœuds ont été ajoutés. Actualisez la file d'attente." +msgid "All Assignments" +msgstr "Toutes les Affectations" -#: ../app/controllers/ems_infra_controller.rb:163 -msgid "Unable to add nodes: %{error}" -msgstr "Impossible d'ajouter des nœuds : %{error}" +msgid "All Catalog Items" +msgstr "Tous les Éléments du Catalogue" -#: ../app/controllers/ems_infra_controller.rb:191 -msgid "Unable to update stack, obtaining of status failed: %{message}" -msgstr "" -"Impossible de mettre à jour la pile, le statut n'a pas pu être obtenu : %{mess" -"age}" +msgid "All Catalogs" +msgstr "Tous les Catalogues" -#: ../app/controllers/ems_infra_controller.rb:197 -msgid "Provider stack is not ready to be updated, another operation is in progress." -msgstr "" -"La pile de fournisseurs n'est pas prête à être mise à jour, une autre opératio" -"n est en cours." +msgid "All Chargeback Rates" +msgstr "Tous les taux de rétrofacturation" -#: ../app/controllers/ems_infra_controller.rb:207 -msgid "Unable to initiate scaling: %{message}" -msgstr "Impossible d'initier la mise à l'échelle : %{message}" +msgid "All Clusters" +msgstr "Tous les Clusters" -#: ../app/controllers/ems_infra_controller.rb:211 -msgid "A value must be changed or provider stack will not be updated." -msgstr "" -"Une valeur doit être modifiée, sans quoi la pile du fournisseur ne sera pas mi" -"se à jour." +msgid "All Clusters for %{table}" +msgstr "Tous les Clusters pour %{table}" -#: ../app/controllers/ems_infra_controller.rb:217 -msgid "Not all hosts can be removed from the deployment." -msgstr "Impossible de supprimer tous les hôtes du déploiement." +msgid "All Conditions" +msgstr "Toutes les Conditions" -#: ../app/controllers/ems_infra_controller.rb:222 -msgid " %{host_uid_ems} needs to be in maintenance mode before it can be removed " -msgstr "%{host_uid_ems} doit être en mode maintenance avant de pouvoir être désactivé" +msgid "All Configuration Management Providers" +msgstr "Tous les fournisseurs de gestion de configuration" -#: ../app/controllers/ems_infra_controller.rb:227 -msgid " %{host_uid_ems} needs to be evacuated before it can be removed " -msgstr " %{host_uid_ems} doit être évacué avant de pouvoir être supprimé " +msgid "All Configuration Manager Providers" +msgstr "Tous les fournisseurs de gestionnaires de configuration" -#: ../app/controllers/ems_infra_controller.rb:232 -msgid " %{host_uid_ems} is not a compute node " -msgstr "%{host_uid_ems} n'est pas un nœud de calcul" +msgid "All Configured Systems" +msgstr "Tous les Systèmes Configurés" -#: ../app/controllers/generic_object_controller.rb:11 -msgid "Generic Object Definition created successfully" -msgstr "Définition d'objet générique créée" +msgid "All Container Images" +msgstr "Tous les Conteneurs d''Images" -#: ../app/controllers/generic_object_controller.rb:51 -#: ../app/presenters/menu/default_menu.rb:224 -#: ../app/views/generic_object/explorer.html.haml:9 -msgid "Generic Objects" -msgstr "Objets génériques" +msgid "All Container Images for Containers Provider" +msgstr "Toutes les images de conteneur pour le fournisseur de conteneurs" -#: ../app/controllers/host_aggregate_controller.rb:173 -msgid "Create New %{model}" -msgstr "Créer un nouveau %{model}" +msgid "All Containers" +msgstr "Tous les Conteneurs" -#: ../app/controllers/host_aggregate_controller.rb:183 -msgid "Creation of new %{model} was cancelled by the user" -msgstr "La création d'un nouveau %{model} a été annulée par l'utilisateur" +msgid "All Containers (by Pods)" +msgstr "Tous les conteneurs (par pods)" -#: ../app/controllers/host_aggregate_controller.rb:195 -msgid "Host Aggregate creation failed: Task start failed: ID [%{id}]" +msgid "All Customization Templates - System Image Types" msgstr "" -"La création d'un agrégat de machines a échoué : échec de démarrage de la tâche" -" : ID [%{id}]" -#: ../app/controllers/host_aggregate_controller.rb:205 -msgid "Host Aggregates not supported by chosen provider" -msgstr "Agrégats d'hôtes non pris en charge par le fournisseur" +msgid "All Dashboards" +msgstr "Tous les Dashboards" -#: ../app/controllers/host_aggregate_controller.rb:265 -msgid "Edit of %{model} \"%{name}\" failed: Task start failed: ID [%{id}]" -msgstr "" -"La modification de %{model} \"%{name}\" a échoué : échec de démarrage de la tâch" -"e : ID [%{id}]" +msgid "All Datastore Clusters" +msgstr "Tous les clusters de magasins de données" -#: ../app/controllers/host_aggregate_controller.rb:279 -msgid "Update aggregate not supported by %{model} \"%{name}\"" -msgstr "La mise à jour d'agrégats n'est pas pris en charge par %{model} \"%{name}\"" +msgid "All Datastore customizations will be lost. Are you sure you want to reset all classes and instances to default?" +msgstr "Toutes les personnalisations de magasin de données seront perdues. Voulez-vous vraiment rétablir toutes les classes et instances par défaut ?" -#: ../app/controllers/host_aggregate_controller.rb:335 -msgid "Delete aggregate not supported by %{model} \"%{name}\"" -msgstr "la suppression d'hôtes n'est pas pris en charge par %{model} \"%{name}\"" +msgid "All Datastores" +msgstr "Tous les magasins de données" -#: ../app/controllers/host_aggregate_controller.rb:372 -msgid "No hosts available to add to %{model} \"%{name}\"" -msgstr "Aucuns hôtes disponibles à ajouter à %{model} \"%{name}\"" +msgid "All Datastores for %{table}" +msgstr "Tous les magasins de données pour %{table}" -#: ../app/controllers/host_aggregate_controller.rb:385 -msgid "Add Host to %{model} \"%{name}\"" -msgstr "L'ajout d'hôtes à %{model} \"%{name}\"" +msgid "All Datastores for Host" +msgstr "Tous les magasins de données pour l'hôte" -#: ../app/controllers/host_aggregate_controller.rb:398 -msgid "Add Host to %{model} \"%{name}\" was cancelled by the user" -msgstr "L'ajout d'un Hôte à %{model} \"%{name}\" a été annulé par l'utilisateur" +msgid "All Dialogs" +msgstr "Tous les Dialogues" -#: ../app/controllers/host_aggregate_controller.rb:411 -msgid "Add Host to %{model} \"%{name}\" failed: Task start failed: ID [%{id}]" +msgid "All Distributed Switches" +msgstr "Tous les commutateurs distribués" + +msgid "All EVM Grouops" msgstr "" -"L'ajout d'hôte au %{model} \"%{name}\" a échoué : échec de démarrage de la tâche" -" : ID [%{id}]" -#: ../app/controllers/host_aggregate_controller.rb:425 -msgid "Add Host not supported by %{model} \"%{name}\"" -msgstr "L'ajout d'hôtes n'est pas pris en charge par %{model} \"%{name}\"" +msgid "All Events" +msgstr "Tous les Evénements" -#: ../app/controllers/host_aggregate_controller.rb:444 -msgid "Host \"%{hostname}\" added to %{model} \"%{name}\"" -msgstr "Hôte \"%{hostname}\" ajouté à %{model} \"%{name}\"" +msgid "All Files" +msgstr "Tous les Fichiers" -#: ../app/controllers/host_aggregate_controller.rb:474 -msgid "No hosts to remove from %{model} \"%{name}\"" -msgstr "Aucuns hôtes à supprimer de %{model} \"%{name}\"" +msgid "All Groups" +msgstr "Tous les Groupes" -#: ../app/controllers/host_aggregate_controller.rb:487 -msgid "Remove Host from %{model} \"%{name}\"" -msgstr "Supprimer Hôte de %{model} \"%{name}\"" +msgid "All Hosts" +msgstr "Tous les Hôtes" -#: ../app/controllers/host_aggregate_controller.rb:500 -msgid "Remove Host from %{model} \"%{name}\" was cancelled by the user" -msgstr "La suppression d'un Hôte de %{model} \"%{name}\" a été annulée par l'utilisateur" +msgid "All Hosts for %{table}" +msgstr "Tous les Hôtes pour %{table}" -#: ../app/controllers/host_aggregate_controller.rb:513 -msgid "Remove Host to %{model} \"%{name}\" failed: Task start failed: ID [%{id}]" -msgstr "" -"La suppression d'hôtes de %{model} \"%{name}\" a échoué : échec de démarrage de " -"la tâche : ID [%{id}]" +msgid "All ISO Datastores" +msgstr "Tous les magasins de données ISO" -#: ../app/controllers/host_aggregate_controller.rb:527 -msgid "Remove Host not supported by %{model} \"%{name}\"" -msgstr "La suppression d'hôtes n'est pas prise en charge par %{model} \"%{name}\"" +msgid "All Images" +msgstr "Toutes les Images" -#: ../app/controllers/host_aggregate_controller.rb:546 -msgid "Host \"%{hostname}\" removed from %{model} \"%{name}\"" -msgstr "Hôte \"%{hostname}\" supprimé de %{model} \"%{name}\"" +msgid "All Images by Provider that I can see" +msgstr "Toutes les Images que je peux voir par Fournisseur" -#: ../app/controllers/host_aggregate_controller.rb:602 -msgid "Delete initiated for %{number} Host Aggregate." -msgid_plural "Delete initiated for %{number} Host Aggregates." -msgstr[0] "Supprimer l'élément lancé pour %{number} de l'agrégat d'hôtes." -msgstr[1] "Supprimer l'élément lancé pour %{number} des agrégats d'hôtes." +msgid "All Instances" +msgstr "Toutes les instances" -#: ../app/controllers/host_aggregate_controller.rb:608 -msgid "Host Aggregate" -msgstr "Agrégat de machines" +msgid "All Instances by Provider that I can see" +msgstr "Toutes les instances que je peux voir par Fournisseur" -#: ../app/controllers/host_controller.rb:37 -msgid "%{name} (Devices)" -msgstr "%{name} (Périphériques)" +msgid "All Object Types" +msgstr "Tous les types d'Objet" -#: ../app/controllers/host_controller.rb:41 -msgid "%{name} (OS Information)" -msgstr "%{name} (Information SE)" +msgid "All Orchestration Templates" +msgstr "Tous les Modèles d''Orchestration" -#: ../app/controllers/host_controller.rb:45 -msgid "%{name} (VM Monitor Information)" -msgstr "%{name} (Information surveillance MV)" +msgid "All Other Tasks" +msgstr "Toutes les autres Tâches" -#: ../app/controllers/host_controller.rb:49 -msgid "%{name} (Network)" -msgstr "%{name} (Réseau)" +msgid "All PXE Servers" +msgstr "Tous les Serveurs PXE" -#: ../app/controllers/host_controller.rb:80 -#: ../app/controllers/mixins/containers_common_mixin.rb:123 -msgid "%{name} (Latest Compliance Check)" -msgstr "%{name} (Dernier contrôle de conformité)" +msgid "All Policies" +msgstr "Toutes les Stratégies" -#: ../app/controllers/host_controller.rb:83 -#: ../app/controllers/mixins/containers_common_mixin.rb:127 -msgid "%{name} (Compliance History - Last %{number} Checks)" -msgstr "%{name} (Historique des conformités - Dernières %{number} vérifications)" +msgid "All Policy Profiles" +msgstr "Tous les Profiles de Stratégie" -#: ../app/controllers/host_controller.rb:89 -msgid "%{name} (Storage Adapters)" -msgstr "%{name} (Adaptateurs stockage)" +msgid "All Providers" +msgstr "" -#: ../app/controllers/host_controller.rb:103 -msgid "%{name} (All cloud tenants present on this host)" -msgstr "%{name} (Tous les locataires Cloud présents sur cet hôte)" +msgid "All RSS Feeds" +msgstr "Tous les Flux RSS" -#: ../app/controllers/host_controller.rb:109 -#: ../app/controllers/resource_pool_controller.rb:58 -msgid "%{name} (All Resource Pools)" -msgstr "%{name} (Tous pools de ressources)" +msgid "All Reports" +msgstr "Tous les rapports" -#: ../app/controllers/host_controller.rb:160 -#: ../app/controllers/vm_common.rb:501 -#: ../app/helpers/host_helper/textual_summary.rb:459 -#: ../app/helpers/textual_mixins/textual_filesystems.rb:4 -#: ../app/views/layouts/listnav/_host.html.haml:230 -msgid "Files" -msgstr "Fichiers" +msgid "All Saved Chargeback Reports" +msgstr "Tous les rapports de rétrofacturations enregistrés" -#: ../app/controllers/host_controller.rb:165 -msgid "Configuration files of nova service" -msgstr "Fichiers de configuration du service nova" +msgid "All Saved Reports" +msgstr "Tous les Rapports Sauvegardés" -#: ../app/controllers/host_controller.rb:197 -msgid "Running system services of %{name}" -msgstr "Exécution des services système de %{name}" +msgid "All Schedules" +msgstr "Tous les Plannings" -#: ../app/controllers/host_controller.rb:200 -msgid "Failed system services of %{name}" -msgstr "Services système de %{name} ayant échoué" +msgid "All Sections" +msgstr "Toutes les Sections" -#: ../app/controllers/host_controller.rb:203 -msgid "All system services of %{name}" -msgstr "Tous les services système de %{name}" +msgid "All Service Catalog Items" +msgstr "" -#: ../app/controllers/host_controller.rb:228 -#: ../app/views/host/_main.html.haml:33 -msgid "Cloud Services" -msgstr "Services cloud" +msgid "All Services" +msgstr "Tous les Services" -#: ../app/controllers/host_controller.rb:232 -#: ../app/controllers/vm_common.rb:476 -#: ../app/helpers/host_helper/textual_summary.rb:470 -#: ../app/helpers/textual_mixins/textual_advanced_settings.rb:4 -#: ../app/views/layouts/listnav/_host.html.haml:236 -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-summary.html.haml:17 -msgid "Advanced Settings" -msgstr "Paramètres avancés" +msgid "All Switches" +msgstr "Tous les commutateurs" -#: ../app/controllers/host_controller.rb:237 -#: ../app/helpers/host_helper/textual_summary.rb:409 -#: ../app/views/layouts/listnav/_host.html.haml:207 -#: ../app/views/security_group/_main.html.haml:20 -msgid "Firewall Rules" -msgstr "Règles de pare-feu" +msgid "All System Image Types" +msgstr "Tous les types d'images système" -#: ../app/controllers/host_controller.rb:258 -#: ../app/controllers/host_controller.rb:285 -msgid "Add New Host" -msgstr "Ajouter un Nouvel Hôte" +msgid "All Templates" +msgstr "Tous les Modèles" -#: ../app/controllers/host_controller.rb:309 -#: ../app/controllers/host_controller.rb:369 -#: ../app/controllers/host_controller.rb:386 -msgid "Edit Host '%{name}'" -msgstr "Modifier l'hôte '%{name}'" - -#: ../app/controllers/host_controller.rb:310 -msgid "Info/Settings" -msgstr "Infos/Paramètres" +msgid "All Templates & Images" +msgstr "Tous les Modèles & Images" -#: ../app/controllers/host_controller.rb:312 -msgid "Credentials/Settings" -msgstr "Données d'identification/Paramètres" +msgid "All Templates for %{table}" +msgstr "Tous les Modèles pour %{table}" -#: ../app/controllers/host_controller.rb:341 -msgid "Edit of credentials for selected %{models} was cancelled by the user" -msgstr "" -"La modification des informations d'identification pour les %{models} sélection" -"nés a été annulée par l'utilisateur" +msgid "All Templates for Host" +msgstr "Tous les Modèles pour l'Hôte" -#: ../app/controllers/host_controller.rb:384 -msgid "Credentials/Settings saved successfully" -msgstr "Données d'identification/Paramètres sauvegardés" +msgid "All Users" +msgstr "Tous les utilisateurs" -#: ../app/controllers/host_controller.rb:429 -#: ../app/controllers/miq_policy_controller.rb:949 -#: ../app/controllers/ops_controller.rb:755 -#: ../app/controllers/ops_controller/settings/schedules.rb:271 -msgid "[%{name}] Record added (" -msgstr "[%{name}] Enregistrement ajouté (" +msgid "All VM and Container Analysis Tasks" +msgstr "Toutes les tâches d'analyse de machine virtuelle et de conteneur" -#: ../app/controllers/host_controller.rb:431 -#: ../app/controllers/miq_policy_controller.rb:951 -#: ../app/controllers/ops_controller.rb:757 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:185 -#: ../app/controllers/ops_controller/settings/schedules.rb:273 -msgid "[%{name}] Record updated (" -msgstr "[%{name}] Enregistrement mis à jour (" +msgid "All VMDB Indexes" +msgstr "Tous les Index VMDB" -#: ../app/controllers/host_controller.rb:441 -#: ../app/controllers/ops_controller/settings/schedules.rb:283 -msgid "%{key} changed to %{value}" -msgstr "%{key} modifiée pour %{value}" +msgid "All VMs" +msgstr "Toutes les MV" -#: ../app/controllers/host_controller.rb:607 -msgid "Default Password and Verify Password fields do not match" -msgstr "" -"Les champs Mot de passe par défaut et Vérification du mot de passe ne correspo" -"ndent pas" +msgid "All VMs & Instances" +msgstr "Toutes les MV & Instances" -#: ../app/controllers/host_controller.rb:612 -msgid "" -"Default User ID must be entered if a Remote Login or Web Services User ID is e" -"ntered" -msgstr "" -"L'ID utilisateur par défaut doit être saisi si un ID d'utilisateur Services We" -"b ou Connexion distante est entré" +msgid "All VMs & Templates" +msgstr "Toutes les MV & Modèles" -#: ../app/controllers/host_controller.rb:617 -msgid "Remote Login Password and Verify Password fields do not match" -msgstr "" -"Les champs Mot de passe de connexion à distance et Vérifier le mot de passe ne" -" correspondent pas" +msgid "All VMs & Templates that I can see" +msgstr "Toutes les MV & Modèles que je peux voir" -#: ../app/controllers/host_controller.rb:622 -msgid "Web Services Password and Verify Password fields do not match" -msgstr "" -"Les champs Mot de passe des services Web et Vérifier le mot de passe ne corres" -"pondent pas" +msgid "All VMs (Tree View)" +msgstr "Toutes les MV (Vue arborescente)" -#: ../app/controllers/host_controller.rb:627 -msgid "IPMI Password and Verify Password fields do not match" -msgstr "Les champs Mot de passe IPMI et Vérifier le mot de passe ne correspondent pas" +msgid "All VMs for %{table}" +msgstr "Toutes les MV pour %{table}" -#: ../app/controllers/host_controller.rb:632 -msgid "Web Services Listen Port must be numeric" -msgstr "Le port d'écoute des services Web doit être numérique" +msgid "All VMs for Host" +msgstr "Toutes les MV pour l'Hôte" -#: ../app/controllers/host_controller.rb:636 -msgid "Log Wrap Size must be numeric and greater than zero" -msgstr "" -"La taille du renvoi à la ligne du journal doit être numérique et supérieur à z" -"éro" +msgid "All VMs/Instances" +msgstr "Toutes les machines virtuelles/instances" -#: ../app/controllers/infra_networking_controller.rb:38 -#: ../app/controllers/storage_controller.rb:49 -#: ../app/controllers/vm_common.rb:224 -msgid "User '%{username}' is not authorized to access '%{controller_name}'" -msgstr "" -"L'utilisateur '%{username}' n'est pas autorisé à accéder à '%{controller_name}" -"'" +msgid "All Widgets" +msgstr "Tous les Widgets" -#: ../app/controllers/infra_networking_controller.rb:55 -#: ../app/controllers/storage_controller.rb:73 -msgid "%{name} (All Registered Hosts)" -msgstr "%{name} (Tous hôtes enregistrés)" +msgid "All Zones" +msgstr "Toutes les Zones" -#: ../app/controllers/infra_networking_controller.rb:274 -msgid "Switches" -msgstr "Commutateurs" +msgid "All attributes" +msgstr "Tous les attributs" -#: ../app/controllers/infra_networking_controller.rb:331 -#: ../app/controllers/vm_common.rb:1291 -msgid "All %{title}" -msgstr "Tout %{title}" +msgid "All changes have been reset" +msgstr "Tous les champs ont été réinitialisés" -#: ../app/controllers/infra_networking_controller.rb:352 -#: ../app/controllers/infra_networking_controller.rb:369 -#: ../app/controllers/infra_networking_controller.rb:386 -msgid "Switches for %{model} \"%{name}\"" -msgstr "Commutateur pour %{model} \"%{name}\"" +msgid "All current subscriptions will be removed" +msgstr "Toutes les souscriptions en cours vont être supprimées" -#: ../app/controllers/infra_networking_controller.rb:393 -msgid "All %{title} " -msgstr "Tous %{title} " +msgid "All custom classes and instances have been reset to default" +msgstr "Toutes les classes personnalisées et les instances ont été réinitialisées" -#: ../app/controllers/infra_networking_controller.rb:400 -msgid "All Switches" -msgstr "Tous les commutateurs" +msgid "All of the Images that I can see" +msgstr "Toutes les Images que je peux consulter" -#: ../app/controllers/infra_networking_controller.rb:507 -msgid "%{action} \"%{item_name}\" for %{switch} \"%{name}\"" -msgstr "%{action} \"%{item_name}\" pour %{switch} \"%{name}\"" +msgid "All of the Instances that I can see" +msgstr "Toutes les Instances que je peux voir" -#: ../app/controllers/infra_networking_controller.rb:515 -msgid "\"%{action}\" for %{switch} \"%{name}\"" -msgstr "\"%{action}\" pour %{switch} \"%{name}\"" +msgid "All of the Templates & Images that I can see" +msgstr "Tous les Modèles & Images que je peux voir" -#: ../app/controllers/infra_networking_controller.rb:739 -#: ../app/controllers/provider_foreman_controller.rb:755 -#: ../app/helpers/application_helper/toolbar/auth_key_pair_cloud_center.rb:30 -#: ../app/helpers/application_helper/toolbar/auth_key_pair_clouds_center.rb:15 -#: ../app/helpers/application_helper/toolbar/availability_zone_center.rb:13 -#: ../app/helpers/application_helper/toolbar/availability_zones_center.rb:15 -#: ../app/helpers/application_helper/toolbar/cloud_network_center.rb:42 -#: ../app/helpers/application_helper/toolbar/cloud_networks_center.rb:55 -#: ../app/helpers/application_helper/toolbar/cloud_object_store_container_center.rb:13 -#: ../app/helpers/application_helper/toolbar/cloud_object_store_containers_center.rb:15 -#: ../app/helpers/application_helper/toolbar/cloud_object_store_object_center.rb:13 -#: ../app/helpers/application_helper/toolbar/cloud_object_store_objects_center.rb:15 -#: ../app/helpers/application_helper/toolbar/cloud_subnet_center.rb:42 -#: ../app/helpers/application_helper/toolbar/cloud_subnets_center.rb:54 -#: ../app/helpers/application_helper/toolbar/cloud_tenant_center.rb:33 -#: ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:47 -#: ../app/helpers/application_helper/toolbar/cloud_volume_backup_center.rb:13 -#: ../app/helpers/application_helper/toolbar/cloud_volume_backups_center.rb:15 -#: ../app/helpers/application_helper/toolbar/cloud_volume_center.rb:82 -#: ../app/helpers/application_helper/toolbar/cloud_volume_snapshot_center.rb:29 -#: ../app/helpers/application_helper/toolbar/cloud_volume_snapshots_center.rb:15 -#: ../app/helpers/application_helper/toolbar/cloud_volumes_center.rb:70 -#: ../app/helpers/application_helper/toolbar/configuration_job_center.rb:30 -#: ../app/helpers/application_helper/toolbar/configuration_jobs_center.rb:34 -#: ../app/helpers/application_helper/toolbar/configuration_script_center.rb:27 -#: ../app/helpers/application_helper/toolbar/configuration_scripts/policy_mixin.rb:13 -#: ../app/helpers/application_helper/toolbar/configured_system/policy_mixin.rb:14 -#: ../app/helpers/application_helper/toolbar/container_build_center.rb:29 -#: ../app/helpers/application_helper/toolbar/container_builds_center.rb:34 -#: ../app/helpers/application_helper/toolbar/container_center.rb:37 -#: ../app/helpers/application_helper/toolbar/container_group_center.rb:39 -#: ../app/helpers/application_helper/toolbar/container_groups_center.rb:15 -#: ../app/helpers/application_helper/toolbar/container_image_center.rb:29 -#: ../app/helpers/application_helper/toolbar/container_image_registries_center.rb:15 -#: ../app/helpers/application_helper/toolbar/container_image_registry_center.rb:13 -#: ../app/helpers/application_helper/toolbar/container_images_center.rb:34 -#: ../app/helpers/application_helper/toolbar/container_node_center.rb:39 -#: ../app/helpers/application_helper/toolbar/container_nodes_center.rb:15 -#: ../app/helpers/application_helper/toolbar/container_project_center.rb:39 -#: ../app/helpers/application_helper/toolbar/container_projects_center.rb:15 -#: ../app/helpers/application_helper/toolbar/container_replicator_center.rb:39 -#: ../app/helpers/application_helper/toolbar/container_replicators_center.rb:15 -#: ../app/helpers/application_helper/toolbar/container_route_center.rb:13 -#: ../app/helpers/application_helper/toolbar/container_routes_center.rb:15 -#: ../app/helpers/application_helper/toolbar/container_service_center.rb:30 -#: ../app/helpers/application_helper/toolbar/container_services_center.rb:15 -#: ../app/helpers/application_helper/toolbar/container_template_center.rb:13 -#: ../app/helpers/application_helper/toolbar/container_templates_center.rb:15 -#: ../app/helpers/application_helper/toolbar/containers_center.rb:15 -#: ../app/helpers/application_helper/toolbar/ems_block_storages_center.rb:52 -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:59 -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:73 -#: ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:41 -#: ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:62 -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:81 -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:65 -#: ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:59 -#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:59 -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:73 -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:73 -#: ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:58 -#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:58 -#: ../app/helpers/application_helper/toolbar/ems_network_center.rb:53 -#: ../app/helpers/application_helper/toolbar/ems_networks_center.rb:68 -#: ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:52 -#: ../app/helpers/application_helper/toolbar/ems_storage_center.rb:47 -#: ../app/helpers/application_helper/toolbar/ems_storages_center.rb:52 -#: ../app/helpers/application_helper/toolbar/flavor_center.rb:13 -#: ../app/helpers/application_helper/toolbar/flavors_center.rb:15 -#: ../app/helpers/application_helper/toolbar/floating_ip_center.rb:13 -#: ../app/helpers/application_helper/toolbar/floating_ips_center.rb:15 -#: ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:60 -#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:64 -#: ../app/helpers/application_helper/toolbar/host_center.rb:85 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:124 -#: ../app/helpers/application_helper/toolbar/infra_networking_center.rb:13 -#: ../app/helpers/application_helper/toolbar/infra_networkings_center.rb:15 -#: ../app/helpers/application_helper/toolbar/load_balancer_center.rb:13 -#: ../app/helpers/application_helper/toolbar/load_balancers_center.rb:15 -#: ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:31 -#: ../app/helpers/application_helper/toolbar/middleware_datasources_center.rb:15 -#: ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:15 -#: ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:16 -#: ../app/helpers/application_helper/toolbar/middleware_domain_center.rb:14 -#: ../app/helpers/application_helper/toolbar/middleware_domains_center.rb:15 -#: ../app/helpers/application_helper/toolbar/middleware_messaging_center.rb:33 -#: ../app/helpers/application_helper/toolbar/middleware_messagings_center.rb:16 -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:32 -#: ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:14 -#: ../app/helpers/application_helper/toolbar/middleware_server_groups_center.rb:15 -#: ../app/helpers/application_helper/toolbar/middleware_servers_center.rb:16 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:68 -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:86 -#: ../app/helpers/application_helper/toolbar/network_port_center.rb:13 -#: ../app/helpers/application_helper/toolbar/network_ports_center.rb:15 -#: ../app/helpers/application_helper/toolbar/network_router_center.rb:43 -#: ../app/helpers/application_helper/toolbar/network_routers_center.rb:55 -#: ../app/helpers/application_helper/toolbar/ontap_file_share_center.rb:28 -#: ../app/helpers/application_helper/toolbar/ontap_file_shares_center.rb:15 -#: ../app/helpers/application_helper/toolbar/ontap_logical_disk_center.rb:13 -#: ../app/helpers/application_helper/toolbar/ontap_logical_disks_center.rb:15 -#: ../app/helpers/application_helper/toolbar/ontap_storage_system_center.rb:28 -#: ../app/helpers/application_helper/toolbar/ontap_storage_systems_center.rb:15 -#: ../app/helpers/application_helper/toolbar/ontap_storage_volume_center.rb:13 -#: ../app/helpers/application_helper/toolbar/ontap_storage_volumes_center.rb:15 -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:105 -#: ../app/helpers/application_helper/toolbar/orchestration_stack_center.rb:30 -#: ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:34 -#: ../app/helpers/application_helper/toolbar/orchestration_template_center.rb:48 -#: ../app/helpers/application_helper/toolbar/orchestration_templates_center.rb:57 -#: ../app/helpers/application_helper/toolbar/persistent_volume_center.rb:40 -#: ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:51 -#: ../app/helpers/application_helper/toolbar/resource_pool_center.rb:35 -#: ../app/helpers/application_helper/toolbar/resource_pools_center.rb:44 -#: ../app/helpers/application_helper/toolbar/security_group_center.rb:13 -#: ../app/helpers/application_helper/toolbar/security_groups_center.rb:15 -#: ../app/helpers/application_helper/toolbar/service_center.rb:50 -#: ../app/helpers/application_helper/toolbar/services_center.rb:53 -#: ../app/helpers/application_helper/toolbar/servicetemplate_center.rb:50 -#: ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:52 -#: ../app/helpers/application_helper/toolbar/storage_center.rb:37 -#: ../app/helpers/application_helper/toolbar/storages_center.rb:45 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:130 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:95 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:106 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:122 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:87 -#: ../app/helpers/application_helper/toolbar/x_ansible_tower_configured_system_center.rb:14 -#: ../app/helpers/application_helper/toolbar/x_configuration_script_center.rb:27 -#: ../app/helpers/application_helper/toolbar/x_foreman_configured_system_center.rb:31 -#: ../app/helpers/application_helper/toolbar/x_infra_networking_switch_center.rb:13 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:67 -#: ../app/helpers/application_helper/toolbar/x_provider_foreman_ansible_tower_configured_system_center.rb:14 -#: ../app/helpers/application_helper/toolbar/x_provider_foreman_foreman_configured_system_center.rb:31 -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:92 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:92 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:70 -msgid "Edit Tags" -msgstr "Modifier les balises" +msgid "All of the Templates that I can see" +msgstr "Tous les Modèles que je peux voir" -#: ../app/controllers/infra_networking_controller.rb:751 -#: ../app/presenters/menu/default_menu.rb:72 -msgid "Networking" -msgstr "Gestion réseau" +msgid "All of the VMs & Instances that I can see" +msgstr "Toutes les MV & Instances que je peux voir" -#: ../app/controllers/middleware_datasource_controller.rb:16 -msgid "removed datasources" -msgstr "a supprimé les sources de données" +msgid "All of the VMs that I can see" +msgstr "Toutes les MV que je peux voir" -#: ../app/controllers/middleware_datasource_controller.rb:17 -#: ../app/controllers/middleware_deployment_controller.rb:17 -#: ../app/controllers/middleware_deployment_controller.rb:24 -#: ../app/controllers/middleware_deployment_controller.rb:31 -#: ../app/controllers/middleware_deployment_controller.rb:38 -msgid "Not %{operation_name} for %{record_name} on the provider itself" -msgstr "Non pas %{operation_name} pour %{record_name} sur le fournisseur lui-même" +msgid "All selected %{labels} are not in the current region" +msgstr "Tous les %{labels} sélectionnés ne sont pas dans la région actuelle" -#: ../app/controllers/middleware_datasource_controller.rb:18 -msgid "The selected datasources were removed" -msgstr "Les sources de données sélectionnées ont été supprimées" +msgid "All system services of %{name}" +msgstr "Tous les services système de %{name}" -#: ../app/controllers/middleware_deployment_controller.rb:16 -msgid "restarting deployment" -msgstr "redémarrage du déploiement" +msgid "Allocated" +msgstr "Alloué" -#: ../app/controllers/middleware_deployment_controller.rb:18 -msgid "Restart initiated for selected deployment(s)" -msgstr "Redémarrage lancé pour le(s) déploiement(s) sélectionné(s)" +msgid "Allocation" +msgstr "Allocation" -#: ../app/controllers/middleware_deployment_controller.rb:23 -msgid "disabling deployment" -msgstr "désactivation du déploiement" +msgid "Allow All" +msgstr "Autoriser tout" -#: ../app/controllers/middleware_deployment_controller.rb:25 -msgid "Disable initiated for selected deployment(s)" -msgstr "Désactivation lancée pour le(s) déploiement(s) sélectionné(s)" +msgid "Amazon" +msgstr "Amazon" -#: ../app/controllers/middleware_deployment_controller.rb:30 -msgid "enabling deployment" -msgstr "activer le déploiement" +msgid "Amazon Primary AWS Account Settings for IAM" +msgstr "Paramètres du compte Amazon AWS principal pour IAM" -#: ../app/controllers/middleware_deployment_controller.rb:32 -msgid "Enable initiated for selected deployment(s)" -msgstr "Activation lancée pour le(s) déploiement(s) sélectionné(s)" +msgid "Amazon Settings validation was successful" +msgstr "La validation des paramètres Amazon a été effectuée" -#: ../app/controllers/middleware_deployment_controller.rb:37 -msgid "undeploying deployment" -msgstr "annulation du déploiement" +msgid "Amazon access key and secret are needed to validate Amazon Settings" +msgstr "Une clé d'accès Amazon et un secret sont nécessaires pour valider les Paramètres Amazon" -#: ../app/controllers/middleware_deployment_controller.rb:39 -msgid "Undeployment initiated for selected deployment(s)" -msgstr "Rétractation lancée pour le(s) déploiement(s) sélectionné(s)" +msgid "An Ansible Playbook must be selected" +msgstr "" -#: ../app/controllers/middleware_server_controller.rb:15 -msgid "reloading" -msgstr "rechargement" +msgid "An Owner must be selected" +msgstr "Vous devez sélectionner un propriétaire" -#: ../app/controllers/middleware_server_controller.rb:16 -#: ../app/helpers/application_helper/toolbar/miq_request_center.rb:28 -#: ../app/helpers/application_helper/toolbar/miq_requests_center.rb:7 -#: ../app/helpers/application_helper/toolbar/tasks_center.rb:7 -msgid "Reload" -msgstr "Recharger" +msgid "An alert must contain a valid expression." +msgstr "Une alerte doit contenir une expression valide." -#: ../app/controllers/middleware_server_controller.rb:20 -msgid "suspending" -msgstr "suspension" +msgid "An error occured when changing orchestration template \"%{name}\" to orderable: %{err_msg}" +msgstr "Une erreur s'est produite lors du changement du modèle d'orchestration \"%{name}\" en élément organisable : %{err_msg}" -#: ../app/controllers/middleware_server_controller.rb:21 -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:41 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:215 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:255 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:216 -#: ../app/views/catalog/_form_resources_info.html.haml:120 -msgid "Suspend" -msgstr "Suspendre" +msgid "An internal system error." +msgstr "Une erreur système interne." -#: ../app/controllers/middleware_server_controller.rb:26 -msgid "resuming" -msgstr "reprise" +msgid "An unknown error has occurred." +msgstr "Une erreur inconnue s'est produite." -#: ../app/controllers/middleware_server_controller.rb:27 -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:68 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:245 -msgid "Resume" -msgstr "Reprendre" +msgid "Analysis" +msgstr "Analyse" -#: ../app/controllers/middleware_server_controller.rb:34 -#: ../app/controllers/middleware_server_controller.rb:75 -msgid "stopping" -msgstr "arrêt" +msgid "Analysis Affinity was saved" +msgstr "L'affinité d'analyse a été enregistrée" -#: ../app/controllers/middleware_server_controller.rb:35 -#: ../app/controllers/middleware_server_controller.rb:76 -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:14 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:185 -#: ../app/views/catalog/_form_resources_info.html.haml:63 -#: ../app/views/catalog/_form_resources_info.html.haml:63 -#: ../app/views/catalog/_sandt_tree_show.html.haml:266 -#: ../app/views/catalog/_sandt_tree_show.html.haml:266 -msgid "Stop" -msgstr "Arrêter" +msgid "Analysis History" +msgstr "Historique d'analyse" -#: ../app/controllers/middleware_server_controller.rb:39 -msgid "shutting down" -msgstr "arrêt en cours" +msgid "Analysis Profile" +msgstr "Profil d'analyse" -#: ../app/controllers/middleware_server_controller.rb:40 -#: ../app/helpers/application_helper/toolbar/host_center.rb:178 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:192 -#: ../app/views/catalog/_form_resources_info.html.haml:120 -msgid "Shutdown" -msgstr "Arrêter" +msgid "Analysis Profile is required" +msgstr "Un Profil d''Analyse est requis" -#: ../app/controllers/middleware_server_controller.rb:45 -#: ../app/controllers/middleware_server_controller.rb:80 -msgid "restarting" -msgstr "redémarrage" +msgid "Analysis Profiles" +msgstr "Profils d''Analyse" -#: ../app/controllers/middleware_server_controller.rb:50 -msgid "Not deploying to Hawkular server" -msgstr "Déploiement vers le serveur Hawkular non lancé" +msgid "Analysis initiated for %{count} %{model} from the %{product} Database" +msgid_plural "Analysis initiated for %{count} %{models} from the %{product} Database" +msgstr[0] "Analyse lancée pour %{count} %{model} à partir de la base de données %{product}" +msgstr[1] "Analyse lancée pour %{count} %{models} à partir de la base de données %{product}" -#: ../app/controllers/middleware_server_controller.rb:51 -msgid "Deployment initiated for selected server(s)" -msgstr "Déploiement lancé pour le(s) serveur(s) sélectionné(s)" +msgid "Analyze and Compliance Check" +msgstr "Analyser et vérifier la conformité" -#: ../app/controllers/middleware_server_controller.rb:56 -msgid "JDBC Driver installation" -msgstr "Installation du pilote JDBC" +msgid "Analyze then Check Compliance" +msgstr "Analyser, puis vérifier la conformité" -#: ../app/controllers/middleware_server_controller.rb:61 -msgid "Not adding new datasource to Hawkular server" -msgstr "Aucun nouvel ajout de source de données sur le serveur Hawkular" +msgid "Analyze then Check Compliance for the selected items" +msgstr "Analyser, puis vérifier la conformité pour les éléments sélectionnés" -#: ../app/controllers/middleware_server_controller.rb:62 -msgid "New datasource initiated for selected server(s)" -msgstr "Nouvelle source de données initiée pour le(s) serveur(s) sélectionné(s)" +msgid "Analyze then Check Compliance for the selected items?" +msgstr "Analyser, puis vérifier la conformité pour les éléments sélectionnés ?" -#: ../app/controllers/middleware_server_controller.rb:70 -#: ../app/views/layouts/_tl_options.html.haml:124 -msgid "starting" -msgstr "démarrage" +msgid "Analyze then Check Compliance for this item" +msgstr "Analyser, puis vérifier la conformité pour cet élément" -#: ../app/controllers/middleware_server_controller.rb:71 -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:23 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:195 -#: ../app/views/catalog/_form_resources_info.html.haml:63 -#: ../app/views/catalog/_form_resources_info.html.haml:63 -#: ../app/views/catalog/_sandt_tree_show.html.haml:266 -#: ../app/views/catalog/_sandt_tree_show.html.haml:266 -#: ../app/views/chargeback/_cb_rate_edit_table.html.haml:25 -#: ../app/views/chargeback/_cb_rate_show.html.haml:51 -#: ../app/views/ems_cloud/discover.html.haml:54 -#: ../app/views/layouts/_discover.html.haml:103 -msgid "Start" -msgstr "Lancer" +msgid "Analyze then Check Compliance for this item?" +msgstr "Analyser, puis vérifier la conformité pour cet élément ?" -#: ../app/controllers/middleware_server_controller.rb:85 -msgid "killing" -msgstr "killing" +msgid "Ansible" +msgstr "" -#: ../app/controllers/middleware_server_controller.rb:86 -msgid "Kill" -msgstr "Kill" +msgid "Ansible Tower" +msgstr "" -#: ../app/controllers/middleware_server_controller.rb:109 -msgid "Deployment \"%s\" already exists on this server." -msgstr "Le déploiement \"%s\" existe déjà sur ce serveur." +msgid "Ansible Tower Configured Systems" +msgstr "Systèmes configurés pour Ansible Tower" -#: ../app/controllers/middleware_server_controller.rb:120 -msgid "Deployment \"%s\" has been initiated on this server." -msgstr "Le déploiement \"%s\" a été lancé sur ce serveur." +msgid "Ansible Tower Job Template" +msgstr "Modèle de tâche Ansible Tower" -#: ../app/controllers/middleware_server_controller.rb:140 -msgid "JDBC Driver \"%s\" has been installed on this server." -msgstr "Le pilote JDBC \"%s\" a été installé sur ce serveur." +msgid "Ansible Tower Job Template: %{name}" +msgstr "Modèle de tâche Ansible Tower : %{name}" -#: ../app/controllers/middleware_server_controller.rb:151 -msgid "Datasource \"%s\" already exists on this server." -msgstr "La source de données \"%s\" existe déjà sur ce serveur." +msgid "Any" +msgstr "Tous" -#: ../app/controllers/middleware_server_controller.rb:165 -msgid "Datasource \"%s\" installation has started on this server." -msgstr "" +msgid "Appliance" +msgstr "Appliance" -#: ../app/controllers/middleware_server_controller.rb:198 -msgid "No Servers selected" -msgstr "Aucun serveur sélectionné" +msgid "Appliance Name" +msgstr "Nom de l''Appliance" -#: ../app/controllers/middleware_server_controller.rb:207 -msgid "Unknown server operation: " -msgstr "Opération de serveur inconnue : " +msgid "Appliance Time Zone" +msgstr "Fuseau Horaire de l''Appliance" -#: ../app/controllers/middleware_server_controller.rb:230 -msgid "Not %{operation_info} the provider" -msgstr "" +msgid "Appliance Updates" +msgstr "Mises à jour de l''Appliance" -#: ../app/controllers/middleware_server_controller.rb:233 -msgid "Not %{operation_info} the domain server" -msgstr "" +msgid "Appliance:" +msgstr "Appliance:" -#: ../app/controllers/middleware_server_controller.rb:239 -#: ../app/controllers/middleware_server_controller.rb:279 -msgid "%{operation} initiated for selected server(s)" -msgstr "" +msgid "Appliances in this region can be registered with:" +msgstr "Les appliances dans cette région peuvent être enregistrées avec:" -#: ../app/controllers/middleware_server_controller.rb:258 -msgid "No servers selected" -msgstr "Aucun serveur sélectionné" - -#: ../app/controllers/middleware_server_controller.rb:266 -msgid "Not %{hawkular_info} the provider" -msgstr "Il ne s'agit pas du fournisseur %{hawkular_info}" - -#: ../app/controllers/miq_ae_class_controller.rb:73 -#: ../app/presenters/menu/default_menu.rb:215 -#: ../app/presenters/menu/default_menu.rb:229 -msgid "Explorer" -msgstr "Explorer" +msgid "Application" +msgid_plural "Applications" +msgstr[0] "Application" +msgstr[1] "Applications" -#: ../app/controllers/miq_ae_class_controller.rb:74 -msgid " (filtered)" -msgstr "(filtré)" +msgid "Applied Tag" +msgstr "Balise appliquée" -#: ../app/controllers/miq_ae_class_controller.rb:95 -#: ../app/controllers/miq_ae_class_controller.rb:104 -msgid " by %{user}" -msgstr " par %{user}" +msgid "Apply" +msgstr "Appliquer" -#: ../app/controllers/miq_ae_class_controller.rb:97 -#: ../app/controllers/miq_ae_class_controller.rb:106 -msgid "%{model} [%{name} - Updated %{time}%{update}]" -msgstr "%{model} [%{name} - mis-à-jour %{time}%{update}]" +msgid "Apply %{product} Update" +msgstr "Appliquer la mise à jour de %{product}" -#: ../app/controllers/miq_ae_class_controller.rb:188 -msgid "" -"%{name} domain: Current version - %{version}, Available version - %{available_" -"version}" +msgid "Apply Filters" msgstr "" -"%{name} domaine: Version courante - %{version}, Version disponible - %{availab" -"le_version}" -#: ../app/controllers/miq_ae_class_controller.rb:592 -#: ../app/controllers/miq_ae_class_controller.rb:985 -#: ../app/controllers/miq_ae_class_controller.rb:1029 -#: ../app/controllers/miq_ae_class_controller.rb:1116 -msgid "Error during 'save': %{error_message}" -msgstr "Erreur lors de l'enregistrement : %{error_message}" +msgid "Apply sections" +msgstr "Appliquer les sections" -#: ../app/controllers/miq_ae_class_controller.rb:641 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:153 -#: ../app/controllers/ops_controller/settings/tags.rb:76 -msgid "Error during 'add': %{message}" -msgstr "Erreur lors de l'ajout : %{message}" +msgid "Apply the current filter" +msgstr "Appliquer le filtre actuel" -#: ../app/controllers/miq_ae_class_controller.rb:775 -msgid "Data validated successfully" -msgstr "Les données ont été validées" +msgid "Apply the current filter (Enter)" +msgstr "Appliquer le filtre actuel (Entrée)" -#: ../app/controllers/miq_ae_class_controller.rb:779 -msgid "Error on line %{line_num}: %{err_txt}" -msgstr "Erreur sur la ligne %{line_num} : %{err_txt}" +msgid "Apply the good VM custom variable value records" +msgstr "Appliquer les enregistrements de valeurs variables personnalisées correctes pour la machine virtuelle" -#: ../app/controllers/miq_ae_class_controller.rb:1016 -msgid "Edit of schema for %{model} \"%{name}\" was cancelled by the user" -msgstr "La modification du schéma %{model} \"%{name}\" a été annulée par l'utilisateur" +msgid "Apply the good import records" +msgstr "Appliquer les enregistrements d'importation corrects" -#: ../app/controllers/miq_ae_class_controller.rb:1033 -msgid "Schema for %{model} \"%{name}\" was saved" -msgstr "Le schéma pour %{model} \"%{name}\" a été enregistré" +msgid "Apply the selected filters" +msgstr "Appliquer les filtres sélectionnés" -#: ../app/controllers/miq_ae_class_controller.rb:1070 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:171 -msgid "Error during 'save': %{message}" -msgstr "Erreur lors de l'enregistrement : %{message}" +msgid "Apply this filter" +msgstr "Appliquer ce filtre" -#: ../app/controllers/miq_ae_class_controller.rb:1173 -#: ../app/controllers/miq_ae_class_controller.rb:1206 -#: ../app/controllers/miq_ae_class_controller.rb:1244 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:245 -msgid "Add of new %{record} was cancelled by the user" -msgstr "L''ajout d''un nouveau %{record} a été annulé par l''utilisateur" +msgid "Approval State" +msgstr "Statut d'approbation" -#: ../app/controllers/miq_ae_class_controller.rb:1395 -#: ../app/controllers/miq_ae_class_controller.rb:1396 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:3 -#: ../app/views/miq_ae_class/_instance_form.html.haml:79 -msgid "Fields" -msgstr "Champs" +msgid "Approval State:" +msgstr "Statut d'approbation :" -#: ../app/controllers/miq_ae_class_controller.rb:1418 -msgid "Edit of Class Schema Sequence was cancelled by the user" -msgstr "" -"La modification de la séquence des schémas de classe a été annulée par l'utili" -"sateur" +msgid "Approve this Request" +msgstr "Approuver cette Requête" -#: ../app/controllers/miq_ae_class_controller.rb:1437 -msgid "Class Schema Sequence was saved" -msgstr "La séquence du schéma de classe a été enregistrée" +msgid "Approved" +msgstr "Approuvée" -#: ../app/controllers/miq_ae_class_controller.rb:1477 -msgid "Edit of Priority Order was cancelled by the user" -msgstr "La modification de l'ordre de priorité a été annulée par l'utilisateur" +msgid "Approved/Denied by" +msgstr "Approuvée/refusée par" -#: ../app/controllers/miq_ae_class_controller.rb:1485 -msgid "Priority Order was saved" -msgstr "L'ordre de priorité a été enregistré" +msgid "Approved/Denied on" +msgstr "Approuvée/refusée le" -#: ../app/controllers/miq_ae_class_controller.rb:1514 -msgid "Copy does not apply to selected %{model}" -msgstr "La copie ne s'applique pas au %{model} sélectionné" +msgid "Architecture" +msgstr "Architecture" -#: ../app/controllers/miq_ae_class_controller.rb:1583 -msgid "Successfully refreshed!" -msgstr "Actualisation réussie !" +msgid "Archived %{models}" +msgstr "%{models} archivés" -#: ../app/controllers/miq_ae_class_controller.rb:1585 -msgid "Git based refresh canceled" -msgstr "Actualisation basée sur Git annulée" +msgid "Archived %{model}" +msgstr "" -#: ../app/controllers/miq_ae_class_controller.rb:1664 -msgid "Error during '%{record} copy': %{error_message}" -msgstr "Erreur pendant 'la copie de%{record}': %{error_message}" +msgid "Archived VMs & Templates" +msgstr "MV & Modèles Archivés" -#: ../app/controllers/miq_ae_class_controller.rb:1668 -msgid "Copy selected %{record} was saved" -msgstr "La copie du %{record} sélectionné a été enregistrée" +msgid "Are you sure you want initiate content generation for this Widget now?" +msgstr "Voulez-vous vraiment initier la génération de contenu pour ce Widget maintenant ?" -#: ../app/controllers/miq_ae_class_controller.rb:1693 -msgid "Copy %{record} was cancelled by the user" -msgstr "La copie de %{record} a été annulée par l'utilisateur" +msgid "Are you sure you want to Run Database Garbage Collection Now?" +msgstr "Voulez-vous vraiment procéder au nettoyage de la mémoire de la base de données maintenant ?" -#: ../app/controllers/miq_ae_class_controller.rb:1711 -msgid "Copy %{model}" -msgstr "Copier %{model}" +msgid "Are you sure you want to Run a Database Backup Now?" +msgstr "Voulez-vous vraiment lancer une copie de sauvegarde pour une base de donnée maintenant ?" -#: ../app/controllers/miq_ae_class_controller.rb:1859 -msgid "Read Only %{model} \"%{name}\" cannot be deleted" -msgstr "Impossible de supprimer le %{model} \"%{name}\" en lecture seule" +msgid "Are you sure you want to copy this Alert?" +msgstr "Voulez-vous vraiment copier cette alerte ?" -#: ../app/controllers/miq_ae_class_controller.rb:1908 -msgid "\"%{field}\" %{model} cannot be deleted" -msgstr "\"%{field}\" %{model} ne peut être supprimé" +msgid "Are you sure you want to create Policy [%{new_policy_description}] from this Policy?" +msgstr "Voulez-vous vraiment créer la stratégie [%{new_policy_description}] à partir de cette stratégie ?" -#: ../app/controllers/miq_ae_class_controller.rb:2012 -msgid "%{field} is required" -msgstr "" +msgid "Are you sure you want to delete category '%{category_name}'?" +msgstr "Voulez-vous vraiment supprimer la catégorie '%{category_name}' ?" -#: ../app/controllers/miq_ae_class_controller.rb:2267 -msgid "Edit of Class Schema Sequence '%{name}'" -msgstr "Modification de la séquence des schémas de classe '%{name}'" +msgid "Are you sure you want to delete field from schema?" +msgstr "Voulez-vous vraiment supprimer le champ du schéma ?" -#: ../app/controllers/miq_ae_class_controller.rb:2273 -msgid "No %{name} were selected to move up" -msgstr "Aucun %{name} sélectionné à déplacer vers le haut" +msgid "Are you sure you want to delete forest %{ldaphost} ?" +msgstr "Voulez-vous vraiment supprimer la forêt %{ldaphost} ?" -#: ../app/controllers/miq_ae_class_controller.rb:2285 -msgid "Select only one or consecutive %{name} to move up" -msgstr "" -"Sélectionner un %{name} unique ou plusieurs consécutifs à déplacer vers le hau" -"t" +msgid "Are you sure you want to delete input field from method?" +msgstr "Voulez-vous vraiment supprimer le champ d'entrée de la méthode ?" -#: ../app/controllers/miq_ae_class_controller.rb:2292 -msgid "No %{name} were selected to move down" -msgstr "Aucun %{name} sélectionné à déplacer vers le bas" +msgid "Are you sure you want to delete mapping '%{label_name}'?" +msgstr "Êtes-vous sûr de vouloir supprimer le mappage '%{label_name}' ?" -#: ../app/controllers/miq_ae_class_controller.rb:2306 -msgid "Select only one or consecutive %{name} to move down" -msgstr "Sélectionner un %{name} unique ou plusieurs consécutifs à déplacer vers le bas" +msgid "Are you sure you want to delete orphaned records for user '%{user}'?" +msgstr "Voulez-vous vraiment supprimer les enregistrements orphelins pour l'utilisateur '%{user}' ?" -#: ../app/controllers/miq_ae_class_controller.rb:2337 -msgid "Read Only %{model} \"%{name}\" cannot be edited" -msgstr "Impossible de modifier le %{model} \"%{name}\" en lecture seule" +msgid "Are you sure you want to delete this %{condition_type} Condition?" +msgstr "Voulez-vous vraiment supprimer cette condition %{condition_type} ?" -#: ../app/controllers/miq_ae_class_controller.rb:2413 -#: ../app/controllers/miq_ae_class_controller.rb:2416 -#: ../app/presenters/menu/default_menu.rb:126 -#: ../app/views/middleware_topology/show.html.haml:126 -msgid "Domains" -msgstr "Domaines" +msgid "Are you sure you want to delete this %{policy_type} Policy?" +msgstr "Voulez-vous vraiment supprimer cette stratégie %{policy_type} ?" -#: ../app/controllers/miq_ae_class_controller.rb:2426 -#: ../app/views/report/_db_form.html.haml:58 -#: ../app/views/report/_db_show.html.haml:44 -msgid "Locked" -msgstr "Verrouillé" +msgid "Are you sure you want to delete this Action?" +msgstr "Voulez-vous vraiment supprimer cette Action ?" -#: ../app/controllers/miq_ae_class_controller.rb:2426 -msgid "Unlocked" -msgstr "Déverrouillé" +msgid "Are you sure you want to delete this Alert Profile?" +msgstr "Voulez-vous vraiment supprimer ce Profil d'alerte ?" -#: ../app/controllers/miq_ae_class_controller.rb:2428 -msgid "No %{model} were selected to be marked as %{action}" -msgstr "Aucun %{model} sélectionné pour être marqué comme %{action}" +msgid "Are you sure you want to delete this Alert?" +msgstr "Voulez-vous vraiment supprimer cette Alerte ?" -#: ../app/controllers/miq_ae_class_controller.rb:2433 -msgid "The selected %{model} were marked as %{action}" -msgstr "Le %{model} sélectionné a été marqué comme %{action}" +msgid "Are you sure you want to delete this Generic Object Definition?" +msgstr "" -#: ../app/controllers/miq_ae_class_controller.rb:2465 -msgid "Refreshing branch/tag for Git-based Domain" -msgstr "Actualisation de la branche/balise pour le domaine Git" +msgid "Are you sure you want to delete this Group?" +msgstr "Voulez-vous vraiment supprimer ce Groupe ?" -#: ../app/controllers/miq_ae_customization_controller.rb:43 -#: ../app/controllers/miq_ae_tools_controller.rb:184 -msgid "Use the Choose file button to locate an import file" -msgstr "Utiliser le bouton Choisir un fichier pour localiser un fichier d'importation" +msgid "Are you sure you want to delete this LDAP Domain?" +msgstr "Êtes-vous sûr de vouloir supprimer ce Domaine LDAP ?" -#: ../app/controllers/miq_ae_customization_controller.rb:49 -msgid "Select Dialogs to import" -msgstr "Sélectionner les boîtes de dialogue à importer" +msgid "Are you sure you want to delete this LDAP Region?" +msgstr "Êtes-vous sûr de vouloir supprimer cette Région LDAP ?" -#: ../app/controllers/miq_ae_customization_controller.rb:51 -#: ../app/controllers/report_controller.rb:227 -msgid "Error: the file uploaded is not of the supported format" -msgstr "Erreur : le format du fichier téléchargé n'est pas pris en charge" +msgid "Are you sure you want to delete this Request?" +msgstr "Êtes-vous sûr de vouloir supprimer cette Requête ?" -#: ../app/controllers/miq_ae_customization_controller.rb:53 -msgid "" -"Error during upload: incorrect Dialog format, only service dialogs can be impo" -"rted" -msgstr "" -"Erreur lors du téléchargement : format de boîte de dialogue incorrect, seules " -"les boîtes de dialogue de service peuvent être importées" +msgid "Are you sure you want to delete this Role?" +msgstr "Êtes-vous sûr de vouloir supprimer ce Rôle ?" -#: ../app/controllers/miq_ae_customization_controller.rb:55 -msgid "Error during upload: one of the DialogField types is not supported" -msgstr "" -"Erreur lors du téléchargement : l'un des types de champ de boîte de dialogue (" -"DialogField) n'est pas pris en charge" - -#: ../app/controllers/miq_ae_customization_controller.rb:63 -#: ../app/controllers/report_controller.rb:238 -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:65 -#: ../app/views/miq_ae_tools/_import_export.html.haml:309 -#: ../app/views/miq_policy/_export.html.haml:17 -#: ../app/views/miq_policy/_export.html.haml:23 -#: ../app/views/miq_policy/import.html.haml:54 -#: ../app/views/miq_policy/import.html.haml:60 -#: ../app/views/report/_export_widgets.html.haml:66 -#: ../app/views/report/_menu_form1.html.haml:88 -#: ../app/views/report/_menu_form2.html.haml:171 -msgid "Commit" -msgstr "Valider" +msgid "Are you sure you want to delete this User?" +msgstr "Êtes-vous sûr de vouloir supprimer cet Utilisateur ?" -#: ../app/controllers/miq_ae_customization_controller.rb:66 -msgid "At least one Service Dialog must be selected." -msgstr "Au moins une Boîte de dialogue de service doit être sélectionnée." +msgid "Are you sure you want to delete this Zone?" +msgstr "Êtes-vous sûr de vouloir supprimer cette Zone ?" -#: ../app/controllers/miq_ae_customization_controller.rb:75 -msgid "Service dialogs imported successfully" -msgstr "Boîtes de dialogue de service correctement importées" +msgid "Are you sure you want to delete this item and all of it's children?" +msgstr "Êtes-vous sûr de vouloir supprimer cet élément et tous les éléments sous-jacents ?" -#: ../app/controllers/miq_ae_customization_controller.rb:77 -msgid "Error: ImportFileUpload expired" -msgstr "Erreur : expiration du téléchargement du fichier d'importation" +msgid "Are you sure you want to remove '%{title}'from the Dashboard?" +msgstr "Êtes-vous sûr de vouloir supprimer '%{title}' du Dashboard ?" -#: ../app/controllers/miq_ae_customization_controller.rb:81 -msgid "Service dialog import cancelled" -msgstr "L'importation de boîtes de dialogue de service a été annulée" +msgid "Are you sure you want to remove selected Items?" +msgstr "Êtes-vous sûr de vouloir supprimer les Éléments sélectionnés ?" -#: ../app/controllers/miq_ae_customization_controller.rb:94 -#: ../app/controllers/miq_policy_controller.rb:36 -#: ../app/controllers/report_controller.rb:207 -msgid "At least 1 item must be selected for export" -msgstr "Au moins 1 élément doit être sélectionné pour exporter" +msgid "Are you sure you want to remove the '%{a_parent}[%{a}]' assignment from all of the items below?" +msgstr "Voulez-vous vraiment supprimer l'assignation '%{a_parent}[%{a}]' de tous les éléments sous-jacents ?" -#: ../app/controllers/miq_ae_customization_controller.rb:172 -msgid "Provisioning Dialogs" -msgstr "Boîtes de dialogue de mise en service" +msgid "Are you sure you want to remove the selected Domains?" +msgstr "Êtes-vous sûr de vouloir supprimer les Domaines sélectionnés ?" -#: ../app/controllers/miq_ae_customization_controller.rb:177 -msgid "Service Dialogs" -msgstr "Boîtes de dialogue de service" +msgid "Are you sure you want to remove the selected Instances?" +msgstr "Êtes-vous sûr de vouloir supprimer les Instances sélectionnées ?" -#: ../app/controllers/miq_ae_customization_controller.rb:182 -#: ../app/views/miq_ae_customization/_dialog_info_form.html.haml:50 -msgid "Buttons" -msgstr "Boutons" +msgid "Are you sure you want to remove the selected Methods?" +msgstr "Êtes-vous sûr de vouloir supprimer les Méthodes sélectionnées ?" -#: ../app/controllers/miq_ae_customization_controller.rb:186 -#: ../app/controllers/report_controller.rb:295 -msgid "Import/Export" -msgstr "Importer/Exporter" +msgid "Are you sure you want to remove the selected Namespaces?" +msgstr "Voulez-vous vraiment supprimer les espaces de nommage sélectionnés ?" -#: ../app/controllers/miq_ae_customization_controller.rb:266 -msgid "Service Dialog Import / Export" -msgstr "Importation/Exportation de boîtes de dialogue de service" +msgid "Are you sure you want to remove this Class?" +msgstr "Êtes-vous sûr de vouloir supprimer cette Classe ?" -#: ../app/controllers/miq_ae_customization_controller.rb:318 -#: ../app/views/catalog/_form_basic_info.html.haml:77 -#: ../app/views/catalog/_sandt_tree_show.html.haml:78 -#: ../app/views/miq_ae_customization/_dialog_edit_tree.html.haml:11 -#: ../app/views/shared/buttons/_ab_form.html.haml:100 -#: ../app/views/shared/buttons/_ab_show.html.haml:61 -msgid "Dialog" -msgstr "Boîte de dialogue" +msgid "Are you sure you want to remove this Condition from Policy [%{condition_policy_description}]?" +msgstr "Voulez-vous vraiment supprimer cette condition de la stratégie [%{condition_policy_description}] ?" -#: ../app/controllers/miq_ae_customization_controller.rb:320 -msgid "Tab" -msgstr "Onglet" +msgid "Are you sure you want to remove this Custom Image?" +msgstr "Êtes-vous sûr de vouloir supprimer cette Image customisée ?" -#: ../app/controllers/miq_ae_customization_controller.rb:322 -msgid "Box" -msgstr "Boîte" +msgid "Are you sure you want to remove this Domain?" +msgstr "Êtes-vous certain de vouloir supprimer ce Domaine ?" -#: ../app/controllers/miq_ae_customization_controller.rb:324 -msgid "Element" -msgstr "Élément" +msgid "Are you sure you want to remove this Instance?" +msgstr "Êtes-vous certain de vouloir supprimer cette Instance ?" -#: ../app/controllers/miq_ae_customization_controller.rb:395 -msgid "%{models} Group Reorder" -msgstr "%{models} Ordonnancement groupe" +msgid "Are you sure you want to remove this Method?" +msgstr "Êtes-vous certain de vouloir supprimer cette Méthode ?" -#: ../app/controllers/miq_ae_customization_controller.rb:413 -msgid " [%{text} Information]" -msgstr " [%{text} Information]" +msgid "Are you sure you want to remove this Namespace?" +msgstr "Voulez-vous vraiment supprimer cet espace de nommage ?" -#: ../app/controllers/miq_ae_customization_controller.rb:451 -msgid "Copy " -msgstr "Copier " +msgid "Are you sure you want to remove this Policy Profile?" +msgstr "Voulez-vous supprimer ce Profil de stratégie ?" -#: ../app/controllers/miq_ae_customization_controller.rb:453 -msgid "Editing " -msgstr "Modification " +msgid "Are you sure you want to remove this Provisioning Entry Point?" +msgstr "Voulez-vous vraiment supprimer ce Point d'entrée de mise en service ?" -#: ../app/controllers/miq_ae_customization_controller.rb:485 -msgid "Button Group Hover Text is required" -msgstr "Le texte de l'infobulle du groupe de boutons est obligatoire" +msgid "Are you sure you want to remove this Reconfigure Entry Point?" +msgstr "Voulez-vous vraiment supprimer ce Point d'entrée de reconfiguration ?" -#: ../app/controllers/miq_ae_customization_controller/custom_buttons.rb:28 -msgid "All Object Types" -msgstr "Tous les types d'Objet" +msgid "Are you sure you want to remove this Retirement Entry Point?" +msgstr "Voulez-vous vraiment supprimer ce Point d'entrée de déclassement ?" -#: ../app/controllers/miq_ae_customization_controller/custom_buttons.rb:39 -msgid "%{typ} Button Groups" -msgstr "%{typ} Groupes de Bouton" +msgid "Are you sure you want to reset this Dashboard's Widgets to the defaults?" +msgstr "Voulez-vous vraiment rétablir les composants d'interface par défaut de ce tableau de bord ?" -#: ../app/controllers/miq_ae_customization_controller/custom_buttons.rb:56 -msgid "%{typ} Button Group \"Unassigned Buttons\"" -msgstr "%{typ} Groupe de Bouton \"Boutons non assignés\"" +msgid "Asc" +msgstr "" -#: ../app/controllers/miq_ae_customization_controller/custom_buttons.rb:105 -msgid "%{typ} Button Group \"%{name}\"" -msgstr "%{typ} Groupe de Bouton \"%{name}\"" +msgid "Ascending" +msgstr "Croissant" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:126 -msgid "Copy of %{label}" -msgstr "Copie de %{label}" +msgid "Assign" +msgstr "" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:478 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:495 -msgid "%{field} '%{value}' is already in use" -msgstr "%{field} '%{value}' est déjà utilisé" +msgid "Assign Alert" +msgstr "" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:486 -msgid "Value and Description fields can't be blank" -msgstr "Les champs Valeur et Description ne peuvent pas être vides" +msgid "Assign Buttons" +msgstr "Assigner des Boutons" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:678 -msgid "Dialog Label is required" -msgstr "La balise de boîte de dialogue est obligatoire" +msgid "Assign Catalog Items" +msgstr "Assigner des Éléments du Catalogue" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:683 -msgid "Tab Label is required" -msgstr "La balise d'onglet est obligatoire" +msgid "Assign Filters" +msgstr "Assigner des Filtres" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:688 -msgid "Box Label is required" -msgstr "La balise de zone est obligatoire" +msgid "Assign Hosts and Datastores to Embedded SmartProxies in Zone: \"%{zone_description}\"" +msgstr "Affecter des hôtes et des magasins de données à des proxys dynamiques intégrés dans la zone : \"%{zone_description}\"" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:693 -msgid "Element Label is required" -msgstr "Un libellé sur l'élément est obligatoire" +msgid "Assign To" +msgstr "Assigner à" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:697 -msgid "Entry Point must be given." -msgstr "Un Point d'entrée doit être défini" +msgid "Assigned Analysis Profile" +msgstr "Profil d'Analyse assigné" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:701 -msgid "Element Name must be alphanumeric characters and underscores without spaces" -msgstr "" -"Le nom de l'élément doit être composé de caractères alphanumériques et de soul" -"ignement, sans espaces" +msgid "Assigned Filters (read only)" +msgstr "Filtres assignés (lecture seule)" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:705 -msgid "Element Name must not be 'action' or 'controller'" -msgstr "Le nom de l'élément ne peut pas être 'action' ni 'controller'" +msgid "Assigned To" +msgstr "Assigné à" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:709 -msgid "Element Type is required" -msgstr "Le type d'élément est obligatoire" +msgid "Assigned Value" +msgstr "Valeur Assignée" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:713 -msgid "Dropdown elements require some entries" -msgstr "Les éléments de la liste déroulante doivent contenir des entrées" +msgid "Assigned to Policies" +msgstr "Assigné aux Stratégies" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:728 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:730 -msgid "[New Tab]" -msgstr "[Nouvel onglet]" +msgid "Assigning %{hosts} but only have %{hosts_count} hosts available." +msgstr "Affectation de %{hosts}, mais %{hosts_count} hôtes seulement sont disponibles." -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:741 -msgid "[New Box]" -msgstr "[Nouvelle case]" +msgid "Assignments" +msgstr "Affectations" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:760 -msgid "[New Element]" -msgstr "[Nouvel élément]" +msgid "Associate Floating IP" +msgstr "Associer une adresse IP flottante" -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:779 -msgid "[New Dialog]" -msgstr "[Nouvelle boîte de dialogue]" +msgid "Associate Floating IP \"%{name}\"" +msgstr "" -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:107 -msgid "All %{dialogs}" -msgstr "Tout %{dialogs}" +msgid "Associate Floating IP with Instance '%{name}'" +msgstr "Associer une adresse IP flottante à l'instance '%{name}'" -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:216 -msgid "Default %{model} \"%{name}\" can not be edited" -msgstr "Impossible de modifier le %{model} \"%{name}\" par défaut" +msgid "Associate a Floating IP with this Instance" +msgstr "Associer une adresse IP flottante à cette instance" -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:258 -msgid "Dialog Type must be selected" -msgstr "Le type de boîte de dialogue doit être sélectionné" +msgid "Associate or disassociate a Port - Blank the field to disassociate" +msgstr "" -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:264 -msgid "Syntax error in YAML file: %{error_message}" -msgstr "Erreur de syntaxe dans le fichier YAML : %{error_message}" +msgid "Associated Port (optional)" +msgstr "" -#: ../app/controllers/miq_ae_tools_controller.rb:34 -#: ../app/controllers/miq_ae_tools_controller.rb:46 -#: ../app/controllers/miq_policy_controller.rb:285 -#: ../app/controllers/miq_policy_controller.rb:300 -#: ../app/controllers/ops_controller/diagnostics.rb:186 -#: ../app/controllers/ops_controller/diagnostics.rb:198 -#: ../app/controllers/ops_controller/diagnostics.rb:210 -#: ../app/controllers/ops_controller/diagnostics.rb:864 -#: ../app/controllers/ops_controller/diagnostics.rb:870 -#: ../app/controllers/ops_controller/diagnostics.rb:876 -msgid "Logs for this %{product} Server are not available for viewing" -msgstr "Impossible d'afficher les journaux pour le serveur %{product}" +msgid "Associating Floating IP %{address} with Instance \"%{name}\"" +msgstr "Association de l'adresse IP flottante %{address} à l'instance \"%{name}\"" -#: ../app/controllers/miq_ae_tools_controller.rb:39 -#: ../app/controllers/miq_policy_controller.rb:293 -#: ../app/presenters/menu/default_menu.rb:218 -#: ../app/presenters/menu/default_menu.rb:234 -#: ../app/views/ops/_all_tabs.html.haml:184 -msgid "Log" -msgstr "Journal" +msgid "Associating Floating IP with %{model} \"%{name}\"" +msgstr "Association de l'adresse IP flottante à %{model} \"%{name}\"" -#: ../app/controllers/miq_ae_tools_controller.rb:48 -#: ../app/views/miq_ae_tools/show.html.haml:3 ../app/views/show.html.haml:7 -msgid "Last 1000 lines from the Automation log" -msgstr "Les 1 000 dernières lignes du journal d'automatisation" +msgid "Association Information" +msgstr "" -#: ../app/controllers/miq_ae_tools_controller.rb:59 -msgid "Automation log downloaded" -msgstr "Journal d'automatisation téléchargé" +msgid "Association of Floating IP with Instance \"%{name}\" was cancelled by the user" +msgstr "L'association de l'adresse IP flottante à l'instance \"%{name}\" a été annulée par l'utilisateur" -#: ../app/controllers/miq_ae_tools_controller.rb:87 -#: ../app/controllers/miq_policy_controller.rb:21 -#: ../app/controllers/miq_policy_controller.rb:171 -#: ../app/controllers/report_controller.rb:371 -#: ../app/controllers/report_controller.rb:424 -#: ../app/controllers/report_controller.rb:692 -#: ../app/presenters/menu/default_menu.rb:217 -#: ../app/presenters/menu/default_menu.rb:233 -#: ../app/presenters/tree_builder_report_export.rb:18 -msgid "Import / Export" -msgstr "Importer / Exporter" +msgid "At least 1 %{model} must be selected for Policy Simulation" +msgstr "Au moins 1 %{model} doit être sélectionné pour la Simulation de stratégie" -#: ../app/controllers/miq_ae_tools_controller.rb:100 -msgid "" -msgstr "" +msgid "At least 1 item must be selected for discovery" +msgstr "Au moins un élément doit être sélectionné pour la découverte" -#: ../app/controllers/miq_ae_tools_controller.rb:108 -msgid "Error: import processing failed: %{message}" -msgstr "Erreur : échec du traitement de l'importation : %{message}" +msgid "At least 1 item must be selected for export" +msgstr "Au moins 1 élément doit être sélectionné pour exporter" -#: ../app/controllers/miq_ae_tools_controller.rb:122 -msgid "Datastore import was cancelled or is finished" -msgstr "L'importation du magasin de données a été annulée ou est terminée" +msgid "At least 1 subscription must be added to save server replication type" +msgstr "Au moins 1 abonnement doit être ajouté pour enregistrer le type de réplication du serveur" -#: ../app/controllers/miq_ae_tools_controller.rb:133 -msgid "Imported from git" -msgstr "Importé depuis Git" +msgid "At least 2 %{model} must be selected for Compare" +msgstr "Au moins 2 %{model} doivent être sélectionnés pour la comparaison" -#: ../app/controllers/miq_ae_tools_controller.rb:135 -msgid "Error: import failed: %{message}" -msgstr "Erreur : échec d'importation : %{message}" +msgid "At least 2 Analyses must be selected for Drift" +msgstr "Au moins 2 analyses doivent être sélectionnées pour la dérive" -#: ../app/controllers/miq_ae_tools_controller.rb:156 -msgid "Error: Datastore import was not successful" -msgstr "" +msgid "At least one %{model} must be selected for tagging" +msgstr "Au moins un %{model} doit être sélectionné pour le balisage" -#: ../app/controllers/miq_ae_tools_controller.rb:160 -#: ../app/controllers/miq_ae_tools_controller.rb:280 -msgid "" -"Datastore import was successful.\n" -"Namespaces updated/added: %{namespace_stats}\n" -"Classes updated/added: %{class_stats}\n" -"Instances updated/added: %{instance_stats}\n" -"Methods updated/added: %{method_stats}" -msgstr "" -"L'importation du magasin de données s'est déroulée correctement.\n" -"Espaces de nommage ajoutés/mis à jour : %{namespace_stats}\n" -"Classes ajoutées/mises à jour : %{class_stats}\n" -"Instances ajoutées/mises à jour : %{instance_stats}\n" -"Méthodes ajoutées/mises à jour : %{method_stats}" +msgid "At least one Alert must be selected" +msgstr "Au moins une Alerte doit être sélectionnée" -#: ../app/controllers/miq_ae_tools_controller.rb:167 -msgid "Error: Datastore import file upload expired" -msgstr "" -"Erreur : expiration du téléchargement du fichier d'importation du magasin de d" -"onnées" +msgid "At least one Category must be selected" +msgstr "Au moins une Catégorie doit être sélectionnée" -#: ../app/controllers/miq_ae_tools_controller.rb:170 -msgid "You must select at least one namespace to import" -msgstr "Vous devez sélectionner au moins un espace de nommage à importer" +msgid "At least one Column must be selected" +msgstr "Au moins une Colonne doit être sélectionnée" -#: ../app/controllers/miq_ae_tools_controller.rb:187 -#: ../app/controllers/miq_policy_controller.rb:180 -#: ../app/controllers/report_controller.rb:224 -msgid "Import file was uploaded successfully" -msgstr "Le fichier d'importation a été téléchargé" +msgid "At least one E-mail recipient must be configured" +msgstr "Au moins un Destinataire doit être configuré" -#: ../app/controllers/miq_ae_tools_controller.rb:205 -msgid "Please provide a valid git URL" -msgstr "Veuillez fournir une URL Git valide" +msgid "At least one Field must be selected" +msgstr "Au moins un Champ doit être sélectionné" -#: ../app/controllers/miq_ae_tools_controller.rb:208 -#: ../app/helpers/miq_ae_tools_helper.rb:12 -msgid "Please enable the git owner role in order to import git repositories" -msgstr "" -"Veuillez activer le rôle de propriétaire Git pour pouvoir importer des référen" -"tiels Git" +msgid "At least one Product Feature must be selected" +msgstr "Au moins une Fonction de produit doit être sélectionnée" -#: ../app/controllers/miq_ae_tools_controller.rb:224 -msgid "Error during repository setup: %{error_message}" -msgstr "" +msgid "At least one Role must be selected" +msgstr "Au moins un Rôle doit être sélectionné" -#: ../app/controllers/miq_ae_tools_controller.rb:255 -msgid "Error during repository fetch: %{message}" -msgstr "" +msgid "At least one Selection must be checked" +msgstr "Au moins une Sélection doit être cochée" -#: ../app/controllers/miq_ae_tools_controller.rb:287 -#: ../app/controllers/ops_controller/settings/upload.rb:77 -#: ../app/controllers/report_controller.rb:75 -msgid "Error during 'upload': %{message}" -msgstr "Erreur lors du téléchargement : %{message}" +msgid "At least one Service Dialog must be selected." +msgstr "Au moins une Boîte de dialogue de service doit être sélectionnée." -#: ../app/controllers/miq_ae_tools_controller.rb:292 -#: ../app/controllers/miq_policy_controller.rb:150 -#: ../app/controllers/report_controller.rb:86 -msgid "Use the Choose file button to locate an Import file" -msgstr "Utiliser le bouton Choisir un fichier pour localiser un fichier d'importation" +msgid "At least one Shortcut must be selected" +msgstr "Au moins un Raccourci doit être sélectionné" -#: ../app/controllers/miq_ae_tools_controller.rb:316 -msgid "Error during reset: Status [%{status}] Message [%{message}]" -msgstr "Erreur lors de la réinitialisation : État [%{status}] Message [%{message}]" +msgid "At least one Tag must be selected" +msgstr "Au moins une Balise doit être sélectionnée" -#: ../app/controllers/miq_ae_tools_controller.rb:320 -msgid "All custom classes and instances have been reset to default" -msgstr "Toutes les classes personnalisées et les instances ont été réinitialisées" +msgid "At least one To E-mail address must be configured" +msgstr "Au moins une Adresse email de destinataire doit être configurée" -#: ../app/controllers/miq_ae_tools_controller.rb:405 -msgid "Starting Class must be selected" -msgstr "La classe de début doit être sélectionnée" +msgid "At least one VM Option must be selected" +msgstr "Au moins une Option de VM doit être sélectionnée" -#: ../app/controllers/miq_ae_tools_controller.rb:413 -#: ../app/controllers/miq_ae_tools_controller.rb:414 -msgid "%{val} missing for %{field}" -msgstr "%{val} manquant pour %{field}" +msgid "At least one action must be selected to save this Policy Event" +msgstr "" -#: ../app/controllers/miq_capacity_controller.rb:40 -msgid "Generating utilization data..." -msgstr "Génération des données d'utilisation…" +msgid "At least one day needs to be selected" +msgstr "Au moins un Jour doit être sélectionné" -#: ../app/controllers/miq_capacity_controller.rb:56 -#: ../app/presenters/menu/default_menu.rb:243 -msgid "Bottlenecks" -msgstr "Goulots d'étranglement" +msgid "At least one domain should be enabled and unlocked" +msgstr "" -#: ../app/controllers/miq_capacity_controller.rb:80 -msgid "Planning Options" -msgstr "Options de planning" +msgid "At least one host must be specified for manual mode" +msgstr "" -#: ../app/controllers/miq_capacity_controller.rb:94 -#: ../app/controllers/miq_capacity_controller.rb:233 -msgid "At least one VM Option must be selected" -msgstr "Au moins une Option de VM doit être sélectionnée" +msgid "At least one hour needs to be selected" +msgstr "Au moins une Heure doit être sélectionnée" -#: ../app/controllers/miq_capacity_controller.rb:107 -msgid "No Utilization data available to generate planning results" -msgstr "Aucune donnée d'utilisation disponible pour générer des résultats de planning" +msgid "At least one item must be entered to create Analysis Profile" +msgstr "Au moins un Élément doit être saisi pour créer le profil d'analyse" -#: ../app/controllers/miq_capacity_controller.rb:263 -msgid "Counts of VMs (%{profile})" -msgstr "Nombre de machines virtuelles (%{profile})" +msgid "At least one of E-mail, SNMP Trap, Timeline Event, or Management Event must be configured" +msgstr "Au moins une adresse électronique, une interruption SNMP, un événement chronologique ou un événement de gestion doit être configuré" -#: ../app/controllers/miq_capacity_controller.rb:312 -#: ../app/controllers/miq_capacity_controller.rb:755 -msgid "Utilization Summary" -msgstr "Synthèse de l'utilisation" +msgid "At least one status must be selected" +msgstr "Au moins un état doit être sélectionné" -#: ../app/controllers/miq_capacity_controller.rb:321 -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:132 -msgid "Item" -msgid_plural "Items" -msgstr[0] "Élément" -msgstr[1] "Éléments" +msgid "Attach" +msgstr "Associer" -#: ../app/controllers/miq_capacity_controller.rb:321 -msgid "Section" -msgstr "Section" +msgid "Attach %{model} \"%{name}\"" +msgstr "Associer %{model} \"%{name}\"" -#: ../app/controllers/miq_capacity_controller.rb:321 -#: ../app/helpers/container_group_helper/textual_summary.rb:57 -#: ../app/helpers/container_helper/textual_summary.rb:121 -#: ../app/helpers/container_image_helper/textual_summary.rb:105 -#: ../app/helpers/container_template_helper/textual_summary.rb:26 -#: ../app/helpers/provider_foreman_helper.rb:280 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:17 -#: ../app/views/miq_ae_class/_instance_form.html.haml:89 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:252 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:350 -#: ../app/views/miq_ae_customization/_field_values.html.haml:18 -#: ../app/views/miq_ae_customization/_tag_field_values.html.haml:11 -#: ../app/views/miq_policy/_action_details.html.haml:400 -#: ../app/views/miq_policy/_action_options.html.haml:455 -#: ../app/views/miq_policy/_alert_details.html.haml:405 -#: ../app/views/miq_policy/_alert_snmp.html.haml:110 -#: ../app/views/ops/_tenant_quota_form.html.haml:32 -#: ../app/views/report/_form_columns_trend.html.haml:61 -msgid "Value" -msgstr "Valeur" +msgid "Attach %{volume} to %{instance_model} \"%{instance_name}\"" +msgstr "Associer %{volume} à %{instance_model} \"%{instance_name}\"" -#: ../app/controllers/miq_capacity_controller.rb:413 -msgid "%{model} \"%{name}\" Utilization Trend Summary" -msgstr "%{model} \"%{name}\" Synthèse tendance d'utilisation" +msgid "Attach Cloud Volume to %{model} \"%{name}\"" +msgstr "Associer le volume cloud à %{model} \"%{name}\"" -#: ../app/controllers/miq_capacity_controller.rb:418 -msgid " - Filtered by %{filter}" -msgstr " - Filtré par %{filter}" +msgid "Attach Volume" +msgstr "Associer le volume" -#: ../app/controllers/miq_capacity_controller.rb:556 -msgid "Planning Summary" -msgstr "Résumé du planning" +msgid "Attach a Cloud Volume to this Instance" +msgstr "Associer un volume cloud à cette instance" -#: ../app/controllers/miq_capacity_controller.rb:559 -msgid "Planning options have been reset by the user" -msgstr "Les options de planning ont été réinitialisées par l'utilisateur" +msgid "Attach selected Cloud Volume to an Instance" +msgstr "Associer le volume cloud sélectionné à une instance" -#: ../app/controllers/miq_capacity_controller.rb:613 -msgid "Best Fit Hosts" -msgstr "Hôtes les mieux adaptés" +msgid "Attach this Cloud Volume to an Instance" +msgstr "Associer ce volume cloud à une instance" -#: ../app/controllers/miq_capacity_controller.rb:615 -msgid "Best Fit Clusters" -msgstr "Clusters les mieux adaptés" +msgid "Attached to Policy" +msgstr "Associé à une stratégie" -#: ../app/controllers/miq_capacity_controller.rb:647 -msgid "%{model} \"%{name}\" Bottlenecks Summary" -msgstr "%{model} \"%{name}\" Synthèse goulets d'étranglement" +msgid "Attaching %{model} \"%{name}\" was cancelled by the user" +msgstr "L'association de %{model} \"%{name}\" a été annulée par l'utilisateur" -#: ../app/controllers/miq_capacity_controller.rb:658 -msgid "Activity" -msgstr "Activité" +msgid "Attaching %{volume_model} to %{instance_model} \"%{instance_name}\" was cancelled by the user" +msgstr "L'association de %{volume_model} à %{instance_model} \"%{instance_name}\" a été annulée par l'utilisateur" -#: ../app/controllers/miq_capacity_controller.rb:750 -msgid "Bottlenecks Summary" -msgstr "Récapitulatif des goulots d'étranglement" +msgid "Attaching Cloud Volume \"%{volume_name}\" to %{vm_name} finished" +msgstr "" -#: ../app/controllers/miq_capacity_controller.rb:765 -#: ../app/views/catalog/_form.html.haml:4 -#: ../app/views/catalog/_sandt_tree_show.html.haml:8 -#: ../app/views/catalog/_stcat_form.html.haml:11 -#: ../app/views/chargeback/_cb_assignments.html.haml:9 -#: ../app/views/chargeback/_cb_rate_edit.html.haml:7 -#: ../app/views/chargeback/_cb_rate_show.html.haml:7 -#: ../app/views/miq_ae_customization/_dialog_details.html.haml:18 -#: ../app/views/ops/_diagnostics_database_tab.html.haml:12 -#: ../app/views/ops/_logs_selected.html.haml:8 -#: ../app/views/shared/buttons/_group_form.html.haml:8 -msgid "Basic Info" -msgstr "Infos de base" +msgid "Attaching Cloud volume failed: Task start failed" +msgstr "" -#: ../app/controllers/miq_capacity_controller.rb:768 -#: ../app/views/miq_capacity/_utilization_report.html.haml:33 -#: ../app/views/miq_capacity/_utilization_summary.html.haml:18 -msgid "Disk" -msgstr "Disque" +msgid "Attachments" +msgstr "Pièces jointes" -#: ../app/controllers/miq_policy_controller.rb:26 -msgid "Export cancelled by user" -msgstr "Exportation annulée par l'utilisateur" +msgid "Attribute Name" +msgstr "Nom d'attribut" -#: ../app/controllers/miq_policy_controller.rb:58 -msgid "Error during export: %{error_message}" -msgstr "Erreur lors de l'exportation : %{error_message}" +msgid "Attribute Name is required" +msgstr "Le nom d'attribut est obligatoire" -#: ../app/controllers/miq_policy_controller.rb:144 -msgid "Error during 'Policy Import': %{messages}" -msgstr "Erreur lors de l'opération \"Importation de stratégie\" : %{messages}" +msgid "Attribute missing for %{field}" +msgstr "Attribut manquant pour %{field}" -#: ../app/controllers/miq_policy_controller.rb:177 -msgid "Error during upload: %{messages}" -msgstr "Erreur lors du téléchargement : %{messages}" +msgid "Attribute/Value Pairs" +msgstr "Paires d'attributs/valeurs" -#: ../app/controllers/miq_policy_controller.rb:191 -msgid "Import cancelled by user" -msgstr "Importation annulée par l'utilisateur" +msgid "Attributes with different values" +msgstr "Attributs avec des valeurs différentes" -#: ../app/controllers/miq_policy_controller.rb:197 -msgid "Import not available due to conflicts" -msgstr "Importation non disponible en raison de conflits" +msgid "Attributes with same values" +msgstr "Attributs avec les mêmes valeurs" -#: ../app/controllers/miq_policy_controller.rb:199 -msgid "Press commit to Import" -msgstr "Appuyez sur Valider pour importer" +msgid "Audit" +msgstr "Audit" -#: ../app/controllers/miq_policy_controller.rb:311 -msgid "Policy log downloaded" -msgstr "Journal de stratégie téléchargé" +msgid "Audit Log" +msgstr "Journal d'audit" -#: ../app/controllers/miq_policy_controller.rb:393 -msgid "All %{items}" -msgstr "Tout %{items}" +msgid "Audit log downloaded" +msgstr "Journal d'audit téléchargé" -#: ../app/controllers/miq_policy_controller.rb:524 -msgid "unknown tree in replace_trees: %{name}" -msgstr "arborescence inconnue dans replace_trees : %{name}" +msgid "Authenticated, please close tab to return to ManageIQ." +msgstr "Authentifié. Fermez l'onglet pour revenir à ManageIQ." -#: ../app/controllers/miq_policy_controller.rb:560 -#: ../app/controllers/miq_policy_controller.rb:642 -#: ../app/controllers/miq_policy_controller.rb:651 -msgid "Adding a new %{record}" -msgstr "Ajout d''un nouveau %{record}" +msgid "Authentication" +msgstr "Authentification" -#: ../app/controllers/miq_policy_controller.rb:572 -#: ../app/controllers/miq_policy_controller.rb:578 -#: ../app/controllers/miq_policy_controller.rb:587 -#: ../app/controllers/miq_policy_controller.rb:926 -msgid "All %{typ} %{model}" -msgstr "Tout %{typ} %{model}" +msgid "Authentication Details" +msgstr "Détails de l'authentification" -#: ../app/controllers/miq_policy_controller.rb:597 -msgid "Adding a new %{model_name} %{mode} Policy" -msgstr "Ajout d''une nouvelle Stratégie %{model_name} %{mode}" +msgid "Authentication Status" +msgstr "État de l'authentification" -#: ../app/controllers/miq_policy_controller.rb:600 -msgid "Adding a new %{model_name} Policy" -msgstr "Ajout d''une nouvelle Stratégie %{model_name} " +msgid "Authentication Type" +msgstr "Type d'authentification" -#: ../app/controllers/miq_policy_controller.rb:607 -#: ../app/controllers/miq_policy_controller.rb:610 -msgid " %{model} Assignments" -msgstr " %{model} Affectations" +msgid "Authentication Type:" +msgstr "Type d'authentification :" -#: ../app/controllers/miq_policy_controller.rb:627 -msgid "Editing %{model} Condition \"%{name}\"" -msgstr "Modification de la condition %{model} \"%{name}\"" +msgid "Authentication settings saved for %{product} Server \"%{name} [%{server_id}]\" in Zone \"%{zone}\"" +msgstr "Paramètres d'authentification enregistrés pour le serveur %{product} \"%{name} [%{server_id}]\" dans la zone \"%{zone}\"" -#: ../app/controllers/miq_policy_controller.rb:631 -msgid "%{model} Condition \"%{name}\"" -msgstr "%{model} Condition \"%{name}\"" +msgid "Authentication status will be saved and workers will be restarted for the selected %{controller_name}" +msgstr "L'état de l'authentification sera enregistré et les workers redémarreront pour le %{controller_name} sélectionné" -#: ../app/controllers/miq_policy_controller.rb:662 -msgid "Adding a new %{alerts}" -msgstr "Ajout d''une nouvelle %{alerts}" +msgid "Authorization Error" +msgstr "Erreur d'autorisation" -#: ../app/controllers/miq_policy_controller.rb:751 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:186 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:208 -msgid "No %{members} were selected to move left" -msgstr "Aucun %{members} sélectionné à déplacer vers la gauche" +msgid "Authorization-Endpoint" +msgstr "Autorisation-Point d'accès" -#: ../app/controllers/miq_policy_controller.rb:773 -msgid "No %{member} were selected to move right" -msgstr "Aucun %{member} sélectionné à déplacer vers la droite" +msgid "Authorization-Endpoint:" +msgstr "Autorisation-Point d'accès :" -#: ../app/controllers/miq_policy_controller.rb:793 -msgid "No %{member} were selected to move left" -msgstr "Aucun %{member} sélectionné à déplacer vers la gauche" +msgid "Auto Refresh other fields when modified" +msgstr "Rafraichissement automatique des autres champs quand modifié" -#: ../app/controllers/miq_policy_controller.rb:809 -msgid "Select only one or consecutive %{member} to move up" -msgstr "" -"Sélectionner un %{member} unique ou plusieurs consécutifs à déplacer vers le h" -"aut" +msgid "Auto refresh" +msgstr "Rafraîchissement automatique" -#: ../app/controllers/miq_policy_controller.rb:827 -msgid "Select only one or consecutive %{member} to move down" -msgstr "" -"Sélectionner un %{member} unique ou plusieurs consécutifs à déplacer vers le b" -"as" +msgid "Auto-select Host?" +msgstr "Sélection automatique de l'Hôte?" -#: ../app/controllers/miq_policy_controller.rb:845 -msgid "No %{member} selected to set to Synchronous" -msgstr "Aucun %{member} sélectionné à définir sur Synchrone" +msgid "Automate" +msgstr "Automate" -#: ../app/controllers/miq_policy_controller.rb:864 -msgid "No %{member} selected to set to Asynchronous" -msgstr "Aucun %{member} sélectionné à définir sur Asynchrone" +msgid "Automate Task" +msgstr "Automatiser la tâche" -#: ../app/controllers/miq_policy_controller.rb:934 -msgid "All %{typ} Conditions" -msgstr "Toutes les conditions %{typ}" +msgid "Automate Tasks Selection" +msgstr "Automatiser la sélection des tâches" -#: ../app/controllers/miq_policy_controller.rb:940 -msgid "All %{typ} Alert Profiles" -msgstr "Tous les profils d'alerte %{typ}" +msgid "Automation" +msgstr "" -#: ../app/controllers/miq_policy_controller.rb:960 -#: ../app/controllers/miq_policy_controller.rb:964 -msgid "%{name}:[%{key}] to [%{new_key}]" -msgstr "%{name}:[%{key}] to [%{new_key}]" +msgid "Automation Error: %{error_message}" +msgstr "Erreur d'automatisation : %{error_message}" -#: ../app/controllers/miq_policy_controller.rb:995 -#: ../app/controllers/ontap_file_share_controller.rb:101 -msgid "Host is required" -msgstr "L'hôte est obligatoire" +msgid "Automation Simulation has been run" +msgstr "La simulation d'automatisation a été lancée" -#: ../app/controllers/miq_policy_controller.rb:1000 -msgid "Trap Number is required" -msgstr "Le numéro de trap est obligatoire" +msgid "Automation Tasks" +msgstr "" -#: ../app/controllers/miq_policy_controller.rb:1002 -msgid "Trap Object ID is required" -msgstr "L'ID d'objet de trap est obligatoire" +msgid "Automation log downloaded" +msgstr "Journal d'automatisation téléchargé" -#: ../app/controllers/miq_policy_controller.rb:1009 -#: ../app/controllers/miq_policy_controller.rb:1014 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:380 -msgid "Value missing for %{field}" -msgstr "Valeur manquante pour %{field}" +msgid "Automations Tasks" +msgstr "Tâches d'automatisation" -#: ../app/controllers/miq_policy_controller.rb:1011 -#: ../app/controllers/miq_policy_controller.rb:1016 -#: ../app/controllers/miq_policy_controller.rb:1020 -msgid "Object ID missing for %{field}" -msgstr "ID d'objet manquant pour %{field}" +msgid "Availability Zone" +msgstr "Zone de Disponibilité" -#: ../app/controllers/miq_policy_controller.rb:1013 -msgid "Type missing for %{field}" -msgstr "Type manquant pour %{field}" +msgid "Availability Zone Name" +msgstr "Nom de la Zone de disponibilité" -#: ../app/controllers/miq_policy_controller.rb:1018 -msgid "Object ID and Values missing for %{field}" -msgstr "ID d'objet et valeurs manquants pour %{field}" +msgid "Availability Zone: %{name}" +msgstr "Zone de disponibilité : %{name}" -#: ../app/controllers/miq_policy_controller.rb:1080 -#: ../app/controllers/miq_policy_controller.rb:1103 -#: ../app/views/miq_policy/_export.html.haml:107 -#: ../app/views/miq_policy/_profile_details.html.haml:125 -msgid "Policies" -msgstr "Stratégies" +msgid "Availability Zones" +msgstr "Zones de disponibilité" -#: ../app/controllers/miq_policy_controller.rb:1102 -#: ../app/views/miq_policy/_export.html.haml:107 -msgid "Policy Profiles" -msgstr "Profils de stratégies" +msgid "Availabilty Zones" +msgstr "Zones de Disponibilité" -#: ../app/controllers/miq_policy_controller.rb:1105 -#: ../app/views/container_group/_main.html.haml:27 -#: ../app/views/container_node/_main.html.haml:23 -#: ../app/views/miq_policy/_policy_details.html.haml:211 -msgid "Conditions" -msgstr "Conditions" +msgid "Available" +msgstr "Disponible" -#: ../app/controllers/miq_policy_controller.rb:1106 -#: ../app/views/chargeback/_cb_rate_edit_table.html.haml:20 -#: ../app/views/miq_policy/_policy_details.html.haml:319 -#: ../app/views/ops/_ap_form_file.html.haml:16 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:22 -#: ../app/views/ops/_ap_form_registry.html.haml:18 -#: ../app/views/ops/_classification_entries.html.haml:17 -#: ../app/views/ops/_settings_co_categories_tab.html.haml:22 -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:16 -#: ../app/views/ops/_settings_replication_tab.html.haml:148 -#: ../app/views/vm_common/_reconfigure.html.haml:217 -msgid "Actions" -msgstr "Actions" +msgid "Available %{model} Alerts:" +msgstr "Alertes %{model} disponibles :" -#: ../app/controllers/miq_policy_controller.rb:1107 -#: ../app/views/miq_policy/_alert_profile_folders.html.haml:24 -msgid "Alert Profiles" -msgstr "Profils d''Alerte" +msgid "Available %{model} Conditions:" +msgstr "Conditions %{model} disponibles :" -#: ../app/controllers/miq_policy_controller.rb:1108 -#: ../app/views/miq_policy/_alert_profile_details.html.haml:39 -#: ../app/views/miq_policy/_export.html.haml:107 -msgid "Alerts" -msgstr "Alertes" +msgid "Available %{title}:" +msgstr "%{title} disponible:" -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:36 -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:36 -msgid "%{model} must contain at least one %{field}" -msgstr "%{model} doit contenir au moins %{field}" +msgid "Available Actions:" +msgstr "Actions Disponibles" -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:49 -msgid "Error during 'Alert Profile %{params}': %{message}" -msgstr "Erreur lors de l'opération \"Profil d'alerte %{params}\" : %{message}" +msgid "Available Active Data" +msgstr "Donnés Actives Disponibles" -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:82 -msgid "Edit %{model} assignments cancelled by user" -msgstr "Modification des affectations %{model} annulée par l'utilisateur" +msgid "Available Alerts:" +msgstr "Alertes Disponibles:" -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:87 -#: ../app/controllers/report_controller/reports/editor.rb:1609 -msgid "A Tag Category must be selected" -msgstr "Une Catégorie de balise doit être sélectionnée" +msgid "Available Custom Reports:" +msgstr "Rapports Personnalisés Disponibles:" -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:90 -msgid "At least one Selection must be checked" -msgstr "Au moins une Sélection doit être cochée" +msgid "Available Fields:" +msgstr "Champs disponibles:" -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:95 -msgid "Alert Profile \"%{alert_profile}\" assignments succesfully saved" -msgstr "Les affectations au Profil d'alerte \"%{alert_profile}\" ont été enregistrées" - -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:114 -#: ../app/controllers/mixins/containers_common_mixin.rb:191 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:411 -#: ../app/controllers/pxe_controller/iso_datastores.rb:114 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:224 -#: ../app/controllers/pxe_controller/pxe_image_types.rb:107 -#: ../app/controllers/pxe_controller/pxe_servers.rb:134 -#: ../app/controllers/report_controller/schedules.rb:83 -#: ../app/controllers/report_controller/schedules.rb:109 -#: ../app/controllers/report_controller/widgets.rb:98 -#: ../app/controllers/storage_manager_controller.rb:394 -#: ../app/helpers/application_helper.rb:1188 -msgid "%{model} no longer exists" -msgstr "%{model} n'existe plus" +msgid "Available Policies:" +msgstr "Stratégies Disponibles:" -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:338 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:346 -msgid "All %{records}" -msgstr "Tout %{records}" +msgid "Available Product version:" +msgstr "Version de Produit disponible :" -#: ../app/controllers/miq_policy_controller/alerts.rb:11 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:13 -#: ../app/controllers/miq_policy_controller/policies.rb:13 -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:10 -msgid "Add of new %{models} was cancelled by the user" -msgstr "L''ajout de nouveaux %{models} ont été annulés par l''utilisateur" +msgid "Available Reports:" +msgstr "Rapports disponibles:" -#: ../app/controllers/miq_policy_controller/alerts.rb:56 -#: ../app/controllers/miq_policy_controller/conditions.rb:127 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:72 -#: ../app/controllers/miq_policy_controller/policies.rb:121 -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:79 -msgid "%{models} no longer exists" -msgstr "%{models} n'existe plus" +msgid "Available Snapshots" +msgstr "Clichés disponibles" -#: ../app/controllers/miq_policy_controller/alerts.rb:59 -msgid "%{models} can not be deleted" -msgstr "%{models} ne peut être supprimé " +msgid "Available VMs:" +msgstr "MV disponibles:" -#: ../app/controllers/miq_policy_controller/alerts.rb:455 -#: ../app/controllers/miq_policy_controller/alerts.rb:471 -#: ../app/controllers/miq_policy_controller/alerts.rb:486 -#: ../app/helpers/ui_constants.rb:349 -#: ../app/views/miq_policy/_alert_details.html.haml:204 -msgid "10 Minutes" -msgstr "10 Minutes" +msgid "Available Widgets:" +msgstr "Composants d'interface disponibles :" -#: ../app/controllers/miq_policy_controller/alerts.rb:455 -#: ../app/controllers/miq_policy_controller/alerts.rb:472 -#: ../app/controllers/miq_policy_controller/alerts.rb:487 -#: ../app/helpers/ui_constants.rb:350 -msgid "15 Minutes" -msgstr "15 Minutes" +msgid "Average" +msgstr "Moyenne" -#: ../app/controllers/miq_policy_controller/alerts.rb:455 -#: ../app/controllers/miq_policy_controller/alerts.rb:471 -#: ../app/controllers/miq_policy_controller/alerts.rb:486 -msgid "5 Minutes" -msgstr "5 Minutes" +msgid "Averages Based On" +msgstr "Moyennes basées sur" -#: ../app/controllers/miq_policy_controller/alerts.rb:456 -#: ../app/controllers/miq_policy_controller/alerts.rb:463 -#: ../app/controllers/miq_policy_controller/alerts.rb:472 -#: ../app/controllers/miq_policy_controller/alerts.rb:478 -#: ../app/controllers/miq_policy_controller/alerts.rb:487 -#: ../app/helpers/ui_constants.rb:353 -msgid "1 Hour" -msgstr "1 Heure" +msgid "Azure" +msgstr "Azure" -#: ../app/controllers/miq_policy_controller/alerts.rb:456 -#: ../app/controllers/miq_policy_controller/alerts.rb:463 -#: ../app/controllers/miq_policy_controller/alerts.rb:473 -#: ../app/controllers/miq_policy_controller/alerts.rb:478 -#: ../app/controllers/miq_policy_controller/alerts.rb:488 -#: ../app/helpers/ui_constants.rb:299 -msgid "2 Hours" -msgstr "2 Heures" +msgid "Azure Templates" +msgstr "Modèles Azure" -#: ../app/controllers/miq_policy_controller/alerts.rb:456 -#: ../app/controllers/miq_policy_controller/alerts.rb:472 -#: ../app/controllers/miq_policy_controller/alerts.rb:487 -#: ../app/helpers/ui_constants.rb:351 -msgid "30 Minutes" -msgstr "30 Minutes" +msgid "Azure Tenant ID" +msgstr "ID de locataire Azure" -#: ../app/controllers/miq_policy_controller/alerts.rb:457 -#: ../app/controllers/miq_policy_controller/alerts.rb:463 -#: ../app/controllers/miq_policy_controller/alerts.rb:478 -#: ../app/controllers/miq_policy_controller/alerts.rb:488 -#: ../app/helpers/ui_constants.rb:300 -msgid "3 Hours" -msgstr "3 Heures" +msgid "Back" +msgstr "Retour" -#: ../app/controllers/miq_policy_controller/alerts.rb:457 -#: ../app/controllers/miq_policy_controller/alerts.rb:464 -#: ../app/controllers/miq_policy_controller/alerts.rb:479 -#: ../app/controllers/miq_policy_controller/alerts.rb:488 -#: ../app/helpers/ui_constants.rb:301 -msgid "4 Hours" -msgstr "4 Heures" +msgid "Back (ABCD...)" +msgstr "Retour (ABCD...)" -#: ../app/controllers/miq_policy_controller/alerts.rb:457 -#: ../app/controllers/miq_policy_controller/alerts.rb:464 -#: ../app/controllers/miq_policy_controller/alerts.rb:479 -#: ../app/controllers/miq_policy_controller/alerts.rb:489 -#: ../app/helpers/ui_constants.rb:302 -msgid "6 Hours" -msgstr "6 Heures" +msgid "Backing Ref (Container ID)" +msgstr "Réf. de stockage (ID de conteneur)" -#: ../app/controllers/miq_policy_controller/alerts.rb:458 -#: ../app/controllers/miq_policy_controller/alerts.rb:465 -#: ../app/controllers/miq_policy_controller/alerts.rb:480 -#: ../app/controllers/miq_policy_controller/alerts.rb:489 -msgid "1 Day" -msgstr "1 Jour" +msgid "Backlog" +msgstr "" -#: ../app/controllers/miq_policy_controller/alerts.rb:458 -#: ../app/controllers/miq_policy_controller/alerts.rb:464 -#: ../app/controllers/miq_policy_controller/alerts.rb:479 -#: ../app/controllers/miq_policy_controller/alerts.rb:489 -#: ../app/helpers/ui_constants.rb:304 -msgid "12 Hours" -msgstr "12 Heures" +msgid "Backup Name" +msgstr "Nom de sauvegarde" -#: ../app/controllers/miq_policy_controller/alerts.rb:470 -#: ../app/controllers/miq_policy_controller/alerts.rb:485 -msgid "1 Minute" -msgstr "1 Minute" +msgid "Backup Schedules" +msgstr "Planifications des Backups" -#: ../app/controllers/miq_policy_controller/alerts.rb:470 -#: ../app/controllers/miq_policy_controller/alerts.rb:485 -msgid "2 Minutes" -msgstr "2 Minutes" +msgid "Backup for %{model} \"%{name}\" created" +msgstr "Sauvegarde de %{model} \"%{name}\" créée" -#: ../app/controllers/miq_policy_controller/alerts.rb:470 -#: ../app/controllers/miq_policy_controller/alerts.rb:485 -msgid "3 Minutes" -msgstr "3 Minutes" +msgid "Backup of %{model} \"%{name}\" was cancelled by the user" +msgstr "La sauvegarde du/de la %{model} \"%{name}\" a été annulée par l'utilisateur" -#: ../app/controllers/miq_policy_controller/alerts.rb:471 -#: ../app/controllers/miq_policy_controller/alerts.rb:486 -msgid "4 Minutes" -msgstr "4 Minutes" +msgid "Base DN" +msgstr "DN de base" -#: ../app/controllers/miq_policy_controller/alerts.rb:498 -msgid "Error during alarms: %{messages}" -msgstr "Erreur pendant les alarmes : %{messages}" +msgid "Base Name" +msgstr "Nom de base" -#: ../app/controllers/miq_policy_controller/alerts.rb:545 -#: ../app/controllers/miq_policy_controller/conditions.rb:52 -msgid "A valid expression must be present" -msgstr "Une expression valide doit exister" +msgid "Base Timeline on" +msgstr "Chronologie de base sur" -#: ../app/controllers/miq_policy_controller/alerts.rb:548 -msgid "A Driving Event must be selected" -msgstr "Un évènement déclencheur doit être sélectionné" +msgid "Based On" +msgstr "Basé sur" -#: ../app/controllers/miq_policy_controller/alerts.rb:551 -msgid "Event name is required" -msgstr "Un nom d'événement est requis" +msgid "Basic (SSL)" +msgstr "De base (SSL)" -#: ../app/controllers/miq_policy_controller/alerts.rb:554 -msgid "Event to Check is required" -msgstr "Un événement à vérifier est requis" +msgid "Basic Info" +msgstr "Infos de base" -#: ../app/controllers/miq_policy_controller/alerts.rb:560 -msgid "Value Threshold must be an integer" -msgstr "Le seuil de valeur doit être un nombre entier" +msgid "Basic Information" +msgstr "Informations de base" -#: ../app/controllers/miq_policy_controller/alerts.rb:565 -msgid "Trend Steepness must be an integer" -msgstr "L'inclinaison de la tendance doit être un nombre entier" +msgid "Basic Options" +msgstr "Options de Base" -#: ../app/controllers/miq_policy_controller/alerts.rb:569 -msgid "Time threshold for the field criteria must be selected" -msgstr "La limite de temps de ce champ de critère doit être sélectionnée" +msgid "Basic Report Info" +msgstr "Info du Rapport de Base" -#: ../app/controllers/miq_policy_controller/alerts.rb:601 -msgid "Duration Per Minute must be an integer" -msgstr "La durée par minute doit être un nombre entier" +msgid "Belongs to Alert Profiles" +msgstr "Appartient aux Profils d'alerte" -#: ../app/controllers/miq_policy_controller/alerts.rb:608 -msgid "" -"At least one of E-mail, SNMP Trap, Timeline Event, or Management Event must be" -" configured" -msgstr "" -"Au moins une adresse électronique, une interruption SNMP, un événement chronol" -"ogique ou un événement de gestion doit être configuré" +msgid "Belongs to Profiles" +msgstr "Appartient aux Profils" -#: ../app/controllers/miq_policy_controller/alerts.rb:613 -msgid "At least one E-mail recipient must be configured" -msgstr "Au moins un Destinataire doit être configuré" +msgid "Best Fit Clusters" +msgstr "Clusters les mieux adaptés" -#: ../app/controllers/miq_policy_controller/alerts.rb:631 -#: ../app/views/miq_policy/_alert_details.html.haml:146 -msgid "Hourly Timer" -msgstr "Minuterie horaire" +msgid "Best Fit Hosts" +msgstr "Hôtes les mieux adaptés" -#: ../app/controllers/miq_policy_controller/alerts.rb:634 -msgid "" -msgstr "" +msgid "Bind Address" +msgstr "Adresse de Liaison" -#: ../app/controllers/miq_policy_controller/conditions.rb:23 -#: ../app/controllers/miq_policy_controller/conditions.rb:249 -msgid "" -"Ruby scripts are no longer supported in expressions, please change or remove t" -"hem." -msgstr "" -"Les scripts Ruby ne sont plus pris en charge dans les expressions, veuillez le" -"s changer ou les supprimer." +msgid "Bind DN" +msgstr "DN de liaison" -#: ../app/controllers/miq_policy_controller/conditions.rb:110 -msgid "Condition record ID %{param_id} was removed from Policy ID %{policy_id}" -msgstr "" -"L'ID d'enregistrement de la condition %{param_id} a été supprimé de l'ID de st" -"ratégie %{policy_id}" +msgid "Bind Password" +msgstr "Mot de passe de liaison" -#: ../app/controllers/miq_policy_controller/conditions.rb:112 -msgid "Condition \"%{cond_name}\" has been removed from Policy \"%{pol_name}\"" -msgstr "La condition \"%{cond_name}\" a été supprimée de la Stratégie \"%{pol_name}\"" +msgid "Bind Password:" +msgstr "Mot de passe de liaison :" -#: ../app/controllers/miq_policy_controller/events.rb:9 -msgid "Edit Event cancelled by user" -msgstr "Modification de l'événement annulée par l'utilisateur" +msgid "BindDN" +msgstr "DN de liaison" -#: ../app/controllers/miq_policy_controller/events.rb:37 -msgid "Actions for Policy Event \"%{events}\" were saved" -msgstr "" -"Les actions relatives à l'événement de stratégie \"%{events}\" ont été enregistr" -"ées" +msgid "BindDN:" +msgstr "DN de liaison :" -#: ../app/controllers/miq_policy_controller/events.rb:108 -msgid "All %{tables}" -msgstr "Tout %{tables}" +msgid "Black" +msgstr "Noir" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:197 -msgid "No %{members} were selected to move right" -msgstr "Aucun %{members} sélectionné à déplacer vers la droite" +msgid "Block Migration" +msgstr "Migration par bloc" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:371 -msgid "Action Type must be selected" -msgstr "Le Type d''Action doit être sélectionné" +msgid "Block Storage" +msgstr "" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:373 -msgid "Analysis Profile is required" -msgstr "Un Profil d''Analyse est requis" +msgid "Block Storage Based" +msgstr "Basé sur un stockage de bloc" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:376 -msgid "Attribute Name is required" -msgstr "Le nom d'attribut est obligatoire" +msgid "Blue" +msgstr "Bleu" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:379 -msgid "Attribute missing for %{field}" -msgstr "Attribut manquant pour %{field}" +msgid "Blue Background" +msgstr "Fond d'écran Bleu" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:383 -msgid "At least one Alert must be selected" -msgstr "Au moins une Alerte doit être sélectionnée" +msgid "Blue Text" +msgstr "Texte bleu" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:386 -msgid "Parent Type must be selected" -msgstr "Le type de parent doit être sélectionné" +msgid "Bootable" +msgstr "Amorçable" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:389 -msgid "At least one Category must be selected" -msgstr "Au moins une Catégorie doit être sélectionnée" +msgid "Both" +msgstr "Les deux" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:392 -msgid "Snapshot Age must be selected" -msgstr "L'âge du cliché doit être sélectionné" +msgid "Bottleneck Event Details" +msgstr "Détails de l'événement de goulot d'étranglement" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:395 -msgid "E-mail address 'From' is not valid" -msgstr "L'adresse email 'De' n'est pas valide" +msgid "Bottlenecks" +msgstr "Goulots d'étranglement" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:396 -msgid "E-mail address 'To' is not valid" -msgstr "L'adresse email 'À' n'est pas valide" +msgid "Bottlenecks Summary" +msgstr "Récapitulatif des goulots d'étranglement" -#: ../app/controllers/miq_policy_controller/miq_actions.rb:405 -msgid "At least one Tag must be selected" -msgstr "Au moins une Balise doit être sélectionnée" +msgid "Box" +msgstr "Boîte" -#: ../app/controllers/miq_policy_controller/policies.rb:98 -msgid "%{model} \"%{name}\" already exists" -msgstr "%{model} \"%{name}\" existe déjà" +msgid "Box Information" +msgstr "Boîte d'Information" -#: ../app/controllers/miq_policy_controller/policies.rb:128 -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:85 -msgid "The selected %{models} was deleted" -msgstr "Les %{models} ont été supprimés" +msgid "Box Label is required" +msgstr "La balise de zone est obligatoire" -#: ../app/controllers/miq_policy_controller/policies.rb:235 -#: ../app/presenters/tree_builder_policy.rb:44 -msgid "All Policies" -msgstr "Toutes les Stratégies" +msgid "Branch/Tag" +msgstr "Branche/Balise" -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:49 -msgid "Error during 'Policy Profile %{params}': %{messages}" -msgstr "Erreur lors de l'opération \"Profil de stratégie %{params}\" : %{messages}" +msgid "Branches" +msgstr "Branches" -#: ../app/controllers/miq_policy_controller/rsop.rb:27 -msgid "No VMs match the selection criteria" -msgstr "Aucune MV ne correspond aux critères sélectionnés" +msgid "Browse" +msgstr "Parcourir" -#: ../app/controllers/miq_policy_controller/rsop.rb:32 -msgid "Policy Simulation generation returned: %{error_message}" -msgstr "" -"La génération de la simulation de stratégie a renvoyé l'erreur : %{error_messa" -"ge}" +msgid "Browser" +msgstr "Navigateur" -#: ../app/controllers/miq_request_controller.rb:41 -msgid "Default Requests can not be edited" -msgstr "Les Requêtes par défaut ne peuvent pas être éditées" +msgid "Browser OS" +msgstr "SE du Navigateur" -#: ../app/controllers/miq_request_controller.rb:109 -#: ../app/controllers/miq_request_controller.rb:591 -#: ../app/presenters/menu/default_menu.rb:42 -#: ../app/presenters/menu/default_menu.rb:73 -#: ../app/presenters/menu/default_menu.rb:235 -msgid "Requests" -msgstr "Demandes" +msgid "Browser Version" +msgstr "Version du Navigateur" -#: ../app/controllers/miq_request_controller.rb:172 -msgid "Provisioned VMs [%{description}]" -msgstr "MV mises en service [%{description}]" +msgid "Build Instances" +msgstr "Instances de compilation" -#: ../app/controllers/miq_request_controller.rb:186 -msgid "Request approval was cancelled by the user" -msgstr "L'approbation de la demande a été annulée par l'utilisateur" +msgid "Build Number" +msgstr "Numéro de compilation" -#: ../app/controllers/miq_request_controller.rb:188 -msgid "Request denial was cancelled by the user" -msgstr "Le rejet de la demande a été annulé par l'utilisateur" +msgid "Builtin name" +msgstr "Nom intégré" -#: ../app/controllers/miq_request_controller.rb:201 -msgid "Request \"%{name}\" was %{task}" -msgstr "La demande \"%{name}\" a été %{task}" +msgid "Button \"%{name}\"" +msgstr "Bouton \"%{name}\"" -#: ../app/controllers/miq_request_controller.rb:215 -msgid "Request Approval" -msgstr "Approbation de la demande" +msgid "Button Group \"%{name}\"" +msgstr "Groupe de boutons \"%{name}\"" -#: ../app/controllers/miq_request_controller.rb:217 -msgid "Request Denial" -msgstr "Rejet de la demande" +msgid "Button Group Hover Text" +msgstr "Texte de l'infobulle du groupe de boutons" -#: ../app/controllers/miq_request_controller.rb:251 -msgid "Copy of %{typ} Request" -msgstr "Copie de la demande %{typ}" +msgid "Button Group Hover Text is required" +msgstr "Le texte de l'infobulle du groupe de boutons est obligatoire" -#: ../app/controllers/miq_request_controller.rb:321 -msgid "Error retrieving LDAP info: %{error_message}" -msgstr "Erreur lors de la récupération des infos LDAP : %{error_message}" +msgid "Button Group Image" +msgstr "Image du Groupe de boutons" -#: ../app/controllers/miq_request_controller.rb:350 -msgid "At least one status must be selected" -msgstr "Au moins un état doit être sélectionné" +msgid "Button Group Order:" +msgstr "Ordre du Groupe de boutons" -#: ../app/controllers/miq_request_controller.rb:489 -msgid "%{name} (no longer exists)" -msgstr "%{name} (n'existe plus)" +msgid "Button Group Text" +msgstr "Texte du Groupe de boutons" -#: ../app/controllers/miq_request_controller.rb:528 -msgid "The selected %{tables} were deleted" -msgstr "Les %{tables} sélectionnées ont été supprimées" +msgid "Button Group: %{button_group_description}" +msgstr "Groupe de boutons : %{button_group_description}" -#: ../app/controllers/miq_request_controller.rb:532 -#: ../app/controllers/ops_controller/diagnostics.rb:690 -#: ../app/controllers/ops_controller/settings/ldap.rb:117 -#: ../app/controllers/ops_controller/settings/ldap.rb:285 -#: ../app/controllers/ops_controller/settings/schedules.rb:207 -msgid "%{table} no longer exists" -msgstr "%{table} n''existe plus" +msgid "Button Hover Text" +msgstr "Texte de l'infobulle du bouton" -#: ../app/controllers/miq_request_controller.rb:538 -#: ../app/controllers/ops_controller/diagnostics.rb:695 -msgid "The selected %{table} was deleted" -msgstr "La %{table} sélectionnée a été supprimée" +msgid "Button Hover Text is required" +msgstr "Le texte de l'infobulle du bouton est obligatoire" -#: ../app/controllers/miq_task_controller.rb:34 -#: ../app/controllers/miq_task_controller.rb:84 -msgid "My VM and Container Analysis Tasks" -msgstr "Mes tâches d'analyse de MV et de conteneur" +msgid "Button Image" +msgstr "Image du bouton" -#: ../app/controllers/miq_task_controller.rb:37 -#: ../app/controllers/miq_task_controller.rb:90 -msgid "My Other UI Tasks" -msgstr "Mes autres tâches IU" +msgid "Button Image must be selected" +msgstr "L'image du bouton doit être sélectionnée" -#: ../app/controllers/miq_task_controller.rb:40 -#: ../app/controllers/miq_task_controller.rb:95 -msgid "All VM and Container Analysis Tasks" -msgstr "Toutes les tâches d'analyse de machine virtuelle et de conteneur" +msgid "Button Text" +msgstr "Texte du bouton" -#: ../app/controllers/miq_task_controller.rb:43 -#: ../app/controllers/miq_task_controller.rb:102 -msgid "All Other Tasks" -msgstr "Toutes les autres Tâches" +msgid "Button Text is required" +msgstr "Le texte du bouton est obligatoire" -#: ../app/controllers/miq_task_controller.rb:52 -msgid "Tasks for %{name}" -msgstr "Tâches pour %{name}" +msgid "Button not yet implemented" +msgstr "Bouton non implémenté à ce stade" -#: ../app/controllers/miq_task_controller.rb:112 -msgid "No %{model} were selected for cancellation" -msgstr "Aucun %{model} n'était sélectionné pour annulation" +msgid "Button not yet implemented %{model}:%{action}" +msgstr "Bouton non implémenté à ce stade %{model} :%{action}" -#: ../app/controllers/miq_task_controller.rb:116 -msgid "Finished Task cannot be cancelled" -msgstr "Une tâche terminée ne peut pas être annulée" +msgid "Button: %{button_description}" +msgstr "Bouton : %{button_description}" -#: ../app/controllers/miq_task_controller.rb:119 -msgid "The selected Task was cancelled" -msgstr "La tâche sélectionnée a été annulée" +msgid "Buttons" +msgstr "Boutons" -#: ../app/controllers/miq_task_controller.rb:135 -#: ../app/controllers/miq_task_controller.rb:160 -msgid "Delete started for record ids: %{id}" -msgstr "Supprimer l'élément démarré pour les ID d'enregistrement : %{id}" +msgid "Buttons Group Reorder" +msgstr "Réarranger le Groupe de boutons" -#: ../app/controllers/miq_task_controller.rb:138 -#: ../app/controllers/miq_task_controller.rb:163 -msgid "Delete initiated for %{count} Task from the %{product} Database" -msgid_plural "Delete initiated for %{count} Tasks from the %{product} Database" -msgstr[0] "" -"Supprimer l'élément lancé pour %{count} tâche à partir de la base de données %" -"{product}" -msgstr[1] "" -"Supprimer l'élément lancé pour %{count} tâches à partir de la base de données " -"%{product}" +msgid "Buttons for \"%{record}\"" +msgstr "Boutons pour \"%{record}\"" -#: ../app/controllers/miq_task_controller.rb:180 -msgid "Delete started for records older than %{date}, conditions: %{conditions}" -msgstr "" -"Supprimer l'élément démarré pour les enregistrements antérieurs au %{date}, co" -"nditions : %{conditions}" +msgid "By %{clusters}" +msgstr "Par %{clusters}" -#: ../app/controllers/miq_task_controller.rb:187 -msgid "" -"Delete all older Tasks initiated for %{count} Task from the %{product} Databas" -"e" -msgid_plural "" -"Delete all older Tasks initiated for %{count} Tasks from the %{product} Databa" -"se" -msgstr[0] "" -"Supprimer toutes les tâches plus anciennes lancées pour %{count} tâche à parti" -"r de la base de données %{product}" -msgstr[1] "" -"Supprimer toutes les tâches plus anciennes lancées pour %{count} tâches à part" -"ir de la base de données %{product}" +msgid "By %{hosts}" +msgstr "Par %{hosts}" -#: ../app/controllers/miq_task_controller.rb:191 -msgid "The selected job no longer exists, Delete all older Tasks was not completed" -msgstr "" -"La tâche sélectionnée n'existe plus, l'opération « Supprimer les tâches les pl" -"us anciennes » n'est pas terminée." +msgid "By %{typ}: %{values}" +msgstr "Par %{typ}: %{values}" -#: ../app/controllers/mixins/containers_common_mixin.rb:163 -msgid "No %{model} were selected for Analysis" -msgstr "Aucun %{model} sélectionné pour analyse" +msgid "By Cloud/Infrastructure Providers" +msgstr "Par fournisseurs d'infrastructure/de cloud" -#: ../app/controllers/mixins/containers_common_mixin.rb:204 -msgid "%{model} \"%{name}\": Error during 'Analysis': %{message}" -msgstr "%{model} \"%{name}\": Erreur durant 'Analyse': %{message}" +msgid "By Clusters / Deployment Roles" +msgstr "Par clusters/rôles de déploiement" -#: ../app/controllers/mixins/containers_common_mixin.rb:210 -msgid "\"%{record}\": Analysis successfully initiated" -msgstr "\"%{record}\" : analyse lancée" +msgid "By Filter" +msgstr "Par Filtre" -#: ../app/controllers/mixins/containers_common_mixin.rb:220 -msgid "%{model} \"%{name}\": Error during 'Check Compliance': " -msgstr "%{model} \"%{name}\": 'Vérification de Conformité': " +msgid "By Host" +msgstr "Par Hôte" -#: ../app/controllers/mixins/containers_common_mixin.rb:225 -msgid "\"%{record}\": Compliance check successfully initiated" -msgstr "\"%{record}\" : vérification de conformité démarrée" +msgid "By Providers" +msgstr "Par Fournisseurs" -#: ../app/controllers/mixins/ems_common_angular.rb:97 -msgid "Add New %{tables}" -msgstr "Ajouter de nouvelles %{tables}" +msgid "By Role" +msgstr "Par Rôle" -#: ../app/controllers/mixins/ems_common_angular.rb:112 -msgid "Add of %{model} was cancelled by the user" -msgstr "L''ajout de %{model} a été annulé par l''utilisateur" +msgid "By Username %{username} %{created_on}" +msgstr "Par nom d'utilisateur %{username} %{created_on}" -#: ../app/controllers/mixins/middleware_operations_mixin.rb:53 -msgid "No %{item_type} selected" -msgstr "" +msgid "By Username %{username} %{updated_on}" +msgstr "Par nom d'utilisateur %{username} %{updated_on}" -#: ../app/controllers/mixins/vm_show_mixin.rb:134 -msgid "VMs And Templates" -msgstr "MV et modèles" +msgid "C & U Collection" +msgstr "Collecte C & U" -#: ../app/controllers/network_router_controller.rb:69 -msgid "Add New Router" -msgstr "Ajouter nouveau router" +msgid "C & U Data Collectors" +msgstr "Collecteurs de données C & U" -#: ../app/controllers/network_router_controller.rb:79 -msgid "Add of new Router was cancelled by the user" -msgstr "L'ajout d'un nouveau router a été annulé par l'utilisateur" +msgid "C & U Data Processors" +msgstr "Processeurs de données C & U" -#: ../app/controllers/network_router_controller.rb:89 -msgid "Network Router creation failed: Task start failed: ID [%{id}]" -msgstr "" -"La création d'un routeur réseau a échoué : échec de démarrage de la tâche : ID" -" [%{id}]" +msgid "C & U Database" +msgstr "Base de données C & U" -#: ../app/controllers/network_router_controller.rb:133 -msgid "No router were selected for deletion." -msgstr "Aucun router sélectionné à supprimer." +msgid "C & U Database Login Password and Verify Password fields do not match" +msgstr "Les champs de connexion à la base de données C & U Mot de passe et Vérifier le mot de passe ne correspondent pas" -#: ../app/controllers/network_router_controller.rb:142 -msgid "Router no longer exists." -msgstr "Le routeur n'existe plus." +msgid "C & U Gap Collection" +msgstr "Collecte des écarts C & U" -#: ../app/controllers/network_router_controller.rb:156 -msgid "The selected Router was deleted" -msgstr "Le router sélectionné a été supprimé" +msgid "C & U Gap Collection successfully initiated" +msgstr "Collecte des écarts C & U lancée" -#: ../app/controllers/network_router_controller.rb:171 -msgid "Edit Router \"%{name}\"" -msgstr "Modifier router \"%{name}\"" +msgid "CA" +msgstr "CA" -#: ../app/controllers/network_router_controller.rb:182 -msgid "Edit of Router \"%{name}\" was cancelled by the user" -msgstr "La modification du router \"%{name}\" a été annulée par l'utilisateur" +msgid "CA:" +msgstr "CA :" -#: ../app/controllers/network_router_controller.rb:190 -msgid "Router update failed: Task start failed: ID [%{id}]" -msgstr "" -"La mise à jour du routeur a échoué : échec de démarrage de la tâche : ID [%{id" -"}]" +msgid "CD-ROM (IDE %{location})%{connection}" +msgstr "CD-ROM (IDE %{location})%{connection}" -#: ../app/controllers/network_router_controller.rb:252 -msgid "Delete initiated for %{number} Network Router." -msgid_plural "Delete initiated for %{number} Network Routers." -msgstr[0] "Supprimer l'élément lancé pour %{number} du router réseau." -msgstr[1] "Supprimer l'élément lancé pour %{number} des routeurs réseau." +msgid "CD-ROM Image (IDE %{location})%{connection}" +msgstr "Image CD-ROM (IDE %{location})%{connection}" -#: ../app/controllers/oauth_sessions_controller.rb:4 -msgid "Authenticated, please close tab to return to ManageIQ." -msgstr "Authentifié. Fermez l'onglet pour revenir à ManageIQ." +msgid "CDN Channel" +msgstr "Canal CDN" -#: ../app/controllers/ontap_file_share_controller.rb:84 -msgid "Create Datastore was cancelled by the user" -msgstr "La création du magasin de données a été annulée par l'utilisateur" +msgid "CDN Channel:" +msgstr "Canal CDN :" -#: ../app/controllers/ontap_storage_system_controller.rb:76 -msgid "%{model} \"%{name}\": Create Logical Disk successfully initiated" -msgstr "%{model} \"%{name}\": Création de disque logique lancée" +msgid "CIDR" +msgstr "CIDR " -#: ../app/controllers/ontap_storage_system_controller.rb:91 -msgid "Create Logical Disk was cancelled by the user" -msgstr "La Création d'un Disque Logique a été annulée par l'utilisateur" +msgid "CPU" +msgstr "CPU" -#: ../app/controllers/ontap_storage_system_controller.rb:109 -msgid "Aggregate is required" -msgstr "Agrégat requis" +msgid "CPU Affinity" +msgstr "Affinité de processeur" -#: ../app/controllers/ontap_storage_system_controller.rb:110 -msgid "Size is required" -msgstr "La taille est obligatoire" +msgid "CPU Cores" +msgstr "Cœurs de processeur" -#: ../app/controllers/ontap_storage_system_controller.rb:112 -msgid "Size must be an integer" -msgstr "La taille doit correspondre à un nombre entier" +msgid "CPU Cores Per Socket" +msgstr "Cœurs de processeur par socket" -#: ../app/controllers/ops_controller.rb:114 -msgid "Development" -msgstr "" +msgid "CPU Limit" +msgstr "Limite de processeurs" -#: ../app/controllers/ops_controller.rb:114 -msgid "Production" -msgstr "" +msgid "CPU Percent" +msgstr "Pourcentage de processeur" -#: ../app/controllers/ops_controller.rb:203 -#: ../app/presenters/menu/default_menu.rb:248 -#: ../app/views/ops/_all_tabs.html.haml:288 -#: ../app/views/ops/_zone_form.html.haml:185 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:4 -msgid "Settings" -msgstr "Paramètres" +msgid "CPU Reserve" +msgstr "Réserve de processeur" -#: ../app/controllers/ops_controller.rb:208 -msgid "Access Control" -msgstr "Contrôle d'Accès" +msgid "CPU Reserve Expand" +msgstr "Extension de réserve du processeur" -#: ../app/controllers/ops_controller.rb:212 -#: ../app/views/host/_main.html.haml:23 -#: ../app/views/vm_cloud/_main.html.haml:34 -#: ../app/views/vm_common/_main.html.haml:39 -msgid "Diagnostics" -msgstr "Diagnostic" +msgid "CPU Shares" +msgstr "Partages du processeur" -#: ../app/controllers/ops_controller.rb:216 ../app/helpers/ops_helper.rb:38 -#: ../app/views/ops/_all_tabs.html.haml:236 -#: ../app/views/ops/_settings_authentication_tab.html.haml:55 -#: ../app/views/ops/_settings_replication_tab.html.haml:136 -msgid "Database" -msgstr "Base de données" +msgid "CPU Shares Level" +msgstr "Niveau de partages du processeur" -#: ../app/controllers/ops_controller.rb:338 -msgid "Select Start date and End date to Collect C & U Data" -msgstr "" -"Sélectionner la date de début et la date de fin pour la collecte des données C" -"&U" +msgid "CPU Speed" +msgstr "Vitesse du processeur" -#: ../app/controllers/ops_controller.rb:357 -msgid "Apply the good VM custom variable value records" -msgstr "" -"Appliquer les enregistrements de valeurs variables personnalisées correctes po" -"ur la machine virtuelle" +msgid "CPU Time" +msgstr "Temps processeur" -#: ../app/controllers/ops_controller.rb:359 -msgid "Apply the good import records" -msgstr "Appliquer les enregistrements d'importation corrects" +msgid "CPU Type" +msgstr "Type de processeur" -#: ../app/controllers/ops_controller.rb:443 -msgid "[Region: %{description} [%{region}]]" -msgstr "[Région : %{description} [%{region}]]" +msgid "CPU Usage" +msgstr "Utilisation du processeur" -#: ../app/controllers/ops_controller.rb:446 -msgid "Diagnostics %{text}" -msgstr "Diagnostic de %{text}" +msgid "CPU/Memory Recommendations of selected item" +msgstr "Recommandations processeur/mémoire de l'élément sélectionné" -#: ../app/controllers/ops_controller.rb:447 -msgid "Settings %{text}" -msgstr "Paramètres %{text}" +msgid "CPU/Memory Recommendations of this Image" +msgstr "Recommandations processeur/mémoire de cette image" -#: ../app/controllers/ops_controller.rb:448 -msgid "Access Control %{text}" -msgstr "Contrôle d''Accès %{text}" +msgid "CPU/Memory Recommendations of this VM" +msgstr "Recommandations processeur/mémoire de cette machine virtuelle" -#: ../app/controllers/ops_controller.rb:449 -msgid "Database []" -msgstr "Base de données []" +msgid "CPUs" +msgstr "Processeurs" -#: ../app/controllers/ops_controller.rb:523 -msgid "Editing Log Depot settings" -msgstr "Modification des paramètres du dépôt de journaux" +msgid "CSV" +msgstr "CSV" -#: ../app/controllers/ops_controller.rb:550 -msgid "Adding a new Category" -msgstr "Ajout d'une nouvelle catégorie" +msgid "Calculations" +msgstr "Calculs" -#: ../app/controllers/ops_controller.rb:558 -msgid "Adding a new Mapping" -msgstr "Ajouter un nouveau Mappage" +msgid "Can not change description of 'Default Container Image Rate'" +msgstr "" -#: ../app/controllers/ops_controller.rb:560 -msgid "Editing tag mapping from label \"%{name}\"" -msgstr "Modifier le mappage du libellé \"%{name}\"" +msgid "Can not delete folder, one or more reports in the selected folder are not owned by your group" +msgstr "Impossible de supprimer le dossier. Un ou plusieurs rapports du dossier sélectionné n'appartiennent pas à votre groupe." -#: ../app/controllers/ops_controller.rb:633 -#: ../app/views/configuration/_ui_2.html.haml:22 -msgid "Tagging" -msgstr "Balisage" +msgid "Cancel" +msgstr "Annuler" -#: ../app/controllers/ops_controller.rb:643 -msgid "Adding a new %{tenant}" -msgstr "Ajout d'un nouveau %{tenant}" +msgid "Cancel (Esc)" +msgstr "Annuler (Échap)" -#: ../app/controllers/ops_controller.rb:656 -msgid "Manage quotas for %{model} \"%{name}\"" -msgstr "Gérer les quotas pour le %{model} \"%{name}\"" +msgid "Cancel Add" +msgstr "Annuler l'ajout" -#: ../app/controllers/ops_controller.rb:669 -#: ../app/controllers/ops_controller.rb:678 -#: ../app/helpers/host_helper/textual_summary.rb:386 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:121 -#: ../app/helpers/vm_helper/textual_summary.rb:486 -#: ../app/presenters/tree_builder_ops_rbac.rb:31 -#: ../app/views/layouts/_item.html.haml:112 -#: ../app/views/layouts/listnav/_host.html.haml:185 -msgid "Users" -msgstr "Utilisateurs" +msgid "Cancel Changes" +msgstr "Annuler les modifications" -#: ../app/controllers/ops_controller.rb:671 -#: ../app/controllers/ops_controller.rb:685 -#: ../app/helpers/host_helper/textual_summary.rb:397 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:132 -#: ../app/helpers/vm_helper/textual_summary.rb:497 -#: ../app/presenters/tree_builder_ops_rbac.rb:34 -#: ../app/views/layouts/_item.html.haml:97 -#: ../app/views/layouts/_role_visibility.html.haml:71 -#: ../app/views/layouts/listnav/_host.html.haml:192 -msgid "Groups" -msgstr "Groupes" +msgid "Cancel Delete" +msgstr "Annuler la suppression" -#: ../app/controllers/ops_controller.rb:673 -#: ../app/controllers/ops_controller.rb:688 -#: ../app/presenters/tree_builder_ops_rbac.rb:37 -#: ../app/views/infra_topology/show.html.haml:52 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:153 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:159 -msgid "Roles" -msgstr "Rôles" +msgid "Cancel Import" +msgstr "Annuler l'importation" -#: ../app/controllers/ops_controller.rb:675 -#: ../app/controllers/ops_controller.rb:690 ../app/helpers/ui_constants.rb:491 -#: ../app/helpers/ui_constants.rb:525 ../app/presenters/menu/default_menu.rb:51 -#: ../app/presenters/tree_builder_ops_rbac.rb:40 -#: ../app/views/configuration/_ui_2.html.haml:175 -msgid "Tenants" -msgstr "Locataires" +msgid "Cancel Job" +msgstr "Annuler la tâche" -#: ../app/controllers/ops_controller.rb:692 -#: ../app/views/catalog/_form.html.haml:7 -#: ../app/views/catalog/_sandt_tree_show.html.haml:12 -#: ../app/views/miq_capacity/_utilization_tabs.html.haml:7 -#: ../app/views/miq_policy/import.html.haml:17 -#: ../app/views/ops/_all_tabs.html.haml:69 -#: ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:13 -msgid "Details" -msgstr "Détails" +msgid "Cancel Simulation to go back to Button details" +msgstr "Annuler la simulation pour revenir aux détails du bouton" -#: ../app/controllers/ops_controller.rb:765 -msgid "%{message} %{key}:[*] to [*]" -msgstr "%{message} %{key}:[*] vers [*]" +msgid "Cancel after" +msgstr "Annuler après" -#: ../app/controllers/ops_controller.rb:770 -msgid "%{message} %{key}:[%{old_value}] to [new_value]" -msgstr "%{message} %{key}:[%{old_value}] vers [new_value]" +msgid "Cancel client key change" +msgstr "Annuler le changement de clé du client" -#: ../app/controllers/ops_controller.rb:776 -msgid "%{message} %{key}:[%{old_value}] to [%{new_value}]" -msgstr "" +msgid "Cancel password change" +msgstr "Annuler la modification du mot de passe" -#: ../app/controllers/ops_controller/db.rb:106 -msgid "VMDB Summary" -msgstr "Synthède de la VMDB" +msgid "Cancel private key change" +msgstr "Annuler le changement de clé privée" -#: ../app/controllers/ops_controller/db.rb:112 -msgid "VMDB Utilization" -msgstr "Utilisation de la VMDB" +msgid "Cancel secret access key change" +msgstr "Annuler le changement de clé d'accès secrète" -#: ../app/controllers/ops_controller/db.rb:116 -msgid "VMDB Client Connections" -msgstr "Connexions de client VMDB" +msgid "Cancel stored token" +msgstr "Annuler le token stocké" -#: ../app/controllers/ops_controller/db.rb:120 -msgid "All VMDB Indexes" -msgstr "Tous les Index VMDB" +msgid "Cancel the load" +msgstr "Annuler le chargement" -#: ../app/controllers/ops_controller/db.rb:122 -msgid "VMDB Settings" -msgstr "Paramètres de la VMDB" +msgid "Cancel the save" +msgstr "Annuler l'enregistrement" -#: ../app/controllers/ops_controller/db.rb:127 -msgid "Tables" -msgstr "Tables" +msgid "Cancel the selected task" +msgstr "Annuler la tâche sélectionnée" -#: ../app/controllers/ops_controller/db.rb:135 -msgid "Indexes for %{model} \"%{name}\"" -msgstr "Index pour %{model} \"%{name}\"" +msgid "Cancel this provisioning request" +msgstr "Annuler cette demande de mise en service" -#: ../app/controllers/ops_controller/db.rb:147 -msgid "VMDB \"%{name}\" Table Utilization" -msgstr "Utilisation de la table de VMDB \"%{name}\"" +msgid "Cancelling" +msgstr "Annulation en cours" -#: ../app/controllers/ops_controller/diagnostics.rb:28 -msgid "Error during 'Appliance restart': %{message}" -msgstr "Erreur lors du redémarrage de l'application : %{message}" +msgid "Cannot add a Widget, this Dashboard has been locked by the Administrator" +msgstr "Impossible d'ajouter un composant d'interface. Ce tableau de bord a été verrouillé par l'administrateur." -#: ../app/controllers/ops_controller/diagnostics.rb:31 -msgid "Server '%{name}' restarted" -msgstr "Serveur '%{name}' relancé" +msgid "Cannot collect current logs unless the %{server} is started" +msgstr "Impossible de collecter les journaux actuels si le %{server} n'est pas démarré" -#: ../app/controllers/ops_controller/diagnostics.rb:36 -msgid "%{product} Appliance restart initiated successfully" -msgstr "Le redémarrage de l'application %{product} a été lancé" +msgid "Cannot collect current logs unless there are started %{servers} in the Zone" +msgstr "Impossible de collecter les journaux actuels si aucun %{servers} n'est démarré dans la zone" -#: ../app/controllers/ops_controller/diagnostics.rb:54 -msgid "Error during 'workers restart': %{message}" -msgstr "Erreur lors du redémarrage des workers : %{message}" +msgid "Cannot connect to workflow service: %{message}" +msgstr "Impossible de se connecter au service de workflow : %{message}" -#: ../app/controllers/ops_controller/diagnostics.rb:57 -msgid "Worker on Server '%{name}' restarted" -msgstr "Worker sur le serveur '%{name}' redémarré" +msgid "Cannot create Request Info, error: %{error_message}" +msgstr "Impossible de créer les informations de demande, erreur : %{error_message}" -#: ../app/controllers/ops_controller/diagnostics.rb:62 -msgid "'%{type}' Worker restart initiated successfully" -msgstr "'%{type}' Redémarrage Worker initié" +msgid "Cannot delete a Zone that has Relationships" +msgstr "Impossible de supprimer une zone qui comporte des relations" -#: ../app/controllers/ops_controller/diagnostics.rb:88 -msgid "Edit Log Depot settings was cancelled by the user" -msgstr "" -"La modification des paramètres du dépôt de journaux a été annulée par l'utilis" -"ateur" +msgid "Cannot display binary content" +msgstr "Impossible d'afficher le contenu binaire" -#: ../app/controllers/ops_controller/diagnostics.rb:114 -msgid "Error during 'Save': %{message}" -msgstr "Erreur pendant 'la Sauvegarde': %{message}" +msgid "Cannot parse JSON file: %{message}" +msgstr "Impossible d'analyser le fichier JSON : %{message}" -#: ../app/controllers/ops_controller/diagnostics.rb:121 -msgid "Log Depot Settings were saved" -msgstr "Les paramètres du référentiel de fichiers journaux ont été enregistrés" +msgid "Cannot start log collection, a log collection is already in progress within this scope" +msgstr "Impossible de démarrer la collecte des journaux ; une collecte est déjà en cours dans cette étendue" -#: ../app/controllers/ops_controller/diagnostics.rb:140 -#: ../app/controllers/ops_controller/settings/schedules.rb:259 -msgid "Error during 'Validate': %{message}" -msgstr "Erreur pendant 'la Validation': %{message}" +msgid "Cannot start log collection, requires a started server" +msgstr "Impossible de démarrer la collecte des journaux si aucun serveur n'est démarré" -#: ../app/controllers/ops_controller/diagnostics.rb:142 -msgid "Log Depot Settings were validated" -msgstr "Les paramètres du référentiel de fichiers journaux ont été validés" +msgid "Capacity" +msgstr "Capacité" -#: ../app/controllers/ops_controller/diagnostics.rb:157 -msgid "EVM log downloaded" -msgstr "Log EVM téléchargé" +msgid "Capacity & Utilization" +msgstr "Capacité et utilisation" -#: ../app/controllers/ops_controller/diagnostics.rb:168 -msgid "Audit log downloaded" -msgstr "Journal d'audit téléchargé" +msgid "Capacity & Utilization data for %{vm_or_template} \"%{name}\"" +msgstr "Données de capacité et d'utilisation (C & U) pour %{vm_or_template} \"%{name}\"" -#: ../app/controllers/ops_controller/diagnostics.rb:179 -msgid "%{log_description} log downloaded" -msgstr "%{log_description} journal téléchargé" +msgid "Capacity & Utilization data for Container \"%{container_name}\"" +msgstr "" -#: ../app/controllers/ops_controller/diagnostics.rb:241 -msgid "End Date cannot be greater than Start Date" -msgstr "La Date de fin ne peut pas être plus grande que la Date de début" +msgid "Capacity Data" +msgstr "Données de capacité" -#: ../app/controllers/ops_controller/diagnostics.rb:251 -msgid "Error during 'C & U Gap Collection': %{message}" -msgstr "Erreur lors de l'opération \"Collecte des écarts C & U\" : %{message}" +msgid "Capacity and Utilization Collection settings saved" +msgstr "Paramètres de collecte de capacité et d'utilisation enregistrés" -#: ../app/controllers/ops_controller/diagnostics.rb:254 -msgid "C & U Gap Collection successfully initiated" -msgstr "Collecte des écarts C & U lancée" +msgid "Capture C & U Data" +msgstr "Capturer les données C & U" -#: ../app/controllers/ops_controller/diagnostics.rb:275 -msgid "Error during 'Reset/synchronization process': %{message}" -msgstr "Erreur lors du processus de réinitialisation/synchronisation : %{message}" +msgid "Capture C & U Data by Tag" +msgstr "Capturer les données C & U par balise" -#: ../app/controllers/ops_controller/diagnostics.rb:277 -msgid "Reset/synchronization process successfully initiated" -msgstr "Réinitialisation/synchronization correctement lancée" +msgid "Catalog" +msgstr "Catalogue" -#: ../app/controllers/ops_controller/diagnostics.rb:308 -msgid "Adhoc DB Backup at %{time}" -msgstr "Sauvegarde de base de données ad hoc à %{time}" +msgid "Catalog Bundle \"%{name}\" was added" +msgstr "Le regroupement de catalogues \"%{name}\" a été ajouté" -#: ../app/controllers/ops_controller/diagnostics.rb:326 -msgid "Database Backup successfully initiated" -msgstr "La sauvegarde de base de données a été lancée" +msgid "Catalog Bundle \"%{name}\" was saved" +msgstr "Le regroupement de catalogues \"%{name}\" a été enregistré" -#: ../app/controllers/ops_controller/diagnostics.rb:395 -msgid "Error during 'Database Garbage Collection': %{message}" +msgid "Catalog Item %s was added" msgstr "" -"Erreur lors de l'opération de nettoyage de la mémoire de la base de données : " -"%{message}" - -#: ../app/controllers/ops_controller/diagnostics.rb:397 -msgid "Database Garbage Collection successfully initiated" -msgstr "Le nettoyage de la mémoire de la base de données a été lancé" -#: ../app/controllers/ops_controller/diagnostics.rb:406 -msgid "Error during Orphaned Records delete for user %{id}: %{message}" +msgid "Catalog Item %s was saved" msgstr "" -"Erreur lors de la suppression des enregistrements orphelins pour l'utilisateur" -" %{id} : %{message}" - -#: ../app/controllers/ops_controller/diagnostics.rb:411 -msgid "Orphaned Records deleted for userid [%{number}]" -msgstr "Enregistrements orphelins supprimé pour l'utilisateur [%{number}]" -#: ../app/controllers/ops_controller/diagnostics.rb:416 -msgid "Orphaned Records for userid %{id} were successfully deleted" -msgstr "Les enregistrements orphelins de l'utilisateur %{id} ont été supprimés" +msgid "Catalog Item Type" +msgstr "Type d'élément de catalogue" -#: ../app/controllers/ops_controller/diagnostics.rb:586 -msgid "Error during 'Clear Connection Broker cache': %{message}" -msgstr "" -"Erreur lors de l'opération \"Effacer le cache du broker de connexion\" : %{messa" -"ge}" +msgid "Catalog Items" +msgstr "Éléments de catalogue" -#: ../app/controllers/ops_controller/diagnostics.rb:589 -#: ../app/controllers/ops_controller/diagnostics.rb:594 -msgid "Connection Broker cache cleared successfully" -msgstr "Le cache du broker de connexion a été effacé" +msgid "Catalogs" +msgstr "Catalogues" -#: ../app/controllers/ops_controller/diagnostics.rb:608 -msgid "Cannot start log collection, requires a started server" -msgstr "Impossible de démarrer la collecte des journaux si aucun serveur n'est démarré" +msgid "Categories" +msgstr "Catégories" -#: ../app/controllers/ops_controller/diagnostics.rb:610 -msgid "" -"Cannot start log collection, a log collection is already in progress within th" -"is scope" -msgstr "" -"Impossible de démarrer la collecte des journaux ; une collecte est déjà en cou" -"rs dans cette étendue" +msgid "Category" +msgstr "Catégorie" -#: ../app/controllers/ops_controller/diagnostics.rb:616 -msgid "Log collection error returned: %{error_message}" -msgstr "Erreur renvoyée lors de la collecte de journaux : %{error_message}" +msgid "Category %{description} [%{name}] record created (" +msgstr "L'enregistrement de catégorie %{description} [%{name}] a été créé (" -#: ../app/controllers/ops_controller/diagnostics.rb:618 -msgid "Log collection for %{product} %{object_type} %{name} has been initiated" -msgstr "La collecte de journaux pour %{product} %{object_type} %{name} a été initiée" +msgid "Category %{description} [%{name}] record deleted" +msgstr "L'enregistrement de catégorie %{description} [%{name}] a été supprimé" -#: ../app/controllers/ops_controller/diagnostics.rb:655 -msgid "Start is not allowed for the selected item" -msgstr "Le démarrage n'est pas autorisé pour l'élément sélectionné" +msgid "Category %{description} [%{name}] record updated (" +msgstr "L'enregistrement de catégorie %{description} [%{name}] a été mis à jour (" -#: ../app/controllers/ops_controller/diagnostics.rb:663 -msgid "Start successfully initiated" -msgstr "Démarrage commencé" +msgid "Category '%{category_name}' cannot be deleted" +msgstr "Impossible de supprimer la catégorie '%{category_name}'" -#: ../app/controllers/ops_controller/diagnostics.rb:672 -msgid "Suspend is not allowed for the selected item" -msgstr "La suspension n'est pas autorisée pour l'élément sélectionné" +msgid "Category Information" +msgstr "Informations sur la catégorie" -#: ../app/controllers/ops_controller/diagnostics.rb:680 -msgid "Suspend successfully initiated" -msgstr "Suspension commencée" +msgid "Category Selection" +msgstr "Sélection de catégorie" -#: ../app/controllers/ops_controller/diagnostics.rb:703 -msgid "%{model} \"%{name}\": Error during '%{task}': " -msgstr "%{model} \"%{name}\": Erreur durant '%{task}': " +msgid "Category Tag Entries" +msgstr "Entrées de balise de la catégorie" -#: ../app/controllers/ops_controller/diagnostics.rb:719 -#: ../app/controllers/ops_controller/diagnostics.rb:737 -msgid "Setting priority is not allowed for the selected item" -msgstr "La définition d'une priorité n'est pas autorisée pour l'élément sélectionné" +msgid "Category is required" +msgstr "Le champ catégorie est requis" -#: ../app/controllers/ops_controller/diagnostics.rb:728 -#: ../app/controllers/ops_controller/diagnostics.rb:746 -msgid "%{product} Server \"%{name}\" set as %{priority} for Role \"%{role_description}\"" -msgstr "" -"Serveur %{product} \"%{name}\" défini comme %{priority} pour le rôle \"%{role_des" -"cription}\"" +msgid "Category: %{description}" +msgstr "Catégorie : %{description}" -#: ../app/controllers/ops_controller/diagnostics.rb:826 -#: ../app/controllers/ops_controller/diagnostics.rb:920 -msgid "Diagnostics %{model} \"%{name}\" (current)" -msgstr "Diagnostic de %{model} \"%{name}\" (en cours)" +msgid "Caution:" +msgstr "Attention :" -#: ../app/controllers/ops_controller/diagnostics.rb:830 -#: ../app/controllers/ops_controller/diagnostics.rb:856 -#: ../app/controllers/ops_controller/diagnostics.rb:924 -msgid "Diagnostics %{model} \"%{name}\"" -msgstr "Diagnostic de %{model} \"%{name}\"" +msgid "Caution: Manual changes to configuration files can disable the Server!" +msgstr "Attention : les modifications manuelles apportées aux fichiers de configuration peuvent désactiver le serveur !" -#: ../app/controllers/ops_controller/diagnostics.rb:865 -msgid "ManageIQ" -msgstr "ManageIQ" +msgid "Challenge URL" +msgstr "URL de la question" -#: ../app/controllers/ops_controller/diagnostics.rb:871 -msgid "Audit" -msgstr "Audit" +msgid "Challenge URL:" +msgstr "URL de la question :" -#: ../app/controllers/ops_controller/diagnostics.rb:944 -msgid "Internal Database" -msgstr "Base de données interne" +msgid "Change Group" +msgstr "Modifier le groupe" -#: ../app/controllers/ops_controller/diagnostics.rb:946 -msgid "External Database" -msgstr "Base de données externe" +msgid "Change Password / Confirm Password" +msgstr "Modifier le mot de passe / Confirmer le mot de passe" -#: ../app/controllers/ops_controller/ops_rbac.rb:128 -msgid "Error when adding a new tenant: %{message}" -msgstr "Erreur lors de l'ajout d'un nouveau locataire : %{message}" +msgid "Change stored client key" +msgstr "Modifier la clé de client stockée" -#: ../app/controllers/ops_controller/ops_rbac.rb:189 -msgid "Manage quotas for %{model} \"%{name}\" was cancelled by the user" -msgstr "" -"La gestion des quotas pour le %{model} \"%{name}\" a été annulée par l'utilisate" -"ur" +msgid "Change stored password" +msgstr "Modifier le mot de passe stocké" -#: ../app/controllers/ops_controller/ops_rbac.rb:203 -msgid "Error when saving tenant quota: %{message}" -msgstr "Erreur lors de l'enregistrement du quota de locataires : %{message}" +msgid "Change stored private key" +msgstr "Modifier la clé privée stockée" -#: ../app/controllers/ops_controller/ops_rbac.rb:206 -msgid "Quotas for %{model} \"%{name}\" were saved" -msgstr "Les quotas pour %{model} \"%{name}\" ont été enregistrés" +msgid "Change stored secret access key" +msgstr "Modifier la clé d'accès secrète stockée" -#: ../app/controllers/ops_controller/ops_rbac.rb:286 -msgid "User no longer exists" -msgstr "L'utilisateur n'existe plus" +msgid "Change stored token" +msgstr "Modifier le token stocké" -#: ../app/controllers/ops_controller/ops_rbac.rb:315 -msgid "Role no longer exists" -msgstr "Le rôle n'existe plus" +msgid "Change to this Group" +msgstr "Modification apportée à ce groupe" -#: ../app/controllers/ops_controller/ops_rbac.rb:348 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:387 -msgid "Default %{model} \"%{name}\" can not be deleted" -msgstr "Impossible de supprimer le %{model} \"%{name}\" par défaut" +msgid "Changed from previous" +msgstr "Modifié par rapport aux éléments précédents" -#: ../app/controllers/ops_controller/ops_rbac.rb:354 -msgid "Tenant no longer exists" -msgstr "Le locataire n'existe plus" +msgid "Changes" +msgstr "Modifications" -#: ../app/controllers/ops_controller/ops_rbac.rb:377 -msgid "MiqGroup no longer exists" -msgstr "Le groupe MIQ n'existe plus" +msgid "Changing the UI Workers Count will immediately restart the webserver" +msgstr "La modification du nombre de workers de l'interface utilisateur redémarrera immédiatement le serveur Web" -#: ../app/controllers/ops_controller/ops_rbac.rb:393 -msgid "Edit Sequence of User Groups was cancelled by the user" -msgstr "" -"La modification de la séquence de groupes d'utilisateurs a été annulée par l'u" -"tilisateur" +msgid "Changing to remote replication role will remove all current subscriptions" +msgstr "La modification du rôle de réplication distant supprimera tous les abonnements en cours" -#: ../app/controllers/ops_controller/ops_rbac.rb:412 -msgid "User Group Sequence was saved" -msgstr "La séquence de groupes d'utilisateurs a été enregistrée" +msgid "Chargeback" +msgstr "Rétrofacturation" -#: ../app/controllers/ops_controller/ops_rbac.rb:418 -msgid "Edit User Group Sequence" -msgstr "Modifier la séquence des groupes d'utilisateurs" +msgid "Chargeback Filters" +msgstr "Filtres rétrofacturation" -#: ../app/controllers/ops_controller/ops_rbac.rb:444 -msgid "Editing Sequence of User Groups" -msgstr "Modification de la séquence de groupes d'utilisateurs" +msgid "Chargeback Interval" +msgstr "Intervalle rétrofacturation" -#: ../app/controllers/ops_controller/ops_rbac.rb:522 -msgid "User must be entered to perform LDAP Group Look Up" -msgstr "L'utilisateur doit être saisi pour effectuer une recherche de groupe LDAP" +msgid "Chargeback Preview" +msgstr "" -#: ../app/controllers/ops_controller/ops_rbac.rb:526 -msgid "Username must be entered to perform LDAP Group Look Up" +msgid "Chargeback Resources" msgstr "" -"Le nom d'utilisateur doit être saisi pour effectuer une recherche de groupe LD" -"AP" -#: ../app/controllers/ops_controller/ops_rbac.rb:529 -msgid "User Password must be entered to perform LDAP Group Look Up" +msgid "Chargeback preview for \"%{vm_name}\"" msgstr "" -"Le mot de passe utilisateur doit être saisi pour effectuer une recherche de gr" -"oupe LDAP" -#: ../app/controllers/ops_controller/ops_rbac.rb:547 -msgid "Error during 'LDAP Group Look Up': %{message}" -msgstr "Erreur lors de l'opération \"Recherche de groupe LDAP\" : %{message}" +msgid "Chart" +msgstr "Graphique" -#: ../app/controllers/ops_controller/ops_rbac.rb:565 -#: ../app/views/report/_form_filter_chargeback.html.haml:202 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:99 -msgid "Project" -msgstr "Projet" +msgid "Chart Preview (up to 50 rows)" +msgstr "Aperçu du Graphique (jusqu'à 50 lignes)" -#: ../app/controllers/ops_controller/ops_rbac.rb:582 -msgid "Current %{model} \"%{name}\" cannot be deleted" -msgstr "Impossible de supprimer le %{model} \"%{name}\" actuel" +msgid "Chart Report" +msgstr "Rapport sur le graphique" -#: ../app/controllers/ops_controller/ops_rbac.rb:587 -msgid "Default %{model} \"%{name}\" cannot be copied" -msgstr "Impossible de copier le %{model} \"%{name}\" par défaut" +msgid "Chart Settings" +msgstr "Paramètres du graphique" -#: ../app/controllers/ops_controller/ops_rbac.rb:608 -msgid "Editing %{model} for \"%{name}\"" -msgstr "Modification de %{model} pour \"%{name}\"" +msgid "Chart Theme" +msgstr "Thème du graphique" -#: ../app/controllers/ops_controller/ops_rbac.rb:641 -msgid "Edit of %{name} was cancelled by the user" -msgstr "La modification de \"%{name}\" a été annulée par l'utilisateur" +msgid "Chart menu selection not yet implemented" +msgstr "Sélection du menu du graphique non implémentée à ce stade" -#: ../app/controllers/ops_controller/ops_rbac.rb:643 -msgid "Add of new %{name} was cancelled by the user" -msgstr "L''ajout d''un nouveau %{name} a été annulé par l''utilisateur" +msgid "Chart mode" +msgstr "Mode Graphique" -#: ../app/controllers/ops_controller/ops_rbac.rb:658 -msgid "Read Only %{model} \"%{name}\" can not be edited" -msgstr "Impossible de modifier le %{model} \"%{name}\" en lecture seule" +msgid "Chart no longer exists" +msgstr "Le graphique n'existe plus" -#: ../app/controllers/ops_controller/ops_rbac.rb:700 -msgid "Adding a new %{name}" -msgstr "Ajout d''un nouveau %{name}" +msgid "Charts" +msgstr "Graphiques" -#: ../app/controllers/ops_controller/ops_rbac.rb:853 -#: ../app/views/report/_form_filter_chargeback.html.haml:23 -#: ../app/views/report/_form_filter_chargeback.html.haml:66 -msgid "Tenant" -msgstr "Locataire" - -#: ../app/controllers/ops_controller/ops_rbac.rb:868 -#: ../app/controllers/ops_controller/ops_rbac.rb:871 -#: ../app/controllers/ops_controller/ops_rbac.rb:874 -#: ../app/controllers/ops_controller/ops_rbac.rb:877 -msgid "Access Control %{model}" -msgstr "Contrôle d''Accès %{model}" +msgid "Charts tab is not available unless a sort field has been selected" +msgstr "L'onglet Graphiques n'est disponible que si un champ de tri a été sélectionné" -#: ../app/controllers/ops_controller/ops_rbac.rb:894 -msgid "Access Control %{model} \"%{name}\"" -msgstr "Contrôle d''Accès %{model} \"%{name}\"" +msgid "Charts tab is not available until at least 1 field has been selected" +msgstr "L'onglet Graphiques n'est pas disponible tant qu'au moins 1 champ n'a pas été sélectionné" -#: ../app/controllers/ops_controller/ops_rbac.rb:1003 -msgid "A User must be assigned to a Group" -msgstr "Un Utilisateur doit être assigné à un Groupe" +msgid "Check All" +msgstr "Vérifier tout" -#: ../app/controllers/ops_controller/ops_rbac.rb:1089 -#: ../app/controllers/ops_controller/ops_rbac.rb:1090 -#: ../app/controllers/ops_controller/ops_rbac.rb:1091 -msgid "" -msgstr "" +msgid "Check Any" +msgstr "Vérifier n'importe lequel" -#: ../app/controllers/ops_controller/ops_rbac.rb:1261 -msgid "At least one Product Feature must be selected" -msgstr "Au moins une Fonction de produit doit être sélectionnée" +msgid "Check Compliance" +msgstr "Vérifier la conformité" -#: ../app/controllers/ops_controller/ops_rbac.rb:1274 -msgid "A User Group must be assigned a Role" -msgstr "Un Rôle doit être assigné au Groupe d'Utilisateurs" +msgid "Check Compliance of Last Known Configuration" +msgstr "Vérifier la conformité de la dernière configuration connue" -#: ../app/controllers/ops_controller/rbac_tree.rb:30 -msgid "%{title} Main Tab" -msgstr "%{title} Onglet Principal" +msgid "Check Compliance of the last known configuration for the selected Templates" +msgstr "Vérifier la conformité de la dernière configuration connue pour les modèles sélectionnés" -#: ../app/controllers/ops_controller/rbac_tree.rb:82 -msgid "Access Rules for all Virtual Machines" -msgstr "Règles d''Accès pour toutes les Machines Virtuelles " +msgid "Check Compliance of the last known configuration for the selected items" +msgstr "Vérifier la conformité de la dernière configuration connue pour les éléments sélectionnés" -#: ../app/controllers/ops_controller/settings.rb:23 -msgid "Error during 'apply': %{error}" -msgstr "Erreur lors de l'application : %{error}" +msgid "Check Compliance of the last known configuration for these Cloud Managers" +msgstr "" -#: ../app/controllers/ops_controller/settings.rb:26 -msgid "Records were successfully imported" -msgstr "Les enregistrements ont été importés" +msgid "Check Compliance of the last known configuration for these Container Managers" +msgstr "" -#: ../app/controllers/ops_controller/settings.rb:31 -#: ../app/controllers/ops_controller/settings/upload.rb:96 -msgid "Use the Choose file button to locate CSV file" -msgstr "Utiliser le bouton Choisir un fichier pour localiser un fichier CSV" +msgid "Check Compliance of the last known configuration for these Infra Managers" +msgstr "" -#: ../app/controllers/ops_controller/settings.rb:105 -msgid "LDAP Host is required" -msgstr "L'Hôte LDAP est requis" +msgid "Check Compliance of the last known configuration for these Nodes" +msgstr "Vérifier la conformité de la dernière configuration connue pour ces nœuds" -#: ../app/controllers/ops_controller/settings.rb:113 -msgid "LDAP Host should be unique" -msgstr "L'Hôte LDAP doit être unique" +msgid "Check Compliance of the last known configuration for these Physical Infra Managers" +msgstr "" -#: ../app/controllers/ops_controller/settings.rb:138 -#: ../app/controllers/ops_controller/settings/common.rb:938 -#: ../app/controllers/ops_controller/settings/common.rb:944 -#: ../app/controllers/ops_controller/settings/common.rb:1139 -#: ../app/controllers/ops_controller/settings/common.rb:1206 -#: ../app/controllers/ops_controller/settings/common.rb:1213 -#: ../app/controllers/ops_controller/settings/common.rb:1218 -#: ../app/controllers/ops_controller/settings/common.rb:1224 -#: ../app/controllers/ops_controller/settings/common.rb:1234 -msgid "Settings %{model} \"%{name}\"" -msgstr "Paramètres %{model} \"%{name}\"" +msgid "Check Compliance of the last known configuration for these Pods" +msgstr "Vérifier la conformité de la dernière configuration connue pour ces pods" -#: ../app/controllers/ops_controller/settings.rb:148 -msgid "Region description is required" -msgstr "La description de la région est obligatoire" +msgid "Check Compliance of the last known configuration for these Replicators" +msgstr "Vérifier la conformité de la dernière configuration connue pour ces réplicateurs" -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:167 -msgid "[%{name}] Record created (" -msgstr "[%{name}] Enregistrement créé (" +msgid "Check Compliance of the last known configuration for this Cloud Manager" +msgstr "" -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:244 -msgid "At least one item must be entered to create Analysis Profile" -msgstr "Au moins un Élément doit être saisi pour créer le profil d'analyse" +msgid "Check Compliance of the last known configuration for this Container Manager" +msgstr "" -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:264 -msgid "Error during '%{title}': %{message}" -msgstr "Erreur pendant '%{title}' : %{message}" +msgid "Check Compliance of the last known configuration for this Image" +msgstr "Vérifier la conformité de la dernière configuration connue pour cette image" -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:297 -msgid "Sample %{model} \"%{name}\" can not be edited" -msgstr "Impossible de modifier l'exemple de %{model} \"%{name}\"" +msgid "Check Compliance of the last known configuration for this Infra Manager" +msgstr "" -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:582 -msgid "File Entry is required" -msgstr "L'entrée de fichier est obligatoiree" +msgid "Check Compliance of the last known configuration for this Instance" +msgstr "Vérifier la conformité de la dernière configuration connue pour cette instance" -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:616 -msgid "Registry Entry is required" -msgstr "L'entrée de registre est obligatoire" +msgid "Check Compliance of the last known configuration for this Node" +msgstr "Vérifier la conformité de la dernière configuration connue pour ce nœud" -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:674 -msgid "Event log name is required" -msgstr "Le nom du journal des événements est obligatoire" +msgid "Check Compliance of the last known configuration for this Physical Infra Manager" +msgstr "" -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:728 -msgid "%{description} category Scan" -msgstr "%{description} Analyse de la catégorie" +msgid "Check Compliance of the last known configuration for this Pod" +msgstr "Vérifier la conformité de la dernière configuration connue pour ce pod" -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:745 -msgid "%{description} registry Scan" -msgstr "%{description} analyse du registre" +msgid "Check Compliance of the last known configuration for this Replicator" +msgstr "Vérifier la conformité de la dernière configuration connue pour ce réplicateur" -#: ../app/controllers/ops_controller/settings/cap_and_u.rb:39 -msgid "Capacity and Utilization Collection settings saved" -msgstr "Paramètres de collecte de capacité et d'utilisation enregistrés" +msgid "Check Compliance of the last known configuration for this Template" +msgstr "Vérifier la conformité de la dernière configuration connue pour ce modèle" -#: ../app/controllers/ops_controller/settings/common.rb:38 -msgid "Changing the UI Workers Count will immediately restart the webserver" -msgstr "" -"La modification du nombre de workers de l'interface utilisateur redémarrera im" -"médiatement le serveur Web" +msgid "Check Compliance of the last known configuration for this VM" +msgstr "Vérifier la conformité de la dernière configuration connue pour cette machine virtuelle" -#: ../app/controllers/ops_controller/settings/common.rb:212 -#: ../app/controllers/ops_controller/settings/common.rb:221 -msgid "Error during replication configuration save: %{message}" -msgstr "" -"Erreur lors de l'enregistrement de la configuration de réplication : %{message" -"}" +msgid "Check Compliance of the last known configuration for this item" +msgstr "Vérifier la conformité de la dernière configuration connue pour cet élément" -#: ../app/controllers/ops_controller/settings/common.rb:215 -#: ../app/controllers/ops_controller/settings/common.rb:231 -#: ../app/controllers/ops_controller/settings/common.rb:234 -msgid "Replication configuration save was successful" -msgstr "L'enregistrement de la configuration de réplication a réussi" +msgid "Check Count" +msgstr "Vérifier le nombre" -#: ../app/controllers/ops_controller/settings/common.rb:228 -msgid "Error saving the excluded tables list: %{message}" -msgstr "" +msgid "Check Value Error: %{msg}" +msgstr "Erreur de la valeur de vérification : %{msg}" -#: ../app/controllers/ops_controller/settings/common.rb:245 -msgid "Subscription Credentials validated successfully" -msgstr "Informations d'identification d'abonnement validées" +msgid "Check for Updates" +msgstr "Rechercher des mises à jour" -#: ../app/controllers/ops_controller/settings/common.rb:259 -msgid "Invalid data for enabling Central Admin" -msgstr "Données non valides pour l'activation Admin Centrale" +msgid "Check for updates" +msgstr "Rechercher des mises à jour" -#: ../app/controllers/ops_controller/settings/common.rb:265 -msgid "Enable Central Admin has been successfully initiated" -msgstr "Activation Admin Centrale initiée" +msgid "Child Orchestration Stacks" +msgstr "Piles d'orchestration enfants" -#: ../app/controllers/ops_controller/settings/common.rb:267 -#: ../app/controllers/ops_controller/settings/common.rb:285 -msgid "Region Not found" -msgstr "Région non trouvée" +msgid "Child Tenants" +msgstr "Locataires enfants" -#: ../app/controllers/ops_controller/settings/common.rb:277 -msgid "Invalid data for disabling Central Admin" -msgstr "Données non valides pour la désactivation Admin Centrale" +msgid "Child VM Selection" +msgstr "Sélection MV Enfant" -#: ../app/controllers/ops_controller/settings/common.rb:283 -msgid "Central Admin has been disabled" -msgstr "Admin Centrale désactivée" +msgid "Child VMs:" +msgstr "Machines virtuelles enfants :" -#: ../app/controllers/ops_controller/settings/common.rb:342 -msgid "LDAP Settings validation was successful" -msgstr "La validation des paramètres LDAP a réussi" +msgid "Choices" +msgstr "Choix" -#: ../app/controllers/ops_controller/settings/common.rb:362 -msgid "Amazon Settings validation was successful" -msgstr "La validation des paramètres Amazon a été effectuée" +msgid "Choose" +msgstr "Choisir" -#: ../app/controllers/ops_controller/settings/common.rb:377 -msgid "Error during sending test email: %{class_name}, %{error_message}" -msgstr "Erreur lors de l'envoi de l'e-mail de test : %{class_name}, %{error_message}" +msgid "Choose %{entity}" +msgstr "Choisir %{entity}" -#: ../app/controllers/ops_controller/settings/common.rb:380 -msgid "" -"The test email is being delivered, check \"%{email}\" to verify it was successfu" -"l" -msgstr "" -"L'email de test est en cours de transmission, vérifiez \"%{email}\" pour confirm" -"er sa transmission" +msgid "Choose Datasource:" +msgstr "Choisir la source de données :" -#: ../app/controllers/ops_controller/settings/common.rb:474 -msgid "Configuration changes saved" -msgstr "Changements de configuration sauvés" +msgid "Choose Flavor" +msgstr "Choisir le gabarit" -#: ../app/controllers/ops_controller/settings/common.rb:498 -msgid "Error when saving new server name: %{message}" -msgstr "Erreur lors de l'enregistrement d'un nouveau nom de serveur : %{message}" +msgid "Choose Policies" +msgstr "Choisir des stratégies" -#: ../app/controllers/ops_controller/settings/common.rb:508 -#: ../app/controllers/ops_controller/settings/common.rb:556 -msgid "" -"Configuration settings saved for %{product} Server \"%{name} [%{server_id}]\" in" -" Zone \"%{zone}\"" +msgid "Choose Provider" msgstr "" -"Paramètres de configuration enregistrés pour le serveur %{product} \"%{name} [%" -"{server_id}]\" dans la zone \"%{zone}\"" -#: ../app/controllers/ops_controller/settings/common.rb:511 -msgid "" -"Authentication settings saved for %{product} Server \"%{name} [%{server_id}]\" i" -"n Zone \"%{zone}\"" +msgid "Choose Tenants" msgstr "" -"Paramètres d'authentification enregistrés pour le serveur %{product} \"%{name} " -"[%{server_id}]\" dans la zone \"%{zone}\"" -#: ../app/controllers/ops_controller/settings/common.rb:514 -msgid "Configuration settings saved" -msgstr "Paramètres de configuration sauvés" +msgid "Choose a %{cluster}" +msgstr "Choisir un %{cluster}" -#: ../app/controllers/ops_controller/settings/common.rb:597 -msgid "Edit of Customer Information was cancelled" -msgstr "La modification des informations sur le client a été annulée" +msgid "Choose a %{host}" +msgstr "Choisir un %{host}" -#: ../app/controllers/ops_controller/settings/common.rb:604 -msgid "Custom Support URL and Description both must be entered." -msgstr "Une URL de Support personnalisée et une Description doivent être saisis" +msgid "Choose a %{model} report filter" +msgstr "Choisir un filtre de rapport %{model}" -#: ../app/controllers/ops_controller/settings/common.rb:608 -msgid "VNC Proxy Port must be numeric" -msgstr "Le port du proxy VNC doit être numérique" +msgid "Choose a %{provider}" +msgstr "Choisir un %{provider}" -#: ../app/controllers/ops_controller/settings/common.rb:614 -msgid "When configuring a VNC Proxy, both Address and Port are required" -msgstr "" -"Lors de la configuration d'un proxy VNC, l'adresse et le port sont obligatoire" -"s" +msgid "Choose a %{provider} first" +msgstr "Choisir d'abord un %{provider}" -#: ../app/controllers/ops_controller/settings/common.rb:693 -msgid "Error during Analysis Affinity save: %{message}" -msgstr "Erreur lors de l'enregistrement de l'affinité d'analyse : %{message}" +msgid "Choose a Category" +msgstr "Choisir une catégorie" -#: ../app/controllers/ops_controller/settings/common.rb:695 -msgid "Analysis Affinity was saved" -msgstr "L'affinité d'analyse a été enregistrée" +msgid "Choose a Filter" +msgstr "Choisir un filtre" -#: ../app/controllers/ops_controller/settings/common.rb:936 -#: ../app/controllers/ops_controller/settings/common.rb:942 -#: ../app/controllers/ops_controller/settings/common.rb:1232 -msgid "Settings %{model} \"%{name}\" (current)" -msgstr "Paramètres %{model} \"%{name}\" (en cours)" +msgid "Choose a Import/Export type from the menus on the left." +msgstr "Choisir un type d'importation/exportation dans les menus de gauche." -#: ../app/controllers/ops_controller/settings/common.rb:1163 -#: ../app/controllers/ops_controller/settings/upload.rb:46 -msgid "Locate and upload a file to start the import process" -msgstr "Localiser et télécharger un fichier pour démarrer le processus d'importation" +msgid "Choose a Label" +msgstr "" -#: ../app/controllers/ops_controller/settings/common.rb:1171 -#: ../app/controllers/ops_controller/settings/upload.rb:48 -msgid "Choose the type of custom variables to be imported" -msgstr "Choisir le type des variables personnalisées à importer" +msgid "Choose a Report from the menus on the left." +msgstr "Choisir un rapport dans les menus de gauche." -#: ../app/controllers/ops_controller/settings/common.rb:1186 -#: ../app/controllers/ops_controller/settings/common.rb:1189 -#: ../app/controllers/ops_controller/settings/common.rb:1192 -#: ../app/controllers/ops_controller/settings/common.rb:1195 -msgid "Settings %{model}" -msgstr "Paramètres %{model}" +msgid "Choose a Report to view from the menus on the left." +msgstr "Choisir un rapport à afficher dans les menus de gauche." -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:23 -msgid "Label is required" -msgstr "Le libéllé est obligatoire" +msgid "Choose a Role to edit from the left." +msgstr "Choisir un rôle à modifier dans la partie gauche." -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:26 -msgid "Category is required" -msgstr "Le champ catégorie est requis" +msgid "Choose a Schedule to view from the menus on the left." +msgstr "Choisir un Planning à afficher dans les menus de gauche." -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:55 -msgid "" -msgstr "" +msgid "Choose a Timeline from the menus on the left." +msgstr "Choisir une chronologie dans les menus de gauche." -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:137 -msgid "Mapping for %{entity}, %{label} already exists" -msgstr "Mappage de %{entity}, %{label} déjà existant" +msgid "Choose a VM" +msgstr "Choisir une machine virtuelle" -#: ../app/controllers/ops_controller/settings/ldap.rb:206 -msgid "Hostname is required" -msgstr "Le nom d'hôte est obligatoire" +msgid "Choose a Value" +msgstr "Choisir une valeur" -#: ../app/controllers/ops_controller/settings/rhn.rb:50 -msgid " Address" -msgstr " Adresse" +msgid "Choose a chart type" +msgstr "Choisir un type de tableau" -#: ../app/controllers/ops_controller/settings/rhn.rb:55 -msgid "Enter your Red Hat account information" -msgstr "Entrez vos informations de compte Red Hat" +msgid "Choose a resource entity and label" +msgstr "" -#: ../app/controllers/ops_controller/settings/rhn.rb:57 -msgid "Enter your Red Hat Network Satellite account information" -msgstr "Entrez vos informations de compte Red Hat Network Satellite" +msgid "Choose a saved %{model} filter:" +msgstr "Choisir un filtre %{model} enregistré :" -#: ../app/controllers/ops_controller/settings/rhn.rb:141 -msgid "Customer Information successfully saved" -msgstr "Les informations sur le client ont été enregistrées" +msgid "Choose a saved filter or report filter to load" +msgstr "Choisir un filtre enregistré ou un filtre de rapport à charger" -#: ../app/controllers/ops_controller/settings/rhn.rb:174 -msgid "Credential validation returned: %{message}" -msgstr "La validation des données d'identification a répondu : %{message}" +msgid "Choose a tag category to map to" +msgstr "Choisir une catégorie de balise à laquelle se mapper" -#: ../app/controllers/ops_controller/settings/rhn.rb:209 -msgid "RHN Login" -msgstr "Identifiant RHN" +msgid "Choose a tenant" +msgstr "Choisir un locataire" -#: ../app/controllers/ops_controller/settings/rhn.rb:210 -msgid "RHN Password" -msgstr "Mot de passe RHN" +msgid "Choose an Owner" +msgstr "Choisir un propriétaire" -#: ../app/controllers/ops_controller/settings/rhn.rb:211 -#: ../app/views/ops/rhn/_info_subscribed.html.haml:29 -msgid "Server Address" -msgstr "Adresse du serveur" +msgid "Choose file" +msgstr "Choisir un fichier" -#: ../app/controllers/ops_controller/settings/rhn.rb:212 -msgid "Repository Name" -msgstr "Nom du référentiel" +msgid "Choose the branch or tag you would like to import" +msgstr "Choisir la branche ou la balise à importer" -#: ../app/controllers/ops_controller/settings/rhn.rb:213 -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:111 -msgid "HTTP Proxy Address" -msgstr "Adresse proxy HTTP" +msgid "Choose the type of custom variables to be imported" +msgstr "Choisir le type des variables personnalisées à importer" -#: ../app/controllers/ops_controller/settings/rhn.rb:227 -msgid "%{name} is required" -msgstr "%{name} est requis" +msgid "Choose>" +msgstr "Choisir>" -#: ../app/controllers/ops_controller/settings/rhn.rb:293 -msgid "No Server was selected" -msgstr "Aucun serveur sélectionné" +msgid "Class Schema Sequence was saved" +msgstr "La séquence du schéma de classe a été enregistrée" -#: ../app/controllers/ops_controller/settings/rhn.rb:298 -msgid "Registration" -msgstr "Abonnement" +msgid "Class Schema Sequencing:" +msgstr "Séquençage du schéma de classe :" -#: ../app/controllers/ops_controller/settings/rhn.rb:301 -msgid "Check for updates" -msgstr "Rechercher des mises à jour" +msgid "Classification" +msgstr "Classification" -#: ../app/controllers/ops_controller/settings/rhn.rb:304 -#: ../app/views/ops/_settings_replication_tab.html.haml:356 -msgid "Update" -msgstr "Mettre à jour" +msgid "Clear All" +msgstr "Effacer tout" -#: ../app/controllers/ops_controller/settings/rhn.rb:308 -msgid "%{item} has been initiated for the selected Servers" -msgstr "%{item} a été initié pour les serveurs séléctionnés" +msgid "Click here to show/hide entities of this type" +msgstr "Cliquez ici pour afficher/masquer les entités de ce type" -#: ../app/controllers/ops_controller/settings/rhn.rb:310 -msgid "Error occured when queuing action: %{message}" -msgstr "" -"Une erreur s'est produite lors de la mise en file d'attente de l'action : %{me" -"ssage}" +msgid "Click on a Host to fetch its settings" +msgstr "Cliquez sur un hôte pour récupérer ses paramètres" -#: ../app/controllers/ops_controller/settings/schedules.rb:76 -msgid "Error when adding a new schedule: %{message}" -msgstr "Erreur lors de l'ajout d'un nouveau planning : %{message}" +msgid "Click on the legend to show/hide entities, and double click on the entities in the graph to navigate to their summary pages." +msgstr "Cliquez sur la légende pour afficher/masquer les entités, et double-cliquez sur les entités du graphique pour accéder à leurs pages de synthèse." -#: ../app/controllers/ops_controller/settings/schedules.rb:221 -msgid "The selected Schedules were enabled" -msgstr "Les plannings sélectionnés ont été activés" +msgid "Click on the legend to show/hide entities, and double click/right click the entities in the graph to navigate to their summary pages." +msgstr "Cliquez sur la légende pour afficher/masquer les entités, et double-cliquez/cliquez à l'aide du bouton droit sur les entités du graphique pour accéder à leurs pages de synthèse." -#: ../app/controllers/ops_controller/settings/schedules.rb:223 -msgid "The selected Schedules were disabled" -msgstr "Les plannings sélectionnés ont été désactivés" +msgid "Click on this row to create a new entry" +msgstr "Cliquez sur cette ligne pour créer une entrée" -#: ../app/controllers/ops_controller/settings/schedules.rb:447 -msgid "Filter must be selected" -msgstr "Un filtre doit être sélectionné" +msgid "Click to Logout" +msgstr "Cliquez pour vous déconnecter" -#: ../app/controllers/ops_controller/settings/schedules.rb:451 -msgid "Filter value must be selected" -msgstr "Une valeur" +msgid "Click to add a new category" +msgstr "Cliquez pour ajouter une nouvelle catégorie" -#: ../app/controllers/ops_controller/settings/schedules.rb:459 -#: ../app/controllers/report_controller/schedules.rb:308 -msgid "" -"Warning: This 'Run Once' timer is in the past and will never run as currently " -"configured" -msgstr "" -"Avertissement : cette minuterie 'Exécuter une fois' se situe dans le passé et " -"ne s'exécutera jamais dans sa configuration actuelle" +msgid "Click to add a new entry" +msgstr "Cliquez pour ajouter une nouvelle entrée" -#: ../app/controllers/ops_controller/settings/schedules.rb:620 -msgid "VM Analysis" -msgstr "Analyse MV" +msgid "Click to add a new forest" +msgstr "Cliquez pour ajouter une nouvelle forêt" -#: ../app/controllers/ops_controller/settings/schedules.rb:621 -msgid "Template Analysis" -msgstr "Analyse du modèle" +msgid "Click to add a new parameter" +msgstr "Cliquez pour ajouter un nouveau paramètre" -#: ../app/controllers/ops_controller/settings/schedules.rb:622 -msgid "Host Analysis" -msgstr "Analyse de l'hôte" +msgid "Click to change to a relative Date/Time format" +msgstr "Cliquez pour basculer vers un format Date/Heure associé" -#: ../app/controllers/ops_controller/settings/schedules.rb:623 -msgid "Container Image Analysis" -msgstr "Analyse de l'image du conteneur" +msgid "Click to change to a specific Date/Time format" +msgstr "Cliquez pour basculer vers un format Date/Heure spécifique" -#: ../app/controllers/ops_controller/settings/schedules.rb:624 -#: ../app/controllers/ops_controller/settings/schedules.rb:625 -msgid "%{model} Analysis" -msgstr "%{model} Analyse" +msgid "Click to delete Orphaned Records for this user" +msgstr "Cliquez pour supprimer des enregistrements orphelins pour cet utilisateur" -#: ../app/controllers/ops_controller/settings/schedules.rb:628 -msgid "VM Compliance Check" -msgstr "Vérification de conformité de la MV" +msgid "Click to delete this LDAP Server" +msgstr "Cliquez pour supprimer ce serveur LDAP" -#: ../app/controllers/ops_controller/settings/schedules.rb:631 -msgid "Host Compliance Check" -msgstr "Vérification de conformité de l'hôte" +msgid "Click to delete this category" +msgstr "Cliquez pour supprimer cette catégorie" -#: ../app/controllers/ops_controller/settings/schedules.rb:634 -msgid "Container Image Compliance Check" -msgstr "Vérification de la conformité de l'image du conteneur" +msgid "Click to delete this entry" +msgstr "Cliquez pour supprimer cette entrée" -#: ../app/controllers/ops_controller/settings/schedules.rb:636 -#: ../app/views/ops/_schedule_show.html.haml:41 -msgid "Database Backup" -msgstr "Sauvegarde de base de données" +msgid "Click to delete this field from schema" +msgstr "Cliquez pour supprimer ce champ du schéma" -#: ../app/controllers/ops_controller/settings/schedules.rb:639 -msgid "Automate Tasks" -msgstr "Automatiser les tâches" +msgid "Click to delete this forest" +msgstr "Cliquez pour supprimer cette forêt" -#: ../app/controllers/ops_controller/settings/schedules.rb:643 -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:149 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:99 -#: ../app/presenters/tree_builder_vms_filter.rb:15 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:58 -#: ../app/views/layouts/listnav/_resource_pool.html.haml:50 -msgid "All VMs" -msgstr "Toutes les MV" +msgid "Click to delete this input field from method" +msgstr "Cliquez pour supprimer ce champ d'entrée de la méthode" -#: ../app/controllers/ops_controller/settings/schedules.rb:644 -#: ../app/controllers/ops_controller/settings/schedules.rb:645 -msgid "All VMs for %{table}" -msgstr "Toutes les MV pour %{table}" +msgid "Click to delete this mapping" +msgstr "Cliquez pour supprimer ce mappage" -#: ../app/controllers/ops_controller/settings/schedules.rb:646 -msgid "All VMs for Host" -msgstr "Toutes les MV pour l'Hôte" +msgid "Click to edit this category" +msgstr "Cliquez pour modifier cette catégorie" -#: ../app/controllers/ops_controller/settings/schedules.rb:647 -msgid "A single VM" -msgstr "Une MV unitaire" +msgid "Click to edit this forest" +msgstr "Cliquez pour modifier cette forêt" -#: ../app/controllers/ops_controller/settings/schedules.rb:649 -#: ../app/controllers/ops_controller/settings/schedules.rb:659 -#: ../app/controllers/ops_controller/settings/schedules.rb:668 -#: ../app/controllers/ops_controller/settings/schedules.rb:683 -#: ../app/controllers/ops_controller/settings/schedules.rb:692 -#: ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:33 -#: ../app/presenters/tree_builder_containers_filter.rb:24 -#: ../app/presenters/tree_builder_storage.rb:20 -#: ../app/presenters/tree_builder_vms_filter.rb:21 -msgid "Global Filters" -msgstr "Filtres globaux" +msgid "Click to edit this mapping rule" +msgstr "Cliquez pour modifier cette règle de mappage" -#: ../app/controllers/ops_controller/settings/schedules.rb:650 -#: ../app/controllers/ops_controller/settings/schedules.rb:660 -#: ../app/controllers/ops_controller/settings/schedules.rb:669 -#: ../app/controllers/ops_controller/settings/schedules.rb:684 -#: ../app/controllers/ops_controller/settings/schedules.rb:693 -#: ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:38 -#: ../app/presenters/tree_builder_storage.rb:21 -#: ../app/presenters/tree_builder_vms_filter.rb:22 -#: ../app/views/layouts/listnav/_show_list.html.haml:38 -msgid "My Filters" -msgstr "Mes Filtres" +msgid "Click to go to this location" +msgstr "Cliquez pour accéder à cet emplacement" -#: ../app/controllers/ops_controller/settings/schedules.rb:653 -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:161 -#: ../app/presenters/tree_builder_template_filter.rb:16 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:65 -msgid "All Templates" -msgstr "Tous les Modèles" +msgid "Click to remove message" +msgstr "Cliquez pour supprimer le message" -#: ../app/controllers/ops_controller/settings/schedules.rb:654 -#: ../app/controllers/ops_controller/settings/schedules.rb:655 -msgid "All Templates for %{table}" -msgstr "Tous les Modèles pour %{table}" +msgid "Click to remove messages" +msgstr "Cliquez pour supprimer les messages" -#: ../app/controllers/ops_controller/settings/schedules.rb:656 -msgid "All Templates for Host" -msgstr "Tous les Modèles pour l'Hôte" +msgid "Click to remove this Resource from the Catalog Item" +msgstr "Cliquez pour supprimer cette ressource de l'élément de catalogue" -#: ../app/controllers/ops_controller/settings/schedules.rb:657 -msgid "A single Template" -msgstr "Un template unitaire" +msgid "Click to remove this assignment" +msgstr "Cliquez pour supprimer cette affectation" -#: ../app/controllers/ops_controller/settings/schedules.rb:663 -msgid "All Hosts" -msgstr "Tous les Hôtes" +msgid "Click to remove this policy" +msgstr "Cliquez pour supprimer cette stratégie" -#: ../app/controllers/ops_controller/settings/schedules.rb:664 -#: ../app/controllers/ops_controller/settings/schedules.rb:665 -msgid "All Hosts for %{table}" -msgstr "Tous les Hôtes pour %{table}" +msgid "Click to this Catalog Item" +msgstr "Cliquez sur cet élément de catalogue" -#: ../app/controllers/ops_controller/settings/schedules.rb:666 -msgid "A single Host" -msgstr "Un hôte unitaire" +msgid "Click to update this LDAP Server" +msgstr "Cliquez pour mettre à jour ce serveur LDAP" -#: ../app/controllers/ops_controller/settings/schedules.rb:673 -msgid "All Container Images" -msgstr "Tous les Conteneurs d''Images" +msgid "Click to update this entry" +msgstr "Cliquez pour mettre à jour cette entrée" -#: ../app/controllers/ops_controller/settings/schedules.rb:674 -msgid "All Container Images for Containers Provider" -msgstr "Toutes les images de conteneur pour le fournisseur de conteneurs" +msgid "Click to view %{group} " +msgstr "Cliquez pour afficher %{group} " -#: ../app/controllers/ops_controller/settings/schedules.rb:675 -msgid "A single Container Image" -msgstr "Un seul Conteneur Image" +msgid "Click to view '%{title}'" +msgstr "Cliquez pour afficher '%{title}'" -#: ../app/controllers/ops_controller/settings/schedules.rb:679 -msgid "All Clusters" -msgstr "Tous les Clusters" +msgid "Click to view '%{widgetset_description} (%{widgetset_name})'" +msgstr "Cliquez pour afficher '%{widgetset_description} (%{widgetset_name})'" -#: ../app/controllers/ops_controller/settings/schedules.rb:680 -msgid "All Clusters for %{table}" -msgstr "Tous les Clusters pour %{table}" +msgid "Click to view Policy" +msgstr "Cliquez pour afficher la stratégie" -#: ../app/controllers/ops_controller/settings/schedules.rb:681 -msgid "A single Cluster" -msgstr "Un cluster unitaire" +msgid "Click to view Time Profile" +msgstr "Cliquez pour afficher le profil temporel" -#: ../app/controllers/ops_controller/settings/schedules.rb:687 -#: ../app/presenters/tree_builder_storage.rb:14 -msgid "All Datastores" -msgstr "Tous les magasins de données" +msgid "Click to view child Tenant" +msgstr "Cliquez pour afficher le locataire enfant" -#: ../app/controllers/ops_controller/settings/schedules.rb:688 -msgid "All Datastores for Host" -msgstr "Tous les magasins de données pour l'hôte" +msgid "Click to view child TenantProject" +msgstr "Cliquez pour afficher le projet du locataire enfant" -#: ../app/controllers/ops_controller/settings/schedules.rb:689 -msgid "All Datastores for %{table}" -msgstr "Tous les magasins de données pour %{table}" +msgid "Click to view details" +msgstr "Cliquez pour afficher les détails" -#: ../app/controllers/ops_controller/settings/schedules.rb:690 -msgid "A single Datastore" -msgstr "Un datastore unitaire" +msgid "Click to view index" +msgstr "Cliquez pour afficher l'index" -#: ../app/controllers/ops_controller/settings/tags.rb:61 -msgid "Long Description is required" -msgstr "La description longue est requise" +msgid "Click to view saved report" +msgstr "Cliquez pour afficher le rapport enregistré" -#: ../app/controllers/ops_controller/settings/tags.rb:216 -msgid "Category %{description} [%{name}] record deleted" -msgstr "L'enregistrement de catégorie %{description} [%{name}] a été supprimé" +msgid "Click to view selected widget" +msgstr "Cliquez pour afficher le composant d'interface sélectionné" -#: ../app/controllers/ops_controller/settings/tags.rb:252 -msgid "Category %{description} [%{name}] record created (" -msgstr "L'enregistrement de catégorie %{description} [%{name}] a été créé (" +msgid "Click to view target %{model}" +msgstr "Cliquez pour afficher la cible %{model}" -#: ../app/controllers/ops_controller/settings/tags.rb:267 -msgid "Category %{description} [%{name}] record updated (" -msgstr "L'enregistrement de catégorie %{description} [%{name}] a été mis à jour (" +msgid "Click to view this %{model} in the \"%{domain_name}\" Domain" +msgstr "Cliquez pour afficher ce %{model} dans le domaine \"%{domain_name}\"" -#: ../app/controllers/ops_controller/settings/tags.rb:273 -msgid "name:[%{session}] to [%{name}]" -msgstr "nom:[%{session}] to [%{name}]" +msgid "Click to view this VM" +msgstr "Cliquez pour afficher cette machine virtuelle" -#: ../app/controllers/ops_controller/settings/tags.rb:278 -msgid "description:[%{session}] to [%{name}]" -msgstr "description : [%{session}] à [%{name}]" +msgid "Click to view/edit Time Profile" +msgstr "Cliquez pour afficher/modifier le profil temporel" -#: ../app/controllers/ops_controller/settings/upload.rb:21 -msgid "Custom logo image must be a .png file" -msgstr "L'image de logo personnalisée doit être un fichier .png" +msgid "Client CA" +msgstr "CA du client" -#: ../app/controllers/ops_controller/settings/upload.rb:23 -msgid "Custom login image must be a .png file" -msgstr "L'image de connexion personnalisée doit être un fichier .png" +msgid "Client CA:" +msgstr "CA du client :" -#: ../app/controllers/ops_controller/settings/upload.rb:29 -msgid "Custom Logo file \"%{name}\" uploaded" -msgstr "Fichier de logo personnalisé \"%{name}\" téléchargé" +msgid "Client Connections" +msgstr "Connexions du client" -#: ../app/controllers/ops_controller/settings/upload.rb:31 -msgid "Custom login file \"%{name}\" uploaded" -msgstr "Fichier de connexion personnalisée \"%{name}\" téléchargé" +msgid "Client ID" +msgstr "ID du client" -#: ../app/controllers/ops_controller/settings/upload.rb:36 -msgid "Use the Choose file button to locate .png image file" -msgstr "Utiliser le bouton Choisir un fichier pour localiser un fichie d'image .png" +msgid "Client ID, Client Key, Azure Tenant ID and Subscription ID are required" +msgstr "ID du client, Clé du client, ID du locataire Azure et ID d'abonnement sont des champs obligatoires" -#: ../app/controllers/ops_controller/settings/upload.rb:84 -msgid "Import validation complete: %{good_record}, %{bad_record}" -msgstr "Validation de l'importation terminée : %{good_record}, %{bad_record}" +msgid "Client ID:" +msgstr "ID du client :" -#: ../app/controllers/ops_controller/settings/upload.rb:86 -msgid "No valid import records were found, please upload another file" -msgstr "" -"Aucun enregistrement d'importation valide trouvé. Veuillez télécharger un autr" -"e fichier." +msgid "Client Key" +msgstr "Clé du client" -#: ../app/controllers/ops_controller/settings/upload.rb:89 -msgid "Press the Apply button to import the good records into the %{product} database" -msgstr "" -"Appuyez sur Appliquer pour importer les bons enregistrements dans la base de d" -"onnées %{product}" +msgid "Client Keys do not match" +msgstr "Les clés du client ne correspondent pas" -#: ../app/controllers/ops_controller/settings/zones.rb:10 -msgid "Add of new %{table} was cancelled by the user" -msgstr "L''ajout d''un nouveau %{table} a été annulé par l''utilisateur" +msgid "Client Secret" +msgstr "Question secrète du client" -#: ../app/controllers/ops_controller/settings/zones.rb:19 -msgid "Zone name is required" -msgstr "Le nom de la zone est requis" +msgid "Client Secret:" +msgstr "Question secrète du client :" -#: ../app/controllers/ops_controller/settings/zones.rb:127 -#: ../app/controllers/storage_manager_controller.rb:247 -msgid "Password and Verify Password fields do not match" -msgstr "Les champs Mot de passe et Vérifier le mot de passe ne correspondent pas" +msgid "Clone %{vm_or_template}" +msgstr "Cloner %{vm_or_template}" -#: ../app/controllers/orchestration_stack_controller.rb:24 -msgid "Orchestration Stacks" -msgstr "Piles d'orchestration" +msgid "Clone selected Template" +msgstr "Cloner le modèle sélectionné" -#: ../app/controllers/orchestration_stack_controller.rb:75 -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:118 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:64 -msgid "Outputs" -msgstr "Sorties" +msgid "Clone selected item" +msgstr "Cloner l'élément sélectionné" -#: ../app/controllers/orchestration_stack_controller.rb:83 -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:128 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:111 -#: ../app/helpers/vm_helper/textual_summary.rb:170 -#: ../app/views/catalog/_form.html.haml:12 -#: ../app/views/catalog/_form_resources_info.html.haml:8 -#: ../app/views/catalog/_sandt_tree_show.html.haml:249 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:70 -msgid "Resources" -msgstr "Ressources" +msgid "Clone this Template" +msgstr "Cloner ce modèle" -#: ../app/controllers/orchestration_stack_controller.rb:186 -#: ../app/controllers/orchestration_stack_controller.rb:211 -msgid "Orchestration template \"%{name}\" is already orderable" -msgstr "Le modèle d'orchestration \"%{name}\" est déjà organisable" +msgid "Clone this VM" +msgstr "Cloner cette machine virtuelle" -#: ../app/controllers/orchestration_stack_controller.rb:192 -msgid "" -"An error occured when changing orchestration template \"%{name}\" to orderable: " -"%{err_msg}" -msgstr "" -"Une erreur s'est produite lors du changement du modèle d'orchestration \"%{name" -"}\" en élément organisable : %{err_msg}" +msgid "Clone this item" +msgstr "Cloner cet élément" -#: ../app/controllers/orchestration_stack_controller.rb:197 -msgid "Orchestration template \"%{name}\" is now orderable" -msgstr "Le modèle d'orchestration \"%{name}\" est maintenant organisable" +msgid "Close" +msgstr "Fermer" -#: ../app/controllers/orchestration_stack_controller.rb:225 -msgid "Copy of Orchestration Template was cancelled by the user" -msgstr "La copie du modèle d'orchestration a été annulée par l'utilisateur" +msgid "Close any duplicate browser sessions, then select an option from the menu." +msgstr "Fermez toute session de navigateur en double, puis sélectionnez une option dans le menu." -#: ../app/controllers/orchestration_stack_controller.rb:275 -msgid "Stack" -msgstr "Pile" +msgid "Cloud" +msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:22 -msgid "ansible_tower" -msgstr "ansible_tower" +msgid "Cloud Credential" +msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:24 -msgid "foreman" -msgstr "Foreman" +msgid "Cloud Credentials" +msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:97 -msgid "Delete initiated for %{count} Provider" -msgid_plural "Delete initiated for %{count} Providers" -msgstr[0] "Supprimer l'élément lancé pour %{count} fournisseur" -msgstr[1] "Supprimer l'élément lancé pour %{count} fournisseurs" +msgid "Cloud Intel" +msgstr "Cloud Intel" -#: ../app/controllers/provider_foreman_controller.rb:118 -msgid "Provisioning is not supported for at least one of the selected systems" +msgid "Cloud Network \"%{name}\" created" msgstr "" -"Le mise en service n'est pas pris en charge pour au moins un des systèmes séle" -"ctionnés" - -#: ../app/controllers/provider_foreman_controller.rb:130 -msgid "No common configuration profiles available for the selected configured system" -msgid_plural "No common configuration profiles available for the selected configured systems" -msgstr[0] "" -"Aucun profil de configuration commun disponible pour le système configuré séle" -"ctionné" -msgstr[1] "" -"Aucun profil de configuration commun disponible pour les systèmes configurés s" -"électionnés" -#: ../app/controllers/provider_foreman_controller.rb:184 -msgid "%{model} \"%{name}\" was updated" -msgstr "%{model} \"%{name}\" a été mis à jour" +msgid "Cloud Network \"%{name}\" updated" +msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:200 -msgid "Add of Configuration Manager %{provider} was cancelled by the user" +msgid "Cloud Network creation failed: Task start failed: ID [%{id}]" msgstr "" -"L''ajout du Gestionnaire de Configuration %{provider} été annulé par l''utilis" -"ateur" -#: ../app/controllers/provider_foreman_controller.rb:203 -msgid "Edit of Configuration Manager %{provider} was cancelled by the user" +msgid "Cloud Network no longer exists." msgstr "" -"La modification du gestionnaire de configuration %{provider} a été annulée par" -" l'utilisateur" -#: ../app/controllers/provider_foreman_controller.rb:522 -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:34 -#: ../app/views/provider_foreman/_configuration_profile.html.haml:7 -#: ../app/views/provider_foreman/_inventory_group.html.haml:7 -msgid "Configured Systems" -msgstr "Systèmes configurés" +msgid "Cloud Network update failed: Task start failed: ID [%{id}]" +msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:526 -msgid "Ansible Tower Job Templates" -msgstr "Modèles de tâche Ansible Tower" +msgid "Cloud Networks" +msgstr "Réseaux Cloud" -#: ../app/controllers/provider_foreman_controller.rb:629 -msgid "All %{title} Providers" -msgstr "Tous les fournisseurs %{title}" +msgid "Cloud Object Stores" +msgstr "Supports de sauvegarde des objets cloud" -#: ../app/controllers/provider_foreman_controller.rb:684 -#: ../app/controllers/provider_foreman_controller.rb:697 -msgid "All %{title} Configured Systems" -msgstr "Tous les systèmes configurés %{title}" +msgid "Cloud Objects" +msgstr "Objets Cloud" -#: ../app/controllers/provider_foreman_controller.rb:705 -#: ../app/controllers/provider_foreman_controller.rb:728 -#: ../app/presenters/tree_builder_configuration_manager_configuration_scripts.rb:17 -msgid "All Ansible Tower Job Templates" -msgstr "Tous les modèles de tâche Ansible Tower" +msgid "Cloud Provider" +msgstr "Fournisseur Cloud" -#: ../app/controllers/provider_foreman_controller.rb:720 -msgid "All Configuration Management Providers" -msgstr "Tous les fournisseurs de gestion de configuration" +msgid "Cloud Providers" +msgstr "Fournisseurs Cloud" -#: ../app/controllers/provider_foreman_controller.rb:724 -#: ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:16 -msgid "All Configured Systems" -msgstr "Tous les Systèmes Configurés" +msgid "Cloud Quota" +msgstr "Quota de Cloud" -#: ../app/controllers/provider_foreman_controller.rb:795 -msgid "Add a new Configuration Management Provider" -msgstr "Ajouter un nouveau fournisseur de gestion de configuration" +msgid "Cloud Service Configuration" +msgstr "Configuration du service cloud" -#: ../app/controllers/provider_foreman_controller.rb:796 -#: ../app/controllers/provider_foreman_controller.rb:902 -msgid "Edit Configuration Manager Provider" -msgstr "Modifier le fournisseur du gestionnaire de configuration" +msgid "Cloud Services" +msgstr "Services cloud" -#: ../app/controllers/provider_foreman_controller.rb:899 -msgid "Add a new Configuration Manager Provider" -msgstr "Ajouter un nouveau fournisseur de gestionnaires de configuration" +msgid "Cloud Subnet" +msgstr "Sous-réseau Cloud" -#: ../app/controllers/provider_foreman_controller.rb:1062 -#: ../app/controllers/provider_foreman_controller.rb:1089 -#: ../app/presenters/tree_node_builder.rb:306 -msgid "Unassigned Profiles Group" -msgstr "Groupe de profils non affecté" +msgid "Cloud Subnet \"%{name}\" created" +msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:1073 -msgid "%{model} under %{record_model} \"%{name}\"" -msgstr "%{model} sous %{record_model} \"%{name}\"" +msgid "Cloud Subnet \"%{name}\" updated" +msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:1078 -msgid "%{model} under Unassigned Profiles Group" -msgstr "%{model} sous un Profile de Groupe non assigné" +msgid "Cloud Subnet creation: Task start failed: ID [%{id}]" +msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:1127 -msgid "%{model} under Inventory Group \"%{name}\"" -msgstr "%{model} sous le groupe d'inventaires \"%{name}\"" +msgid "Cloud Subnet details" +msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:1183 -msgid "Adding a new Service Dialog from \"%{name}\"" -msgstr "Ajout d'une nouvelle boîte de dialogue de service à partir de \"%{name}\"" +msgid "Cloud Subnet no longer exists." +msgstr "" -#: ../app/controllers/provider_foreman_controller.rb:1201 -msgid "Error when creating Service Dialog: %{error_message}" +msgid "Cloud Subnet update failed: Task start failed: ID [%{id}]" msgstr "" -"Erreur lors de la création d'une boîte de dialogue de service : %{error_messag" -"e}" -#: ../app/controllers/pxe_controller.rb:52 -#: ../app/presenters/tree_builder_pxe_servers.rb:16 -msgid "All PXE Servers" -msgstr "Tous les Serveurs PXE" +msgid "Cloud Subnets" +msgstr "Sous-réseaux de Cloud" -#: ../app/controllers/pxe_controller.rb:64 -msgid "PXE Servers" -msgstr "Serveurs PXE" +msgid "Cloud Tenant" +msgstr "Locataire cloud" -#: ../app/controllers/pxe_controller.rb:69 -msgid "Customization Templates" -msgstr "Modèles de personnalisation" +msgid "Cloud Tenant \"%{name}\" cannot be removed because it is attached to one or more %{instances}" +msgstr "" -#: ../app/controllers/pxe_controller.rb:74 -msgid "System Image Types" -msgstr "Types d'images système" +msgid "Cloud Tenant \"%{name}\" created" +msgstr "" -#: ../app/controllers/pxe_controller.rb:79 -msgid "ISO Datastores" -msgstr "Magasins de données ISO" +msgid "Cloud Tenant \"%{name}\" updated" +msgstr "" -#: ../app/controllers/pxe_controller.rb:150 -#: ../app/controllers/pxe_controller.rb:178 -msgid "Adding a new %{models}" -msgstr "Ajout d''un nouveau %{models}" +msgid "Cloud Tenant no longer exists." +msgstr "" -#: ../app/controllers/pxe_controller/iso_datastores.rb:49 -msgid "Provider is required" -msgstr "Le fournisseur doit être renseigné" +msgid "Cloud Tenant:" +msgstr "Locataire cloud :" -#: ../app/controllers/pxe_controller/iso_datastores.rb:104 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:214 -#: ../app/controllers/pxe_controller/pxe_image_types.rb:97 -#: ../app/controllers/pxe_controller/pxe_servers.rb:124 -#: ../app/controllers/storage_manager_controller.rb:382 -msgid "No %{model} were selected to %{button}" -msgstr "Aucun %{model} sélectionné à %{button}" +msgid "Cloud Tenants" +msgstr "Locataires cloud" -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:249 -msgid "All %{model} - %{group}" -msgstr "Tous %{model} - %{group}" +msgid "Cloud Type" +msgstr "" -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:263 -#: ../app/presenters/tree_builder_pxe_customization_templates.rb:28 -#: ../app/presenters/tree_builder_pxe_customization_templates.rb:30 -msgid "Examples (read only)" -msgstr "Exemples (lecture seule)" +msgid "Cloud Volume \"%{name}\" created" +msgstr "" -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:264 -msgid "%{model} for %{group} \"%{name}\"" -msgstr "%{model} pour %{group} \"%{name}\"" +msgid "Cloud Volume \"%{name}\" updated" +msgstr "" -#: ../app/controllers/pxe_controller/pxe_servers.rb:295 -msgid "Depot Type is required" -msgstr "Le type de dépôt est obligatoire" +msgid "Cloud Volume Backup" +msgstr "Sauvegarde du Volume Cloud" -#: ../app/controllers/pxe_controller/pxe_servers.rb:298 -#: ../app/controllers/pxe_controller/pxe_servers.rb:302 -msgid "URI is required" -msgstr "L'URI est obligatoire" +msgid "Cloud Volume Snapshot no longer exists." +msgstr "Le cliché du volume cloud n'existe plus." -#: ../app/controllers/pxe_controller/pxe_servers.rb:308 -msgid "Password is required" -msgstr "Le mot de passe est obligatoire" +msgid "Cloud Volume Type" +msgstr "" -#: ../app/controllers/report_controller.rb:66 -msgid "Import file cannot be empty" -msgstr "Le fichier d'importation ne peut pas être vide" +msgid "Cloud Volume creation failed: Task start failed" +msgstr "" -#: ../app/controllers/report_controller.rb:143 -msgid "All %{reports}" -msgstr "Tous les %{reports}" +msgid "Cloud Volume update failed: Task start failed" +msgstr "" -#: ../app/controllers/report_controller.rb:230 -msgid "Error: the file uploaded contains no widgets" -msgstr "Erreur : le fichier téléchargé ne contient aucun composant d'interface" +msgid "Cloud Volumes" +msgstr "Volumes cloud" -#: ../app/controllers/report_controller.rb:243 -msgid "Widgets imported successfully" -msgstr "Composants graphiques correctement importés" +msgid "Cloud Volumes based on Snapshot (%{count})" +msgstr "Volumes cloud basés sur un cliché (%{count})" -#: ../app/controllers/report_controller.rb:245 -msgid "Error: Widget import file upload expired" -msgstr "" -"Erreur : expiration du téléchargement du fichier d'importation du composant d'" -"interface," +msgid "Cloud tenant creation failed: Task start failed: ID [%{id}]" +msgstr "La création d'un locataire cloud a échoué : échec de démarrage de la tâche : ID [%{id}]" -#: ../app/controllers/report_controller.rb:249 -msgid "Widget import cancelled" -msgstr "L'importation des composants graphiques est annulée" +msgid "Cloud volume backup creation failed: Task start failed: ID [%{id}]" +msgstr "La création de la sauvegarde du volume cloud a échoué : échec de démarrage de la tâche : ID [%{id}]" -#: ../app/controllers/report_controller.rb:269 -#: ../app/views/report/_report_list.html.haml:202 -msgid "Saved Reports" -msgstr "Rapports enregistrés" +msgid "Cloud volume restore failed: Task start failed: ID [%{id}]" +msgstr "La restauration du volume cloud a échoué : échec de démarrage de la tâche : ID [%{id}]" -#: ../app/controllers/report_controller.rb:279 -#: ../app/presenters/tree_builder_ops_settings.rb:33 -#: ../app/views/ops/_settings_details_tab.html.haml:101 -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:148 -#: ../app/views/report/_report_info.html.haml:109 -msgid "Schedules" -msgstr "Plannings" +msgid "Cloud volume snapshot creation failed: Task start failed: ID [%{id}]" +msgstr "La création de la sauvegarde du cliché cloud a échoué : échec de démarrage de la tâche : ID [%{id}]" -#: ../app/controllers/report_controller.rb:283 -msgid "Dashboards" -msgstr "Tableaux de bord" +msgid "CloudFormation Templates" +msgstr "Modèles CloudFormation" -#: ../app/controllers/report_controller.rb:287 -msgid "Dashboard Widgets" -msgstr "Widget du Tableau de bord" +msgid "CloudInit" +msgstr "CloudInit" -#: ../app/controllers/report_controller.rb:291 -msgid "Edit Report Menus" -msgstr "Modifier les menus de rapport" +msgid "Clouds" +msgstr "Clouds" -#: ../app/controllers/report_controller.rb:378 -#: ../app/presenters/tree_builder_report_reports.rb:23 -msgid "All Reports" -msgstr "Tous les rapports" +msgid "Cluster" +msgstr "Cluster" -#: ../app/controllers/report_controller.rb:417 -msgid "Saved Report \"%{name} - %{timestamp}\"" -msgstr "" +msgid "Cluster / Deployment Role" +msgstr "Cluster / Rôle de Déploiment" -#: ../app/controllers/report_controller.rb:441 -#: ../app/controllers/report_controller/saved_reports.rb:23 -msgid "Saved Report \"%{name}\"" -msgstr "Rapport enregistré \"%{name}\"" +msgid "Cluster / Deployment Role (Click to open)" +msgstr "Cluster / Rôle de Déploiment (Cliquez pour ouvrir)" -#: ../app/controllers/report_controller.rb:682 -msgid "Editing Dashboard sequence for \"%{name}\"" -msgstr "Modification de la séquence du tableau de bord pour \"%{name}\"" +msgid "Cluster / Deployment Role: %{name}" +msgstr "" -#: ../app/controllers/report_controller.rb:685 -msgid "Adding a new dashboard" -msgstr "Ajout d'un nouveau tableau de bord" +msgid "Cluster Selection" +msgstr "Sélection de Cluster" -#: ../app/controllers/report_controller.rb:685 -msgid "Editing Dashboard \"%{name}\"" -msgstr "Modification du tableau de bord \"%{name}\"" +msgid "Cluster Utilization" +msgstr "Utilisation Clusters" -#: ../app/controllers/report_controller.rb:741 -#: ../app/views/report/_menu_form1.html.haml:9 -msgid "Manage Accordions" -msgstr "Gérer les accordéons" +msgid "Cluster: " +msgstr "Cluster : " -#: ../app/controllers/report_controller.rb:742 -msgid "Move selected Accordion to top" -msgstr "Déplacer l'accordéon sélectionné en haut" +msgid "Cluster: %{name}" +msgstr "Cluster: %{name}" -#: ../app/controllers/report_controller.rb:743 -msgid "Move selected Accordion up" -msgstr "Déplacer l'accordéon sélectionné vers le haut" +msgid "Clusters" +msgstr "Clusters" -#: ../app/controllers/report_controller.rb:744 -msgid "Move selected Accordion down" -msgstr "Déplacer l'accordéon sélectionné vers le bas" +msgid "Clusters / Deployment Roles" +msgstr "Clusters/rôles de déploiement" -#: ../app/controllers/report_controller.rb:745 -msgid "Add folder to selected Accordion" -msgstr "Ajouter un dossier à l'accordéon sélectionné" +msgid "Collapse All" +msgstr "Réduire tout" -#: ../app/controllers/report_controller.rb:746 -msgid "Delete selected Accordion and its contents" -msgstr "Supprimer l'accordéon sélectionné et son contenu" +msgid "Collect" +msgstr "Collecter" -#: ../app/controllers/report_controller.rb:747 -msgid "Move selected Accordion to bottom" -msgstr "Déplacer l'accordéon sélectionné en bas" +msgid "Collect Contents?" +msgstr "Collecter le contenu ?" -#: ../app/controllers/report_controller.rb:748 -msgid "Commit Accordion management changes" -msgstr "Accordéon - Valider les modifications de gestion" +msgid "Collect Logs" +msgstr "Collecter les journaux" -#: ../app/controllers/report_controller.rb:749 -msgid "Discard Accordion management changes" -msgstr "Ignorer les modifications de gestion de l'accordéon" +msgid "Collect all logs" +msgstr "Collecter tous les journaux" -#: ../app/controllers/report_controller.rb:752 -msgid "Manage Folders" -msgstr "Gérer les dossiers" +msgid "Collect all logs from the selected Server" +msgstr "Collecter tous les journaux dans le serveur sélectionné" -#: ../app/controllers/report_controller.rb:753 -msgid "Move selected folder to top" -msgstr "Déplacer le dossier sélectionné en haut" +msgid "Collect all logs from the selected Zone" +msgstr "Collecter tous les journaux dans la zone sélectionnée" -#: ../app/controllers/report_controller.rb:754 -#: ../app/views/report/_menu_form1.html.haml:45 -msgid "Move selected folder up" -msgstr "Déplacer le répertoire sélectionné vers le haut" +msgid "Collect current logs" +msgstr "Collecter les journaux en cours" -#: ../app/controllers/report_controller.rb:755 -#: ../app/views/report/_menu_form1.html.haml:45 -msgid "Move selected folder down" -msgstr "Déplacer le répertoire sélectionné vers le bas" +msgid "Collect for All %{clusters}" +msgstr "Collecter pour tous les %{clusters}" -#: ../app/controllers/report_controller.rb:756 -#: ../app/views/report/_menu_form1.html.haml:45 -msgid "Add subfolder to selected folder" -msgstr "Ajouter un sous-dossier au dossier sélectionné" +msgid "Collect for All Datastores" +msgstr "Collecter pour tous les magasins de données" -#: ../app/controllers/report_controller.rb:757 -#: ../app/views/report/_menu_form1.html.haml:45 -msgid "Delete selected folder and its contents" -msgstr "Supprimer le dossier sélectionné et son contenu" +msgid "Collect the current logs from the selected Server" +msgstr "Collecter les journaux en cours dans le serveur sélectionné" -#: ../app/controllers/report_controller.rb:758 -#: ../app/views/report/_menu_form1.html.haml:45 -msgid "Move selected folder to bottom" -msgstr "Déplacer le répertoire sélectionné tout en bas" +msgid "Collect the current logs from the selected Zone" +msgstr "Collecter les journaux en cours dans la zone sélectionnée" -#: ../app/controllers/report_controller.rb:759 -msgid "Commit folder management changes" -msgstr "Valider les modifications de gestion du dossier" +msgid "Collection Options" +msgstr "Options de collecte" -#: ../app/controllers/report_controller.rb:760 -msgid "Discard folder management changes" -msgstr "Ignorer les modifications de gestion du dossier" +msgid "Column" +msgstr "Colonne" -#: ../app/controllers/report_controller/dashboards.rb:9 -msgid "Edit of Dashboard Sequence was cancelled by the user" -msgstr "" -"La modification de la séquence des tableaux de bord a été annulée par l'utilis" -"ateur" +msgid "Column %{index}" +msgstr "Colonne %{index}" -#: ../app/controllers/report_controller/dashboards.rb:31 -msgid "Dashboard Sequence was saved" -msgstr "La séquence du tableau de bord a été enregistrée" +msgid "Column 1" +msgstr "Colonne 1" -#: ../app/controllers/report_controller/dashboards.rb:60 -msgid "Add of new Dashboard was cancelled by the user" -msgstr "L''ajout d''un nouveau Dashboard été annulé par l''utilisateur" +msgid "Column 2" +msgstr "Colonne 2" -#: ../app/controllers/report_controller/dashboards.rb:62 -msgid "Edit of Dashboard \"%{name}\" was cancelled by the user" -msgstr "La modification du tableau de bord \"%{name}\" a été annulée par l'utilisateur" +msgid "Column 3" +msgstr "Colonne 3" -#: ../app/controllers/report_controller/dashboards.rb:80 -msgid "Dashboard \"%{name}\" was saved" -msgstr "Le tableau de bord \"%{name}\" a été enregistré" +msgid "Column 4" +msgstr "Colonne 4" -#: ../app/controllers/report_controller/dashboards.rb:212 -#: ../app/presenters/tree_builder_report_dashboards.rb:19 -msgid "All Dashboards" -msgstr "Tous les Dashboards" +msgid "Column Name" +msgstr "Nom de la colonne" -#: ../app/controllers/report_controller/dashboards.rb:235 -msgid "Dashboards for \"%{name}\"" -msgstr "Tableaux de bord pour \"%{name}\"" +msgid "Columns" +msgstr "Colonnes" -#: ../app/controllers/report_controller/dashboards.rb:255 -msgid "Dashboard \"%{name}\"" -msgstr "Tableau de bord \"%{name}\"" +msgid "Command" +msgstr "Commande" -#: ../app/controllers/report_controller/dashboards.rb:329 -msgid "Name cannot contain \"|\"" -msgstr "\"" +msgid "Commit" +msgstr "Valider" -#: ../app/controllers/report_controller/dashboards.rb:338 -msgid "Tab Title must be unique for this group" -msgstr "Le titre de l'onglet dopit être unique pour ce groupe" +msgid "Commit Accordion management changes" +msgstr "Accordéon - Valider les modifications de gestion" -#: ../app/controllers/report_controller/dashboards.rb:344 -msgid "One widget must be selected" -msgstr "Un widget doit être sélectionné" +msgid "Commit Changes" +msgstr "Valider les modifications" -#: ../app/controllers/report_controller/menus.rb:52 -msgid "" -"Can not delete folder, one or more reports in the selected folder are not owne" -"d by your group" -msgstr "" -"Impossible de supprimer le dossier. Un ou plusieurs rapports du dossier sélect" -"ionné n'appartiennent pas à votre groupe." +msgid "Commit Import" +msgstr "Valider l'importation" -#: ../app/controllers/report_controller/menus.rb:54 -msgid "Double Click on 'New Folder' to edit" -msgstr "Double-cliquez sur 'Nouveau dossier' pour modifier" +msgid "Commit expression element changes" +msgstr "Valider les modifications de l'élément d'expression" -#: ../app/controllers/report_controller/menus.rb:76 -msgid "Folder name is required" -msgstr "Le nom du dossier est obligatoire" +msgid "Commit folder management changes" +msgstr "Valider les modifications de gestion du dossier" -#: ../app/controllers/report_controller/menus.rb:79 -msgid "Folder name '%{value}' is already in use" -msgstr "Nom de dossier '%{value}' déjà utilisé" +msgid "Commit report management changes" +msgstr "Valider les modifications de gestion du rapport" -#: ../app/controllers/report_controller/menus.rb:195 -msgid "Edit of Report Menu for role \"%{role}\" was cancelled by the user" -msgstr "" -"La modification du menu de rapport pour le rôle \"%{role}\" a été annulée par l'" -"utilisateur" +msgid "Company Name" +msgstr "Nom de l'entreprise" -#: ../app/controllers/report_controller/menus.rb:218 -msgid "Report Menu set to default" -msgstr "Le menu de rapports a été défini comme menu par défaut" +msgid "Compare" +msgstr "Comparer" -#: ../app/controllers/report_controller/menus.rb:238 -msgid "Report Menu for role \"%{role}\" was saved" -msgstr "Le menu de rapports pour le rôle \"%{role}\" a été enregistré" +msgid "Compare %{name}" +msgstr "Comparer %{name}" -#: ../app/controllers/report_controller/menus.rb:385 -msgid "One or more selected reports are not owned by your group, they cannot be moved" -msgstr "" -"Au moins un des rapports sélectionnés n'appartient pas à votre groupe. Impossi" -"ble de les déplacer." +msgid "Compare %{vm_or_template}" +msgstr "Comparer %{vm_or_template}" -#: ../app/controllers/report_controller/reports.rb:20 -msgid "Report has been successfully queued to run" -msgstr "Le rapport a été mis en file d'attente en vue de son exécution" +msgid "Compare Mode" +msgstr "Mode de comparaison" -#: ../app/controllers/report_controller/reports.rb:50 -msgid "Report preview generation returned: Status [%{status}] Message [%{message}]" -msgstr "" -"La génération de l'aperçu du rapport a renvoyé : Statut [%{status}] Message [%" -"{message}]" +msgid "Compare Selected Templates" +msgstr "Comparer les Modèles sélectionnés" -#: ../app/controllers/report_controller/reports.rb:87 -msgid "Report cannot be deleted if it's being used by one or more Widgets" -msgstr "" -"Le rapport ne peut pas être supprimé s'il est utilisé par un ou plusieurs comp" -"osants graphiques" +msgid "Compare Selected items" +msgstr "Comparer les Éléments sélectionnés" -#: ../app/controllers/report_controller/reports.rb:95 -msgid "%{model} \"%{name}\": Error during 'miq_report_delete': %{message}" -msgstr "%{model} \"%{name}\": Erreur durant 'miq_report_delete': %{message}" +msgid "Compare To" +msgstr "Comparer à" -#: ../app/controllers/report_controller/reports/editor.rb:61 -msgid "Report can not be saved unless sort field has been configured for Charts" -msgstr "" -"Le rapport ne peut pas être enregistré si le champ de tri n'a pas été configur" -"é pour les graphiques" +msgid "Compare selected Templates" +msgstr "Comparer les modèles sélectionnés" -#: ../app/controllers/report_controller/reports/editor.rb:315 -#: ../app/controllers/report_controller/reports/editor.rb:321 -#: ../app/controllers/report_controller/reports/editor.rb:328 -msgid "Columns" -msgstr "Colonnes" +msgid "Compare selected VMs" +msgstr "Comparer les MV sélectionnées" -#: ../app/controllers/report_controller/reports/editor.rb:316 -#: ../app/controllers/report_controller/reports/editor.rb:323 -#: ../app/controllers/report_controller/reports/editor.rb:332 -#: ../app/views/miq_capacity/_planning_options.html.haml:296 -#: ../app/views/ops/_schedule_form_filter.html.haml:14 -#: ../app/views/ops/_schedule_show.html.haml:55 -#: ../app/views/report/_schedule_form_filter.html.haml:16 -#: ../app/views/report/_schedule_form_filter.html.haml:81 -#: ../app/views/report/_widget_form_chart.html.haml:15 -#: ../app/views/report/_widget_form_report.html.haml:15 -#: ../app/views/report/_widget_show.html.haml:147 -msgid "Filter" -msgstr "Filtrer" +msgid "Comparison Sections" +msgstr "Sections de comparaison" -#: ../app/controllers/report_controller/reports/editor.rb:317 -#: ../app/controllers/report_controller/reports/editor.rb:324 -#: ../app/controllers/report_controller/reports/editor.rb:336 -msgid "Preview" -msgstr "Prévisualisation" +msgid "Completed" +msgstr "Complété" -#: ../app/controllers/report_controller/reports/editor.rb:322 -#: ../app/controllers/report_controller/reports/editor.rb:330 -msgid "Formatting" -msgstr "Mise en forme" +msgid "Completed:" +msgstr "Terminé :" -#: ../app/controllers/report_controller/reports/editor.rb:329 -msgid "Consolidation" -msgstr "Consolidation" +msgid "Completion Timestamp" +msgstr "Heure de Complétion" -#: ../app/controllers/report_controller/reports/editor.rb:331 -msgid "Styling" -msgstr "Styling" +msgid "Compliance" +msgstr "Conformité" -#: ../app/controllers/report_controller/reports/editor.rb:333 -#: ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:12 -#: ../app/views/layouts/listnav/_availability_zone.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_network.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_object_store_object.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_subnet.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:12 -#: ../app/views/layouts/listnav/_configuration_job.html.haml:12 -#: ../app/views/layouts/listnav/_container_build.html.haml:12 -#: ../app/views/layouts/listnav/_container_group.html.haml:12 -#: ../app/views/layouts/listnav/_container_image.html.haml:12 -#: ../app/views/layouts/listnav/_container_image_registry.html.haml:12 -#: ../app/views/layouts/listnav/_container_node.html.haml:12 -#: ../app/views/layouts/listnav/_container_project.html.haml:12 -#: ../app/views/layouts/listnav/_container_replicator.html.haml:12 -#: ../app/views/layouts/listnav/_container_route.html.haml:12 -#: ../app/views/layouts/listnav/_container_service.html.haml:12 -#: ../app/views/layouts/listnav/_container_template.html.haml:12 -#: ../app/views/layouts/listnav/_ems_cloud.html.haml:12 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:13 -#: ../app/views/layouts/listnav/_ems_container.html.haml:12 -#: ../app/views/layouts/listnav/_ems_datawarehouse.html.haml:10 -#: ../app/views/layouts/listnav/_ems_infra.html.haml:14 -#: ../app/views/layouts/listnav/_ems_middleware.html.haml:10 -#: ../app/views/layouts/listnav/_ems_network.html.haml:10 -#: ../app/views/layouts/listnav/_ems_storage.html.haml:10 -#: ../app/views/layouts/listnav/_flavor.html.haml:12 -#: ../app/views/layouts/listnav/_floating_ip.html.haml:12 -#: ../app/views/layouts/listnav/_host.html.haml:36 -#: ../app/views/layouts/listnav/_host_aggregate.html.haml:12 -#: ../app/views/layouts/listnav/_load_balancer.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_datasource.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_deployment.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_domain.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_messaging.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_server.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_server_group.html.haml:12 -#: ../app/views/layouts/listnav/_miq_ae_class.html.haml:12 -#: ../app/views/layouts/listnav/_network_port.html.haml:12 -#: ../app/views/layouts/listnav/_network_router.html.haml:12 -#: ../app/views/layouts/listnav/_ontap_file_share.html.haml:12 -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:13 -#: ../app/views/layouts/listnav/_ontap_storage_system.html.haml:12 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:12 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:12 -#: ../app/views/layouts/listnav/_persistent_volume.html.haml:12 -#: ../app/views/layouts/listnav/_pxe_server.html.haml:12 -#: ../app/views/layouts/listnav/_resource_pool.html.haml:13 -#: ../app/views/layouts/listnav/_security_group.html.haml:12 -#: ../app/views/layouts/listnav/_service.html.haml:12 -#: ../app/views/layouts/listnav/_storage.html.haml:13 -#: ../app/views/layouts/listnav/_storage_manager.html.haml:12 -#: ../app/views/miq_capacity/_bottlenecks_tabs.html.haml:4 -#: ../app/views/miq_capacity/_planning_tabs.html.haml:4 -#: ../app/views/miq_capacity/_utilization_tabs.html.haml:4 -#: ../app/views/ops/_all_tabs.html.haml:166 -#: ../app/views/ops/_all_tabs.html.haml:277 -#: ../app/views/provider_foreman/_configuration_profile.html.haml:4 -#: ../app/views/provider_foreman/_inventory_group.html.haml:4 -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-summary.html.haml:5 -msgid "Summary" -msgstr "Synthèse" +msgid "Compliance Check" +msgstr "Vérification de Conformité" -#: ../app/controllers/report_controller/reports/editor.rb:334 -#: ../app/helpers/ui_constants.rb:622 -msgid "Charts" -msgstr "Graphiques" +msgid "Compliance Policies" +msgstr "Stratégie de Conformité" -#: ../app/controllers/report_controller/reports/editor.rb:335 -msgid "Timeline" -msgstr "Chronologie" +msgid "Compliant as of %{time} Ago" +msgstr "Conforme %{time} avant" -#: ../app/controllers/report_controller/reports/editor.rb:798 -msgid "" -"Fields not added: Adding the selected %{count} fields will exceed the maximum " -"of %{max} fields" +msgid "Component Statuses" msgstr "" -"Champs non ajoutés : en ajoutant les %{count} champs sélectionnés, le maximum " -"de %{max} champs sera dépassé" - -#: ../app/controllers/report_controller/reports/editor.rb:826 -msgid "No fields were moved up" -msgstr "Aucun champ n'a été déplacé vers le haut" -#: ../app/controllers/report_controller/reports/editor.rb:877 -msgid "%{name} is currently being used in the Display Filter" -msgstr "%{name} est en cours d''utilisation pour le filtre d''affichage" +msgid "Compressed View" +msgstr "Vue Compressée" -#: ../app/controllers/report_controller/reports/editor.rb:1587 -msgid "Trending for is required" -msgstr "Le champ Tendance pour est obligatoire" +msgid "Compute" +msgstr "Calcul" -#: ../app/controllers/report_controller/reports/editor.rb:1590 -msgid "Trend Target Limit must be configured" -msgstr "La Limite cible de la tendance doit être configurée" +msgid "Compute Chargeback Rate \"%{name}\"" +msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1593 -#: ../app/controllers/report_controller/reports/editor.rb:1716 -msgid "Trend Target Limit must be numeric" -msgstr "La limite cible de la tendance doit être numérique" +msgid "Compute Chargeback Rates" +msgstr "Calculer les taux de rejet de débit" -#: ../app/controllers/report_controller/reports/editor.rb:1596 -msgid "At least one Field must be selected" -msgstr "Au moins un Champ doit être sélectionné" +msgid "Compute Profile" +msgstr "Profil de calcul" -#: ../app/controllers/report_controller/reports/editor.rb:1602 -msgid "Show Costs by must be selected" -msgstr "L'option Afficher Coûts Par doit être sélectionnée" +msgid "Compute Rate Assignments" +msgstr "Calculer les affectations de taux" -#: ../app/controllers/report_controller/reports/editor.rb:1604 -msgid "An Owner must be selected" -msgstr "Vous devez sélectionner un propriétaire" +msgid "Condition" +msgstr "" -#: ../app/controllers/report_controller/reports/editor.rb:1606 -msgid "A Tenant Category must be selected" -msgstr "Vous devez sélectionner une catégorie de locataires" +msgid "Condition \"%{cond_name}\" has been removed from Policy \"%{pol_name}\"" +msgstr "La condition \"%{cond_name}\" a été supprimée de la Stratégie \"%{pol_name}\"" -#: ../app/controllers/report_controller/reports/editor.rb:1611 -msgid "A Tag must be selected" -msgstr "Une balise doit être sélectionnée" +msgid "Condition Selection" +msgstr "Sélection de la condition" -#: ../app/controllers/report_controller/reports/editor.rb:1615 -msgid "A specific %{chargeback} or all must be selected" -msgstr "" +msgid "Condition record ID %{param_id} was removed from Policy ID %{policy_id}" +msgstr "L'ID d'enregistrement de la condition %{param_id} a été supprimé de l'ID de stratégie %{policy_id}" -#: ../app/controllers/report_controller/reports/editor.rb:1620 -msgid "A Group by Tag must be selected" -msgstr "Un Groupe Par balise doit être sélectionné" +msgid "Conditions" +msgstr "Conditions" -#: ../app/controllers/report_controller/reports/editor.rb:1644 -msgid "Styling for '%{item}', first value is in error: %{message}" -msgstr "Styling pour '%{item}', première valeur erronée : %{message}" +msgid "Conditions assigned to Policies can not be deleted" +msgstr "Impossible de supprimer les conditions affectées à des stratégies" -#: ../app/controllers/report_controller/reports/editor.rb:1647 -msgid "Styling for '%{item}', second value is in error: %{message}" -msgstr "Styling pour '%{item}', deuxième valeur erronée : %{message}" +msgid "Configuration" +msgstr "Configuration" -#: ../app/controllers/report_controller/reports/editor.rb:1650 -msgid "Styling for '%{item}', third value is in error: %{message}" -msgstr "Styling pour '%{item}', troisième valeur erronée : %{message}" +msgid "Configuration (%{number})" +msgstr "Configuration (%{number})" -#: ../app/controllers/report_controller/reports/editor.rb:1673 -msgid "Data column must be selected when chart mode is set to \"Values\"" -msgstr "" +msgid "Configuration Location" +msgstr "Emplacement de configuration" -#: ../app/controllers/report_controller/reports/editor.rb:1701 -msgid "Consolidation tab is not available until at least 1 field has been selected" -msgstr "" -"L'onglet Consolidation n'est pas disponible tant qu'au moins 1 champ n'a pas é" -"té sélectionné" +msgid "Configuration Management Configured Systems" +msgstr "Gestion de la configuration - Systèmes configurés" -#: ../app/controllers/report_controller/reports/editor.rb:1705 -msgid "Formatting tab is not available until at least 1 field has been selected" -msgstr "" -"L'onglet Mise en forme n'est pas disponible tant qu'au moins 1 champ n'a pas é" -"té sélectionné" +msgid "Configuration Management Providers" +msgstr "Fournisseurs de gestion de configuration" -#: ../app/controllers/report_controller/reports/editor.rb:1710 -msgid "Filter tab is not available until Trending for field has been selected" -msgstr "" -"L'onglet Filtre n'est pas disponible tant que le champ \"Tendance pour\" n'a pas" -" été sélectionné" +msgid "Configuration Organization" +msgstr "Organisation de configuration" -#: ../app/controllers/report_controller/reports/editor.rb:1713 -msgid "Filter tab is not available until Trending Target Limit has been configured" -msgstr "" -"L'onglet Filtre n'est pas disponible tant que la limite cible de la tendance n" -"'a pas été configurée" +msgid "Configuration Profile Description" +msgstr "Description du profil de configuration" -#: ../app/controllers/report_controller/reports/editor.rb:1719 -msgid "Filter tab is not available until at least 1 field has been selected" -msgstr "" -"L'onglet Filtre n'est pas disponible tant qu'au moins 1 champ n'a pas été séle" -"ctionné" +msgid "Configuration Profile: %{name}" +msgstr "Profil de configuration : %{name}" -#: ../app/controllers/report_controller/reports/editor.rb:1723 -msgid "Summary tab is not available until at least 1 field has been selected" -msgstr "" -"L'onglet Synthèse n'est pas disponible tant qu'au moins 1 champ n'a pas été sé" -"lectionné" +msgid "Configuration changes saved" +msgstr "Changements de configuration sauvés" -#: ../app/controllers/report_controller/reports/editor.rb:1727 -msgid "Charts tab is not available until at least 1 field has been selected" -msgstr "" -"L'onglet Graphiques n'est pas disponible tant qu'au moins 1 champ n'a pas été " -"sélectionné" +msgid "Configuration files of nova service" +msgstr "Fichiers de configuration du service nova" -#: ../app/controllers/report_controller/reports/editor.rb:1729 -msgid "Charts tab is not available unless a sort field has been selected" -msgstr "L'onglet Graphiques n'est disponible que si un champ de tri a été sélectionné" +msgid "Configuration settings saved" +msgstr "Paramètres de configuration sauvés" -#: ../app/controllers/report_controller/reports/editor.rb:1734 -msgid "Timeline tab is not available until at least 1 field has been selected" -msgstr "" -"L'onglet Chronologie n'est pas disponible tant qu'au moins 1 champ de temps n'" -"a pas été sélectionné" +msgid "Configuration settings saved for %{product} Server \"%{name} [%{server_id}]\" in Zone \"%{zone}\"" +msgstr "Paramètres de configuration enregistrés pour le serveur %{product} \"%{name} [%{server_id}]\" dans la zone \"%{zone}\"" -#: ../app/controllers/report_controller/reports/editor.rb:1744 -msgid "Timeline tab is not available unless at least 1 time field has been selected" -msgstr "" -"L'onglet Chronologie n'est pas disponible tant qu'au moins 1 champ de temps n'" -"a pas été sélectionné" +msgid "Configuration_Jobs" +msgstr "Tâches_configuration" -#: ../app/controllers/report_controller/reports/editor.rb:1750 -msgid "Preview tab is not available until Trending for field has been selected" -msgstr "" -"L'onglet Prévisualisation n'est pas disponible tant que le champ \"Tendance pou" -"r\" n'a pas été sélectionné" +msgid "Configure Metrics" +msgstr "Configurer les métriques" -#: ../app/controllers/report_controller/reports/editor.rb:1753 -msgid "Preview tab is not available until Trend Target Limit has been configured" -msgstr "" -"L'onglet Prévisualisation n'est pas disponible tant que la limite cible de la " -"tendance n'a pas été configurée" +msgid "Configure Registry" +msgstr "Configurer le registre" -#: ../app/controllers/report_controller/reports/editor.rb:1756 -msgid "Trend Target Limit: Value must be numeric" -msgstr "Limite cible de la tendance : la valeur doit être numérique" +msgid "Configure Report Columns" +msgstr "Configurer les colonnes du rapport" -#: ../app/controllers/report_controller/reports/editor.rb:1759 -msgid "Preview tab is not available until at least 1 field has been selected" -msgstr "" -"L'onglet Prévisualisation n'est pas disponible tant qu'au moins 1 champ n'a pa" -"s été sélectionné" +msgid "Configure Router" +msgstr "Configurer le routeur" -#: ../app/controllers/report_controller/reports/editor.rb:1761 -msgid "Preview tab is not available until Chargeback Filters has been configured" -msgstr "" -"L'onglet Prévisualisation n'est pas disponible tant que les filtres de rétrofa" -"cturation n'ont pas été configurés" +msgid "Configure:" +msgstr "Configurer :" -#: ../app/controllers/report_controller/reports/editor.rb:1768 -msgid "Styling tab is not available until at least 1 field has been selected" -msgstr "" -"L'onglet Styling n'est pas disponible tant qu'au moins 1 champ n'a pas été sél" -"ectionné" +msgid "Configured System: %{hostname}" +msgstr "Système configuré : %{hostname}" -#: ../app/controllers/report_controller/saved_reports.rb:33 -msgid "Saved Report \"%{time}\" not found, Schedule may have failed" -msgstr "" -"Le rapport enregistré \"%{time}\" est introuvable, le planning a peut-être échou" -"é" +msgid "Configured Systems" +msgstr "Systèmes configurés" -#: ../app/controllers/report_controller/saved_reports.rb:96 -msgid "Saved Report no longer exists" -msgstr "Le rapport enregistré n'existe plus" +msgid "Confirm %{password}" +msgstr "Confirmer %{password}" -#: ../app/controllers/report_controller/saved_reports.rb:103 -msgid "The selected Saved Report was deleted" -msgstr "Le rapport enregistré sélectionné a été supprimé" +msgid "Confirm Client Key" +msgstr "Confirmez la Clé Client" -#: ../app/controllers/report_controller/saved_reports.rb:132 -#: ../app/presenters/tree_builder_report_saved_reports.rb:17 -msgid "All Saved Reports" -msgstr "Tous les Rapports Sauvegardés" +msgid "Confirm Password" +msgstr "Confirmez le Mot De Passe" -#: ../app/controllers/report_controller/schedules.rb:90 -msgid "%{schedule} %{name} was deleted" -msgstr "%{schedule} %{name} a été supprimé" +msgid "Confirm Secret Access Key" +msgstr "Confirmez la Clé d'Accès Secrète" -#: ../app/controllers/report_controller/schedules.rb:92 -msgid "The selected %{schedules} were deleted" -msgstr "Les %{schedules} sélectionnés ont été supprimés" +msgid "Confirm Token" +msgstr "Confirmer le Token" -#: ../app/controllers/report_controller/schedules.rb:103 -msgid "No Report Schedules were selected to be Run now" -msgstr "Aucun planning de rapport sélectionné à exécuter maintenant" +msgid "Connect to this VM in its Region" +msgstr "Connecter à cette VM dans sa Région" -#: ../app/controllers/report_controller/schedules.rb:125 -msgid "The selected Schedule has been queued to run" -msgstr "le planning sélectionné a été mis en file d'attente pour exécution" +msgid "Connected" +msgstr "" -#: ../app/controllers/report_controller/schedules.rb:127 -msgid "The selected Schedules have been queued to run" -msgstr "Les plannings sélectionnés ont été mis en file d'attente pour exécution" +msgid "Connection Broker" +msgstr "Broker de connexion" -#: ../app/controllers/report_controller/schedules.rb:138 -msgid "No %{schedules} were selected to be enabled" -msgstr "Aucun %{schedules} sélectionné à activer" +msgid "Connection Broker cache cleared successfully" +msgstr "Le cache du broker de connexion a été effacé" -#: ../app/controllers/report_controller/schedules.rb:139 -msgid "The selected %{schedules} were enabled" -msgstr "Les %{schedules} sélectionnés ont été activés" +msgid "Connection URL" +msgstr "URL de connexion" -#: ../app/controllers/report_controller/schedules.rb:141 -msgid "No %{schedules} were selected to be disabled" -msgstr "Aucun %{schedules} sélectionné à désactiver" +msgid "Connection failed." +msgstr "La connexion a échoué." -#: ../app/controllers/report_controller/schedules.rb:142 -msgid "The selected %{schedules} were disabled" -msgstr "Les %{schedules} sélectionnés ont été désactivés" +msgid "Console access failed: %{message}" +msgstr "Échec d'accès à la console : %{message}" -#: ../app/controllers/report_controller/schedules.rb:239 -#: ../app/controllers/report_controller/widgets.rb:631 -msgid "A Report must be selected" -msgstr "Un rapport doit être sélectionné" +msgid "Console access failed: Task start failed: ID [%{id}]" +msgstr "Échec d'accès à la console : échec de démarrage de la tâche : ID [%{id}]" -#: ../app/controllers/report_controller/schedules.rb:301 -msgid "At least one To E-mail address must be configured" -msgstr "Au moins une Adresse email de destinataire doit être configurée" +msgid "Consolidating records will not show detail records in the report." +msgstr "Le rapport n'affiche pas d'enregistrements détaillés lors de la consolidation des enregistrements." -#: ../app/controllers/report_controller/widgets.rb:116 -msgid "Widget content generation error: %{message}" -msgstr "Erreur de génération du contenu du composant graphique : %{message}" +msgid "Consolidation" +msgstr "Consolidation" -#: ../app/controllers/report_controller/widgets.rb:118 -msgid "Content generation for this Widget has been initiated" -msgstr "La génération de contenu pour ce Widget a été initiée" +msgid "Consolidation tab is not available until at least 1 field has been selected" +msgstr "L'onglet Consolidation n'est pas disponible tant qu'au moins 1 champ n'a pas été sélectionné" -#: ../app/controllers/report_controller/widgets.rb:240 -#: ../app/presenters/tree_builder_report_widgets.rb:13 -msgid "All Widgets" -msgstr "Tous les Widgets" +msgid "Consumption" +msgstr "Consommation" -#: ../app/controllers/report_controller/widgets.rb:266 -msgid "%{typ} %{model} \"%{name}\"" -msgstr "%{typ} %{model} \"%{name}\"" +msgid "Consumption Tab is coming" +msgstr "" -#: ../app/controllers/report_controller/widgets.rb:324 -msgid "" -msgstr "" +msgid "Container" +msgid_plural "Container" +msgstr[0] "Conteneur" +msgstr[1] "Conteneur" -#: ../app/controllers/report_controller/widgets.rb:324 -msgid "" -msgstr "" +msgid "Container Builds" +msgstr "Compilations du conteneur" -#: ../app/controllers/report_controller/widgets.rb:324 -msgid "" -msgstr "<À tous les utilisateurs>" +msgid "Container Image Analysis" +msgstr "Analyse de l'image du conteneur" -#: ../app/controllers/report_controller/widgets.rb:636 -msgid "A %{type} must be selected" -msgstr "Un %{type} doit être séléctionné" +msgid "Container Image Compliance Check" +msgstr "Vérification de la conformité de l'image du conteneur" -#: ../app/controllers/report_controller/widgets.rb:640 -msgid "At least one Column must be selected" -msgstr "Au moins une Colonne doit être sélectionnée" +msgid "Container Image Compliance Policies" +msgstr "Stratégies de conformité de l'image du conteneur" -#: ../app/controllers/report_controller/widgets.rb:644 -msgid "At least one Shortcut must be selected" -msgstr "Au moins un Raccourci doit être sélectionné" +msgid "Container Image Conditions" +msgstr "Conditions de l'image du conteneur" -#: ../app/controllers/report_controller/widgets.rb:648 -msgid "Shortcut description is required" -msgstr "La description du raccourci est obligatoire" +msgid "Container Image Control Policies" +msgstr "Stratégies de contrôle de l'image du conteneur" -#: ../app/controllers/resource_pool_controller.rb:19 -#: ../app/presenters/menu/default_menu.rb:69 -#: ../app/views/configuration/_ui_2.html.haml:210 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:79 -#: ../app/views/layouts/listnav/_host.html.haml:120 -msgid "Resource Pools" -msgstr "Pools de ressources" +msgid "Container Images" +msgstr "Images du conteneur" -#: ../app/controllers/resource_pool_controller.rb:25 -msgid "(vApp)" -msgstr "(vApp)" +msgid "Container Node Compliance Policies" +msgstr "Stratégies de conformité du nœud de conteneur" -#: ../app/controllers/resource_pool_controller.rb:26 -msgid "%{name} %{text} (Summary)" -msgstr "%{name} %{text} (Résumé)" +msgid "Container Node Conditions" +msgstr "Conditions du nœud de conteneur" -#: ../app/controllers/resource_pool_controller.rb:32 -msgid "%{name} (Direct VMs)" -msgstr "%{name} (MV directes)" +msgid "Container Node Control Policies" +msgstr "Stratégies de contrôle du nœud de conteneur" -#: ../app/controllers/resource_pool_controller.rb:38 -msgid "%{name} (All VMs - Tree View)" -msgstr "%{name} (Toutes les MV - Vue arborescente)" +msgid "Container Nodes" +msgstr "Nœuds de conteneur" -#: ../app/controllers/restful_redirect_controller.rb:15 -msgid "Could not find %{model}[id=%{id}]" -msgstr "" +msgid "Container Services" +msgstr "Services de conteneur" -#: ../app/controllers/service_controller.rb:32 -msgid "Button not yet implemented %{model_name}:%{action_name}" -msgstr "Bouton non implémenté à ce stade %{model_name} :%{action_name}" +msgid "Container Statuses Summary" +msgstr "Résumé des états de conteneur" -#: ../app/controllers/service_controller.rb:92 -msgid "Edit of Service \"%{name}\" was cancelled by the user" -msgstr "La modification du service \"%{name}\" a été annulée par l'utilisateur" +msgid "Container Templates" +msgstr "Modèles de conteneur" -#: ../app/controllers/service_controller.rb:101 -msgid "Error during 'Service Edit': %{message}" -msgstr "Erreur pendant 'l'Édition du Service': %{message} " +msgid "Containers" +msgstr "Conteneurs" -#: ../app/controllers/service_controller.rb:103 -msgid "Service \"%{name}\" was saved" -msgstr "Le service \"%{name}\" a été enregistré" +msgid "Content" +msgstr "Contenu" -#: ../app/controllers/service_controller.rb:121 -msgid "Reconfigure %{model} \"%{name}\"" -msgstr "Reconfigurer le/la %{model} \"%{name}\"" +msgid "Content Length" +msgstr "Taille du Contenu" -#: ../app/controllers/service_controller.rb:216 -msgid "Set Ownership for %{model}" -msgstr "Définir la propriété de %{model}" +msgid "Content generation for this Widget has been initiated" +msgstr "La génération de contenu pour ce Widget a été initiée" -#: ../app/controllers/service_controller.rb:220 -msgid "Set/Remove retirement date for %{model}" -msgstr "Définir/annuler une date de désactivation pour %{model}" +msgid "Contents" +msgstr "Contenu" -#: ../app/controllers/service_controller.rb:362 -#: ../app/presenters/menu/default_menu.rb:39 -#: ../app/views/configuration/_ui_2.html.haml:49 -msgid "My Services" -msgstr "Mes services" +msgid "Continue" +msgstr "Continuer" -#: ../app/controllers/storage_controller.rb:66 -msgid "%{name} (All Registered %{title})" -msgstr "%{name} (Tous %{title} enregistrés)" +msgid "Continue this provisioning request" +msgstr "Poursuivre cette demande de mise en service" -#: ../app/controllers/storage_controller.rb:199 -#: ../app/helpers/storage_helper/textual_summary.rb:165 -#: ../app/views/layouts/listnav/_storage.html.haml:86 -msgid "All Files" -msgstr "Tous les Fichiers" +msgid "Control" +msgstr "Contrôle" -#: ../app/controllers/storage_controller.rb:204 -#: ../app/helpers/storage_helper/textual_summary.rb:183 -#: ../app/views/layouts/listnav/_storage.html.haml:94 -msgid "VM Provisioned Disk Files" -msgstr "Fichiers disque configurés de la MV" +msgid "Control Policies" +msgstr "Stratégies de contrôle" -#: ../app/controllers/storage_controller.rb:213 -#: ../app/helpers/storage_helper/textual_summary.rb:201 -#: ../app/views/layouts/listnav/_storage.html.haml:102 -msgid "VM Snapshot Files" -msgstr "Fichiers de cliché de MV" +msgid "Copy" +msgstr "Copier" -#: ../app/controllers/storage_controller.rb:222 -#: ../app/helpers/storage_helper/textual_summary.rb:219 -#: ../app/views/layouts/listnav/_storage.html.haml:110 -msgid "VM Memory Files" -msgstr "Fichiers mémoire de la MV" +msgid "Copy " +msgstr "Copier " -#: ../app/controllers/storage_controller.rb:230 -#: ../app/helpers/storage_helper/textual_summary.rb:236 -#: ../app/views/layouts/listnav/_storage.html.haml:118 -msgid "Other VM Files" -msgstr "Autres fichiers MV" +msgid "Copy %{model}" +msgstr "Copier %{model}" -#: ../app/controllers/storage_controller.rb:238 -#: ../app/helpers/storage_helper/textual_summary.rb:253 -#: ../app/views/layouts/listnav/_storage.html.haml:126 -msgid "Non-VM Files" -msgstr "Fichiers non MV" +msgid "Copy %{record} was cancelled by the user" +msgstr "La copie de %{record} a été annulée par l'utilisateur" -#: ../app/controllers/storage_controller.rb:420 -msgid "Datastore Clusters" -msgstr "Clusters de magasins de données" +msgid "Copy Selected Customization Templates" +msgstr "Copier les modèles de personnalisation sélectionnés" -#: ../app/controllers/storage_controller.rb:580 -msgid "Edit Tags for Datastore" -msgstr "Modifier les balises pour le magasin de données" +msgid "Copy and paste the contents of your Service Account JSON file above." +msgstr "Copiez et collez le contenu du fichier JSON de votre compte de service ci-dessus." -#: ../app/controllers/storage_controller/storage_d.rb:42 -msgid "All %{title} Datastores" -msgstr "Tous les magasins de données %{title}" +msgid "Copy does not apply to selected %{model}" +msgstr "La copie ne s'applique pas au %{model} sélectionné" -#: ../app/controllers/storage_controller/storage_pod.rb:46 -#: ../app/presenters/tree_builder_storage_pod.rb:14 -msgid "All Datastore Clusters" -msgstr "Tous les clusters de magasins de données" +msgid "Copy object details for use in a Button" +msgstr "Copier les détails d'objet à utiliser dans un bouton" -#: ../app/controllers/storage_controller/storage_pod.rb:58 -msgid "Datastores in cluster %{name}" -msgstr "Magasins de données dans le cluster %{name}" +msgid "Copy of %{description}" +msgstr "Copie de %{description}" -#: ../app/controllers/storage_manager_controller.rb:56 -#: ../app/controllers/storage_manager_controller.rb:93 -msgid "Add New Storage Manager" -msgstr "Ajouter un nouveau Gestionnaire de Stockage" +msgid "Copy of %{label}" +msgstr "Copie de %{label}" -#: ../app/controllers/storage_manager_controller.rb:123 -#: ../app/controllers/storage_manager_controller.rb:174 -msgid "Edit Storage Manager '%{name}'" -msgstr "Modifier le gestionnaire de stockage '%{name}'" +msgid "Copy of %{name}" +msgstr "Copie de %{name}" -#: ../app/controllers/storage_manager_controller.rb:365 -#: ../app/helpers/application_helper/toolbar/storage_manager_center.rb:13 -#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:13 -msgid "Refresh Inventory" -msgstr "Actualiser l'inventaire" +msgid "Copy of %{typ} Request" +msgstr "Copie de la demande %{typ}" -#: ../app/controllers/storage_manager_controller.rb:371 -#: ../app/helpers/application_helper/toolbar/storage_manager_center.rb:19 -#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:22 -msgid "Refresh Status" -msgstr "Actualiser le statut" +msgid "Copy of Orchestration Template \"%{name}\" was cancelled by the user" +msgstr "La copie du modèle d'orchestration \"%{name}\" a été annulée par l'utilisateur" -#: ../app/controllers/storage_manager_controller.rb:420 -msgid "Error during '%{task} ': %{message}" -msgstr "Erreur pendant '%{task} ': %{message}" +msgid "Copy of Orchestration Template was cancelled by the user" +msgstr "La copie du modèle d'orchestration a été annulée par l'utilisateur" -#: ../app/controllers/storage_manager_controller.rb:423 -msgid "%{task} initiated for %{count} Storage Manager from the %{product} Database" -msgid_plural "%{task} initiated for %{count} Storage Managers from the %{product} Database" -msgstr[0] "" -"%{task} lancée pour %{count} gestionnaire de stockage à partir de la base de d" -"onnées %{product}" -msgstr[1] "" -"%{task} lancée pour %{count} gestionnaires de stockage à partir de la base de " -"données %{product}" +msgid "Copy original Request" +msgstr "Copier la requête originale" -#: ../app/controllers/storage_manager_controller.rb:427 -msgid "'%{task}' successfully initiated for %{items}" -msgstr "'%{task}' démarrée pour %{items}" +msgid "Copy selected %{record} was saved" +msgstr "La copie du %{record} sélectionné a été enregistrée" -#: ../app/controllers/storage_manager_controller.rb:460 -msgid "%{name}: Delete successful" -msgstr "%{name}: Suppression" +msgid "Copy selected Classes" +msgstr "Copier les classes sélectionnées" -#: ../app/controllers/support_controller.rb:33 -#: ../app/views/layouts/_header.html.haml:62 -msgid "Documentation" -msgstr "Documentation" +msgid "Copy selected Instances" +msgstr "Copier les instances sélectionnées" -#: ../app/controllers/topology_controller.rb:25 -#: ../app/helpers/ems_cloud_helper/textual_summary.rb:166 -#: ../app/helpers/ems_container_helper/textual_summary.rb:84 -#: ../app/helpers/ems_infra_helper/textual_summary.rb:182 -#: ../app/helpers/ems_middleware_helper/textual_summary.rb:52 -#: ../app/helpers/ems_network_helper/textual_summary.rb:90 -#: ../app/presenters/menu/default_menu.rb:56 -#: ../app/presenters/menu/default_menu.rb:74 -#: ../app/presenters/menu/default_menu.rb:110 -#: ../app/presenters/menu/default_menu.rb:131 -#: ../app/presenters/menu/default_menu.rb:146 -msgid "Topology" -msgstr "Topologie" +msgid "Copy selected Methods" +msgstr "Copier la méthode sélectionnée" -#: ../app/controllers/vm_cloud_controller.rb:22 -msgid "Attach %{volume} to %{instance_model} \"%{instance_name}\"" -msgstr "Associer %{volume} à %{instance_model} \"%{instance_name}\"" +msgid "Copy selected Orchestration Template" +msgstr "Copier le modèle d'orchestration sélectionné" -#: ../app/controllers/vm_cloud_controller.rb:40 -msgid "%{instance_model} \"%{instance_name}\" has no attached %{volumes}" -msgstr "Aucun %{volumes} n'est associé à %{instance_model} \"%{instance_name}\" " - -#: ../app/controllers/vm_cloud_controller.rb:49 -msgid "Detach %{volume} from %{instance_model} \"%{instance_name}\"" -msgstr "Dissocier %{volume} de %{instance_model} \"%{instance_name}\"" +msgid "Copy selected Time Profile" +msgstr "Copier le profil temporel sélectionné" -#: ../app/controllers/vm_cloud_controller.rb:66 -msgid "" -"Attaching %{volume_model} to %{instance_model} \"%{instance_name}\" was cancelle" -"d by the user" -msgstr "" -"L'association de %{volume_model} à %{instance_model} \"%{instance_name}\" a été " -"annulée par l'utilisateur" +msgid "Copy the selected Analysis Profiles" +msgstr "Copier les profils d'analyse sélectionnés" -#: ../app/controllers/vm_cloud_controller.rb:104 -msgid "" -"Detaching a %{volume} from %{instance_model} \"%{instance_name}\" was cancelled " -"by the user" -msgstr "" -"La dissociation de %{volume} de %{instance_model} \"%{instance_name}\" a été ann" -"ulée par l'utilisateur" +msgid "Copy the selected Chargeback Rate to a new Chargeback Rate" +msgstr "Copier le taux de rejet de débit sélectionné dans un nouveau taux de rejet de débit" -#: ../app/controllers/vm_cloud_controller.rb:150 -#: ../app/controllers/vm_common.rb:1252 -#: ../app/presenters/tree_builder_instances.rb:25 -msgid "Instances by Provider" -msgstr "Instances par fournisseur" +msgid "Copy the selected Dialog to a new Dialog" +msgstr "Copier la boîte de Dialogue sélectionnée vers une nouvelle boîte de Dialogue" -#: ../app/controllers/vm_cloud_controller.rb:155 -#: ../app/controllers/vm_common.rb:1248 -#: ../app/presenters/tree_builder_images.rb:23 -msgid "Images by Provider" -msgstr "Images par fournisseur" +msgid "Copy the selected Role to a new Role" +msgstr "Copier le Rôle sélectionné vers un nouveau Rôle" -#: ../app/controllers/vm_common.rb:251 -msgid " (Networks)" -msgstr " (Réseaux)" +msgid "Copy the selected User to a new User" +msgstr "Copier l'utilisateur sélectionné dans un nouvel utilisateur" -#: ../app/controllers/vm_common.rb:254 -msgid " (OS Information)" -msgstr " (Information SE)" +msgid "Copy this %{policy_type} Policy" +msgstr "Copier cette stratégie %{policy_type}" -#: ../app/controllers/vm_common.rb:257 -msgid " (Container)" -msgstr " (Container)" +msgid "Copy this Alert" +msgstr "Copier cette Alerte" -#: ../app/controllers/vm_common.rb:260 -msgid " (Resources)" -msgstr " (Ressources)" +msgid "Copy this Chargeback Rate" +msgstr "Copier ce taux de rejet de débit" -#: ../app/controllers/vm_common.rb:263 -msgid " (Snapshots)" -msgstr " (Clichés)" +msgid "Copy this Class" +msgstr "Copier cette Classe" -#: ../app/controllers/vm_common.rb:275 -msgid " (Devices)" -msgstr " (Devices)" +msgid "Copy this Condition to a new Condition" +msgstr "Copier cette Condition vers une nouvelle Condition" -#: ../app/controllers/vm_common.rb:280 -msgid " (Genealogy)" -msgstr " (Généalogie)" +msgid "Copy this Condition to a new Condition assigned to Policy [%{condition_policy_description}]" +msgstr "Copier cette condition dans une nouvelle condition affectée à la stratégie [%{condition_policy_description}]" -#: ../app/controllers/vm_common.rb:295 -msgid " (Latest Compliance Check)" -msgstr " (Dernière Vérification de Conformité)" +msgid "Copy this Customization Template" +msgstr "Copier ce modèle de personnalisation" -#: ../app/controllers/vm_common.rb:298 -msgid " (Compliance History - Last %{number} Checks)" -msgstr " (Historique des Conformités - Les %{number} dernières vérifications)" +msgid "Copy this Dialog" +msgstr "Copier cette boîte de dialogue" -#: ../app/controllers/vm_common.rb:310 -msgid "%{name} (Disks)" -msgstr "%{name} (Disques)" +msgid "Copy this Instance" +msgstr "Copier cette instance" -#: ../app/controllers/vm_common.rb:319 -msgid " (All %{storages})" -msgstr " (Tous les %{storages})" +msgid "Copy this Method" +msgstr "Copier cette méthode" -#: ../app/controllers/vm_common.rb:325 -msgid " (All %{storage_volumes})" -msgstr " (Tous les %{storage_volumes})" +msgid "Copy this Orchestration Template" +msgstr "Copier ce modèle d'orchestration" -#: ../app/controllers/vm_common.rb:331 -msgid " (All %{file_shares})" -msgstr " (Tous les %{file_shares})" +msgid "Copy this Orchestration Template as orderable" +msgstr "Copier ce modèle d'orchestration comme organisable" -#: ../app/controllers/vm_common.rb:403 -#: ../app/presenters/tree_node_builder.rb:315 -msgid "VM: %{name} (Click to view)" -msgstr "MV : %{name} (Cliquer pour afficher)" +msgid "Copy this Policy to new Policy [%{new_policy_description}]" +msgstr "Copier cette stratégie dans une nouvelle [%{new_policy_description}]" -#: ../app/controllers/vm_common.rb:405 -msgid " (Selected)" -msgstr " (Sélectionné)" +msgid "Copy this Report" +msgstr "Copier ce Rapport" -#: ../app/controllers/vm_common.rb:440 -msgid "Last selected Snapshot no longer exists" -msgstr "Le dernier cliché sélectionné n'existe plus" +msgid "Copy this Role to a new Role" +msgstr "Copier cet Rôle vers un nouveau Rôle" -#: ../app/controllers/vm_common.rb:467 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:223 -#: ../app/helpers/vm_helper/textual_summary.rb:657 -msgid "Running Processes" -msgstr "Processus en cours d'exécution" +msgid "Copy this User to a new User" +msgstr "Copier cet Utilisateur vers un nouvel Utilisateur" -#: ../app/controllers/vm_common.rb:472 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:212 -#: ../app/helpers/vm_helper/textual_summary.rb:568 -msgid "Registry Entries" -msgstr "Entrées de registre" +msgid "Copy this Widget" +msgstr "Copier ce Widget" -#: ../app/controllers/vm_common.rb:481 -#: ../app/helpers/textual_mixins/textual_init_processes.rb:7 -msgid "Init Processes" -msgstr "Processus d'initialisation" +msgid "Copy this selected Analysis Profile" +msgstr "Copie ce profil d'analyse sélectionné" -#: ../app/controllers/vm_common.rb:486 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:167 -#: ../app/helpers/vm_helper/textual_summary.rb:525 -msgid "Win32 Services" -msgstr "Services Win32" +msgid "Copy to same path" +msgstr "Copier vers le même chemin" -#: ../app/controllers/vm_common.rb:491 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:182 -#: ../app/helpers/vm_helper/textual_summary.rb:539 -msgid "Kernel Drivers" -msgstr "Pilotes de noyau" +msgid "Copying %{record_name}" +msgstr "Copie de %{record_name}" -#: ../app/controllers/vm_common.rb:496 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:197 -#: ../app/helpers/vm_helper/textual_summary.rb:553 -msgid "File System Drivers" -msgstr "Pilotes du système de fichiers" +msgid "Cores" +msgstr "Cœurs" -#: ../app/controllers/vm_common.rb:513 -#: ../app/presenters/menu/default_menu.rb:140 -msgid "Subnets" -msgstr "Sous-réseaux" +msgid "Cores Per Socket" +msgstr "Cœurs par socket" -#: ../app/controllers/vm_common.rb:517 -#: ../app/presenters/menu/default_menu.rb:137 -#: ../app/presenters/menu/default_menu.rb:139 -msgid "Networks" -msgstr "Réseaux" +msgid "Could not find %{model}[id=%{id}]" +msgstr "" -#: ../app/controllers/vm_common.rb:525 -msgid "Routers" -msgstr "Routeurs" +msgid "Couldn't initiate deletion of %{model} \"%{name}\": %{details}" +msgstr "Impossible de lancer la suppression de %{model} \"%{name}\" : %{details}" -#: ../app/controllers/vm_common.rb:529 -msgid "Ports" -msgstr "Ports" +msgid "Couldn't initiate deletion of Network \"%{name}\": %{details}" +msgstr "" -#: ../app/controllers/vm_common.rb:543 -msgid "Snapshot VM '%{name}''" -msgstr "Prendre un cliché de la MV '%{name}'" +msgid "Couldn't initiate deletion of Security Group \"%{name}\": %{details}" +msgstr "" -#: ../app/controllers/vm_common.rb:556 -msgid "%{missing_field_name} is required" +msgid "Couldn't initiate update of Network \"%{name}\": %{details}" msgstr "" -#: ../app/controllers/vm_common.rb:559 -msgid "Snapshot VM '%{name}'" -msgstr "Prendre un cliché de la MV '%{name}'" +msgid "Couldn't initiate update of Security Group \"%{name}\": %{details}" +msgstr "" -#: ../app/controllers/vm_common.rb:577 -msgid "Snapshot of VM %{name} was cancelled by the user" -msgstr "Le cliché de la MV %{name} a été annulé par l'utilisateur" +msgid "Count" +msgstr "Nombre" -#: ../app/controllers/vm_common.rb:605 -msgid "Error during 'Create Snapshot': %{message}" -msgstr "Erreur lors de la création du cliché : %{message}" +msgid "Count of" +msgstr "Nombre de" -#: ../app/controllers/vm_common.rb:609 -msgid "Create Snapshot for %{model} \"%{name}\" was started" -msgstr "La création du cliché pour %{model} \"%{name}\" a été lancée" +msgid "Counts" +msgstr "Nombres" -#: ../app/controllers/vm_common.rb:629 -msgid "Policy Simulation Details for %{name}" -msgstr "Détails de la simulation de stratégie pour %{name}" +msgid "Counts of VMs (%{profile})" +msgstr "Nombre de machines virtuelles (%{profile})" -#: ../app/controllers/vm_common.rb:646 -msgid "No policies were selected for Policy Simulation." -msgstr "Aucune stratégie n'a été sélectionnée pour la simulation de stratégie." +msgid "Create" +msgstr "Créer" -#: ../app/controllers/vm_common.rb:704 -msgid "Right Size VM '%{name}''" -msgstr "Calibrer la MV '%{name}''" +msgid "Create Backup for %{model} \"%{name}\"" +msgstr "Créer une sauvegarde pour %{model} \"%{name}\"" -#: ../app/controllers/vm_common.rb:758 -msgid "Edit Management Engine Relationship was cancelled by the user" -msgstr "" -"La modification de la relation du moteur de gestion a été annulée par l'utilis" -"ateur" +msgid "Create Cloud Tenant" +msgstr "Créer un locataire cloud" -#: ../app/controllers/vm_common.rb:770 -msgid "Management Engine Relationship saved" -msgstr "Relation du moteur de gestion enregistrée" +msgid "Create Containers Provider" +msgstr "Créer un fournisseur de conteneurs" -#: ../app/controllers/vm_common.rb:836 -msgid "Add VM to a Service" -msgstr "Ajouter une MV à un Service" +msgid "Create Datasource" +msgstr "Créer une source de données" -#: ../app/controllers/vm_common.rb:843 -msgid "Add VM \"%{name}\" to a Service was cancelled by the user" +msgid "Create New" msgstr "" -"L'ajout de la machine virtuelle \"%{name}\" à un service a été annulé par l'util" -"isateur" -#: ../app/controllers/vm_common.rb:847 -msgid "%{model} \"%{name}\" successfully added to Service \"%{to_name}\"" -msgstr "%{model} \"%{name}\" ajouté au service \"%{to_name}\"" +msgid "Create New %{model}" +msgstr "Créer un nouveau %{model}" -#: ../app/controllers/vm_common.rb:851 -msgid "Error during 'Add VM to service': %{message}" -msgstr "" -"Erreur lors de l'opération \"Ajouter la machine virtuelle à un service\" : %{mes" -"sage}" +msgid "Create Service Dialog from Orchestration Template" +msgstr "Créer une boîte de dialogue de service à partir du modèle d'orchestration" -#: ../app/controllers/vm_common.rb:864 -msgid "Error during 'Remove VM from service': %{message}" -msgstr "" -"Erreur lors de l'opération \"Supprimer la machine virtuelle du service\" : %{mes" -"sage}" +msgid "Create Service Dialog from this Job Template" +msgstr "Créer une boîte de dialogue de service à partir de ce modèle de tâche" -#: ../app/controllers/vm_common.rb:866 -msgid "VM successfully removed from service \"%{name}\"" -msgstr "MV retirée du service \"%{name}\"" +msgid "Create Snapshot for %{model} \"%{name}\" was started" +msgstr "La création du cliché pour %{model} \"%{name}\" a été lancée" -#: ../app/controllers/vm_common.rb:889 -msgid "Edit VM '%{name}''" -msgstr "Modifier la machine virtuelle '%{name}''" +msgid "Create Snapshot for Cloud Volume \"%{name}\"" +msgstr "Créer un cliché pour le volume cloud \"%{name}\"" -#: ../app/controllers/vm_common.rb:929 -msgid "Parent VM can not be one of the child VMs" -msgstr "La MV parente ne peut pas être une des MV fille" +msgid "Create a Backup of this Cloud Volume" +msgstr "Créer une sauvegarde pour le volume cloud" -#: ../app/controllers/vm_common.rb:954 -msgid "Error during '%{name} update': %{message}" -msgstr "Erreur pendant la 'mise à jour de %{name}': %{message}" +msgid "Create a Snapshot of this Cloud Volume" +msgstr "Créer un cliché pour ce volume cloud \"%{name}\"" -#: ../app/controllers/vm_common.rb:1022 ../app/controllers/vm_common.rb:1024 -msgid " (Analysis History)" -msgstr " (Historique des Analyses)" +msgid "Create a new Condition assigned to this Policy" +msgstr "Créer une condition affectée à cette stratégie" -#: ../app/controllers/vm_common.rb:1123 -msgid "User is not authorized to view %{model} \"%{name}\"" -msgstr "L'utilisateur n'est pas autorisé à afficher le %{model} \"%{name}\"" +msgid "Create a new Generic Object Definition" +msgstr "Créer une définition d'objet générique" -#: ../app/controllers/vm_common.rb:1143 ../app/controllers/vm_common.rb:1164 -msgid "Console access failed: %{message}" -msgstr "Échec d'accès à la console : %{message}" +msgid "Create a new snapshot for this Template" +msgstr "Créer un cliché pour ce modèle" -#: ../app/controllers/vm_common.rb:1150 -msgid "Console access failed: Task start failed: ID [%{id}]" -msgstr "Échec d'accès à la console : échec de démarrage de la tâche : ID [%{id}]" +msgid "Create a new snapshot for this VM" +msgstr "Créer un cliché pour cette machine virtuelle" -#: ../app/controllers/vm_common.rb:1254 ../app/controllers/vm_common.rb:1334 -#: ../app/controllers/vm_infra_controller.rb:22 -#: ../app/helpers/ems_infra_helper/textual_summary.rb:84 -#: ../app/views/configuration/_ui_2.html.haml:210 -#: ../app/views/layouts/listnav/_ems_infra.html.haml:34 -#: ../app/views/ops/_rbac_group_details.html.haml:282 -msgid "VMs & Templates" -msgstr "MV et modèles" +msgid "Create new Orchestration Template" +msgstr "Créer un modèle d'orchestration" -#: ../app/controllers/vm_common.rb:1258 -#: ../app/controllers/vm_or_template_controller.rb:22 -#: ../app/views/configuration/_ui_2.html.haml:49 -msgid "Templates & Images" -msgstr "Modèles et images" +msgid "Create new VMs on provider" +msgstr "Créer des machines virtuelles sur le fournisseur" -#: ../app/controllers/vm_common.rb:1293 ../app/controllers/vm_common.rb:1323 -#: ../app/presenters/tree_builder_vandt.rb:15 -msgid "All VMs & Templates" -msgstr "Toutes les MV & Modèles" +msgid "Create snapshot" +msgstr "Créer un cliché" -#: ../app/controllers/vm_common.rb:1305 -msgid "Orphaned %{models}" -msgstr "%{models} orphelins" +msgid "Created" +msgstr "Créé" -#: ../app/controllers/vm_common.rb:1307 -msgid "Orphaned VMs & Templates" -msgstr "MV et modèles orphelins" +msgid "Created On" +msgstr "Créé sur" -#: ../app/controllers/vm_common.rb:1313 -msgid "Archived %{models}" -msgstr "%{models} archivés" +msgid "Creation of a Cloud Subnet was cancelled by the user" +msgstr "" -#: ../app/controllers/vm_common.rb:1315 -msgid "Archived VMs & Templates" -msgstr "MV & Modèles Archivés" +msgid "Creation of a new Orchestration Template was cancelled by the user" +msgstr "La création d'un modèle d'orchestration a été annulée par l'utilisateur" -#: ../app/controllers/vm_common.rb:1332 -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:124 -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:28 -#: ../app/views/shared/views/_prov_dialog.html.haml:101 -msgid "Datacenter" -msgstr "Datacenter" +msgid "Creation of a new Service Dialog was cancelled by the user" +msgstr "La création d'un nouveau Dialogue de service a été annulée par l'utilisateur" -#: ../app/controllers/vm_common.rb:1333 -msgid "%{object_types} under %{datastore_or_provider} \"%{provider_or_datastore_name}\"" +msgid "Creation of new %{model} was cancelled by the user" +msgstr "La création d'un nouveau %{model} a été annulée par l'utilisateur" + +msgid "Creation timestamp" +msgstr "Horodatage de la création" + +msgid "Credential" msgstr "" -#: ../app/controllers/vm_common.rb:1616 -msgid "Advanced Setting" -msgid_plural "Advanced Settings" -msgstr[0] "Paramètre avancé" -msgstr[1] "Paramètres avancés" +msgid "Credential validation returned: %{message}" +msgstr "La validation des données d'identification a répondu : %{message}" -#: ../app/controllers/vm_common.rb:1618 -msgid "Number of Disk" -msgid_plural "Number of Disks" -msgstr[0] "Nombre de disques" -msgstr[1] "Nombre de disques" +msgid "Credential validation was not successful: %{details}" +msgstr "La validation des données d'identification a échoué : %{details}" -#: ../app/controllers/vm_common.rb:1622 ../app/views/ops/_ap_form.html.haml:76 -#: ../app/views/ops/_ap_form.html.haml:89 -msgid "Event Log" -msgid_plural "Event Logs" -msgstr[0] "Log d'événement" -msgstr[1] "Logs d'événement" +msgid "Credential validation was successful" +msgstr "La validation des données d'identification a réussi" + +msgid "Credentials" +msgstr "Informations d'identification" + +msgid "Credentials - Windows Domain" +msgstr "Données d'identification - Domaine Windows" + +msgid "Credentials/Settings" +msgstr "Données d'identification/Paramètres" + +msgid "Credentials/Settings saved successfully" +msgstr "Données d'identification/Paramètres sauvegardés" + +msgid "Currencies" +msgstr "Devises" + +msgid "Current" +msgstr "Actuel" + +msgid "Current %{model} \"%{name}\" cannot be deleted" +msgstr "Impossible de supprimer le %{model} \"%{name}\" actuel" + +msgid "Current Flavor" +msgstr "Gabarit actuel" + +msgid "Current Group" +msgstr "Groupe actuel" + +msgid "Current Status" +msgstr "État actuel" + +msgid "Current User" +msgstr "Utilisateur actuel" + +msgid "Current pods" +msgstr "Pods actuels" + +msgid "Current user lacks permissions to create a new snapshot for this VM" +msgstr "" + +msgid "Currently Selected Group" +msgstr "Groupe actuellement sélectionné" + +msgid "Custom Attribute Settings" +msgstr "Paramètres d'attributs personnalisés" + +msgid "Custom Attributes" +msgstr "Attributs personnalisés" + +msgid "Custom Automation" +msgstr "Automatisation personnalisée" + +msgid "Custom Identifier" +msgstr "Identificateur personnalisé" + +msgid "Custom Image" +msgstr "Image personnalisée" + +msgid "Custom Image file \"%{name}\" successfully uploaded" +msgstr "Le fichier image personnalisé \"%{name}\" a été téléchargé" + +msgid "Custom Image must be a .png or .jpg file" +msgstr "L'image personnalisée doit être un fichier .png ou .jpg" + +msgid "Custom Image successfully removed" +msgstr "Image personnalisée supprimée" + +msgid "Custom Login & 'About' Screen Background Image" +msgstr "" + +msgid "Custom Login Panel Text (" +msgstr "Connexion personnalisée - Texte du panneau (" + +msgid "Custom Logo Image (Shown on top right of all screens)" +msgstr "Image du logo personnalisé (affiché dans le coin supérieur droit de tous les écrans)" + +msgid "Custom Logo file \"%{name}\" uploaded" +msgstr "Fichier de logo personnalisé \"%{name}\" téléchargé" + +msgid "Custom Logos" +msgstr "Logos personnalisés" + +msgid "Custom Reports" +msgstr "Rapports personnalisés" + +msgid "Custom Specification" +msgstr "Fiche technique personnalisée" + +msgid "Custom Support URL" +msgstr "URL de Support personnalisée" + +msgid "Custom Support URL and Description both must be entered." +msgstr "Une URL de Support personnalisée et une Description doivent être saisis" + +msgid "Custom login file \"%{name}\" uploaded" +msgstr "Fichier de connexion personnalisée \"%{name}\" téléchargé" + +msgid "Custom login image must be a .png file" +msgstr "L'image de connexion personnalisée doit être un fichier .png" + +msgid "Custom logo image must be a .png file" +msgstr "L'image de logo personnalisée doit être un fichier .png" + +msgid "Customer Information successfully saved" +msgstr "Les informations sur le client ont été enregistrées" + +msgid "Customization" +msgstr "Personnalisation" + +msgid "Customization Directory" +msgstr "Répertoire de personnalisations" + +msgid "Customization Templates" +msgstr "Modèles de personnalisation" + +msgid "Customize Template" +msgstr "Personnaliser le Modèle" + +msgid "DHCP Enabled" +msgstr "DHCP Activé" + +msgid "DHCP Server" +msgstr "Serveur DHCP" + +msgid "DNS" +msgstr "DNS" + +msgid "DNS Policy" +msgstr "Stratégie DNS" + +msgid "DNS Server" +msgstr "Serveur DNS" + +msgid "DNS can only be assigned to Masters or Nodes" +msgstr "Le DNS ne peut être affecté qu'à des maîtres ou des nœuds" + +msgid "DRS Automation Level" +msgstr "Niveau d'automatisation DRS" + +msgid "DRS Enabled" +msgstr "DRS activé" + +msgid "DRS Migration Threshold" +msgstr "Limite de Migration DRS" + +msgid "Daily" +msgstr "Quotidien" + +msgid "Dashboard" +msgstr "Tableau de bord" + +msgid "Dashboard \"%{name}\"" +msgstr "Tableau de bord \"%{name}\"" + +msgid "Dashboard \"%{name}\" was saved" +msgstr "Le tableau de bord \"%{name}\" a été enregistré" + +msgid "Dashboard Sequence was saved" +msgstr "La séquence du tableau de bord a été enregistrée" + +msgid "Dashboard View" +msgstr "Vue du Tableau de bord" + +msgid "Dashboard Widgets" +msgstr "Widget du Tableau de bord" + +msgid "Dashboards" +msgstr "Tableaux de bord" + +msgid "Dashboards for \"%{name}\"" +msgstr "Tableaux de bord pour \"%{name}\"" + +msgid "Dashboards:" +msgstr "Tableaux de bord :" + +msgid "Data" +msgstr "Données" + +msgid "Data Directory" +msgstr "Répertoire de données" + +msgid "Data Disk" +msgstr "Disque de données" + +msgid "Data Type" +msgstr "Type de données" + +msgid "Data Type:" +msgstr "Type de données :" + +msgid "Data column" +msgstr "Colonne de données" + +msgid "Data column must be selected when chart mode is set to \"Values\"" +msgstr "" + +msgid "Data type: %{data_type}" +msgstr "Type de données : %{data_type}" + +msgid "Data validated successfully" +msgstr "Les données ont été validées" + +msgid "Data:" +msgstr "Données :" + +msgid "Database" +msgstr "Base de données" + +msgid "Database Backup" +msgstr "Sauvegarde de base de données" + +msgid "Database Backup Selection" +msgstr "Sélection de la sauvegarde de base de données" + +msgid "Database Backup Settings" +msgstr "Paramètres de sauvegarde de base de données" + +msgid "Database Backup successfully initiated" +msgstr "La sauvegarde de base de données a été lancée" + +msgid "Database Garbage Collection successfully initiated" +msgstr "Le nettoyage de la mémoire de la base de données a été lancé" + +msgid "Database Name" +msgstr "Nom de base de données" + +msgid "Database []" +msgstr "Base de données []" + +msgid "Datacenter" +msgstr "Datacenter" + +msgid "Datacenter: %{datacenter_name}" +msgstr "Datacenter : %{datacenter_name}" + +msgid "Datasource \"%s\" already exists on this server." +msgstr "La source de données \"%s\" existe déjà sur ce serveur." + +msgid "Datasource \"%s\" installation has started on this server." +msgstr "" + +msgid "Datasource:" +msgstr "Source de données :" + +msgid "Datasources" +msgstr "Sources de données" + +msgid "Datastore" +msgstr "Magasin de données" + +msgid "Datastore Actual Usage Summary" +msgstr "Résumé de l'utilisation réelle du magasin de données" + +msgid "Datastore Allocation Summary" +msgstr "Résumé d'allocation du magasin de données" + +msgid "Datastore Clusters" +msgstr "Clusters de magasins de données" + +msgid "Datastore Selection" +msgstr "Sélection de magasin de données" + +msgid "Datastore Space" +msgstr "Espace du magasin de données" + +msgid "Datastore import was cancelled or is finished" +msgstr "L'importation du magasin de données a été annulée ou est terminée" + +msgid "" +"Datastore import was successful.\n" +"Namespaces updated/added: %{namespace_stats}\n" +"Classes updated/added: %{class_stats}\n" +"Instances updated/added: %{instance_stats}\n" +"Methods updated/added: %{method_stats}" +msgstr "" +"L'importation du magasin de données s'est déroulée correctement.\n" +"Espaces de nommage ajoutés/mis à jour : %{namespace_stats}\n" +"Classes ajoutées/mises à jour : %{class_stats}\n" +"Instances ajoutées/mises à jour : %{instance_stats}\n" +"Méthodes ajoutées/mises à jour : %{method_stats}" + +msgid "Datastores" +msgstr "Magasins de données" + +msgid "Datastores (Click to open)" +msgstr "" + +msgid "Datastores in cluster %{name}" +msgstr "Magasins de données dans le cluster %{name}" + +msgid "Datawarehouse" +msgstr "" + +msgid "Date" +msgstr "Date" + +msgid "Date Approved/Denied" +msgstr "Date d'approbation/refus" + +msgid "Date/Time" +msgstr "Date/Heure" + +msgid "Day" +msgstr "Jour" + +msgid "Days" +msgstr "Jours" + +msgid "Default" +msgstr "Par défaut" + +msgid "Default %{model} \"%{name}\" can not be deleted" +msgstr "Impossible de supprimer le %{model} \"%{name}\" par défaut" + +msgid "Default %{model} \"%{name}\" can not be edited" +msgstr "Impossible de modifier le %{model} \"%{name}\" par défaut" + +msgid "Default %{model} \"%{name}\" cannot be copied" +msgstr "Impossible de copier le %{model} \"%{name}\" par défaut" + +msgid "Default %{model} \"%{name}\" cannot be deleted" +msgstr "Impossible de supprimer le %{model} \"%{name}\" par défaut" + +msgid "Default Adapter" +msgstr "Adaptateur par défaut" + +msgid "Default Administrator can not be deleted" +msgstr "" + +msgid "Default Authentication" +msgstr "Authentication par défaut" + +msgid "Default Chargeback Rate \"%{name}\" cannot be edited." +msgstr "Impossible de modifier le taux de rejet de débit \"%{name}\" par défaut." + +msgid "Default Chargeback Rate cannot be edited." +msgstr "Impossible de modifier le taux de rejet de débit par défaut." + +msgid "Default Chargeback Rate cannot be removed." +msgstr "Impossible de supprimer le taux de rejet de débit par défaut." + +msgid "Default Dashboard cannot be deleted" +msgstr "Impossible de supprimer le tableau de bord par défaut." + +msgid "Default Filters" +msgstr "Filtres par défaut" + +msgid "Default Filters saved successfully" +msgstr "Les filtres par défaut ont été enregistrés" + +msgid "Default Gateway" +msgstr "Passerelle par défaut" + +msgid "Default Group for Users" +msgstr "Groupe par défaut pour les utilisateurs" + +msgid "Default Host VNC Port Range End must be numeric" +msgstr "La valeur de fin de la plage de ports VNC de l'hôte par défaut doit être numérique" + +msgid "Default Host VNC Port Range Start must be numeric" +msgstr "La valeur de début de la plage de ports VNC de l'hôte par défaut doit être numérique" + +msgid "Default Items Per Page" +msgstr "Éléments par défaut par page" + +msgid "Default Limit" +msgstr "Limite Par défaut" + +msgid "Default Locale" +msgstr "Localisation Par défaut" + +msgid "Default Password and Verify Password fields do not match" +msgstr "Les champs Mot de passe par défaut et Vérification du mot de passe ne correspondent pas" + +msgid "Default Repository SmartProxy" +msgstr "SmartProxy du référentiel par défaut" + +msgid "Default Request" +msgstr "Requête Par défaut" + +msgid "Default Requests can not be edited" +msgstr "Les Requêtes par défaut ne peuvent pas être éditées" + +msgid "Default Tenant can not be deleted" +msgstr "Impossible de supprimer le locataire par défaut" -#: ../app/controllers/vm_common.rb:1624 -msgid "Filesystem Driver" -msgid_plural "Filesystem Drivers" -msgstr[0] "Pilote du système de fichiers" -msgstr[1] "Pilotes du système de fichiers" +msgid "Default User ID must be entered if a Remote Login or Web Services User ID is entered" +msgstr "L'ID utilisateur par défaut doit être saisi si un ID d'utilisateur Services Web ou Connexion distante est entré" -#: ../app/controllers/vm_common.rb:1626 -msgid "Filesystem" -msgid_plural "Filesystems" -msgstr[0] "Système de fichiers" -msgstr[1] "Systèmes de fichiers" +msgid "Default Value" +msgstr "Valeur Par défaut" -#: ../app/controllers/vm_common.rb:1628 -#: ../app/helpers/vm_helper/textual_summary.rb:215 -#: ../app/views/chargeback/_cb_rate_edit_table.html.haml:8 -#: ../app/views/chargeback/_cb_rate_show.html.haml:38 -#: ../app/views/ops/_rbac_user_details.html.haml:158 -msgid "Group" -msgid_plural "Groups" -msgstr[0] "Groupe" -msgstr[1] "Groupes" +msgid "Default Views" +msgstr "Vues Par défaut" -#: ../app/controllers/vm_common.rb:1630 -msgid "Guest Application" -msgid_plural "Guest Applications" -msgstr[0] "Application invitée" -msgstr[1] "Applications invitées" +msgid "Default actions can not be changed." +msgstr "Impossible de modifier les actions par défaut." -#: ../app/controllers/vm_common.rb:1632 -#: ../app/helpers/vm_helper/textual_summary.rb:124 -msgid "Container" -msgid_plural "Container" -msgstr[0] "Conteneur" -msgstr[1] "Conteneur" +msgid "Default actions can not be deleted." +msgstr "Impossible de supprimer les actions par défaut." -#: ../app/controllers/vm_common.rb:1634 -msgid "Kernel Driver" -msgid_plural "Kernel Drivers" -msgstr[0] "Pilote de noyau" -msgstr[1] "Pilotes de noyau" +msgid "Default dialogs cannot be edited" +msgstr "Impossible de modifier les boîtes de dialogue par défaut" -#: ../app/controllers/vm_common.rb:1636 -msgid "Init Process" -msgid_plural "Init Processes" -msgstr[0] "Processus d'initialisation" -msgstr[1] "Processus d'initialisation" +msgid "Default dialogs cannot be removed from the VMDB" +msgstr "Impossible de supprimer les boîtes de dialogue par défaut de la base de données des machines virtuelles (VMDB)" -#: ../app/controllers/vm_common.rb:1638 -msgid "OS Info" -msgid_plural "OS Info" -msgstr[0] "Informations sur le SE" -msgstr[1] "Informations sur le SE" +msgid "Default value" +msgstr "" -#: ../app/controllers/vm_common.rb:1640 -#: ../app/helpers/vm_helper/textual_summary.rb:320 -#: ../app/views/vm_common/_form.html.haml:73 -msgid "Parent VM" -msgid_plural "Parent VM" -msgstr[0] "MV parente" -msgstr[1] "MV parente" +msgid "Delay (mins)" +msgstr "Retard (minutes)" -#: ../app/controllers/vm_common.rb:1642 -msgid "Patch" -msgid_plural "Patches" -msgstr[0] "Correctif" -msgstr[1] "Correctifs" +msgid "Delete" +msgstr "Supprimer" -#: ../app/controllers/vm_common.rb:1644 -msgid "Running Process" -msgid_plural "Running Processes" -msgstr[0] "Processus en cours d'exécution" -msgstr[1] "Processus en cours d'exécution" +msgid "Delete All" +msgstr "Supprimer tout" -#: ../app/controllers/vm_common.rb:1646 -msgid "Registry Item" -msgid_plural "Registry Items" -msgstr[0] "Élément de registre" -msgstr[1] "Éléments de registre" +msgid "Delete All Existing Snapshots" +msgstr "Supprimer tous les clichés existants" -#: ../app/controllers/vm_common.rb:1648 -#: ../app/helpers/container_project_helper/textual_summary.rb:22 -#: ../app/helpers/container_project_helper/textual_summary.rb:43 -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:30 -msgid "Resource" -msgid_plural "Resources" -msgstr[0] "Ressource" -msgstr[1] "Ressources" +msgid "Delete Backing" +msgstr "Supprimer le stockage" -#: ../app/controllers/vm_common.rb:1650 -msgid "Scan History" -msgid_plural "Scan History" -msgstr[0] "Historique de scan" -msgstr[1] "Historique de scan" +msgid "Delete Cloud Tenant" +msgstr "Supprimer le locataire cloud" -#: ../app/controllers/vm_common.rb:1652 -msgid "Snapshot" -msgid_plural "Snapshots" -msgstr[0] "Cliché" -msgstr[1] "Clichés" +msgid "Delete Cloud Tenants" +msgstr "Supprimer les locataires cloud" -#: ../app/controllers/vm_common.rb:1654 -#: ../app/views/miq_task/_tasks_options.html.haml:39 -#: ../app/views/report/_report_info.html.haml:76 -#: ../app/views/report/_report_list.html.haml:137 -msgid "User" -msgid_plural "Users" -msgstr[0] "Utilisateur" -msgstr[1] "Utilisateurs" +msgid "Delete Cloud Volume Snapshot" +msgstr "Supprimer le cliché de volume cloud" + +msgid "Delete Host Aggregates" +msgstr "Supprimer les agrégats d'hôtes" + +msgid "Delete Older" +msgstr "Effacer les plus anciennes" + +msgid "Delete Selected Snapshot" +msgstr "Supprimer le Cliché sélectionné" + +msgid "Delete Server %{server_name} [%{server_id}]" +msgstr "Supprimer le serveur %{server_name} [%{server_id}]" + +msgid "Delete Snapshots" +msgstr "Supprimer les Clichés" + +msgid "Delete Tasks" +msgstr "Supprimer les Tâches" + +msgid "Delete aggregate not supported by %{model} \"%{name}\"" +msgstr "la suppression d'hôtes n'est pas pris en charge par %{model} \"%{name}\"" + +msgid "Delete all finished tasks" +msgstr "Supprimer toutes les tâches complétées" + +msgid "Delete all of this Templates existing snapshots?" +msgstr "Supprimer tous les clichés existants de ce modèle ?" + +msgid "Delete all of this VMs existing snapshots?" +msgstr "Supprimer tous les clichés existants de cette machine virtuelle ?" + +msgid "Delete all older Tasks initiated for %{count} Task from the %{product} Database" +msgid_plural "Delete all older Tasks initiated for %{count} Tasks from the %{product} Database" +msgstr[0] "Supprimer toutes les tâches plus anciennes lancées pour %{count} tâche à partir de la base de données %{product}" +msgstr[1] "Supprimer toutes les tâches plus anciennes lancées pour %{count} tâches à partir de la base de données %{product}" + +msgid "Delete all selected Groups?" +msgstr "Supprimer tous les Groupes sélectionnés?" + +msgid "Delete all selected LDAP Regions?" +msgstr "Supprimer tous les Régions LDAP sélectionnées?" + +msgid "Delete all selected Roles?" +msgstr "Supprimer tous les Rôles sélectionnés?" + +msgid "Delete all selected Users?" +msgstr "Supprimer tous les Utilisateurs sélectionnés" + +msgid "Delete all selected items and all of their children?" +msgstr "Supprimer tous les éléments sélectionnés et tous leurs enfants ?" + +msgid "Delete if Older than" +msgstr "Supprimer si Plus vieux que" + +msgid "Delete if older than" +msgstr "Supprimer si plus vieux que" + +msgid "Delete initiated for %{count} %{model} from the %{product} Database" +msgid_plural "Delete initiated for %{count} %{models} from the %{product} Database" +msgstr[0] "Supprimer l'élément lancé pour %{count} %{model} à partir de la base de données %{product}" +msgstr[1] "Supprimer l'élément lancé pour %{count} %{models} à partir de la base de données %{product}" + +msgid "Delete initiated for %{count} Provider" +msgid_plural "Delete initiated for %{count} Providers" +msgstr[0] "Supprimer l'élément lancé pour %{count} fournisseur" +msgstr[1] "Supprimer l'élément lancé pour %{count} fournisseurs" + +msgid "Delete initiated for %{count} Task from the %{product} Database" +msgid_plural "Delete initiated for %{count} Tasks from the %{product} Database" +msgstr[0] "Supprimer l'élément lancé pour %{count} tâche à partir de la base de données %{product}" +msgstr[1] "Supprimer l'élément lancé pour %{count} tâches à partir de la base de données %{product}" + +msgid "Delete initiated for %{number} Cloud Network." +msgid_plural "Delete initiated for %{number} Cloud Networks." +msgstr[0] "Supprimer l'élément lancé pour %{number} du réseau cloud." +msgstr[1] "Supprimer l'élément lancé pour %{number} des réseaux cloud." + +msgid "Delete initiated for %{number} Cloud Tenant." +msgid_plural "Delete initiated for %{number} Cloud Tenants." +msgstr[0] "Supprimer l'élément lancé pour %{number} du locataire cloud." +msgstr[1] "Supprimer l'élément lancé pour %{number} des locataires cloud." + +msgid "Delete initiated for %{number} Cloud Volume Snapshot." +msgid_plural "Delete initiated for %{number} Cloud Volume Snapshots." +msgstr[0] "Supprimer l'élément lancé pour %{number} du cliché de volume cloud." +msgstr[1] "Supprimer l'élément lancé pour %{number} des clichés de volume cloud." + +msgid "Delete initiated for %{number} Cloud Volume." +msgid_plural "Delete initiated for %{number} Cloud Volumes." +msgstr[0] "Supprimer l'élément lancé pour %{number} volume cloud." +msgstr[1] "Supprimer l'élément lancé pour %{number} volumes cloud." + +msgid "Delete initiated for %{number} Floating IP." +msgid_plural "Delete initiated for %{number} Floating IPs." +msgstr[0] "" +msgstr[1] "" + +msgid "Delete initiated for %{number} Host Aggregate." +msgid_plural "Delete initiated for %{number} Host Aggregates." +msgstr[0] "Supprimer l'élément lancé pour %{number} de l'agrégat d'hôtes." +msgstr[1] "Supprimer l'élément lancé pour %{number} des agrégats d'hôtes." + +msgid "Delete initiated for %{number} Key Pair" +msgid_plural "Delete initiated for %{number} Key Pairs" +msgstr[0] "Supprimer l'élément lancé pour %{number} paire de clés" +msgstr[1] "Supprimer l'élément lancé pour %{number} paires de clés" + +msgid "Delete initiated for %{number} Network Router." +msgid_plural "Delete initiated for %{number} Network Routers." +msgstr[0] "Supprimer l'élément lancé pour %{number} du router réseau." +msgstr[1] "Supprimer l'élément lancé pour %{number} des routeurs réseau." + +msgid "Delete initiated for %{number} Security Group." +msgid_plural "Delete initiated for %{number} Security Groups." +msgstr[0] "" +msgstr[1] "" + +msgid "Delete initiated for Datastore from the %{product} Database" +msgid_plural "Delete initiated for Datastores from the %{product} Database" +msgstr[0] "Supprimer l'élément lancé pour le magasin de données à partir de la base de données %{product}" +msgstr[1] "Supprimer l'élément lancé pour les magasins de données à partir de la base de données %{product}" + +msgid "Delete selected %{dialog_resource}" +msgstr "Supprimer la %{dialog_resource} sélectionnée" + +msgid "Delete selected Accordion and its contents" +msgstr "Supprimer l'accordéon sélectionné et son contenu" + +msgid "Delete selected Cloud Tenants" +msgstr "Supprimer les locataires cloud sélectionnés" + +msgid "Delete selected Cloud Volumes" +msgstr "Supprimer les volumes cloud sélectionnés" + +msgid "Delete selected Groups" +msgstr "Supprimer les Groupes sélectionnés" + +msgid "Delete selected Host Aggregates" +msgstr "Supprimer les agrégats d'hôtes sélectionnés" + +msgid "Delete selected LDAP Regions" +msgstr "Supprimer les Régions LDAP sélectionnées" + +msgid "Delete selected Roles" +msgstr "Supprimer les Rôles sélectionnés" + +msgid "Delete selected Routers" +msgstr "Supprimer les routers sélectionnés" + +msgid "Delete selected Saved Reports" +msgstr "Supprimer les Rapports Sauvegardés sélectionnés" + +msgid "Delete selected Time Profiles" +msgstr "Supprimer les profils temporels sélectionnés" + +msgid "Delete selected Users" +msgstr "Supprimer les utilisateurs sélectionnés" + +msgid "Delete selected folder and its contents" +msgstr "Supprimer le dossier sélectionné et son contenu" + +msgid "Delete selected items" +msgstr "Supprimer les éléments sélectionnés" + +msgid "Delete selected tasks" +msgstr "Supprimer les tâches sélectionnées" + +msgid "Delete started for record ids: %{id}" +msgstr "Supprimer l'élément démarré pour les ID d'enregistrement : %{id}" + +msgid "Delete started for records older than %{date}, conditions: %{conditions}" +msgstr "Supprimer l'élément démarré pour les enregistrements antérieurs au %{date}, conditions : %{conditions}" + +msgid "Delete tasks older than the selected task" +msgstr "Supprimer les tâches antérieures à la tâche sélectionnée" + +msgid "Delete the %{model} filter named %{filter}?" +msgstr "Supprimer le filtre %{model} nommé %{filter} ?" + +msgid "Delete the filter named %{filter_name}" +msgstr "Supprimer le filtre nommé %{filter_name}" -#: ../app/controllers/vm_common.rb:1656 -#: ../app/helpers/vm_helper/textual_summary.rb:469 -msgid "Genealogy" -msgid_plural "Genealogy" -msgstr[0] "Généalogie" -msgstr[1] "Généalogie" +msgid "Delete the selected Analysis Profiles" +msgstr "Supprimer les profils d'analyse sélectionnés" -#: ../app/controllers/vm_common.rb:1658 -msgid "Win32 Service" -msgid_plural "Win32 Services" -msgstr[0] "Service Win32" -msgstr[1] "Services Win32" +msgid "Delete the selected Roles from the VMDB" +msgstr "Supprimer les rôles sélectionnés de la base de données des machines virtuelles (VMDB)" -#: ../app/controllers/vm_common.rb:1676 -msgid "Attach Cloud Volume to %{model} \"%{name}\"" -msgstr "Associer le volume cloud à %{model} \"%{name}\"" +msgid "Delete the selected Schedules" +msgstr "Supprimer les plannings sélectionnées" -#: ../app/controllers/vm_common.rb:1680 -msgid "Detach Cloud Volume from %{model} \"%{name}\"" -msgstr "Dissocier le volume cloud de %{model} \"%{name}\"" +msgid "Delete the selected items" +msgstr "Supprimer les éléments sélectionnés" -#: ../app/controllers/vm_common.rb:1688 -msgid "Compare %{vm_or_template}" -msgstr "Comparer %{vm_or_template}" +msgid "Delete the selected items?" +msgstr "Supprimer les éléments sélectionnés ?" -#: ../app/controllers/vm_common.rb:1690 -msgid "Drift for %{vm_or_template} \"%{name}\"" -msgstr "Dérive pour %{vm_or_template} \"%{name}\"" +msgid "Delete this %{condition_type} Condition" +msgstr "Supprimer cette condition %{condition_type}" -#: ../app/controllers/vm_common.rb:1696 -msgid "Live Migrating %{model} \"%{name}\"" -msgstr "Migration dynamique de %{model} \"%{name}\"" +msgid "Delete this %{policy_type} Policy" +msgstr "Supprimer cette stratégie %{policy_type}" -#: ../app/controllers/vm_common.rb:1700 -msgid "Evacuating %{model} \"%{name}\"" -msgstr "Évacuation de %{model} \"%{name}\"" +msgid "Delete this Action" +msgstr "Supprimer cette Action" -#: ../app/controllers/vm_common.rb:1704 -msgid "Associating Floating IP with %{model} \"%{name}\"" -msgstr "Association de l'adresse IP flottante à %{model} \"%{name}\"" +msgid "Delete this Alert" +msgstr "Supprimer cette Alerte" -#: ../app/controllers/vm_common.rb:1710 -msgid "Disassociating Floating IP from %{model} \"%{name}\"" -msgstr "Dissociation de l'adresse IP flottante de %{model} \"%{name}\"" +msgid "Delete this Alert Profile" +msgstr "Supprimer ce Profil d'alerte" -#: ../app/controllers/vm_common.rb:1716 -msgid "Clone %{vm_or_template}" -msgstr "Cloner %{vm_or_template}" +msgid "Delete this Analysis Profile" +msgstr "Supprimer ce profil d'analyse" -#: ../app/controllers/vm_common.rb:1717 -msgid "Migrate %{vm_or_template}" -msgstr "Migrer %{vm_or_template}" +msgid "Delete this Cloud Network" +msgstr "Supprimer ce Réseau cloud" -#: ../app/controllers/vm_common.rb:1718 -msgid "Publish %{vm_or_template}" -msgstr "Publier %{vm_or_template}" +msgid "Delete this Cloud Subnet" +msgstr "Supprimer ce sous-réseau cloud" -#: ../app/controllers/vm_common.rb:1727 -msgid "Editing %{vm_or_template} \"%{name}\"" -msgstr "Modification de %{vm_or_template} \"%{name}\"" +msgid "Delete this Cloud Volume" +msgstr "Supprimer ce volume cloud" -#: ../app/controllers/vm_common.rb:1732 -msgid "Edit %{product} Server Relationship for %{vm_or_template} \"%{name}\"" -msgstr "Modifier la relation de serveur %{product} pour %{vm_or_template} \"%{name}\"" +msgid "Delete this Dashboard from the Database" +msgstr "Supprimer ce Dashboard de la base de données" -#: ../app/controllers/vm_common.rb:1738 -msgid "Provision Instances - Select an Image" +msgid "Delete this Floating IP" msgstr "" -#: ../app/controllers/vm_common.rb:1740 -msgid "Provision Virtual Machines - Select a Template" +msgid "Delete this Generic Object Definition" msgstr "" -#: ../app/controllers/vm_common.rb:1745 ../app/controllers/vm_common.rb:1749 -msgid "Provision %{vms_or_templates}" -msgstr "Mettre en service %{vms_or_templates}" +msgid "Delete this Group" +msgstr "Supprimer ce Groupe" -#: ../app/controllers/vm_common.rb:1753 -msgid "Set Ownership for %{vms_or_templates}" -msgstr "Définir la propriété %{vms_or_templates}" +msgid "Delete this Instance" +msgstr "Supprimer cette instance" -#: ../app/controllers/vm_common.rb:1757 -msgid "Capacity & Utilization data for %{vm_or_template} \"%{name}\"" -msgstr "Données de capacité et d'utilisation (C & U) pour %{vm_or_template} \"%{name}\"" +msgid "Delete this Instance?" +msgstr "Supprimer cette instance ?" -#: ../app/controllers/vm_common.rb:1767 ../app/controllers/vm_common.rb:1771 -msgid "%{vm_or_template} Policy Simulation" -msgstr "%{vm_or_template} Simulation de Politique" +msgid "Delete this LDAP Domain" +msgstr "Supprimer ce Domaine LDAP" -#: ../app/controllers/vm_common.rb:1776 -msgid "%{vm_or_template} Policy Assignment" -msgstr "%{vm_or_template} Affectation de Politique" +msgid "Delete this LDAP Region" +msgstr "Supprimer cette Région LDAP" -#: ../app/controllers/vm_common.rb:1780 -msgid "Reconfigure %{vm_or_template}" -msgstr "Reconfigurer le/la %{vm_or_template}" +msgid "Delete this Report from the Database" +msgstr "Supprimer ce Rapport de la Base de données" -#: ../app/controllers/vm_common.rb:1784 -msgid "Reconfiguring %{vm_or_template} \"%{name}\"" -msgstr "Reconfiguration du/de la %{vm_or_template} \"%{name}\"" +msgid "Delete this Request" +msgstr "Supprimer cette Requête" -#: ../app/controllers/vm_common.rb:1789 -msgid "Set/Remove retirement date for %{vm_or_template}" -msgstr "Définir/annuler une date de désactivation pour %{vm_or_template}" +msgid "Delete this Role" +msgstr "Supprimer ce Rôle" -#: ../app/controllers/vm_common.rb:1793 -msgid "Right Size Recommendation for %{vm_or_template} \"%{name}\"" -msgstr "Recommandation de calibrage pour le/la %{vm_or_template} \"%{name}\"" +msgid "Delete this Router" +msgstr "Supprimer ce Routeur" -#: ../app/controllers/vm_common.rb:1798 -msgid "Edit Tags for %{vm_or_template}" -msgstr "Modifier les balises pour %{vm_or_template}" +msgid "Delete this Saved Report from the Database" +msgstr "Supprimer ce Rapport sauvegardé de la Base de données" -#: ../app/controllers/vm_common.rb:1802 -msgid "Adding a new %{snapshot}" -msgstr "Ajout d''un nouveau %{snapshot}" +msgid "Delete this Schedule" +msgstr "Supprimer ce Planning" -#: ../app/controllers/vm_common.rb:1806 -msgid "Timelines for %{virtual_machine} \"%{name}\"" -msgstr "Chronologies pour la %{virtual_machine} \"%{name}\"" +msgid "Delete this Schedule from the Database" +msgstr "Supprimer ce Planning de la base de données" -#: ../app/controllers/vm_common.rb:1824 -msgid "%{action} \"%{item_name}\" for %{vm_or_template} \"%{name}\"" -msgstr "%{action} \"%{item_name}\" pour %{vm_or_template} \"%{name}\"" +msgid "Delete this Security Group" +msgstr "" -#: ../app/controllers/vm_common.rb:1835 -msgid "\"%{action}\" for %{vm_or_template} \"%{name}\"" -msgstr "\"%{action}\" pour %{vm_or_template} \"%{name}\"" +msgid "Delete this User" +msgstr "Supprimer cet Utilisateur" -#: ../app/controllers/vm_common.rb:1858 -msgid "No VMs were selected to move right" -msgstr "Aucune MV sélectionnée à déplacer vers la droite" +msgid "Delete this Widget from the Database" +msgstr "Supprimer ce composant d'interface de la base de données" -#: ../app/controllers/vm_common.rb:1870 -msgid "No VMs were selected to move left" -msgstr "Aucune MV sélectionnée à déplacer vers la gauche" +msgid "Delete this Zone" +msgstr "Supprimer cette Zone" -#: ../app/controllers/vm_common.rb:1882 -msgid "No child VMs to move right, no action taken" -msgstr "Aucune MV enfant à déplacer vers la droite. Aucune action n'a été effectuée." +msgid "Delete this item" +msgstr "Supprimer cet Elément" -#: ../app/controllers/vm_or_template_controller.rb:17 -#: ../app/views/configuration/_ui_2.html.haml:49 -msgid "VMs & Instances" -msgstr "MV et instances" +msgid "Deleted" +msgstr "Supprimé" -#: ../app/helpers/application_helper.rb:20 -msgid "For more information, visit the %{subject} documentation." -msgstr "Pour plus d'informations, consultez la documentation de %{subject}." +msgid "Deleting the '%{entry_name}' entry will also unassign it from all items, are you sure?" +msgstr "Si vous supprimez l'entrée '%{entry_name}', son affectation sera également supprimée de tous les éléments. Voulez-vous continuer ?" -#: ../app/helpers/application_helper.rb:64 -msgid "Show this %{entity_name}'s parent %{linked_entity_name}" -msgstr "Afficher le/la %{linked_entity_name} parent de ce(tte) %{entity_name} " +msgid "Deleting the '%{hostname}' LDAP Server, are you sure?" +msgstr "Suppression du serveur LDAP '%{hostname}'. En êtes-vous sûr ?" -#: ../app/helpers/application_helper.rb:87 -#: ../app/helpers/application_helper.rb:94 -msgid "Show %{plural_linked_name}" -msgstr "Afficher %{plural_linked_name}" +msgid "Demote Server" +msgstr "Rétrograder le serveur" -#: ../app/helpers/application_helper.rb:448 -msgid ": Servers" -msgstr ": Serveurs" +msgid "Demote Server %{server_name} [%{server_id}] to secondary for the %{server_role_description} Role" +msgstr "Rétrograder le serveur %{server_name} [%{server_id}] au rang de serveur secondaire pour le rôle %{server_role_description}" -#: ../app/helpers/application_helper.rb:450 -msgid ": VM Usage" -msgstr ": Utilisation de MV" +msgid "Denied" +msgstr "Refusé" -#: ../app/helpers/application_helper.rb:452 -msgid ": Analysis Profiles" -msgstr "Profils d''analyse" +msgid "Deny this Request" +msgstr "Refuser cette demande" -#: ../app/helpers/application_helper.rb:454 -msgid ": Policy Simulation" -msgstr ": Simulation de Politique" +msgid "Dependent" +msgstr "Dépendant" -#: ../app/helpers/application_helper.rb:456 -msgid ": All UI Tasks" -msgstr "Toutes les tâches UI" +msgid "Deploy" +msgstr "Déployer" -#: ../app/helpers/application_helper.rb:458 -msgid ": My UI Tasks" -msgstr ": Mes Tâches UI" +msgid "Deploy Smartproxy" +msgstr "Déployer Smartproxy" -#: ../app/helpers/application_helper.rb:460 -msgid ": RSS" -msgstr ": RSS" +msgid "Deployment \"%{deployment}\" already exists on this server group." +msgstr "" -#: ../app/helpers/application_helper.rb:462 -msgid ": Storage - Storage Managers" -msgstr ": Stockage - Manageurs de Stockage" +msgid "Deployment \"%{deployment}\" already exists on this server." +msgstr "" -#: ../app/helpers/application_helper.rb:464 -msgid ": Configuration" -msgstr ": Configuration" +msgid "Deployment \"%{deployment}\" has been initiated on this group." +msgstr "" -#: ../app/helpers/application_helper.rb:466 -msgid ": Configuration Management" -msgstr ": gestion de la configuration" +msgid "Deployment \"%{deployment}\" has been initiated on this server." +msgstr "" -#: ../app/helpers/application_helper.rb:468 -msgid ": PXE" -msgstr ": PXE" +msgid "Deployment %{name} was sucessful." +msgstr "Le déploiement %{name} a réussi." -#: ../app/helpers/application_helper.rb:472 -msgid ": Instances" -msgstr ": Instances" +msgid "Deployment Details" +msgstr "Détails du déploiement" -#: ../app/helpers/application_helper.rb:474 -msgid ": Virtual Machines" -msgstr ": Machines Virtuelles" +msgid "Deployment Role" +msgstr "Rôle de déploiement" -#: ../app/helpers/application_helper.rb:476 -msgid ": Workloads" -msgstr ": Charge de travail" +msgid "Deployment Roles" +msgstr "Rôles de déploiement" -#: ../app/helpers/application_helper.rb:479 -msgid ": Automate" -msgstr ": Automate" +msgid "Deployment in Progress" +msgstr "Déploiement en cours" -#: ../app/helpers/application_helper.rb:481 -msgid ": Control" -msgstr ": Contrôle" +msgid "Deployment initiated for selected server group(s)" +msgstr "" -#: ../app/helpers/application_helper.rb:483 -msgid ": Optimize" -msgstr ": Optimiser" +msgid "Deployment initiated for selected server(s)" +msgstr "Déploiement lancé pour le(s) serveur(s) sélectionné(s)" -#: ../app/helpers/application_helper.rb:485 -msgid ": Requests" -msgstr ": Requêtes" +msgid "Deployments" +msgstr "Déploiements" -#: ../app/helpers/application_helper.rb:488 -msgid ": Storage - %{tables}" -msgstr ": Stockage - %{tables}" +msgid "Depot Name" +msgstr "Nom du dépôt" -#: ../app/helpers/application_helper.rb:490 -msgid ": Login" -msgstr ": Se connecter" +msgid "Depot Settings successfuly validated" +msgstr "Les paramètres du dépôt ont été validés" -#: ../app/helpers/application_helper.rb:910 -msgid "Record is not ExtManagementSystem class" -msgstr "La classe de l'enregistrement n'est pas ExtManagementSystem" +msgid "Depot Type" +msgstr "Type de dépôt" -#: ../app/helpers/application_helper.rb:921 -msgid "Record is not VmOrTemplate class" -msgstr "La classe de l'enregistrement n'est pas VmOrTemplate" +msgid "Depot Type is required" +msgstr "Le type de dépôt est obligatoire" -#: ../app/helpers/application_helper.rb:1037 -msgid "Show all %{names}" -msgstr "Afficher tou(te)s les %{names}" +msgid "Deprecated" +msgstr "Déprécié" -#: ../app/helpers/application_helper.rb:1045 -msgid "Show %{name}" -msgstr "Afficher %{name}" +msgid "Desc" +msgstr "" -#: ../app/helpers/application_helper.rb:1525 -#: ../app/helpers/application_helper.rb:1547 -#: ../app/views/ems_infra/scaledown.html.haml:44 -#: ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:14 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:80 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:200 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:298 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:401 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:20 -msgid "Node" -msgstr "Noeud" +msgid "Descending" +msgstr "Décroissant" -#: ../app/helpers/application_helper.rb:1527 -msgid "Host / Node" -msgstr "Hôte / Nœud" +msgid "Description" +msgstr "Description" -#: ../app/helpers/application_helper.rb:1540 -#: ../app/helpers/application_helper.rb:1551 -msgid "Deployment Role" -msgstr "Rôle de déploiement" +msgid "Description is required" +msgstr "La description est obligatoire" + +msgid "Desired" +msgstr "Souhaité" + +msgid "Destination Host" +msgstr "Hôte de destination" + +msgid "Detach" +msgstr "Dissocier" + +msgid "Detach %{model} \"%{name}\"" +msgstr "Dissocier %{model} \"%{name}\"" -#: ../app/helpers/application_helper.rb:1540 -#: ../app/presenters/menu/default_menu.rb:62 -msgid "Deployment Roles" -msgstr "Rôles de déploiement" +msgid "Detach %{volume} from %{instance_model} \"%{instance_name}\"" +msgstr "Dissocier %{volume} de %{instance_model} \"%{instance_name}\"" -#: ../app/helpers/application_helper.rb:1542 -#: ../app/presenters/tree_builder_utilization.rb:46 -msgid "Cluster / Deployment Role" -msgstr "Cluster / Rôle de Déploiment" +msgid "Detach Cloud Volume from %{model} \"%{name}\"" +msgstr "Dissocier le volume cloud de %{model} \"%{name}\"" -#: ../app/helpers/application_helper.rb:1542 -#: ../app/presenters/menu/default_menu.rb:62 -msgid "Clusters / Deployment Roles" -msgstr "Clusters/rôles de déploiement" +msgid "Detach Volume" +msgstr "Dissocier le volume" -#: ../app/helpers/application_helper.rb:1600 -msgid "Status = %{row}" -msgstr "Statut = %{row}" +msgid "Detach a Cloud Volume from this Instance" +msgstr "Dissocier un volume cloud de cette instance" -#: ../app/helpers/application_helper/button/ab_group_delete.rb:3 -msgid "Selected Custom Button Group cannot be deleted" -msgstr "Le groupe de boutons personnalisés sélectionné ne peut pas être supprimé" +msgid "Detach selected Cloud Volume from an Instance" +msgstr "Dissocier le volume cloud sélectionné d'une instance" -#: ../app/helpers/application_helper/button/ab_group_edit.rb:3 -msgid "Selected Custom Button Group cannot be edited" -msgstr "Le groupe de boutons personnalisés sélectionné ne peut pas être modifié" +msgid "Detach this Cloud Volume from an Instance" +msgstr "Dissocier ce volume cloud d'une instance" -#: ../app/helpers/application_helper/button/ab_group_reorder.rb:3 -msgid "Only more than 1 Custom Button Groups can be reordered" -msgstr "Seuls plusieurs groupes de boutons personnalisés peuvent être réagencés" +msgid "Detaching %{model} \"%{name}\" was cancelled by the user" +msgstr "La dissociation de %{model} \"%{name}\" a été annulée par l'utilisateur" -#: ../app/helpers/application_helper/button/auth_key_pair_cloud_create.rb:10 -msgid "No cloud providers support key pair import or creation." +msgid "Detaching Cloud Volume \"%{volume_name}\" from %{vm_name} finished" msgstr "" -"Aucun fournisseur de cloud ne prend en charge l'importation ou la création de " -"paires de clés." -#: ../app/helpers/application_helper/button/chargeback_rate_edit.rb:5 -msgid "Default Chargeback Rate cannot be edited." -msgstr "Impossible de modifier le taux de rejet de débit par défaut." +msgid "Detaching Cloud volume failed: Task start failed" +msgstr "" -#: ../app/helpers/application_helper/button/chargeback_rate_remove.rb:5 -msgid "Default Chargeback Rate cannot be removed." -msgstr "Impossible de supprimer le taux de rejet de débit par défaut." +msgid "Detaching a %{volume} from %{instance_model} \"%{instance_name}\" was cancelled by the user" +msgstr "La dissociation de %{volume} de %{instance_model} \"%{instance_name}\" a été annulée par l'utilisateur" -#: ../app/helpers/application_helper/button/cloud_subnet_new.rb:5 -msgid "No cloud providers support creating cloud subnets." -msgstr "" +msgid "Details" +msgstr "Détails" -#: ../app/helpers/application_helper/button/cloud_volume_new.rb:5 -msgid "No cloud providers support creating cloud volumes." -msgstr "" +msgid "Details Mode" +msgstr "Mode de détails" -#: ../app/helpers/application_helper/button/condition.rb:9 -msgid "Conditions assigned to Policies can not be deleted" -msgstr "Impossible de supprimer les conditions affectées à des stratégies" +msgid "Determine at Run Time" +msgstr "Déterminer lors de l'exécution" -#: ../app/helpers/application_helper/button/container_timeline.rb:15 -msgid "No Timeline data has been collected for this %{entity}" +msgid "Development" msgstr "" -#: ../app/helpers/application_helper/button/delete_server.rb:6 -msgid "" -"Server %{server_name} [%{server_id}] can only be deleted if it is stopped or h" -"as not responded for a while" -msgstr "" -"Le serveur %{server_name} [%{server_id}] ne peut être supprimé que s'il est ar" -"rêté ou s'il ne répond plus depuis un bon moment" +msgid "Device Mountpoint (optional)" +msgstr "Point de montage du périphérique (facultatif)" -#: ../app/helpers/application_helper/button/ems_storage_timeline.rb:13 -msgid "No Timeline data has been collected for this Storage Manager" -msgstr "" +msgid "Device Type" +msgstr "Type de périphérique" -#: ../app/helpers/application_helper/button/ems_timeline.rb:13 -msgid "No Timeline data has been collected for this Provider" -msgstr "Aucune donnée de chronologie n'a été collectée pour ce fournisseur" +msgid "Devices" +msgstr "Périphériques" -#: ../app/helpers/application_helper/button/host_toggle_maintenance.rb:4 -msgid "Maintenance mode is not supported for this host" -msgstr "Le mode de maintenance n'est pas pris en charge pour cet hôte" +msgid "Diagnostics" +msgstr "Diagnostic" -#: ../app/helpers/application_helper/button/instance_associate_floating_ip.rb:6 -msgid "There are no Floating IPs available to this Instance." -msgstr "Il n'y a pas d'IP flottante disponible pour cette instance." +msgid "Diagnostics %{model} \"%{name}\"" +msgstr "Diagnostic de %{model} \"%{name}\"" -#: ../app/helpers/application_helper/button/instance_detach.rb:4 -msgid "%{model} \"%{name}\" has no attached %{volumes}" -msgstr "Aucun %{volumes} n'est associé à %{model} \"%{name}\"" +msgid "Diagnostics %{model} \"%{name}\" (current)" +msgstr "Diagnostic de %{model} \"%{name}\" (en cours)" -#: -#: ../app/helpers/application_helper/button/instance_disassociate_floating_ip.rb:6 -msgid "Instance \"%{name}\" does not have any associated Floating IPs" -msgstr "Aucune adresse IP flottante n'est associée à l'instance \"%{name}\"" +msgid "Diagnostics %{text}" +msgstr "Diagnostic de %{text}" -#: ../app/helpers/application_helper/button/instance_miq_request_new.rb:3 -msgid "No Cloud Provider that supports instance provisioning added" -msgstr "" +msgid "Dialog" +msgstr "Boîte de dialogue" -#: ../app/helpers/application_helper/button/miq_action_modify.rb:15 -msgid "This Action belongs to a read only Policy and cannot be modified" -msgstr "" -"Cette action appartient à une stratégie en lecture seule et ne peut pas être m" -"odifiée" +msgid "Dialog Information" +msgstr "Informations sur la boîte de dialogue" -#: ../app/helpers/application_helper/button/miq_action_modify.rb:16 -msgid "This Event belongs to a read only Policy and cannot be modified" -msgstr "" -"Cet événement appartient à une stratégie en lecture seule et ne peut pas être " -"modifié" +msgid "Dialog Label is required" +msgstr "La balise de boîte de dialogue est obligatoire" -#: ../app/helpers/application_helper/button/miq_ae.rb:10 -msgid "At least one domain should be enabled and unlocked" -msgstr "" +msgid "Dialog Options" +msgstr "Options de la boîte de dialogue" -#: ../app/helpers/application_helper/button/miq_ae_domain_delete.rb:5 -msgid "Read Only Domain cannot be deleted." -msgstr "Impossible de supprimer le domaine en lecture seule." +msgid "Dialog Type must be selected" +msgstr "Le type de boîte de dialogue doit être sélectionné" -#: ../app/helpers/application_helper/button/miq_ae_domain_edit.rb:5 -msgid "Read Only Domain cannot be edited" -msgstr "Impossible de supprimer le domaine en lecture seule" +msgid "Dialog has to be set if Display in Catalog is chosen" +msgstr "La boîte de dialogue doit être définie si l'option Affichage dans le catalogue est active" -#: ../app/helpers/application_helper/button/miq_ae_domain_lock.rb:5 -#: ../app/helpers/application_helper/button/miq_ae_namespace_edit.rb:5 -msgid "Domain is Locked." -msgstr "Le domaine est verrouillé." +msgid "Dialog name" +msgstr "Nom de la boîte de dialogue" -#: ../app/helpers/application_helper/button/miq_ae_domain_priority_edit.rb:4 -msgid "You need two or more domains to edit domain priorities" -msgstr "" +msgid "Direct VMs" +msgstr "Machines virtuelles directes" -#: ../app/helpers/application_helper/button/miq_ae_domain_unlock.rb:5 -msgid "Domain is Unlocked." -msgstr "Le domaine est déverrouillé." +msgid "Direction" +msgstr "Direction" -#: ../app/helpers/application_helper/button/old_dialogs_edit_delete.rb:5 -msgid "Default dialogs cannot be edited" -msgstr "Impossible de modifier les boîtes de dialogue par défaut" +msgid "Disable" +msgstr "Désactiver" -#: ../app/helpers/application_helper/button/old_dialogs_edit_delete.rb:7 -msgid "Default dialogs cannot be removed from the VMDB" -msgstr "" -"Impossible de supprimer les boîtes de dialogue par défaut de la base de donnée" -"s des machines virtuelles (VMDB)" +msgid "Disable Local Login" +msgstr "Désactiver la connexion locale" -#: -#: ../app/helpers/application_helper/button/orchestration_template_edit_remove.rb:7 -msgid "Orchestration Templates that are in use cannot be edited" -msgstr "" -"Les modèles d'orchestration en cours d'utilisation ne peuvent pas être modifié" -"s" +msgid "Disable event monitoring." +msgstr "Désactiver la surveillance d'événements" -#: -#: ../app/helpers/application_helper/button/orchestration_template_edit_remove.rb:9 -msgid "Orchestration Templates that are in use cannot be removed" -msgstr "" -"Les modèles d'orchestration en cours d'utilisation ne peuvent pas être supprim" -"és" +msgid "Disable initiated for selected deployment(s)" +msgstr "Désactivation lancée pour le(s) déploiement(s) sélectionné(s)" -#: -#: ../app/helpers/application_helper/button/orchestration_template_orderable.rb:3 -msgid "This Template is already orderable" -msgstr "Modèle déjà organisable" +msgid "Disable the selected Schedules" +msgstr "Désactiver les plannings sélectionnées" -#: -#: ../app/helpers/application_helper/button/orchestration_template_view_in_catalog.rb:3 -msgid "This Template is not orderable" -msgstr "Modèle non organisable" +msgid "Disable these Middleware Deployments" +msgstr "Désactiver ces déploiements de middleware" -#: ../app/helpers/application_helper/button/policy_delete.rb:3 -msgid "Policies that belong to Profiles can not be deleted" -msgstr "Des stratégies appartenant à des profils ne peuvent pas être supprimées" +msgid "Disable this Middleware Deployment" +msgstr "Désactiver ce déploiement de middleware" -#: ../app/helpers/application_helper/button/read_only.rb:5 -msgid "This %{klass} is read only and cannot be modified" -msgstr "Cette %{klass} est en lecture seule et ne peut pas être modifiée" +msgid "Disabled" +msgstr "Désactivé" -#: ../app/helpers/application_helper/button/role_start.rb:7 -msgid "This Role is already active on this Server" -msgstr "Ce rôle est déjà actif sur ce serveur" +msgid "Disassociate Floating IP" +msgstr "Dissocier une adresse IP flottante" -#: ../app/helpers/application_helper/button/role_start.rb:9 -msgid "Only available Roles on active Servers can be started" -msgstr "Seuls les rôles disponibles sur des serveurs actifs peuvent être démarrés" +msgid "Disassociate a Floating IP from this Instance" +msgstr "Dissocier une adresse IP flottante de cette instance" -#: ../app/helpers/application_helper/button/role_start.rb:11 -#: ../app/helpers/application_helper/button/role_suspend.rb:6 -#: ../app/helpers/application_helper/button/server_demote.rb:8 -#: ../app/helpers/application_helper/button/server_promote.rb:8 -msgid "This role can only be managed at the Region level" -msgstr "Ce rôle ne peut être géré qu'au niveau Région" +msgid "Disassociating Floating IP %{address} from Instance \"%{name}\"" +msgstr "Dissociation de l'adresse IP flottante %{address} de l'instance \"%{name}\"" -#: ../app/helpers/application_helper/button/role_suspend.rb:8 -msgid "" -"Activate the %{server_role_description} Role on another Server to suspend it o" -"n %{server_name} [%{server_id}]" -msgstr "" -"Activez le rôle %{server_role_description} sur un autre serveur pour le suspen" -"dre sur %{server_name} [%{server_id}]" +msgid "Disassociating Floating IP from %{model} \"%{name}\"" +msgstr "Dissociation de l'adresse IP flottante de %{model} \"%{name}\"" -#: ../app/helpers/application_helper/button/role_suspend.rb:14 -msgid "Only active Roles on active Servers can be suspended" -msgstr "Seuls les rôles actifs sur des serveurs actifs peuvent être mis en attente" +msgid "Disassociation of Floating IP from Instance \"%{name}\" was cancelled by the user" +msgstr "La dissociation de l'adresse IP flottante de l'instance \"%{name}\" a été annulée par l'utilisateur" -#: ../app/helpers/application_helper/button/timeline_download.rb:7 -#: ../app/views/dashboard/_tl_detail.html.haml:24 -msgid "Choose a Timeline from the menus on the left." -msgstr "Choisir une chronologie dans les menus de gauche." +msgid "Discard" +msgstr "Ignorer" -#: ../app/helpers/application_helper/button/vm_miq_request_new.rb:3 -msgid "No Infrastructure Provider that supports VM provisioning added" -msgstr "" +msgid "Discard Accordion management changes" +msgstr "Ignorer les modifications de gestion de l'accordéon" -#: ../app/helpers/application_helper/button/vm_retire_now.rb:9 -msgid "VM is already retired" -msgstr "La MV est déjà désactivée" +msgid "Discard expression element changes" +msgstr "Ignorer les modifications de l'élément d'expression" -#: ../app/helpers/application_helper/button/volume_detach.rb:6 -msgid "%{model} \"%{name}\" is not attached to any %{instances}" -msgstr "%{model} \"%{name}\" n'est associé à aucune %{instances}" +msgid "Discard folder management changes" +msgstr "Ignorer les modifications de gestion du dossier" -#: ../app/helpers/application_helper/button/widget_generate_content.rb:14 -msgid "This Widget content generation is already running or queued up" -msgstr "" -"La génération du contenu de ce composant graphique est déjà en cours ou en fil" -"e d'attente" +msgid "Discard report management changes" +msgstr "Ignorer les modifications de gestion du rapport" -#: ../app/helpers/application_helper/button/widget_generate_content.rb:15 -msgid "Widget has to be assigned to a dashboard to generate content" +msgid "Discard this new %{dialog_type}" +msgstr "Ignorer ce nouveau %{dialog_type}" + +msgid "Disconnected" msgstr "" -"Le composant graphique doit être affecté à un tableau de bord pour générer du " -"contenu" -#: ../app/helpers/application_helper/discover.rb:5 -msgid "Azure" -msgstr "Azure" +msgid "Discover" +msgstr "Détecter" -#: ../app/helpers/application_helper/discover.rb:6 -#: ../app/helpers/ops_helper.rb:34 -#: ../app/views/ops/_settings_authentication_tab.html.haml:55 -msgid "Amazon" -msgstr "Amazon" +msgid "Discover Cloud Providers" +msgstr "Détecter les fournisseurs cloud" -#: ../app/helpers/application_helper/discover.rb:7 -msgid "ESX" -msgstr "ESX" +msgid "Discover Infrastructure Providers" +msgstr "Détecter les fournisseurs d'infrastructure" -#: ../app/helpers/application_helper/discover.rb:8 -msgid "Hyper-V" -msgstr "Hyper-V" +msgid "Discover Type" +msgstr "Détecter le type" -#: ../app/helpers/application_helper/discover.rb:9 -#: ../app/helpers/textual_summary_helper.rb:170 -#: ../app/views/layouts/_multi_auth_credentials.html.haml:39 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:48 -msgid "IPMI" -msgstr "IPMI " +msgid "Discover items" +msgstr "Détecter les éléments" -#: ../app/helpers/application_helper/discover.rb:10 -msgid "KVM" -msgstr "KVM" +msgid "Discovered" +msgstr "Détecté" -#: ../app/helpers/application_helper/discover.rb:11 -msgid "MS vCenter" -msgstr "MS vCenter" +msgid "Discovered IP Address" +msgstr "Adresse IP détectée" -#: ../app/helpers/application_helper/discover.rb:12 -msgid "Red Hat Virtualization Manager" -msgstr "" +msgid "Disk" +msgstr "Disque" -#: ../app/helpers/application_helper/discover.rb:13 -msgid "Microsoft System Center VMM" -msgstr "Microsoft System Center VMM" +msgid "Disk Count" +msgstr "Nombre de disques" -#: ../app/helpers/application_helper/discover.rb:14 -msgid "VMware vCenter" -msgstr "VMware vCenter" +msgid "Disk I/O" +msgstr "E/S disque" -#: ../app/helpers/application_helper/discover.rb:15 -msgid "VMware Server" -msgstr "Serveur VMware" +msgid "Disk Over Commit" +msgstr "Mise à jour du disque" -#: ../app/helpers/application_helper/tasks.rb:6 -msgid "Check Compliance" -msgstr "Vérifier la conformité" +msgid "Disk Size" +msgstr "Taille du disque" -#: ../app/helpers/application_helper/tasks.rb:8 -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:95 -#: ../app/helpers/application_helper/toolbar/tasks_center.rb:22 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:277 -#: ../app/views/chargeback/_cb_rate_edit_table.html.haml:100 -#: ../app/views/chargeback/_tier_row.haml:12 -#: ../app/views/layouts/_adv_search_footer.html.haml:36 -#: ../app/views/ops/_ap_form_file.html.haml:86 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:220 -#: ../app/views/ops/_ap_form_registry.html.haml:170 -#: ../app/views/ops/_classification_entry.html.haml:103 -#: ../app/views/ops/_settings_co_categories_tab.html.haml:94 -#: ../app/views/ops/_settings_co_categories_tab.html.haml:106 -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:64 -#: ../app/views/ops/_settings_replication_tab.html.haml:377 -#: ../app/views/vm_common/_reconfigure.html.haml:368 -msgid "Delete" -msgstr "Supprimer" +msgid "Disk Space" +msgstr "Espace disque" -#: ../app/helpers/application_helper/tasks.rb:10 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:224 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:188 -msgid "Restart Guest" -msgstr "Redémarrer un invité" +msgid "Disk Space Allocated" +msgstr "Espace disque alloué" -#: ../app/helpers/application_helper/tasks.rb:16 -msgid "Refresh Provider" -msgstr "Actualiser le fournisseur" +msgid "Disk Space Used" +msgstr "Espace disque utilisé" -#: ../app/helpers/application_helper/toolbar/arbitration_profile_center.rb:12 -msgid "Edit this Arbitration Profile" -msgstr "Modifier ce profil d'arbitrage" +msgid "Disks" +msgstr "Disques" -#: ../app/helpers/application_helper/toolbar/arbitration_profile_center.rb:19 -msgid "Remove this Arbitration Profile from the VMDB" -msgstr "Supprimer ce profil d'arbitrage du VMDB" +msgid "Disks Aligned" +msgstr "Disques alignés" -#: ../app/helpers/application_helper/toolbar/arbitration_profile_center.rb:23 -msgid "" -"Warning: This Arbitration Profile will be permanently removed from the Virtual" -" Management Database. Are you sure you want to remove this Arbitration Profil" -"e?" +msgid "Display" msgstr "" -"Avertissement : ce profil d'arbitrage sera définitivement supprimé de la base " -"de données Virtual Management. Voulez-vous vraiment le supprimer ?" - -#: ../app/helpers/application_helper/toolbar/arbitration_profiles_center.rb:12 -#: ../app/helpers/application_helper/toolbar/arbitration_profiles_center.rb:13 -msgid "Add a new Arbitration Profile" -msgstr "Ajouter un nouveau profil d'arbitrage" -#: ../app/helpers/application_helper/toolbar/arbitration_profiles_center.rb:17 -msgid "Select a single Arbitration Profile to edit" -msgstr "Sélectionner un profil d'arbitrage à modifier" +msgid "Display Name" +msgstr "Nom d'affichage" -#: ../app/helpers/application_helper/toolbar/arbitration_profiles_center.rb:18 -msgid "Edit Selected Arbitration Profile" -msgstr "Modifier le profil d'arbitrage sélectionné" +msgid "Display Names" +msgstr "Noms d'affichage" -#: ../app/helpers/application_helper/toolbar/arbitration_profiles_center.rb:25 -msgid "Remove selected Arbitration Profiles from the VMDB" -msgstr "Supprimer les profils d'arbitrage sélectionnés du VMDB" +msgid "Display Options" +msgstr "Options d'affichage" -#: ../app/helpers/application_helper/toolbar/arbitration_profiles_center.rb:26 -msgid "Remove Arbitration Profiles from the VMDB" -msgstr "Supprimer les profils d'arbitrage du VMDB" +msgid "Display Settings" +msgstr "Paramètres d'affichage" -#: ../app/helpers/application_helper/toolbar/arbitration_profiles_center.rb:29 -msgid "" -"Warning: The selected Cloud Providers and ALL of their components will be perm" -"anently removed from the Virtual Management Database. Are you sure you want t" -"o remove the selected Cloud Providers?" -msgstr "" -"Avertissement : les fournisseurs de cloud sélectionnés et TOUS leurs composant" -"s seront définitivement supprimés de la base de données Virtual Management. Vo" -"ulez-vous vraiment supprimer ces fournisseurs de cloud ?" +msgid "Display in Catalog" +msgstr "Afficher dans le Catalogue" -#: ../app/helpers/application_helper/toolbar/auth_key_pair_cloud_center.rb:12 -msgid "Remove this Key Pair" -msgstr "Supprimer cette paire de clés" +msgid "Display on Button" +msgstr "Afficher sur le Bouton" -#: ../app/helpers/application_helper/toolbar/auth_key_pair_cloud_center.rb:15 -msgid "" -"Warning: The selected Key Pair and ALL of its components will be permanently r" -"emoved!" -msgstr "" -"Avertissement : la paire de clés sélectionnée et TOUS ses composants seront dé" -"finitivement supprimés" - -#: ../app/helpers/application_helper/toolbar/auth_key_pair_cloud_center.rb:23 -#: ../app/helpers/application_helper/toolbar/auth_key_pair_clouds_center.rb:6 -#: ../app/helpers/application_helper/toolbar/availability_zone_center.rb:6 -#: ../app/helpers/application_helper/toolbar/availability_zones_center.rb:6 -#: ../app/helpers/application_helper/toolbar/cloud_network_center.rb:35 -#: ../app/helpers/application_helper/toolbar/cloud_networks_center.rb:46 -#: ../app/helpers/application_helper/toolbar/cloud_object_store_container_center.rb:6 -#: ../app/helpers/application_helper/toolbar/cloud_object_store_containers_center.rb:6 -#: ../app/helpers/application_helper/toolbar/cloud_object_store_object_center.rb:6 -#: ../app/helpers/application_helper/toolbar/cloud_object_store_objects_center.rb:6 -#: ../app/helpers/application_helper/toolbar/cloud_subnet_center.rb:35 -#: ../app/helpers/application_helper/toolbar/cloud_subnets_center.rb:45 -#: ../app/helpers/application_helper/toolbar/cloud_tenant_center.rb:26 -#: ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:38 -#: ../app/helpers/application_helper/toolbar/cloud_volume_backup_center.rb:6 -#: ../app/helpers/application_helper/toolbar/cloud_volume_backups_center.rb:6 -#: ../app/helpers/application_helper/toolbar/cloud_volume_center.rb:75 -#: ../app/helpers/application_helper/toolbar/cloud_volume_snapshot_center.rb:22 -#: ../app/helpers/application_helper/toolbar/cloud_volume_snapshots_center.rb:6 -#: ../app/helpers/application_helper/toolbar/cloud_volumes_center.rb:61 -#: ../app/helpers/application_helper/toolbar/configuration_job_center.rb:23 -#: ../app/helpers/application_helper/toolbar/configuration_jobs_center.rb:25 -#: ../app/helpers/application_helper/toolbar/configuration_script_center.rb:19 -#: ../app/helpers/application_helper/toolbar/configuration_scripts/policy_mixin.rb:6 -#: ../app/helpers/application_helper/toolbar/configured_system/policy_mixin.rb:7 -#: ../app/helpers/application_helper/toolbar/container_build_center.rb:22 -#: ../app/helpers/application_helper/toolbar/container_builds_center.rb:25 -#: ../app/helpers/application_helper/toolbar/container_center.rb:30 -#: ../app/helpers/application_helper/toolbar/container_group_center.rb:32 -#: ../app/helpers/application_helper/toolbar/container_groups_center.rb:6 -#: ../app/helpers/application_helper/toolbar/container_image_center.rb:22 -#: ../app/helpers/application_helper/toolbar/container_image_registries_center.rb:6 -#: ../app/helpers/application_helper/toolbar/container_image_registry_center.rb:6 -#: ../app/helpers/application_helper/toolbar/container_images_center.rb:25 -#: ../app/helpers/application_helper/toolbar/container_node_center.rb:32 -#: ../app/helpers/application_helper/toolbar/container_nodes_center.rb:6 -#: ../app/helpers/application_helper/toolbar/container_project_center.rb:32 -#: ../app/helpers/application_helper/toolbar/container_projects_center.rb:6 -#: ../app/helpers/application_helper/toolbar/container_replicator_center.rb:32 -#: ../app/helpers/application_helper/toolbar/container_replicators_center.rb:6 -#: ../app/helpers/application_helper/toolbar/container_route_center.rb:6 -#: ../app/helpers/application_helper/toolbar/container_routes_center.rb:6 -#: ../app/helpers/application_helper/toolbar/container_service_center.rb:23 -#: ../app/helpers/application_helper/toolbar/container_services_center.rb:6 -#: ../app/helpers/application_helper/toolbar/container_template_center.rb:6 -#: ../app/helpers/application_helper/toolbar/container_templates_center.rb:6 -#: ../app/helpers/application_helper/toolbar/containers_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ems_block_storages_center.rb:35 -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:47 -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:56 -#: ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:29 -#: ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:45 -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:74 -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:56 -#: ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:52 -#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:50 -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:61 -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:56 -#: ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:51 -#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:49 -#: ../app/helpers/application_helper/toolbar/ems_network_center.rb:41 -#: ../app/helpers/application_helper/toolbar/ems_networks_center.rb:51 -#: ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:35 -#: ../app/helpers/application_helper/toolbar/ems_storage_center.rb:35 -#: ../app/helpers/application_helper/toolbar/ems_storages_center.rb:35 -#: ../app/helpers/application_helper/toolbar/flavor_center.rb:6 -#: ../app/helpers/application_helper/toolbar/flavors_center.rb:6 -#: ../app/helpers/application_helper/toolbar/floating_ip_center.rb:6 -#: ../app/helpers/application_helper/toolbar/floating_ips_center.rb:6 -#: ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:53 -#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:55 -#: ../app/helpers/application_helper/toolbar/host_center.rb:72 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:107 -#: ../app/helpers/application_helper/toolbar/infra_networking_center.rb:6 -#: ../app/helpers/application_helper/toolbar/infra_networkings_center.rb:6 -#: ../app/helpers/application_helper/toolbar/load_balancer_center.rb:6 -#: ../app/helpers/application_helper/toolbar/load_balancers_center.rb:6 -#: ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:23 -#: ../app/helpers/application_helper/toolbar/middleware_datasources_center.rb:6 -#: ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:7 -#: ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:7 -#: ../app/helpers/application_helper/toolbar/middleware_domain_center.rb:6 -#: ../app/helpers/application_helper/toolbar/middleware_domains_center.rb:6 -#: ../app/helpers/application_helper/toolbar/middleware_messaging_center.rb:25 -#: ../app/helpers/application_helper/toolbar/middleware_messagings_center.rb:7 -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:24 -#: ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:6 -#: ../app/helpers/application_helper/toolbar/middleware_server_groups_center.rb:6 -#: ../app/helpers/application_helper/toolbar/middleware_servers_center.rb:7 -#: ../app/helpers/application_helper/toolbar/miq_group_center.rb:28 -#: ../app/helpers/application_helper/toolbar/miq_groups_center.rb:44 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:49 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:161 -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:61 -#: ../app/helpers/application_helper/toolbar/network_port_center.rb:6 -#: ../app/helpers/application_helper/toolbar/network_ports_center.rb:6 -#: ../app/helpers/application_helper/toolbar/network_router_center.rb:36 -#: ../app/helpers/application_helper/toolbar/network_routers_center.rb:46 -#: ../app/helpers/application_helper/toolbar/ontap_file_share_center.rb:21 -#: ../app/helpers/application_helper/toolbar/ontap_file_shares_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ontap_logical_disk_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ontap_logical_disks_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ontap_storage_system_center.rb:21 -#: ../app/helpers/application_helper/toolbar/ontap_storage_systems_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ontap_storage_volume_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ontap_storage_volumes_center.rb:6 -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:88 -#: ../app/helpers/application_helper/toolbar/orchestration_stack_center.rb:23 -#: ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:25 -#: ../app/helpers/application_helper/toolbar/orchestration_template_center.rb:41 -#: ../app/helpers/application_helper/toolbar/orchestration_templates_center.rb:48 -#: ../app/helpers/application_helper/toolbar/persistent_volume_center.rb:32 -#: ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:41 -#: ../app/helpers/application_helper/toolbar/resource_pool_center.rb:23 -#: ../app/helpers/application_helper/toolbar/resource_pools_center.rb:27 -#: ../app/helpers/application_helper/toolbar/security_group_center.rb:6 -#: ../app/helpers/application_helper/toolbar/security_groups_center.rb:6 -#: ../app/helpers/application_helper/toolbar/service_center.rb:43 -#: ../app/helpers/application_helper/toolbar/services_center.rb:44 -#: ../app/helpers/application_helper/toolbar/servicetemplate_center.rb:43 -#: ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:43 -#: ../app/helpers/application_helper/toolbar/storage_center.rb:30 -#: ../app/helpers/application_helper/toolbar/storages_center.rb:36 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:105 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:70 -#: ../app/helpers/application_helper/toolbar/tenant_center.rb:50 -#: ../app/helpers/application_helper/toolbar/tenants_center.rb:41 -#: ../app/helpers/application_helper/toolbar/user_center.rb:33 -#: ../app/helpers/application_helper/toolbar/users_center.rb:46 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:81 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:97 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:62 -#: ../app/helpers/application_helper/toolbar/x_ansible_tower_configured_system_center.rb:6 -#: ../app/helpers/application_helper/toolbar/x_configuration_script_center.rb:19 -#: ../app/helpers/application_helper/toolbar/x_foreman_configured_system_center.rb:23 -#: ../app/helpers/application_helper/toolbar/x_infra_networking_switch_center.rb:6 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:48 -#: ../app/helpers/application_helper/toolbar/x_provider_foreman_ansible_tower_configured_system_center.rb:6 -#: ../app/helpers/application_helper/toolbar/x_provider_foreman_foreman_configured_system_center.rb:23 -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:75 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:73 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:53 -msgid "Policy" -msgstr "Stratégie" +msgid "Disssociate Floating IP from Instance '%{name}'" +msgstr "Dissocier l'adresse IP flottante de l'instance '%{name}'" -#: ../app/helpers/application_helper/toolbar/auth_key_pair_cloud_center.rb:29 -msgid "Edit tags for this Key Pair" -msgstr "Modifier les balises pour cette paire de clés" +msgid "Distinguished Name (CN=)" +msgstr "Nom unique (CN=)" -#: ../app/helpers/application_helper/toolbar/auth_key_pair_clouds_center.rb:14 -#: ../app/helpers/application_helper/toolbar/cloud_object_store_containers_center.rb:14 -#: ../app/helpers/application_helper/toolbar/cloud_object_store_objects_center.rb:14 -#: ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:46 -#: ../app/helpers/application_helper/toolbar/cloud_volume_backups_center.rb:14 -#: ../app/helpers/application_helper/toolbar/cloud_volume_snapshots_center.rb:14 -#: ../app/helpers/application_helper/toolbar/cloud_volumes_center.rb:69 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:129 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:105 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:121 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:86 -msgid "Edit tags for the selected items" -msgstr "Modifier les balises pour les éléments sélectionnés" +msgid "Distinguished Name (UID=)" +msgstr "Nom unique (DN) (UID=)" -#: ../app/helpers/application_helper/toolbar/auth_key_pair_clouds_center.rb:32 -msgid "Add a new Key Pair" -msgstr "Ajouter une nouvelle paire de clés" +msgid "Do Nothing" +msgstr "Ne rien faire" -#: ../app/helpers/application_helper/toolbar/auth_key_pair_clouds_center.rb:39 -msgid "Remove selected Key Pairs" -msgstr "Supprimer les paires de clés sélectionnées" +msgid "Do you want to delete Server %{server_name} [%{server_id}]?" +msgstr "Voulez-vous supprimer le serveur %{server_name} [%{server_id}] ?" -#: ../app/helpers/application_helper/toolbar/auth_key_pair_clouds_center.rb:42 -msgid "" -"Warning: The selected Key Pairs and ALL of their components will be permanentl" -"y removed!" -msgstr "" -"Avertissement : les paires de clés sélectionnées et TOUS leurs composants sero" -"nt définitivement supprimés" +msgid "Do you want to demote this Server to secondary? This will leave no primary Server for this Role." +msgstr "Voulez-vous rétrograder ce serveur au rang de serveur secondaire ? Il ne restera donc plus de serveur principal pour ce rôle." -#: ../app/helpers/application_helper/toolbar/availability_zone_center.rb:12 -msgid "Edit Tags for this Availability Zone" -msgstr "Modifier les balises pour cette zone de disponibilité" +msgid "Do you want to disable these deployments ?" +msgstr "Voulez-vous désactiver ces déploiements ?" -#: ../app/helpers/application_helper/toolbar/availability_zone_center.rb:21 -#: ../app/helpers/application_helper/toolbar/container_center.rb:6 -#: ../app/helpers/application_helper/toolbar/container_group_center.rb:6 -#: ../app/helpers/application_helper/toolbar/container_node_center.rb:6 -#: ../app/helpers/application_helper/toolbar/container_project_center.rb:6 -#: ../app/helpers/application_helper/toolbar/container_replicator_center.rb:6 -#: ../app/helpers/application_helper/toolbar/container_service_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:73 -#: ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:49 -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:40 -#: ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:36 -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:87 -#: ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:35 -#: ../app/helpers/application_helper/toolbar/ems_network_center.rb:61 -#: ../app/helpers/application_helper/toolbar/ems_storage_center.rb:55 -#: ../app/helpers/application_helper/toolbar/host_center.rb:120 -#: ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:6 -#: ../app/helpers/application_helper/toolbar/middleware_messaging_center.rb:7 -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:7 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:99 -#: ../app/helpers/application_helper/toolbar/ontap_file_share_center.rb:36 -#: ../app/helpers/application_helper/toolbar/ontap_logical_disk_center.rb:21 -#: ../app/helpers/application_helper/toolbar/ontap_storage_system_center.rb:36 -#: ../app/helpers/application_helper/toolbar/ontap_storage_volume_center.rb:21 -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:156 -#: ../app/helpers/application_helper/toolbar/storage_center.rb:45 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:105 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:150 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:105 -msgid "Monitoring" -msgstr "Surveillance" +msgid "Do you want to disable this deployment ?" +msgstr "Voulez-vous désactiver ce déploiement ?" -#: ../app/helpers/application_helper/toolbar/availability_zone_center.rb:27 -msgid "Show Capacity & Utilization data for this Availability Zone" -msgstr "" -"Afficher les données de capacité et d'utilisation de cette zone de disponibili" -"té" +msgid "Do you want to enable these deployments ?" +msgstr "Voulez-vous activer ces déploiements ?" -#: ../app/helpers/application_helper/toolbar/availability_zone_center.rb:34 -msgid "Show Timelines for this Availability Zone" -msgstr "Afficher les chronologies pour cette zone de disponibilité" +msgid "Do you want to enable this deployment ?" +msgstr "Voulez-vous activer ce déploiement ?" -#: ../app/helpers/application_helper/toolbar/availability_zones_center.rb:14 -msgid "Edit Tags for the selected Availability Zones" -msgstr "Modifier les balises pour les zones de disponibilité sélectionnées" +msgid "Do you want to promote this Server to primary? This will replace any existing primary Server for this Role." +msgstr "Voulez-vous promouvoir ce serveur au rang de serveur principal ? Cela aura pour effet de remplacer tout serveur principal existant pour ce rôle." -#: ../app/helpers/application_helper/toolbar/catalogitem_button_center.rb:12 -#: ../app/helpers/application_helper/toolbar/custom_button_center.rb:12 -msgid "Edit this Button" -msgstr "Modifier ce bouton" +msgid "Do you want to reload selected servers?" +msgstr "Voulez-vous recharger les serveurs sélectionnés?" -#: ../app/helpers/application_helper/toolbar/catalogitem_button_center.rb:19 -#: ../app/helpers/application_helper/toolbar/custom_button_center.rb:18 -msgid "Remove this Button" -msgstr "Supprimer ce bouton" +msgid "Do you want to remove these Datasources? Some Applications could be using these Datasources and may malfunction if they are deleted." +msgstr "" -#: ../app/helpers/application_helper/toolbar/catalogitem_button_center.rb:23 -#: ../app/helpers/application_helper/toolbar/custom_button_center.rb:21 -msgid "" -"Warning: This Button will be permanently removed from the Virtual Management D" -"atabase!" +msgid "Do you want to remove this Datasource? Some Applications could be using this Datasource and may malfunction if it is deleted." msgstr "" -"Avertissement : ce bouton sera définitivement supprimé de la base de données V" -"irtual Management" -#: ../app/helpers/application_helper/toolbar/catalogitem_button_center.rb:28 -#: ../app/helpers/application_helper/toolbar/custom_button_center.rb:26 -msgid "Simulate using Button details" -msgstr "Simuler en utilisant les infos bouton" +msgid "Do you want to restart these deployments ?" +msgstr "Voulez-vous redémarrer ces déploiements ?" -#: ../app/helpers/application_helper/toolbar/catalogitem_button_center.rb:29 -#: ../app/helpers/application_helper/toolbar/custom_button_center.rb:27 -msgid "Simulate" -msgstr "Simuler" +msgid "Do you want to restart this deployment ?" +msgstr "Voulez-vous redémarrer ce déploiement ?" -#: -#: ../app/helpers/application_helper/toolbar/catalogitem_button_set_center.rb:12 -#: ../app/helpers/application_helper/toolbar/custom_button_set_center.rb:12 -#: ../app/helpers/application_helper/toolbar/servicetemplate_center.rb:12 -msgid "Add a new Button Group" -msgstr "Ajouter un Nouveau Groupe de Boutons" +msgid "Do you want to restart this server group?" +msgstr "" -#: -#: ../app/helpers/application_helper/toolbar/catalogitem_button_set_center.rb:18 -#: ../app/helpers/application_helper/toolbar/catalogitem_buttons_center.rb:19 -#: ../app/helpers/application_helper/toolbar/custom_button_set_center.rb:17 -#: ../app/helpers/application_helper/toolbar/custom_buttons_center.rb:19 -#: ../app/helpers/application_helper/toolbar/servicetemplate_center.rb:19 -msgid "Add a new Button" -msgstr "Ajouter un Nouveau Bouton" +msgid "Do you want to restart this server?" +msgstr "Voulez-vous redémarrer ce serveur ?" -#: -#: ../app/helpers/application_helper/toolbar/catalogitem_button_set_center.rb:26 -#: ../app/helpers/application_helper/toolbar/custom_button_set_center.rb:25 -msgid "Reorder Buttons Groups" -msgstr "Réorganiser les groupes de boutons" +msgid "Do you want to resume this server group?" +msgstr "" -#: -#: ../app/helpers/application_helper/toolbar/catalogitem_button_set_center.rb:28 -#: ../app/helpers/application_helper/toolbar/custom_button_set_center.rb:27 -msgid "Reorder Buttons and Groups" -msgstr "Réorganiser les boutons et les groupes" +msgid "Do you want to resume this server?" +msgstr "Voulez-vous relancer ce serveur ?" -#: -#: ../app/helpers/application_helper/toolbar/catalogitem_button_set_center.rb:31 -#: ../app/helpers/application_helper/toolbar/custom_button_set_center.rb:30 -msgid "Reorder" -msgstr "Réorganiser" +msgid "Do you want to stop this server?" +msgstr "Voulez-vous arrêter ce serveur ?" -#: ../app/helpers/application_helper/toolbar/catalogitem_buttons_center.rb:12 -#: ../app/helpers/application_helper/toolbar/custom_buttons_center.rb:12 -msgid "Edit this Button Group" -msgstr "Modifier ce groupe de boutons" +msgid "Do you want to trigger a kill of this server?" +msgstr "Voulez-vous initier un kill de ce serveur ?" -#: ../app/helpers/application_helper/toolbar/catalogitem_buttons_center.rb:25 -#: ../app/helpers/application_helper/toolbar/custom_buttons_center.rb:25 -msgid "Remove this Button Group" -msgstr "Supprimer ce groupe de boutons" +msgid "Do you want to trigger a reload of this server group?" +msgstr "" -#: ../app/helpers/application_helper/toolbar/catalogitem_buttons_center.rb:29 -#: ../app/helpers/application_helper/toolbar/custom_buttons_center.rb:28 -msgid "Warning: The selected Button Group will be permanently removed!" -msgstr "Avertissement : le groupe de boutons sélectionné sera définitivement supprimé." +msgid "Do you want to trigger a reload of this server?" +msgstr "Voulez-vous initier un rechargement de ce serveur?" -#: ../app/helpers/application_helper/toolbar/chargeback_center.rb:6 -#: ../app/helpers/application_helper/toolbar/compare_view.rb:22 -#: ../app/helpers/application_helper/toolbar/drift_view.rb:20 -#: ../app/helpers/application_helper/toolbar/gtl_view.rb:32 -#: ../app/helpers/application_helper/toolbar/miq_capacity_view.rb:6 -#: ../app/helpers/application_helper/toolbar/report_view.rb:32 -#: ../app/helpers/application_helper/toolbar/x_gtl_view.rb:32 -#: ../app/views/layouts/_item.html.haml:135 -msgid "Download" -msgstr "Télécharger" +msgid "Do you want to trigger a restart of this server?" +msgstr "Voulez-vous initier un redémarrage de ce serveur ?" -#: ../app/helpers/application_helper/toolbar/chargeback_center.rb:13 -#: ../app/helpers/application_helper/toolbar/gtl_view.rb:38 -#: ../app/helpers/application_helper/toolbar/miq_capacity_view.rb:13 -#: ../app/helpers/application_helper/toolbar/report_view.rb:39 -msgid "Download this report in text format" -msgstr "Télécharger ce Rapport au Format Texte" +msgid "Do you want to trigger a start of this server group?" +msgstr "" -#: ../app/helpers/application_helper/toolbar/chargeback_center.rb:14 -#: ../app/helpers/application_helper/toolbar/compare_view.rb:29 -#: ../app/helpers/application_helper/toolbar/drift_view.rb:27 -#: ../app/helpers/application_helper/toolbar/gtl_view.rb:39 -#: ../app/helpers/application_helper/toolbar/miq_capacity_view.rb:14 -#: ../app/helpers/application_helper/toolbar/report_view.rb:40 -#: ../app/helpers/application_helper/toolbar/x_gtl_view.rb:39 -msgid "Download as Text" -msgstr "Télécharger en tant que texte" +msgid "Do you want to trigger a start of this server?" +msgstr "Souhaitez-vous déclencher un démarrage pour ce serveur ?" -#: ../app/helpers/application_helper/toolbar/chargeback_center.rb:20 -#: ../app/helpers/application_helper/toolbar/gtl_view.rb:45 -#: ../app/helpers/application_helper/toolbar/miq_capacity_view.rb:20 -#: ../app/helpers/application_helper/toolbar/report_view.rb:45 -msgid "Download this report in CSV format" -msgstr "Télécharger ce Rapport au Format CSV" +msgid "Do you want to trigger a stop of this server?" +msgstr "Souhaitez-vous déclencher un arrêt pour ce serveur ?" -#: ../app/helpers/application_helper/toolbar/chargeback_center.rb:21 -#: ../app/helpers/application_helper/toolbar/compare_view.rb:35 -#: ../app/helpers/application_helper/toolbar/drift_view.rb:33 -#: ../app/helpers/application_helper/toolbar/gtl_view.rb:46 -#: ../app/helpers/application_helper/toolbar/miq_capacity_view.rb:21 -#: ../app/helpers/application_helper/toolbar/report_view.rb:46 -#: ../app/helpers/application_helper/toolbar/x_gtl_view.rb:46 -msgid "Download as CSV" -msgstr "Télécharger en tant que CSV" +msgid "Do you want to undeploy these deployments ?" +msgstr "Voulez-vous rétracter ces déploiements ?" -#: ../app/helpers/application_helper/toolbar/chargeback_center.rb:27 -#: ../app/helpers/application_helper/toolbar/gtl_view.rb:52 -#: ../app/helpers/application_helper/toolbar/miq_capacity_view.rb:27 -#: ../app/helpers/application_helper/toolbar/report_view.rb:51 -msgid "Download this report in PDF format" -msgstr "Télécharger ce Rapport au Format PDF" +msgid "Do you want to undeploy this deployment ?" +msgstr "Voulez-vous rétracter ce déploiement ?" -#: ../app/helpers/application_helper/toolbar/chargeback_center.rb:28 -#: ../app/helpers/application_helper/toolbar/compare_view.rb:41 -#: ../app/helpers/application_helper/toolbar/drift_view.rb:39 -#: ../app/helpers/application_helper/toolbar/gtl_view.rb:53 -#: ../app/helpers/application_helper/toolbar/miq_capacity_view.rb:28 -#: ../app/helpers/application_helper/toolbar/report_view.rb:52 -#: ../app/helpers/application_helper/toolbar/x_gtl_view.rb:53 -msgid "Download as PDF" -msgstr "Télécharger en tant que PDF" +msgid "Docker Labels" +msgstr "" -#: ../app/helpers/application_helper/toolbar/chargeback_center.rb:36 -msgid "Show full screen report" -msgstr "Afficher un rapport plein écran" +msgid "Documentation" +msgstr "Documentation" -#: ../app/helpers/application_helper/toolbar/chargeback_center.rb:41 -#: ../app/helpers/application_helper/toolbar/saved_report_center.rb:16 -#: ../app/helpers/application_helper/toolbar/saved_reports_center.rb:27 -msgid "" -"This will show the entire report (all rows) in your browser. Do you want to p" -"roceed?" -msgstr "" -"Cette action affichera le rapport complet (toutes les lignes) dans votre navig" -"ateur. Voulez-vous continuer ?" +msgid "Domain" +msgstr "Domaine" -#: ../app/helpers/application_helper/toolbar/chargeback_center.rb:53 -msgid "Edit this Chargeback Rate" -msgstr "Modifier ce taux de rejet de débit" +msgid "Domain Information" +msgstr "Information sur le Domaine" -#: ../app/helpers/application_helper/toolbar/chargeback_center.rb:60 -msgid "Copy this Chargeback Rate" -msgstr "Copier ce taux de rejet de débit" +msgid "Domain Overrides (by priority)" +msgstr "Remplacements de domaine (par priorité)" -#: ../app/helpers/application_helper/toolbar/chargeback_center.rb:67 -msgid "Remove this Chargeback Rate from the VMDB" -msgstr "Supprimer ce taux de rétrofacturation du VMDB" +msgid "Domain Prefix: \\" +msgstr "Préfixe de domaine : \\" -#: ../app/helpers/application_helper/toolbar/chargeback_center.rb:68 -msgid "Remove from the VMDB" -msgstr "Supprimer du VMDB" +msgid "Domain is Locked." +msgstr "Le domaine est verrouillé." -#: ../app/helpers/application_helper/toolbar/chargeback_center.rb:70 -msgid "Warning: This Chargeback Rate will be permanently removed!" -msgstr "Avertissement : ce taux de rétrofacturation sera définitivement supprimé" +msgid "Domain is Unlocked." +msgstr "Le domaine est déverrouillé." -#: ../app/helpers/application_helper/toolbar/chargebacks_center.rb:12 -msgid "Add a new Chargeback Rate" -msgstr "Ajouter un nouveau taux de rétrofacturation" +msgid "Domain: %{domain_name}" +msgstr "Domaine : %{domain_name}" -#: ../app/helpers/application_helper/toolbar/chargebacks_center.rb:18 -msgid "Edit the selected Chargeback Rate" -msgstr "Modifier le taux de rejet de débit sélectionné" +msgid "Domains" +msgstr "Domaines" -#: ../app/helpers/application_helper/toolbar/chargebacks_center.rb:27 -msgid "Copy the selected Chargeback Rate to a new Chargeback Rate" -msgstr "" -"Copier le taux de rejet de débit sélectionné dans un nouveau taux de rejet de " -"débit" +msgid "Domains:" +msgstr "Domaines :" -#: ../app/helpers/application_helper/toolbar/chargebacks_center.rb:36 -msgid "Remove selected Chargeback Rates from the VMDB" -msgstr "Supprimer les taux de rétro-facturation sélectionnés du VMDB" +msgid "Don't change" +msgstr "Ne pas modifier" -#: ../app/helpers/application_helper/toolbar/chargebacks_center.rb:39 -msgid "Warning: The selected Chargeback Rate will be permanently removed!" -msgstr "" -"Avertissement : le taux de rétrofacturation sélectionné sera définitivement su" -"pprimé." +msgid "Double Click on 'New Folder' to edit" +msgstr "Double-cliquez sur 'Nouveau dossier' pour modifier" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:7 -msgid "Instance Power Functions" -msgstr "Fonctions d'alimentation de l'instance" +msgid "Double click a feature to open/close all children." +msgstr "Double-cliquez sur une fonctionnalité pour ouvrir/fermer tous les enfants." -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:8 -#: ../app/helpers/application_helper/toolbar/host_center.rb:145 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:172 -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:40 -#: ../app/helpers/application_helper/toolbar/middleware_servers_center.rb:27 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:177 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:206 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:173 -msgid "Power" -msgstr "Alimentation" +msgid "Down" +msgstr "" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:13 -msgid "Stop this Instance" -msgstr "Arrêter cette instance" +msgid "Download" +msgstr "Télécharger" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:16 -msgid "Stop this Instance?" -msgstr "Arrêter cette instance ?" +msgid "Download Report to YAML" +msgstr "Télécharger un Rapport vers YAML" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:22 -msgid "Start this Instance" -msgstr "Lancer cette instance" +msgid "Download as CSV" +msgstr "Télécharger en tant que CSV" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:25 -msgid "Start this Instance?" -msgstr "Lancer cette instance ?" +msgid "Download as PDF" +msgstr "Télécharger en tant que PDF" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:31 -msgid "Pause this Instance" -msgstr "Suspendre cette instance" +msgid "Download as Text" +msgstr "Télécharger en tant que texte" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:32 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:205 -msgid "Pause" -msgstr "Pause" +msgid "Download comparison report in CSV format" +msgstr "Télécharger le rapport de comparaison au format CSV" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:34 -msgid "Pause this Instance?" -msgstr "Suspendre cette instance ?" +msgid "Download comparison report in PDF format" +msgstr "Télécharger le rapport de comparaison au format PDF" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:40 -msgid "Suspend this Instance" -msgstr "Suspendre cette instance" +msgid "Download comparison report in text format" +msgstr "Télécharger le rapport de comparaison au format texte" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:43 -msgid "Suspend this Instance?" -msgstr "Suspendre cette instance ?" +msgid "Download summary in PDF format" +msgstr "Télécharger le résumé au format PDF" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:49 -msgid "Shelve this Instance" -msgstr "Classer cette instance" +msgid "Download the Entire %{log_type} Log File" +msgstr "Télécharger l'intégralité du fichier journal %{log_type}" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:50 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:225 -msgid "Shelve" -msgstr "Classer" +msgid "Download the Entire Audit Log File" +msgstr "Télécharger l'intégralité du fichier journal d'audit" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:52 -msgid "Shelve this Instance?" -msgstr "Classer cette instance ?" +msgid "Download the Entire EVM Log File" +msgstr "Télécharger l'intégralité du fichier journal EVM" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:58 -msgid "Shelve Offload this Instance" -msgstr "Classer cette instance hors charge" +msgid "Download the full report (all rows) as a PDF file" +msgstr "Télécharger l'intégralité du rapport (toutes les lignes) sous la forme d'un fichier PDF" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:59 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:235 -msgid "Shelve Offload" -msgstr "Classer hors charge" +msgid "Download these items in CSV format" +msgstr "Télécharger ces éléments au format CSV" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:61 -msgid "Shelve Offload this Instance?" -msgstr "Classer cette instance hors charge ?" +msgid "Download these items in PDF format" +msgstr "Télécharger ces éléments au format PDF" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:67 -msgid "Resume this Instance" -msgstr "Reprendre cette instance" +msgid "Download these items in text format" +msgstr "Télécharger ces éléments au format Texte" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:70 -msgid "Resume this Instance?" -msgstr "Reprendre cette instance ?" +msgid "Download this Timeline data in %{typ} format" +msgstr "Télécharger ces éléments de chronologie au format %{typ}" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:77 -msgid "Soft Reboot this Instance" -msgstr "Effectuer un redémarrage logiciel de cette instance" +msgid "Download this Timeline data in CSV format" +msgstr "Télécharger ces éléments de chronologie au format CSV" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:78 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:256 -msgid "Soft Reboot" -msgstr "Redémarrage logiciel" +msgid "Download this Timeline data in PDF format" +msgstr "Télécharger ces éléments de chronologie au format PDF" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:80 -msgid "Soft Reboot this Instance?" -msgstr "Effectuer un redémarrage logiciel de cette instance ?" +msgid "Download this Timeline data in text format" +msgstr "Télécharger ces éléments de chronologie au format texte" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:86 -msgid "Hard Reboot the Guest OS on this Instance" -msgstr "Effectuer le redémarrage du système d'exploitation invité sur cette instance" +msgid "Download this report in CSV format" +msgstr "Télécharger ce Rapport au Format CSV" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:87 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:266 -msgid "Hard Reboot" -msgstr "Redémarrage" +msgid "Download this report in PDF format" +msgstr "Télécharger ce Rapport au Format PDF" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:89 -msgid "Hard Reboot the Guest OS on this Instance?" -msgstr "Effectuer le redémarrage du système d'exploitation invité sur cette instance ?" +msgid "Download this report in text format" +msgstr "Télécharger ce Rapport au Format Texte" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:94 -msgid "Delete this Instance" -msgstr "Supprimer cette instance" +msgid "Draft" +msgstr "Brouillon" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:97 -msgid "Delete this Instance?" -msgstr "Supprimer cette instance ?" +msgid "Drag this Shortcut to a new location" +msgstr "Glissez ce Raccourci vers un nouvel emplacement" -#: -#: ../app/helpers/application_helper/toolbar/cloud/instance_operations_button_group_mixin.rb:105 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:250 -msgid "Open a web-based VNC or SPICE console for this VM" -msgstr "Ouvrir une console VNC ou SPICE Web pour MV" +msgid "Drag this Tab to a new location" +msgstr "Glissez cet Onglet vers un nouvel emplacement" -#: ../app/helpers/application_helper/toolbar/cloud_network_center.rb:14 -msgid "Edit this Cloud Network" -msgstr "Modifier ce réseau cloud" +msgid "Drag/drop Widget \"%{widget_title}\"" +msgstr "Faire glisser le composant d'interface \"%{widget_title}\"" -#: ../app/helpers/application_helper/toolbar/cloud_network_center.rb:20 -msgid "Delete this Cloud Network" -msgstr "Supprimer ce Réseau cloud" +msgid "Drift" +msgstr "Dérive" -#: ../app/helpers/application_helper/toolbar/cloud_network_center.rb:23 -msgid "Warning: This Cloud Network and ALL of its components will be removed!" -msgstr "Avertissement : ce réseau cloud et TOUS ses composants seront supprimés" +msgid "Drift History" +msgid_plural "Drift History" +msgstr[0] "Historique de dérive" +msgstr[1] "Historique de dérive" -#: ../app/helpers/application_helper/toolbar/cloud_network_center.rb:41 -msgid "Edit Tags for this Cloud Network" -msgstr "Modifier les balises de ce réseau cloud" +msgid "Drift Mode" +msgstr "Mode de dérive" -#: ../app/helpers/application_helper/toolbar/cloud_networks_center.rb:14 -msgid "Add a new Cloud Network" -msgstr "Ajouter un nouveau Réseau Cloud" +msgid "Drift Sections" +msgstr "Sections de dérive" -#: ../app/helpers/application_helper/toolbar/cloud_networks_center.rb:54 -msgid "Edit Tags for the selected Cloud Networks" -msgstr "Modifier les balises pour les réseaux cloud sélectionnés" +msgid "Drift for %{vm_or_template} \"%{name}\"" +msgstr "Dérive pour %{vm_or_template} \"%{name}\"" -#: -#: ../app/helpers/application_helper/toolbar/cloud_object_store_container_center.rb:12 -msgid "Edit tags for this Cloud Object Store" -msgstr "Modifier les balises pour ce support de sauvegarde des objets cloud" +msgid "Driver Class" +msgstr "Classe de pilote" -#: -#: ../app/helpers/application_helper/toolbar/cloud_object_store_object_center.rb:12 -msgid "Edit tags for this Cloud Object" -msgstr "Modifier les balises pour cet objet cloud" +msgid "Driver Name" +msgstr "Nom de pilote" -#: ../app/helpers/application_helper/toolbar/cloud_subnet_center.rb:12 -msgid "Edit this Cloud Subnet" -msgstr "Modifier ce sous-réseau cloud" +msgid "Driving Event" +msgstr "Événement déclencheur" -#: ../app/helpers/application_helper/toolbar/cloud_subnet_center.rb:21 -msgid "Delete this Cloud Subnet" -msgstr "Supprimer ce sous-réseau cloud" +msgid "Drop Capabilities" +msgstr "Fonctionnalités de déplacement" -#: ../app/helpers/application_helper/toolbar/cloud_subnet_center.rb:24 -msgid "Warning: This Cloud Subnet and ALL of its components will be removed!" -msgstr "Avertissement : ce sous-réseau cloud et TOUS ses composants seront supprimés" +msgid "Dropdown elements require some entries" +msgstr "Les éléments de la liste déroulante doivent contenir des entrées" -#: ../app/helpers/application_helper/toolbar/cloud_subnet_center.rb:41 -msgid "Edit Tags for this Cloud Subnet" -msgstr "Modifier les balises de ce sous-réseau cloud" +msgid "Duration" +msgstr "Durée" -#: ../app/helpers/application_helper/toolbar/cloud_subnets_center.rb:12 -msgid "Add a new Cloud Subnet" -msgstr "Ajouter un nouveau sous-réseau cloud" +msgid "Duration Per Minute must be an integer" +msgstr "La durée par minute doit être un nombre entier" -#: ../app/helpers/application_helper/toolbar/cloud_subnets_center.rb:53 -msgid "Edit Tags for the selected Cloud Subnets" -msgstr "Modifier les balises pour les sous-réseaux cloud sélectionnés" +msgid "Dynamic" +msgstr "Dynamique" -#: ../app/helpers/application_helper/toolbar/cloud_tenant_center.rb:12 -#: ../app/views/cloud_tenant/edit.html.haml:7 -msgid "Edit Cloud Tenant" -msgstr "Modifier locataire cloud" +msgid "E-Mail after Running" +msgstr "Email après exécution" -#: ../app/helpers/application_helper/toolbar/cloud_tenant_center.rb:17 -msgid "Delete Cloud Tenant" -msgstr "Supprimer le locataire cloud" +msgid "E-mail" +msgstr "Email :" -#: ../app/helpers/application_helper/toolbar/cloud_tenant_center.rb:32 -msgid "Edit tags for this Cloud Tenant" -msgstr "Modifier les balises pour ce locataire cloud" +msgid "E-mail Address" +msgstr "Adresse email" -#: ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:12 -msgid "Create Cloud Tenant" -msgstr "Créer un locataire cloud" +msgid "E-mail Options" +msgstr "Options de messagerie" -#: ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:17 -msgid "Select a single Cloud Tenant to edit" -msgstr "Sélectionner un fournisseur de cloud à modifier" +msgid "E-mail Settings" +msgstr "Paramètres de messagerie" -#: ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:18 -msgid "Edit Selected Cloud Tenant" -msgstr "Modifier locataire cloud sélectionné" +msgid "E-mail address 'From' is not valid" +msgstr "L'adresse email 'De' n'est pas valide" -#: ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:25 -msgid "Delete selected Cloud Tenants" -msgstr "Supprimer les locataires cloud sélectionnés" +msgid "E-mail address 'To' is not valid" +msgstr "L'adresse email 'À' n'est pas valide" -#: ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:26 -msgid "Delete Cloud Tenants" -msgstr "Supprimer les locataires cloud" +msgid "E-mail after Running" +msgstr "Email après exécution" -#: ../app/helpers/application_helper/toolbar/cloud_tenants_center.rb:28 -msgid "Warning: The selected Cloud Tenants will be permanently deleted!" -msgstr "" -"Avertissement : les locataires cloud sélectionnés seront définitivement suppri" -"més." +msgid "ESX" +msgstr "ESX" -#: ../app/helpers/application_helper/toolbar/cloud_volume_backup_center.rb:12 -msgid "Edit tags for this Cloud Volume Backup" -msgstr "Modifier les balises pour cette sauvegarde de cliché cloud" +msgid "ESX Logs" +msgstr "Logs ESX" -#: ../app/helpers/application_helper/toolbar/cloud_volume_center.rb:12 -msgid "Create a Backup of this Cloud Volume" -msgstr "Créer une sauvegarde pour le volume cloud" +msgid "EVM log downloaded" +msgstr "Log EVM téléchargé" -#: ../app/helpers/application_helper/toolbar/cloud_volume_center.rb:21 -msgid "Restore from a Backup of this Cloud Volume" -msgstr "Restaurer à partir d'une sauvegarde de ce volume cloud" +msgid "Edit" +msgstr "Modifier" -#: ../app/helpers/application_helper/toolbar/cloud_volume_center.rb:30 -msgid "Create a Snapshot of this Cloud Volume" -msgstr "Créer un cliché pour ce volume cloud \"%{name}\"" +msgid "Edit %{model} \"%{name}\"" +msgstr "Modifier %{model} \"%{name}\"" -#: ../app/helpers/application_helper/toolbar/cloud_volume_center.rb:39 -msgid "Attach this Cloud Volume to an Instance" -msgstr "Associer ce volume cloud à une instance" +msgid "Edit %{model} assignments cancelled by user" +msgstr "Modification des affectations %{model} annulée par l'utilisateur" -#: ../app/helpers/application_helper/toolbar/cloud_volume_center.rb:48 -msgid "Detach this Cloud Volume from an Instance" -msgstr "Dissocier ce volume cloud d'une instance" +msgid "Edit %{object_type} '%{object_name}'" +msgstr "" -#: ../app/helpers/application_helper/toolbar/cloud_volume_center.rb:56 -msgid "Edit this Cloud Volume" -msgstr "Modifier ce volume cloud" +msgid "Edit %{product} Server Relationship for %{vm_or_template} \"%{name}\"" +msgstr "Modifier la relation de serveur %{product} pour %{vm_or_template} \"%{name}\"" -#: ../app/helpers/application_helper/toolbar/cloud_volume_center.rb:63 -msgid "Delete this Cloud Volume" -msgstr "Supprimer ce volume cloud" +msgid "Edit %{table} '%{name}'" +msgstr "Modifier %{table} '%{name}'" -#: ../app/helpers/application_helper/toolbar/cloud_volume_center.rb:66 -msgid "Warning: This Cloud Volume and ALL of its components will be removed!" -msgstr "Avertissement : ce volume cloud et TOUS ses composants seront supprimés" +msgid "Edit %{type}" +msgstr "Modifier %{type}" -#: ../app/helpers/application_helper/toolbar/cloud_volume_center.rb:81 -msgid "Edit tags for this Cloud Volume" -msgstr "Modifier les balises pour ce volume cloud" +msgid "Edit '%{customer_name}' Tags for the selected Groups" +msgstr "Modifier les balises '%{customer_name}' pour les groupes sélectionnés" -#: ../app/helpers/application_helper/toolbar/cloud_volume_snapshot_center.rb:12 -msgid "Delete Cloud Volume Snapshot" -msgstr "Supprimer le cliché de volume cloud" +msgid "Edit '%{customer_name}' Tags for the selected Tenant" +msgstr "Modifier les balises '%{customer_name}' pour le locataire sélectionné" -#: ../app/helpers/application_helper/toolbar/cloud_volume_snapshot_center.rb:28 -msgid "Edit tags for this Cloud Volume Snapshot" -msgstr "Modifier les balises pour cet cliché de volume cloud" +msgid "Edit '%{customer_name}' Tags for the selected Users" +msgstr "Modifier les balises '%{customer_name}' pour les utilisateurs sélectionnés" -#: ../app/helpers/application_helper/toolbar/cloud_volumes_center.rb:12 -msgid "Add a new Cloud Volume" -msgstr "Ajouter un nouveau volume cloud" +msgid "Edit '%{customer_name}' Tags for this Group" +msgstr "Modifier les balises '%{customer_name}' pour ce groupe" -#: ../app/helpers/application_helper/toolbar/cloud_volumes_center.rb:20 -msgid "Attach selected Cloud Volume to an Instance" -msgstr "Associer le volume cloud sélectionné à une instance" +msgid "Edit '%{customer_name}' Tags for this Tenant" +msgstr "Modifier les balises '%{customer_name}' pour ce locataire" -#: ../app/helpers/application_helper/toolbar/cloud_volumes_center.rb:29 -msgid "Detach selected Cloud Volume from an Instance" -msgstr "Dissocier le volume cloud sélectionné d'une instance" +msgid "Edit '%{customer_name}' Tags for this User" +msgstr "Modifier les balises '%{customer_name}' pour cet utilisateur" -#: ../app/helpers/application_helper/toolbar/cloud_volumes_center.rb:38 -msgid "Edit selected Cloud Volume" -msgstr "Modifier le volume cloud sélectionné" +msgid "Edit '%{description}'" +msgstr "Modifier '%{description}'" -#: ../app/helpers/application_helper/toolbar/cloud_volumes_center.rb:47 -msgid "Delete selected Cloud Volumes" -msgstr "Supprimer les volumes cloud sélectionnés" +msgid "Edit Actions for this Policy Event" +msgstr "Modifier les actions pour cet événement de stratégie" -#: ../app/helpers/application_helper/toolbar/cloud_volumes_center.rb:50 -msgid "" -"Warning: The selected Cloud Volume and ALL of their components will be removed" -"!" -msgstr "" -"Avertissement : le volume cloud sélectionné et TOUS ses composants seront supp" -"rimés." +msgid "Edit Basic Info, Scope, and Notes" +msgstr "Modifier les infos de base, l'étendue et les notes" -#: ../app/helpers/application_helper/toolbar/compare_center.rb:6 -#: ../app/helpers/application_helper/toolbar/drift_center.rb:6 -msgid "All attributes" -msgstr "Tous les attributs" +msgid "Edit Cloud Network \"%{name}\"" +msgstr "" -#: ../app/helpers/application_helper/toolbar/compare_center.rb:14 -#: ../app/helpers/application_helper/toolbar/drift_center.rb:14 -msgid "Attributes with different values" -msgstr "Attributs avec des valeurs différentes" +msgid "Edit Cloud Tenant" +msgstr "Modifier locataire cloud" -#: ../app/helpers/application_helper/toolbar/compare_center.rb:22 -#: ../app/helpers/application_helper/toolbar/drift_center.rb:22 -msgid "Attributes with same values" -msgstr "Attributs avec les mêmes valeurs" +msgid "Edit Cloud Tenant \"%{name}\"" +msgstr "" -#: ../app/helpers/application_helper/toolbar/compare_center.rb:32 -#: ../app/helpers/application_helper/toolbar/drift_center.rb:32 -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:52 -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:57 -msgid "Details Mode" -msgstr "Mode de détails" +msgid "Edit Compute Rate Assignments" +msgstr "Modifier les affectations de taux du calcul" -#: ../app/helpers/application_helper/toolbar/compare_center.rb:39 -#: ../app/helpers/application_helper/toolbar/drift_center.rb:39 -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:53 -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:58 -msgid "Exists Mode" -msgstr "Mode Existe" +msgid "Edit Event cancelled by user" +msgstr "Modification de l'événement annulée par l'utilisateur" -#: ../app/helpers/application_helper/toolbar/compare_view.rb:6 -#: ../app/helpers/application_helper/toolbar/drift_view.rb:6 -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:42 -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:47 -msgid "Expanded View" -msgstr "Vue étendue" +msgid "Edit Generic Object Definition" +msgstr "" -#: ../app/helpers/application_helper/toolbar/compare_view.rb:13 -#: ../app/helpers/application_helper/toolbar/drift_view.rb:12 -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:43 -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:48 -msgid "Compressed View" -msgstr "Vue Compressée" +msgid "Edit Host '%{name}'" +msgstr "Modifier l'hôte '%{name}'" -#: ../app/helpers/application_helper/toolbar/compare_view.rb:28 -#: ../app/helpers/application_helper/toolbar/drift_view.rb:26 -msgid "Download comparison report in text format" -msgstr "Télécharger le rapport de comparaison au format texte" +msgid "Edit Host Aggregate" +msgstr "Modifier Agrégat de machines" -#: ../app/helpers/application_helper/toolbar/compare_view.rb:34 -#: ../app/helpers/application_helper/toolbar/drift_view.rb:32 -msgid "Download comparison report in CSV format" -msgstr "Télécharger le rapport de comparaison au format CSV" +msgid "Edit Log Depot settings was cancelled by the user" +msgstr "La modification des paramètres du dépôt de journaux a été annulée par l'utilisateur" -#: ../app/helpers/application_helper/toolbar/compare_view.rb:40 -#: ../app/helpers/application_helper/toolbar/drift_view.rb:38 -msgid "Download comparison report in PDF format" -msgstr "Télécharger le rapport de comparaison au format PDF" +msgid "Edit Management Engine Relationship" +msgstr "Modifier la relation du moteur de gestion" -#: ../app/helpers/application_helper/toolbar/condition_center.rb:12 -msgid "Edit this Condition" -msgstr "Modifier cette condition" +msgid "Edit Management Engine Relationship was cancelled by the user" +msgstr "La modification de la relation du moteur de gestion a été annulée par l'utilisateur" -#: ../app/helpers/application_helper/toolbar/condition_center.rb:19 -msgid "Copy this Condition to a new Condition" -msgstr "Copier cette Condition vers une nouvelle Condition" +msgid "Edit Priority Order of Domains" +msgstr "Modifier l'ordre de priorité des domaines" -#: ../app/helpers/application_helper/toolbar/condition_center.rb:27 -msgid "" -"Copy this Condition to a new Condition assigned to Policy [%{condition_policy_" -"description}]" +msgid "Edit Provider" msgstr "" -"Copier cette condition dans une nouvelle condition affectée à la stratégie [%{" -"condition_policy_description}]" -#: ../app/helpers/application_helper/toolbar/condition_center.rb:37 -msgid "Delete this %{condition_type} Condition" -msgstr "Supprimer cette condition %{condition_type}" +msgid "Edit Registration" +msgstr "Modifier l'abonnement" + +msgid "Edit Report Menus" +msgstr "Modifier les menus de rapport" + +msgid "Edit Roles" +msgstr "Modifier les rôles" -#: ../app/helpers/application_helper/toolbar/condition_center.rb:42 -msgid "Are you sure you want to delete this %{condition_type} Condition?" -msgstr "Voulez-vous vraiment supprimer cette condition %{condition_type} ?" +msgid "Edit Router" +msgstr "Modifier Router" -#: ../app/helpers/application_helper/toolbar/condition_center.rb:47 -msgid "Remove this Condition from Policy [%{condition_policy_description}]" -msgstr "Supprimer cette condition de la stratégie [%{condition_policy_description}]" +msgid "Edit Router \"%{name}\"" +msgstr "Modifier router \"%{name}\"" -#: ../app/helpers/application_helper/toolbar/condition_center.rb:54 -msgid "" -"Are you sure you want to remove this Condition from Policy [%{condition_policy" -"_description}]?" +msgid "Edit Security Group \"%{name}\"" msgstr "" -"Voulez-vous vraiment supprimer cette condition de la stratégie [%{condition_po" -"licy_description}] ?" -#: ../app/helpers/application_helper/toolbar/conditions_center.rb:14 -msgid "Add a New VM Condition" -msgstr "Ajouter une nouvelle condition de machine virtuelle" +msgid "Edit Selected Arbitration Profile" +msgstr "Modifier le profil d'arbitrage sélectionné" -#: ../app/helpers/application_helper/toolbar/conditions_center.rb:16 -msgid "Add a New %{condition_type} Condition" -msgstr "Ajouter une nouvelle condition %{condition_type}" +msgid "Edit Selected Cloud Provider" +msgstr "Modifier le fournisseur cloud sélectionné" -#: ../app/helpers/application_helper/toolbar/configuration_job_center.rb:12 -msgid "Remove this Job" -msgstr "Supprimer cette tâche" +msgid "Edit Selected Cloud Tenant" +msgstr "Modifier locataire cloud sélectionné" -#: ../app/helpers/application_helper/toolbar/configuration_job_center.rb:15 -msgid "Warning: This Job and ALL of its components will be permanently removed!" -msgstr "" -"Avertissement : cette tâche et TOUS ses composants seront définitivement suppr" -"imés" +msgid "Edit Selected Containers Provider" +msgstr "Modifier le fournisseur de conteneurs sélectionné" -#: ../app/helpers/application_helper/toolbar/configuration_job_center.rb:29 -msgid "Edit Tags for this Job" -msgstr "Modifier les balises pour cette tâche" +msgid "Edit Selected Customization Templates" +msgstr "Modifier les modèles de personnalisation sélectionnés" -#: ../app/helpers/application_helper/toolbar/configuration_jobs_center.rb:12 -msgid "Remove selected Jobs" -msgstr "Supprimer les tâches sélectionnées" +msgid "Edit Selected Datawarehouse Providers" +msgstr "" -#: ../app/helpers/application_helper/toolbar/configuration_jobs_center.rb:13 -msgid "Remove Jobs" -msgstr "Supprimer les tâches" +msgid "Edit Selected Domains" +msgstr "Modifier les domaines sélectionnés" -#: ../app/helpers/application_helper/toolbar/configuration_jobs_center.rb:15 -msgid "" -"Warning: The selected Jobs and ALL of their components will be permanently rem" -"oved!" -msgstr "" -"Avertissement : les tâches sélectionnées et TOUS leurs composants seront défin" -"itivement supprimés " +msgid "Edit Selected Host Aggregate" +msgstr "Modifier Agrégat de machines sélectionnées" -#: ../app/helpers/application_helper/toolbar/configuration_jobs_center.rb:33 -msgid "Edit Tags for the selected Jobs" -msgstr "Modifier les balises pour les tâches sélectionnées" +msgid "Edit Selected Infrastructure Providers" +msgstr "Modifier les fournisseurs d'infrastructure sélectionnés" -#: -#: ../app/helpers/application_helper/toolbar/configuration_manager_provider_center.rb:13 -#: ../app/helpers/application_helper/toolbar/inventory_group_center.rb:13 -msgid "Refresh relationships for all items related to this Provider" -msgstr "Actualiser les relations pour tous les éléments associés à ce fournisseur" +msgid "Edit Selected Instance" +msgstr "Modifier l'instance sélectionnée" -#: -#: ../app/helpers/application_helper/toolbar/configuration_manager_provider_center.rb:14 -#: ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:14 -#: ../app/helpers/application_helper/toolbar/inventory_group_center.rb:14 -msgid "Refresh Relationships and Power states" -msgstr "Actualiser les relations et les états d'alimentation" +msgid "Edit Selected Item" +msgstr "Modifier l'élément sélectionné" -#: -#: ../app/helpers/application_helper/toolbar/configuration_manager_provider_center.rb:16 -#: ../app/helpers/application_helper/toolbar/inventory_group_center.rb:16 -msgid "Refresh relationships for all items related to this Provider?" -msgstr "Actualiser les relations pour tous les éléments associés à ce fournisseur ?" +msgid "Edit Selected Method" +msgstr "Modifier la méthode sélectionnée" -#: -#: ../app/helpers/application_helper/toolbar/configuration_manager_provider_center.rb:21 -#: ../app/helpers/application_helper/toolbar/inventory_group_center.rb:21 -msgid "Edit this Provider" -msgstr "Modifier ce fournisseur" +msgid "Edit Selected Middleware Providers" +msgstr "Modifier les fournisseurs de middleware sélectionnés" -#: -#: ../app/helpers/application_helper/toolbar/configuration_manager_provider_center.rb:27 -#: ../app/helpers/application_helper/toolbar/inventory_group_center.rb:27 -msgid "Remove this Provider" -msgstr "Supprimer ce fournisseur" +msgid "Edit Selected Namespace" +msgstr "Modifier l'espace de nommage sélectionné" -#: -#: ../app/helpers/application_helper/toolbar/configuration_manager_provider_center.rb:30 -#: ../app/helpers/application_helper/toolbar/inventory_group_center.rb:30 -msgid "" -"Warning: The selected Provider and ALL of their components will be permanently" -" removed!" -msgstr "" -"Avertissement : les fournisseurs sélectionnés et TOUS leurs composants seront " -"définitivement supprimés" +msgid "Edit Selected Network Provider" +msgstr "Modifier un fournisseur réseau sélectionné" -#: -#: ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:13 -msgid "Refresh relationships for all items related to the selected items" -msgstr "" -"Actualiser les relations pour tous les éléments associés aux éléments sélectio" -"nnés" +msgid "Edit Selected PXE Servers" +msgstr "Modifier les serveurs PXE sélectionnés" -#: -#: ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:17 -msgid "Refresh relationships for all items related to the selected items?" -msgstr "" -"Actualiser les relations pour tous les éléments associés aux éléments sélectio" -"nnés ?" +msgid "Edit Selected Service" +msgstr "Modifier le service sélectionné" -#: -#: ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:24 -msgid "Add a new Provider" -msgstr "Ajouter un nouveau Fournisseur" +msgid "Edit Selected Storage Manager" +msgstr "Modifier le gestionnaire de stockage sélectionné" -#: -#: ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:31 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:41 -#: ../app/helpers/application_helper/toolbar/tenants_center.rb:12 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:42 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:51 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:32 -msgid "Select a single item to edit" -msgstr "Sélectionner un élément à modifier" +msgid "Edit Selected Template" +msgstr "Modifier le modèle sélectionné" + +msgid "Edit Selected Volume" +msgstr "Modifier le volume sélectionné" -#: -#: ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:32 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:42 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:43 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:52 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:33 msgid "Edit Selected item" msgstr "Modifier l'élément sélectionné" -#: -#: ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:40 -#: ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:32 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:57 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:59 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:67 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:48 -msgid "Remove selected items" -msgstr "Supprimer les éléments sélectionnés" +msgid "Edit Selected items" +msgstr "Modifier les éléments sélectionnés" -#: -#: ../app/helpers/application_helper/toolbar/configuration_manager_providers_center.rb:44 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:60 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:62 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:70 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:51 -msgid "" -"Warning: The selected items and ALL of their components will be permanently re" -"moved!" -msgstr "" -"Avertissement : les éléments sélectionnés et TOUS leurs composants seront défi" -"nitivement supprimés" +msgid "Edit Sequence of Dashboards" +msgstr "Modifier la séquence de tableaux de bord" -#: ../app/helpers/application_helper/toolbar/configuration_script_center.rb:12 -#: ../app/helpers/application_helper/toolbar/x_configuration_script_center.rb:12 -msgid "Create Service Dialog from this Job Template" -msgstr "Créer une boîte de dialogue de service à partir de ce modèle de tâche" +msgid "Edit Sequence of User Groups for LDAP Look Up" +msgstr "Modifier la séquence de groupes d'utilisateurs pour la recherche LDAP" -#: ../app/helpers/application_helper/toolbar/configuration_script_center.rb:26 -#: ../app/helpers/application_helper/toolbar/configuration_scripts/policy_mixin.rb:12 -#: ../app/helpers/application_helper/toolbar/x_configuration_script_center.rb:26 -msgid "Edit Tags for this Job Template" -msgstr "Modifier les balises pour ce modèle de tâche" +msgid "Edit Sequence of User Groups was cancelled by the user" +msgstr "La modification de la séquence de groupes d'utilisateurs a été annulée par l'utilisateur" -#: -#: ../app/helpers/application_helper/toolbar/configured_system/lifecycle_mixin.rb:7 -#: ../app/helpers/application_helper/toolbar/host_center.rb:105 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:153 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:82 -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:119 -#: ../app/helpers/application_helper/toolbar/orchestration_stack_center.rb:38 -#: ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:45 -#: ../app/helpers/application_helper/toolbar/service_center.rb:59 -#: ../app/helpers/application_helper/toolbar/services_center.rb:64 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:87 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:115 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:126 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:142 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:107 -#: ../app/helpers/application_helper/toolbar/x_foreman_configured_system_center.rb:6 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:81 -#: ../app/helpers/application_helper/toolbar/x_provider_foreman_foreman_configured_system_center.rb:6 -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:58 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:106 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:84 -#: ../app/views/orchestration_stack/_main.html.haml:9 -#: ../app/views/service/_svcs_show.html.haml:9 -#: ../app/views/vm_cloud/_main.html.haml:9 -#: ../app/views/vm_common/_main.html.haml:9 -msgid "Lifecycle" -msgstr "Cycle de vie" +msgid "Edit Storage Manager '%{name}'" +msgstr "Modifier le gestionnaire de stockage '%{name}'" -#: -#: ../app/helpers/application_helper/toolbar/configured_system/lifecycle_mixin.rb:14 -msgid "Provision Configured Systems" -msgstr "Mettre en service les systèmes configurés" +msgid "Edit Storage Rate Assignments" +msgstr "Modifier les affectations de taux de stockage" -#: -#: ../app/helpers/application_helper/toolbar/configured_system/policy_mixin.rb:13 -#: ../app/helpers/application_helper/toolbar/x_ansible_tower_configured_system_center.rb:13 -#: ../app/helpers/application_helper/toolbar/x_foreman_configured_system_center.rb:30 -#: ../app/helpers/application_helper/toolbar/x_provider_foreman_ansible_tower_configured_system_center.rb:13 -#: ../app/helpers/application_helper/toolbar/x_provider_foreman_foreman_configured_system_center.rb:30 -msgid "Edit Tags for this Configured System" -msgstr "Modifier les balises pour ce système configuré" +msgid "Edit Subnet \"%{name}\"" +msgstr "Modifier le sous-réseau \"%{name}\"" -#: ../app/helpers/application_helper/toolbar/container_build_center.rb:12 -#: ../app/helpers/application_helper/toolbar/container_image_center.rb:12 -#: ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:12 -#: ../app/helpers/application_helper/toolbar/host_center.rb:19 -msgid "Perform SmartState Analysis on this item" -msgstr "Effectuer une analyse SmartState sur cet élément" +msgid "Edit Tags" +msgstr "Modifier les balises" -#: ../app/helpers/application_helper/toolbar/container_build_center.rb:13 -#: ../app/helpers/application_helper/toolbar/container_builds_center.rb:13 -#: ../app/helpers/application_helper/toolbar/container_image_center.rb:13 -#: ../app/helpers/application_helper/toolbar/container_images_center.rb:13 -#: ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:13 -#: ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:15 -#: ../app/helpers/application_helper/toolbar/host_center.rb:20 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:22 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:20 -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:19 -#: ../app/helpers/application_helper/toolbar/storage_center.rb:13 -#: ../app/helpers/application_helper/toolbar/storages_center.rb:15 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:24 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:24 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:24 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:24 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:20 -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:19 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:20 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:19 -msgid "Perform SmartState Analysis" -msgstr "Effectuer une analyse SmartState" +msgid "Edit Tags for %{vm_or_template}" +msgstr "Modifier les balises pour %{vm_or_template}" -#: ../app/helpers/application_helper/toolbar/container_build_center.rb:14 -#: ../app/helpers/application_helper/toolbar/container_image_center.rb:14 -#: ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:14 -#: ../app/helpers/application_helper/toolbar/host_center.rb:21 -msgid "Perform SmartState Analysis on this item?" -msgstr "Effectuer une analyse SmartState sur cet élément ?" +msgid "Edit Tags for Container" +msgstr "" -#: ../app/helpers/application_helper/toolbar/container_build_center.rb:28 -msgid "Edit Tags for this Container Build" -msgstr "Modifier les balises pour cette compilation de conteneur" +msgid "Edit Tags for Datastore" +msgstr "Modifier les balises pour le magasin de données" -#: ../app/helpers/application_helper/toolbar/container_builds_center.rb:12 -#: ../app/helpers/application_helper/toolbar/container_images_center.rb:12 -#: ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:14 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:21 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:23 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:23 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:23 -msgid "Perform SmartState Analysis on the selected items" -msgstr "Effectuer une analyse SmartState sur les éléments sélectionnés" +msgid "Edit Tags for Service" +msgstr "" -#: ../app/helpers/application_helper/toolbar/container_builds_center.rb:15 -#: ../app/helpers/application_helper/toolbar/container_images_center.rb:15 -#: ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:17 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:24 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:26 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:26 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:26 -msgid "Perform SmartState Analysis on the selected items?" -msgstr "Effectuer une analyse SmartState sur les éléments sélectionnés ?" +msgid "Edit Tags for selected Containers" +msgstr "Modifier les balises pour les conteneurs sélectionnés" -#: ../app/helpers/application_helper/toolbar/container_builds_center.rb:33 -msgid "Edit Tags for these Container Builds" -msgstr "Modifier les balises pour ces compilations de conteneur" +msgid "Edit Tags for the selected Availability Zones" +msgstr "Modifier les balises pour les zones de disponibilité sélectionnées" -#: ../app/helpers/application_helper/toolbar/container_center.rb:12 -msgid "Show Timelines for this Container" -msgstr "Afficher les chronologies pour ce conteneur" +msgid "Edit Tags for the selected Block Storage Managers" +msgstr "" -#: ../app/helpers/application_helper/toolbar/container_center.rb:20 -msgid "Show Capacity & Utilization data for this Container" -msgstr "Afficher les données de capacité et d'utilisation de ce conteneur" +msgid "Edit Tags for the selected Cloud Networks" +msgstr "Modifier les balises pour les réseaux cloud sélectionnés" -#: ../app/helpers/application_helper/toolbar/container_center.rb:36 -msgid "Edit Tags for this Container" -msgstr "Modifier les balises pour ce conteneur" +msgid "Edit Tags for the selected Cloud Providers" +msgstr "Modifier les balises pour les fournisseurs cloud sélectionnés" -#: ../app/helpers/application_helper/toolbar/container_group_center.rb:12 -msgid "Show Timelines for this Group" -msgstr "Afficher les chronologies pour ce groupe" +msgid "Edit Tags for the selected Cloud Subnets" +msgstr "Modifier les balises pour les sous-réseaux cloud sélectionnés" -#: ../app/helpers/application_helper/toolbar/container_group_center.rb:21 -msgid "Show Capacity & Utilization data for this Group" -msgstr "Afficher les données de capacité et d'utilisation de ce groupe" +msgid "Edit Tags for the selected Datastores" +msgstr "Modifier les balises pour les magasins de données sélectionnés" -#: ../app/helpers/application_helper/toolbar/container_group_center.rb:38 -msgid "Edit Tags for this Pod" -msgstr "Modifier les balises pour ce pod" +msgid "Edit Tags for the selected Flavors" +msgstr "Modifier les balises pour les gabarits sélectionnés" -#: ../app/helpers/application_helper/toolbar/container_group_center.rb:43 -msgid "Manage Policies for this Pod" -msgstr "Gérer les stratégies pour ce pod" +msgid "Edit Tags for the selected Floating IPs" +msgstr "Modifier les balises pour les adresses IP flottantes sélectionnées" -#: ../app/helpers/application_helper/toolbar/container_group_center.rb:44 -#: ../app/helpers/application_helper/toolbar/container_groups_center.rb:23 -#: ../app/helpers/application_helper/toolbar/container_image_center.rb:34 -#: ../app/helpers/application_helper/toolbar/container_images_center.rb:42 -#: ../app/helpers/application_helper/toolbar/container_node_center.rb:44 -#: ../app/helpers/application_helper/toolbar/container_nodes_center.rb:23 -#: ../app/helpers/application_helper/toolbar/container_replicator_center.rb:44 -#: ../app/helpers/application_helper/toolbar/container_replicators_center.rb:23 -#: ../app/helpers/application_helper/toolbar/ems_block_storages_center.rb:44 -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:54 -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:65 -#: ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:36 -#: ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:54 -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:86 -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:73 -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:68 -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:65 -#: ../app/helpers/application_helper/toolbar/ems_network_center.rb:48 -#: ../app/helpers/application_helper/toolbar/ems_networks_center.rb:60 -#: ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:44 -#: ../app/helpers/application_helper/toolbar/ems_storage_center.rb:42 -#: ../app/helpers/application_helper/toolbar/ems_storages_center.rb:44 -#: ../app/helpers/application_helper/toolbar/host_center.rb:79 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:116 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:56 -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:70 -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:95 -#: ../app/helpers/application_helper/toolbar/resource_pool_center.rb:30 -#: ../app/helpers/application_helper/toolbar/resource_pools_center.rb:36 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:114 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:79 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:90 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:106 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:71 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:55 -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:82 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:80 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:60 -msgid "Manage Policies" -msgstr "Gérer les stratégies" +msgid "Edit Tags for the selected Host Aggregates" +msgstr "Modifier les balises pour les agrégats d'hôtes sélectionnés" -#: ../app/helpers/application_helper/toolbar/container_group_center.rb:48 -msgid "Check Compliance of the last known configuration for this Pod" -msgstr "Vérifier la conformité de la dernière configuration connue pour ce pod" +msgid "Edit Tags for the selected Infrastructure Providers" +msgstr "Modifier les balises pour les fournisseurs d'infrastructure sélectionnés" -#: ../app/helpers/application_helper/toolbar/container_group_center.rb:49 -#: ../app/helpers/application_helper/toolbar/container_groups_center.rb:31 -#: ../app/helpers/application_helper/toolbar/container_image_center.rb:39 -#: ../app/helpers/application_helper/toolbar/container_images_center.rb:50 -#: ../app/helpers/application_helper/toolbar/container_node_center.rb:49 -#: ../app/helpers/application_helper/toolbar/container_nodes_center.rb:31 -#: ../app/helpers/application_helper/toolbar/container_replicator_center.rb:49 -#: ../app/helpers/application_helper/toolbar/container_replicators_center.rb:31 -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:64 -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:81 -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:91 -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:81 -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:78 -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:81 -#: ../app/helpers/application_helper/toolbar/host_center.rb:90 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:132 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:73 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:168 -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:94 -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:110 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:138 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:103 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:114 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:130 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:95 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:72 -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:97 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:97 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:75 -msgid "Check Compliance of Last Known Configuration" -msgstr "Vérifier la conformité de la dernière configuration connue" +msgid "Edit Tags for the selected Jobs" +msgstr "Modifier les balises pour les tâches sélectionnées" -#: ../app/helpers/application_helper/toolbar/container_group_center.rb:50 -#: ../app/helpers/application_helper/toolbar/container_image_center.rb:40 -#: ../app/helpers/application_helper/toolbar/container_node_center.rb:50 -#: ../app/helpers/application_helper/toolbar/container_replicator_center.rb:50 -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:65 -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:92 -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:79 -#: ../app/helpers/application_helper/toolbar/host_center.rb:91 -msgid "Initiate Check Compliance of the last known configuration for this item?" -msgstr "" -"Lancer la vérification de conformité de la dernière configuration connue pour " -"cet élément ?" +msgid "Edit Tags for the selected Load Balancers" +msgstr "Modifier les balises pour les équilibreurs de charge sélectionnés" -#: ../app/helpers/application_helper/toolbar/container_groups_center.rb:14 -msgid "Edit Tags for these Pods" -msgstr "Modifier les balises pour ces pods" +msgid "Edit Tags for the selected Network Elements" +msgstr "Modifier les balises pour les éléments réseau sélectionnés" -#: ../app/helpers/application_helper/toolbar/container_groups_center.rb:22 -msgid "Manage Policies for these Pods" -msgstr "Gérer les stratégies pour ces pods" +msgid "Edit Tags for the selected Network Ports" +msgstr "Modifier les balises pour les ports de réseaux sélectionnés" -#: ../app/helpers/application_helper/toolbar/container_groups_center.rb:30 -msgid "Check Compliance of the last known configuration for these Pods" -msgstr "Vérifier la conformité de la dernière configuration connue pour ces pods" +msgid "Edit Tags for the selected Network Providers" +msgstr "Modifier les balises pour les fournisseurs de réseaux sélectionnés" -#: ../app/helpers/application_helper/toolbar/container_groups_center.rb:33 -#: ../app/helpers/application_helper/toolbar/container_images_center.rb:52 -#: ../app/helpers/application_helper/toolbar/container_nodes_center.rb:33 -#: ../app/helpers/application_helper/toolbar/container_replicators_center.rb:33 -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:83 -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:83 -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:83 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:134 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:140 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:116 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:132 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:97 -msgid "" -"Initiate Check Compliance of the last known configuration for the selected ite" -"ms?" +msgid "Edit Tags for the selected Network Routers" +msgstr "Modifier les balises pour les routers de réseaux sélectionnés" + +msgid "Edit Tags for the selected Object Storage Managers" msgstr "" -"Lancer la vérification de conformité de la dernière configuration connue pour " -"les éléments sélectionnés ?" -#: ../app/helpers/application_helper/toolbar/container_image_center.rb:28 -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:91 -msgid "Edit Tags for this Image" -msgstr "Modifier les balises pour cette image" +msgid "Edit Tags for the selected Orchestration Stacks" +msgstr "Modifier les balises pour les piles d'orchestration sélectionnées" -#: ../app/helpers/application_helper/toolbar/container_image_center.rb:33 -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:81 -msgid "Manage Policies for this Image" -msgstr "Gérer les stratégies pour cette image" +msgid "Edit Tags for the selected Physical Infrastructure Providers" +msgstr "" -#: ../app/helpers/application_helper/toolbar/container_image_center.rb:38 -#: ../app/helpers/application_helper/toolbar/host_center.rb:89 -msgid "Check Compliance of the last known configuration for this item" -msgstr "Vérifier la conformité de la dernière configuration connue pour cet élément" +msgid "Edit Tags for the selected Resource Pools" +msgstr "Modifier les balises pour les pools de ressources sélectionnés" -#: -#: ../app/helpers/application_helper/toolbar/container_image_registries_center.rb:14 -msgid "Edit Tags for these Image Registries" -msgstr "Modifier les balises pour ces registres d'images" +msgid "Edit Tags for the selected Security Groups" +msgstr "Modifier les balises pour les groupes de sécurité sélectionnés" -#: -#: ../app/helpers/application_helper/toolbar/container_image_registry_center.rb:12 -msgid "Edit Tags for this Image Registry" -msgstr "Modifier les balises pour ce registre d'images" +msgid "Edit Tags for the selected Storage Managers" +msgstr "" -#: ../app/helpers/application_helper/toolbar/container_images_center.rb:33 -#: ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:61 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:123 msgid "Edit Tags for the selected items" msgstr "Modifier les balises pour les éléments sélectionnés" -#: ../app/helpers/application_helper/toolbar/container_images_center.rb:41 -msgid "Manage Policies for this Container Image" -msgstr "Gérer les stratégies pour cette image de conteneur" +msgid "Edit Tags for these Container Builds" +msgstr "Modifier les balises pour ces compilations de conteneur" -#: ../app/helpers/application_helper/toolbar/container_images_center.rb:49 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:131 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:137 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:113 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:129 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:94 -msgid "Check Compliance of the last known configuration for the selected items" +msgid "Edit Tags for these Container Templates" +msgstr "Modifier les balises pour ces modèles de conteneurs" + +msgid "Edit Tags for these Containers Providers" +msgstr "Modifier les balises pour ces fournisseurs de conteneurs" + +msgid "Edit Tags for these Datawarehouse Providers" msgstr "" -"Vérifier la conformité de la dernière configuration connue pour les éléments s" -"électionnés" -#: ../app/helpers/application_helper/toolbar/container_node_center.rb:12 -msgid "Show Timelines for this Node" -msgstr "Afficher les chronologies pour ce nœud" +msgid "Edit Tags for these Image Registries" +msgstr "Modifier les balises pour ces registres d'images" -#: ../app/helpers/application_helper/toolbar/container_node_center.rb:21 -msgid "Show Capacity & Utilization data for this Node" -msgstr "Afficher les données de capacité et d'utilisation de ce nœud" +msgid "Edit Tags for these Middleware Datasources" +msgstr "Modifier les balises pour ces sources de données de middleware" -#: ../app/helpers/application_helper/toolbar/container_node_center.rb:38 -#: ../app/helpers/application_helper/toolbar/container_project_center.rb:38 -msgid "Edit Tags for this Node" -msgstr "Modifier les balises pour ce nœud" +msgid "Edit Tags for these Middleware Deployments" +msgstr "Modifier les balises pour ces déploiements de middleware" -#: ../app/helpers/application_helper/toolbar/container_node_center.rb:43 -msgid "Manage Policies for this Node" -msgstr "Gérer les stratégies pour ce nœud" +msgid "Edit Tags for these Middleware Domains" +msgstr "Modifier les balises pour ces domaines de middleware" -#: ../app/helpers/application_helper/toolbar/container_node_center.rb:48 -msgid "Check Compliance of the last known configuration for this Node" -msgstr "Vérifier la conformité de la dernière configuration connue pour ce nœud" +msgid "Edit Tags for these Middleware Providers" +msgstr "Modifier les balises pour ces fournisseurs de middleware" + +msgid "Edit Tags for these Middleware Server Groups" +msgstr "Modifier les balises pour ces groupes de serveurs de middleware" -#: ../app/helpers/application_helper/toolbar/container_node_center.rb:58 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:263 -msgid "" -"Open a new browser window with Cockpit for this VM. This requires that Cockpi" -"t is pre-configured on the VM." -msgstr "" -"Ouvrez un nouvel onglet de navigateur avec Cockpit pour cette MV. Pour cela, C" -"ockpit doit être préconfiguré sur la MV." +msgid "Edit Tags for these Middleware Servers" +msgstr "Modifier les balises pour ces serveurs de middleware" -#: ../app/helpers/application_helper/toolbar/container_node_center.rb:59 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:264 -msgid "Web Console" -msgstr "" +msgid "Edit Tags for these Middleware mesagings" +msgstr "Modifier les balises pour ces messageries de middleware" -#: ../app/helpers/application_helper/toolbar/container_nodes_center.rb:14 msgid "Edit Tags for these Nodes" msgstr "Modifier les balises pour ces nœuds" -#: ../app/helpers/application_helper/toolbar/container_nodes_center.rb:22 -msgid "Manage Policies for these Nodes" -msgstr "Gérer les stratégies pour ces nœuds" +msgid "Edit Tags for these Pods" +msgstr "Modifier les balises pour ces pods" -#: ../app/helpers/application_helper/toolbar/container_nodes_center.rb:30 -msgid "Check Compliance of the last known configuration for these Nodes" -msgstr "Vérifier la conformité de la dernière configuration connue pour ces nœuds" +msgid "Edit Tags for these Replicators" +msgstr "Modifier les balises pour ces réplicateurs" -#: ../app/helpers/application_helper/toolbar/container_project_center.rb:12 -msgid "Show Timelines for this Project" -msgstr "Afficher les chronologies pour ce projet" +msgid "Edit Tags for these Routes" +msgstr "Modifier les balises pour ces itinéraires" -#: ../app/helpers/application_helper/toolbar/container_project_center.rb:21 -msgid "Show Capacity & Utilization data for this Project" -msgstr "Afficher les données de capacité et d'utilisation de ce projet" +msgid "Edit Tags for these Services" +msgstr "Modifier les balises pour ces services" -#: ../app/helpers/application_helper/toolbar/container_projects_center.rb:14 -#: ../app/helpers/application_helper/toolbar/container_service_center.rb:29 -#: ../app/helpers/application_helper/toolbar/service_center.rb:49 -msgid "Edit Tags for this Service" -msgstr "Modifier les balises pour ce service" +msgid "Edit Tags for this Availability Zone" +msgstr "Modifier les balises pour cette zone de disponibilité" -#: ../app/helpers/application_helper/toolbar/container_replicator_center.rb:12 -msgid "Show Timelines for this Replicator" -msgstr "Afficher les chronologies pour ce réplicateur" +msgid "Edit Tags for this Catalog Item" +msgstr "Modifier les balises pour cet élément de catalogue" -#: ../app/helpers/application_helper/toolbar/container_replicator_center.rb:21 -msgid "Show Capacity & Utilization data for this Replicator" -msgstr "Afficher les données de capacité et d'utilisation de ce réplicateur" +msgid "Edit Tags for this Cloud Network" +msgstr "Modifier les balises de ce réseau cloud" -#: ../app/helpers/application_helper/toolbar/container_replicator_center.rb:38 -msgid "Edit Tags for this Replicator" -msgstr "Modifier les balises pour ce réplicateur" +msgid "Edit Tags for this Cloud Provider" +msgstr "Modifier les balises pour ce fournisseur cloud" -#: ../app/helpers/application_helper/toolbar/container_replicator_center.rb:43 -msgid "Manage Policies for this Replicator" -msgstr "Gérer les stratégies pour ce réplicateur" +msgid "Edit Tags for this Cloud Subnet" +msgstr "Modifier les balises de ce sous-réseau cloud" -#: ../app/helpers/application_helper/toolbar/container_replicator_center.rb:48 -msgid "Check Compliance of the last known configuration for this Replicator" -msgstr "Vérifier la conformité de la dernière configuration connue pour ce réplicateur" +msgid "Edit Tags for this Configured System" +msgstr "Modifier les balises pour ce système configuré" -#: ../app/helpers/application_helper/toolbar/container_replicators_center.rb:14 -msgid "Edit Tags for these Replicators" -msgstr "Modifier les balises pour ces réplicateurs" +msgid "Edit Tags for this Container" +msgstr "Modifier les balises pour ce conteneur" -#: ../app/helpers/application_helper/toolbar/container_replicators_center.rb:22 -msgid "Manage Policies for these Replicators" -msgstr "Gérer les stratégies pour ces réplicateurs" +msgid "Edit Tags for this Container Build" +msgstr "Modifier les balises pour cette compilation de conteneur" -#: ../app/helpers/application_helper/toolbar/container_replicators_center.rb:30 -msgid "Check Compliance of the last known configuration for these Replicators" -msgstr "" -"Vérifier la conformité de la dernière configuration connue pour ces réplicateu" -"rs" +msgid "Edit Tags for this Container Template" +msgstr "Modifier les balises pour ce modèle de conteneur" -#: ../app/helpers/application_helper/toolbar/container_route_center.rb:12 -msgid "Edit Tags for this Route" -msgstr "Modifier les balises pour cet itinéraire" +msgid "Edit Tags for this Containers Provider" +msgstr "Modifier les balises pour ce fournisseur de conteneurs" -#: ../app/helpers/application_helper/toolbar/container_routes_center.rb:14 -msgid "Edit Tags for these Routes" -msgstr "Modifier les balises pour ces itinéraires" +msgid "Edit Tags for this Datastore" +msgstr "Modifier les balises pour ce magasin de données" -#: ../app/helpers/application_helper/toolbar/container_service_center.rb:12 -msgid "Show Capacity & Utilization data for this Service" -msgstr "Afficher les données de capacité et d'utilisation de ce service" +msgid "Edit Tags for this Datawarehouse Provider" +msgstr "" -#: ../app/helpers/application_helper/toolbar/container_services_center.rb:14 -msgid "Edit Tags for these Services" -msgstr "Modifier les balises pour ces services" +msgid "Edit Tags for this Distributed Switch" +msgstr "Modifier les balises pour ce commutateur distribué" -#: ../app/helpers/application_helper/toolbar/container_template_center.rb:12 -msgid "Edit Tags for this Container Template" -msgstr "Modifier les balises pour ce modèle de conteneur" +msgid "Edit Tags for this Flavor" +msgstr "Modifier les balises pour ce gabarit" -#: ../app/helpers/application_helper/toolbar/container_templates_center.rb:14 -msgid "Edit Tags for these Container Templates" -msgstr "Modifier les balises pour ces modèles de conteneurs" +msgid "Edit Tags for this Floating IP" +msgstr "Modifier les balises pour cette adresse IP flottante" -#: ../app/helpers/application_helper/toolbar/containers_center.rb:14 -msgid "Edit Tags for selected Containers" -msgstr "Modifier les balises pour les conteneurs sélectionnés" +msgid "Edit Tags for this Host Aggregate" +msgstr "Modifier les balises de cet Agrégat de machines" -#: -#: ../app/helpers/application_helper/toolbar/customization_template_center.rb:12 -msgid "Copy this Customization Template" -msgstr "Copier ce modèle de personnalisation" +msgid "Edit Tags for this Image" +msgstr "Modifier les balises pour cette image" -#: -#: ../app/helpers/application_helper/toolbar/customization_template_center.rb:18 -msgid "Edit this Customization Template" -msgstr "Modifier ce modèle de personnalisation" +msgid "Edit Tags for this Image Registry" +msgstr "Modifier les balises pour ce registre d'images" -#: -#: ../app/helpers/application_helper/toolbar/customization_template_center.rb:24 -msgid "Remove this Customization Template" -msgstr "Supprimer ce modèle de personnalisation" +msgid "Edit Tags for this Infrastructure Provider" +msgstr "Modifier les balises pour ce fournisseur d'infrastructure" -#: -#: ../app/helpers/application_helper/toolbar/customization_template_center.rb:27 -msgid "Warning: This Customization Template will be permanently removed!" -msgstr "Avertissement : ce modèle de personnalisation sera définitivement supprimé" +msgid "Edit Tags for this Instance" +msgstr "Modifier les balises pour cette instance" -#: -#: ../app/helpers/application_helper/toolbar/customization_templates_center.rb:12 -msgid "Add a New Customization Template" -msgstr "Ajouter un Nouveau Modèle de Personnalisation" +msgid "Edit Tags for this Job" +msgstr "Modifier les balises pour cette tâche" -#: -#: ../app/helpers/application_helper/toolbar/customization_templates_center.rb:18 -msgid "Select a single Customization Templates to copy" -msgstr "Sélectionner un modèle de personnalisation à copier" +msgid "Edit Tags for this Job Template" +msgstr "Modifier les balises pour ce modèle de tâche" -#: -#: ../app/helpers/application_helper/toolbar/customization_templates_center.rb:19 -msgid "Copy Selected Customization Templates" -msgstr "Copier les modèles de personnalisation sélectionnés" +msgid "Edit Tags for this Load Balancer" +msgstr "Modifier les balises pour cet équilibreur de charge" -#: -#: ../app/helpers/application_helper/toolbar/customization_templates_center.rb:27 -msgid "Select a single Customization Templates to edit" -msgstr "Sélectionner un modèle de personnalisation à modifier" +msgid "Edit Tags for this Middleware Datasource" +msgstr "Modifier les balises pour cette source de données de middleware" -#: -#: ../app/helpers/application_helper/toolbar/customization_templates_center.rb:28 -msgid "Edit Selected Customization Templates" -msgstr "Modifier les modèles de personnalisation sélectionnés" +msgid "Edit Tags for this Middleware Deployment" +msgstr "Modifier les balises pour ce déploiement de middleware" -#: -#: ../app/helpers/application_helper/toolbar/customization_templates_center.rb:36 -msgid "Remove selected Customization Templates" -msgstr "Supprimer les modèles de personnalisation sélectionnés" +msgid "Edit Tags for this Middleware Domain" +msgstr "Modifier les balises pour ce domaine de middleware" -#: -#: ../app/helpers/application_helper/toolbar/customization_templates_center.rb:37 -msgid "Remove Customization Templates" -msgstr "Supprimer les modèles de personnalisation" +msgid "Edit Tags for this Middleware Provider" +msgstr "Modifier les balises pour ce fournisseur de middleware" -#: -#: ../app/helpers/application_helper/toolbar/customization_templates_center.rb:39 -msgid "Warning: The selected Customization Templates will be permanently removed!" -msgstr "" -"Avertissement : les modèles de personnalisation sélectionnés seront définitive" -"ment supprimés." +msgid "Edit Tags for this Middleware Server" +msgstr "Modifier les balises pour ce serveur de middleware" -#: ../app/helpers/application_helper/toolbar/dashboard_summary_toggle_view.rb:6 -msgid "Dashboard View" -msgstr "Vue du Tableau de bord" +msgid "Edit Tags for this Middleware Server Group" +msgstr "Modifier les balises pour ce groupe de serveurs de middleware" -#: -#: ../app/helpers/application_helper/toolbar/dashboard_summary_toggle_view.rb:13 -msgid "Summary View" -msgstr "Vue de synthèse" +msgid "Edit Tags for this Middleware messaging" +msgstr "Modifier les balises pour cette messagerie de middleware" -#: -#: ../app/helpers/application_helper/toolbar/dashboard_summary_toggle_view.rb:20 -msgid "Topology View" -msgstr "Vue Topologie" +msgid "Edit Tags for this Network Port" +msgstr "Modifier les balises de ce port de réseau" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:6 -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:6 -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ems_network_center.rb:6 -#: ../app/helpers/application_helper/toolbar/ems_storage_center.rb:6 -#: ../app/helpers/application_helper/toolbar/vmdb_table_center.rb:6 -#: ../app/helpers/application_helper/toolbar/vmdb_tables_center.rb:6 -msgid "Reload Current Display" -msgstr "Recharger l'affichage actuel" +msgid "Edit Tags for this Network Provider" +msgstr "Modifier les balises pour ce fournisseur réseau" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:20 -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:20 -msgid "Delete Server %{server_name} [%{server_id}]" -msgstr "Supprimer le serveur %{server_name} [%{server_id}]" +msgid "Edit Tags for this Network Router" +msgstr "Modifier les balises de ce routeur réseau" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:24 -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:24 -msgid "Do you want to delete Server %{server_name} [%{server_id}]?" -msgstr "Voulez-vous supprimer le serveur %{server_name} [%{server_id}] ?" +msgid "Edit Tags for this Node" +msgstr "Modifier les balises pour ce nœud" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:33 -msgid "" -"Start the %{server_role_description} Role on Server %{server.name} [%{server.i" -"d}]" -msgstr "" -"Lancer le rôle %{server_role_description} sur le serveur %{server.name} [%{ser" -"ver.id}]" +msgid "Edit Tags for this Orchestration Stack" +msgstr "Modifier les balises pour cette pile d'orchestration" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:38 -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:41 -msgid "Start Role" -msgstr "Lance le rôle" +msgid "Edit Tags for this Orchestration Template" +msgstr "Modifier les balises pour ce modèle d'orchestration" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:40 -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:43 -msgid "" -"Start the %{server_role_description} Role on Server %{server_name} [%{server_i" -"d}]?" +msgid "Edit Tags for this Physical Infrastructure Provider" msgstr "" -"Lancer le rôle %{server_role_description} sur le serveur %{server_name} [%{ser" -"ver_id}] ?" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:51 -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:55 -msgid "" -"Suspend the %{server_role_description} Role on Server %{server_name} [%{server" -"_id}]" -msgstr "" -"Suspendre le rôle %{server_role_description} sur le serveur %{server_name} [%{" -"server_id}]" +msgid "Edit Tags for this Pod" +msgstr "Modifier les balises pour ce pod" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:56 -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:61 -msgid "Suspend Role" -msgstr "Suspendre le rôle" +msgid "Edit Tags for this Replicator" +msgstr "Modifier les balises pour ce réplicateur" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:58 -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:63 -msgid "" -"Suspend the %{server_role_description} Role on Server %{server_name} [%{server" -"_id}]?" -msgstr "" -"Suspendre le rôle %{server_role_description} sur le serveur %{server_name} [%{" -"server_id}] ?" +msgid "Edit Tags for this Resource Pool" +msgstr "Modifier les balises pour ce pool de ressources" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:69 -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:75 -msgid "" -"Demote Server %{server_name} [%{server_id}] to secondary for the %{server_role" -"_description} Role" -msgstr "" -"Rétrograder le serveur %{server_name} [%{server_id}] au rang de serveur second" -"aire pour le rôle %{server_role_description}" +msgid "Edit Tags for this Route" +msgstr "Modifier les balises pour cet itinéraire" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:74 -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:81 -msgid "Demote Server" -msgstr "Rétrograder le serveur" +msgid "Edit Tags for this Security Group" +msgstr "Modifier les balises pour ce groupe de sécurité" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:75 -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:82 -msgid "" -"Do you want to demote this Server to secondary? This will leave no primary Se" -"rver for this Role." -msgstr "" -"Voulez-vous rétrograder ce serveur au rang de serveur secondaire ? Il ne reste" -"ra donc plus de serveur principal pour ce rôle." +msgid "Edit Tags for this Service" +msgstr "Modifier les balises pour ce service" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:81 -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:89 -msgid "" -"Promote Server %{server_name} [%{server_id}] to primary for the %{server_role_" -"description} Role" +msgid "Edit Tags for this Storage Manager" msgstr "" -"Promouvoir le serveur %{server_name} [%{server_id}] au rang de serveur princip" -"al pour le rôle %{server_role_description}" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:86 -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:95 -msgid "Promote Server" -msgstr "Promouvoir le serveur" +msgid "Edit Tags for this Template" +msgstr "Modifier les balises pour ce modèle" -#: ../app/helpers/application_helper/toolbar/diagnostics_region_center.rb:87 -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:96 -msgid "" -"Do you want to promote this Server to primary? This will replace any existing" -" primary Server for this Role." -msgstr "" -"Voulez-vous promouvoir ce serveur au rang de serveur principal ? Cela aura pou" -"r effet de remplacer tout serveur principal existant pour ce rôle." +msgid "Edit Tags for this VM" +msgstr "Modifier les balises pour cette machine virtuelle" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:11 -msgid "Reload current workers display" -msgstr "Recharger l'affichage des workers actuel" +msgid "Edit Tags for this Volume" +msgstr "Modifier les balises pour ce volume" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:17 -msgid "Reload the Audit Log Display" -msgstr "Recharger l'affichage du journal d'audit" +msgid "Edit Tags for this Volumes" +msgstr "Modifier les balises pour ces volumes" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:22 -msgid "Download the Entire Audit Log File" -msgstr "Télécharger l'intégralité du fichier journal d'audit" +msgid "Edit Tags for this item" +msgstr "Modifier les balises pour cet élément" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:28 -msgid "Reload the EVM Log Display" -msgstr "Recharger l'affichage du journal EVM" +msgid "Edit User Group Sequence" +msgstr "Modifier la séquence des groupes d'utilisateurs" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:33 -msgid "Download the Entire EVM Log File" -msgstr "Télécharger l'intégralité du fichier journal EVM" +msgid "Edit VM '%{name}''" +msgstr "Modifier la machine virtuelle '%{name}''" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:40 -#: ../app/helpers/application_helper/toolbar/logs_center.rb:7 -msgid "Reload the %{log_type} Log Display" -msgstr "Recharger l'affichage du journal de %{log_type}" +msgid "Edit Volume" +msgstr "Modifier le volume" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:47 -#: ../app/helpers/application_helper/toolbar/logs_center.rb:14 -msgid "Download the Entire %{log_type} Log File" -msgstr "Télécharger l'intégralité du fichier journal %{log_type}" +msgid "Edit aborted! %{product} does not support the browser's back button or access from multiple tabs or windows of the same browser. Please close any duplicate sessions before proceeding." +msgstr "Modification annulée ! %{product} ne prend pas en charge le bouton Précédent du navigateur, ni l'accès à partir de plusieurs onglets ou fenêtres du même navigateur. Veuillez fermer les sessions en double avant de continuer." -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:56 -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:104 -#: ../app/views/ops/_all_tabs.html.haml:141 -#: ../app/views/ops/_all_tabs.html.haml:172 -msgid "Collect Logs" -msgstr "Collecter les journaux" +msgid "Edit assignments for this Alert Profile" +msgstr "Modifier des affectations pour ce profil d'alerte" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:57 -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:105 -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:25 -#: ../app/views/miq_ae_class/_instance_form.html.haml:97 -msgid "Collect" -msgstr "Collecter" +msgid "Edit of %{model} \"%{name}\" failed: Task start failed: ID [%{id}]" +msgstr "La modification de %{model} \"%{name}\" a échoué : échec de démarrage de la tâche : ID [%{id}]" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:62 -msgid "Collect the current logs from the selected Server" -msgstr "Collecter les journaux en cours dans le serveur sélectionné" +msgid "Edit of %{model} \"%{name}\" was cancelled by the user" +msgstr "La modification de %{model} \"%{name}\" a été annulée par l'utilisateur" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:63 -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:111 -msgid "Collect current logs" -msgstr "Collecter les journaux en cours" +msgid "Edit of %{model} Request \"%{name}\" was cancelled by the user" +msgstr "La modification de la demande %{model} \"%{name}\" a été annulée par l'utilisateur" + +msgid "Edit of %{name} was cancelled by the user" +msgstr "La modification de \"%{name}\" a été annulée par l'utilisateur" + +msgid "Edit of %{provider} was cancelled by the user" +msgstr "" + +msgid "Edit of '%{description}' Button" +msgstr "Modification du bouton '%{description}'" + +msgid "Edit of Button" +msgstr "Modification du bouton" + +msgid "Edit of Catalog Bundle \"%{name}\" was cancelled by the user" +msgstr "La modification du regroupement de catalogues \"%{name}\" a été annulée par l'utilisateur" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:69 -msgid "Collect all logs from the selected Server" -msgstr "Collecter tous les journaux dans le serveur sélectionné" +msgid "Edit of Catalog Item %s was cancelled by the user" +msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:70 -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:118 -msgid "Collect all logs" -msgstr "Collecter tous les journaux" +msgid "Edit of Class Schema Sequence '%{name}'" +msgstr "Modification de la séquence des schémas de classe '%{name}'" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:78 -msgid "Edit the Log Depot settings for the selected Server" -msgstr "Modifier les paramètres du dépôt de journaux pour le serveur sélectionné" +msgid "Edit of Class Schema Sequence was cancelled by the user" +msgstr "La modification de la séquence des schémas de classe a été annulée par l'utilisateur" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:89 -msgid "Restart server" -msgstr "Redémarrer un serveur" +msgid "Edit of Cloud Network \"%{name}\" was cancelled by the user" +msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:91 -msgid "Warning: Server will be restarted, do you want to continue?" -msgstr "Avertissement : le serveur va redémarrer, voulez-vous continuer?" +msgid "Edit of Cloud Tenant \"%{name}\" was cancelled by the user" +msgstr "" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:95 -#: ../app/helpers/application_helper/toolbar_builder.rb:626 -msgid "Select a worker to restart" -msgstr "Sélectionner un worker à relancer" +msgid "Edit of Customer Information was cancelled" +msgstr "La modification des informations sur le client a été annulée" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:96 -msgid "Restart selected worker" -msgstr "Redémarrer le worker sélectionné" +msgid "Edit of Dashboard \"%{name}\" was cancelled by the user" +msgstr "La modification du tableau de bord \"%{name}\" a été annulée par l'utilisateur" -#: ../app/helpers/application_helper/toolbar/diagnostics_server_center.rb:97 -msgid "Warning: Selected node will be restarted, do you want to continue?" -msgstr "Avertissement : le nœud sélectionné va redémarrer, voulez-vous continuer ?" +msgid "Edit of Dashboard Sequence was cancelled by the user" +msgstr "La modification de la séquence des tableaux de bord a été annulée par l'utilisateur" -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:35 -msgid "" -"Start the %{server_role_description} Role on Server %{server_name} [%{server_i" -"d}]" +msgid "Edit of Floating IP \"%{name}\" was cancelled by the user" msgstr "" -"Lancer le rôle %{server_role_description} sur le serveur %{server_name} [%{ser" -"ver_id}]" -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:110 -msgid "Collect the current logs from the selected Zone" -msgstr "Collecter les journaux en cours dans la zone sélectionnée" +msgid "Edit of Orchestration Template \"%{name}\" was cancelled by the user" +msgstr "La modification du modèle d'orchestration \"%{name}\" a été annulée par l'utilisateur" -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:117 -msgid "Collect all logs from the selected Zone" -msgstr "Collecter tous les journaux dans la zone sélectionnée" +msgid "Edit of Priority Order was cancelled by the user" +msgstr "La modification de l'ordre de priorité a été annulée par l'utilisateur" -#: ../app/helpers/application_helper/toolbar/diagnostics_zone_center.rb:126 -msgid "Edit the Log Depot settings for the selected Zone" -msgstr "Modifier les paramètres du dépôt de journaux pour la zone sélectionnée" +msgid "Edit of Report Menu for role \"%{role}\" was cancelled by the user" +msgstr "La modification du menu de rapport pour le rôle \"%{role}\" a été annulée par l'utilisateur" -#: ../app/helpers/application_helper/toolbar/dialog_center.rb:12 -#: ../app/helpers/application_helper/toolbar/miq_dialog_center.rb:12 -msgid "Edit this Dialog" -msgstr "Modifier cette boîte de dialogue" +msgid "Edit of Router \"%{name}\" was cancelled by the user" +msgstr "La modification du router \"%{name}\" a été annulée par l'utilisateur" -#: ../app/helpers/application_helper/toolbar/dialog_center.rb:19 -#: ../app/helpers/application_helper/toolbar/miq_dialog_center.rb:18 -msgid "Copy this Dialog" -msgstr "Copier cette boîte de dialogue" +msgid "Edit of Security Group \"%{name}\" was cancelled by the user" +msgstr "" -#: ../app/helpers/application_helper/toolbar/dialog_center.rb:26 -#: ../app/helpers/application_helper/toolbar/miq_dialog_center.rb:24 -msgid "Remove this Dialog" -msgstr "Supprimer cette boîte de dialogue" +msgid "Edit of Service \"%{name}\" was cancelled by the user" +msgstr "La modification du service \"%{name}\" a été annulée par l'utilisateur" -#: ../app/helpers/application_helper/toolbar/dialog_center.rb:27 -#: ../app/helpers/application_helper/toolbar/miq_dialog_center.rb:25 -msgid "Remove Dialog" -msgstr "Supprimer la boîte de dialogue" +msgid "Edit of Subnet \"%{name}\" was cancelled by the user" +msgstr "La modification du sous-réseau \"%{name}\" a été annulée par l'utilisateur" -#: ../app/helpers/application_helper/toolbar/dialog_center.rb:29 -msgid "Warning: This Dialog will be permanently removed!" -msgstr "Avertissement : cette boîte de dialogue sera définitivement supprimée" +msgid "Edit of credentials for selected %{models} was cancelled by the user" +msgstr "La modification des informations d'identification pour les %{models} sélectionnés a été annulée par l'utilisateur" -#: ../app/helpers/application_helper/toolbar/dialog_center.rb:45 -msgid "Add a new Tab to this Dialog" -msgstr "Ajouter un nouvel Onglet à ce Dialogue" +msgid "Edit of schema for %{model} \"%{name}\" was cancelled by the user" +msgstr "La modification du schéma %{model} \"%{name}\" a été annulée par l'utilisateur" -#: ../app/helpers/application_helper/toolbar/dialog_center.rb:52 -msgid "Add a new Box to this Tab" -msgstr "Ajouter une nouvelle zone à cet onglet" +msgid "Edit policy assignments was cancelled by the user" +msgstr "La modification des affectations de stratégie a été annulée par l'utilisateur" -#: ../app/helpers/application_helper/toolbar/dialog_center.rb:59 -msgid "Add a new Element to this Box" -msgstr "Ajouter un nouvel Elément à cette Boîte" +msgid "Edit selected Cloud Volume" +msgstr "Modifier le volume cloud sélectionné" -#: ../app/helpers/application_helper/toolbar/dialog_center.rb:71 -msgid "Discard this new %{dialog_type}" -msgstr "Ignorer ce nouveau %{dialog_type}" +msgid "Edit selected Orchestration Template" +msgstr "Modifier le modèle d'orchestration sélectionné" -#: ../app/helpers/application_helper/toolbar/dialog_center.rb:82 -msgid "Delete selected %{dialog_resource}" -msgstr "Supprimer la %{dialog_resource} sélectionnée" +msgid "Edit selected Router" +msgstr "Éditer le router sélectionné" -#: ../app/helpers/application_helper/toolbar/dialogs_center.rb:12 -#: ../app/helpers/application_helper/toolbar/miq_dialogs_center.rb:12 -msgid "Add a new Dialog" -msgstr "Ajouter une nouvelle boîte de Dialogue" +msgid "Edit selected Schema" +msgstr "Modifier le schéma sélectionné" -#: ../app/helpers/application_helper/toolbar/dialogs_center.rb:18 -#: ../app/helpers/application_helper/toolbar/miq_dialogs_center.rb:17 -msgid "Edit the selected Dialog" -msgstr "Modifier la boîte de dialogue sélectionnée" +msgid "Edit selected Time Profile" +msgstr "Modifier le profil temporel sélectionné" -#: ../app/helpers/application_helper/toolbar/dialogs_center.rb:27 -#: ../app/helpers/application_helper/toolbar/miq_dialogs_center.rb:26 -msgid "Copy the selected Dialog to a new Dialog" -msgstr "Copier la boîte de Dialogue sélectionnée vers une nouvelle boîte de Dialogue" +msgid "Edit sequence" +msgstr "Modifier la séquence" -#: ../app/helpers/application_helper/toolbar/dialogs_center.rb:36 -#: ../app/helpers/application_helper/toolbar/miq_dialogs_center.rb:34 -msgid "Remove selected Dialogs" -msgstr "Suppprimer les boîtes de dialogue sélectionnées" +msgid "Edit sequence of Class Schema" +msgstr "Modifier la séquence du schéma de classe" -#: ../app/helpers/application_helper/toolbar/dialogs_center.rb:39 -msgid "" -"Warning: The selected Dialog will be permanently removed from the Virtual Mana" -"gement Database!" -msgstr "" -"Avertissement : la boîte de dialogue sélectionnée sera définitivement supprimé" -"e de la base de données Virtual Management." +msgid "Edit tags for the selected Items" +msgstr "Modifier les balises pour les éléments sélectionnés" -#: ../app/helpers/application_helper/toolbar/drifts_center.rb:6 -msgid "Select up to 10 timestamps for Drift Analysis" -msgstr "Sélectionner jusqu'à dix horodatages pour l'analyse de la dérive" +msgid "Edit tags for the selected Templates" +msgstr "Modifier les balises pour les modèles sélectionnés" -#: ../app/helpers/application_helper/toolbar/ems_block_storages_center.rb:12 -msgid "" -"Refresh relationships and power states for all items related to the selected B" -"lock Storage Managers" -msgstr "" - -#: ../app/helpers/application_helper/toolbar/ems_block_storages_center.rb:13 -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:18 -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:13 -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:18 -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:13 -#: ../app/helpers/application_helper/toolbar/ems_network_center.rb:18 -#: ../app/helpers/application_helper/toolbar/ems_networks_center.rb:13 -#: ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:13 -#: ../app/helpers/application_helper/toolbar/ems_storage_center.rb:18 -#: ../app/helpers/application_helper/toolbar/ems_storages_center.rb:13 -#: ../app/helpers/application_helper/toolbar/host_center.rb:13 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:13 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:13 -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:15 -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:13 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:15 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:15 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:15 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:15 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:15 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:13 -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:13 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:13 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:13 -msgid "Refresh Relationships and Power States" -msgstr "Actualiser les relations et les états d'alimentation" +msgid "Edit tags for the selected items" +msgstr "Modifier les balises pour les éléments sélectionnés" -#: ../app/helpers/application_helper/toolbar/ems_block_storages_center.rb:15 -msgid "" -"Refresh relationships and power states for all items related to the selected B" -"lock Storage Managers?" -msgstr "" +msgid "Edit tags for this Cloud Object" +msgstr "Modifier les balises pour cet objet cloud" -#: ../app/helpers/application_helper/toolbar/ems_block_storages_center.rb:22 -msgid "Remove selected Block Storage Managers" -msgstr "" +msgid "Edit tags for this Cloud Object Store" +msgstr "Modifier les balises pour ce support de sauvegarde des objets cloud" -#: ../app/helpers/application_helper/toolbar/ems_block_storages_center.rb:23 -msgid "Remove Block Storage Managers" -msgstr "" +msgid "Edit tags for this Cloud Tenant" +msgstr "Modifier les balises pour ce locataire cloud" -#: ../app/helpers/application_helper/toolbar/ems_block_storages_center.rb:25 -msgid "" -"Warning: The selected Block Storage Managers and ALL of their components will " -"be permanently removed!" -msgstr "" +msgid "Edit tags for this Cloud Volume" +msgstr "Modifier les balises pour ce volume cloud" -#: ../app/helpers/application_helper/toolbar/ems_block_storages_center.rb:43 -msgid "Manage Policies for the selected Block Storage Managers" -msgstr "" +msgid "Edit tags for this Cloud Volume Backup" +msgstr "Modifier les balises pour cette sauvegarde de cliché cloud" -#: ../app/helpers/application_helper/toolbar/ems_block_storages_center.rb:51 -msgid "Edit Tags for the selected Block Storage Managers" -msgstr "" +msgid "Edit tags for this Cloud Volume Snapshot" +msgstr "Modifier les balises pour cet cliché de volume cloud" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:17 -msgid "" -"Refresh relationships and power states for all items related to this Cloud Pro" -"vider" -msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés à ce fournisseur de cloud" +msgid "Edit tags for this Key Pair" +msgstr "Modifier les balises pour cette paire de clés" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:19 -msgid "" -"Refresh relationships and power states for all items related to this Cloud Pro" -"vider?" -msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés à ce fournisseur de cloud ?" +msgid "Edit the Log Depot settings for the selected Server" +msgstr "Modifier les paramètres du dépôt de journaux pour le serveur sélectionné" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:24 -msgid "Edit this Cloud Provider" -msgstr "Modifier ce fournisseur cloud" +msgid "Edit the Log Depot settings for the selected Zone" +msgstr "Modifier les paramètres du dépôt de journaux pour la zone sélectionnée" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:30 -msgid "Remove this Cloud Provider" -msgstr "Suppprimer ce fournisseur de cloud" +msgid "Edit the Record Filter" +msgstr "Modifier le filtre d'enregistrements" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:33 -msgid "" -"Warning: This Cloud Provider and ALL of its components will be permanently rem" -"oved!" -msgstr "" -"Avertissement : ce fournisseur de cloud et TOUS ses composants seront définiti" -"vement supprimés" +msgid "Edit the original Request" +msgstr "Modifier la demande initiale" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:38 -msgid "Add a new Arbitration Profile to this Cloud Provider" -msgstr "Ajouter un nouveau profil d'arbitrage à ce fournisseur cloud" +msgid "Edit the selected Analysis Profiles" +msgstr "Modifier les profils d'analyse sélectionnés" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:53 -msgid "Manage Policies for this Cloud Provider" -msgstr "Gérer les stratégies pour ce fournisseur cloud" +msgid "Edit the selected Chargeback Rate" +msgstr "Modifier le taux de rejet de débit sélectionné" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:58 -msgid "Edit Tags for this Cloud Provider" -msgstr "Modifier les balises pour ce fournisseur cloud" +msgid "Edit the selected Dialog" +msgstr "Modifier la boîte de dialogue sélectionnée" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:63 -msgid "Check Compliance of the last known configuration for this Cloud Manager" -msgstr "" +msgid "Edit the selected Group" +msgstr "Modifier le groupe sélectionné" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:79 -msgid "Show Timelines for this Cloud Provider" -msgstr "Afficher les chronologies pour ce fournisseur de cloud" +msgid "Edit the selected LDAP Region" +msgstr "Modifier la région LDAP sélectionnée" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:90 -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:93 -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:100 -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:93 -#: ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:67 -#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:70 -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:104 -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:93 -#: ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:66 -#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:69 -#: ../app/views/ops/_all_tabs.html.haml:27 -#: ../app/views/ops/_settings_authentication_tab.html.haml:7 -#: ../app/views/ops/_settings_server_tab.html.haml:476 -msgid "Authentication" -msgstr "Authentification" +msgid "Edit the selected Role" +msgstr "Modifier le rôle sélectionné" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:96 -msgid "Re-check Authentication Status for this Cloud Provider" -msgstr "Revérifier le statut d'authentification pour ce fournisseur de cloud" +msgid "Edit the selected Schedule" +msgstr "Modifier le planning sélectiionné" -#: ../app/helpers/application_helper/toolbar/ems_cloud_center.rb:97 -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:102 -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:107 -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:102 -#: ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:74 -#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:79 -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:111 -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:102 -#: ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:73 -#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:78 -msgid "Re-check Authentication Status" -msgstr "Revérifier le statut d'authentification" +msgid "Edit the selected System Image Type" +msgstr "Modifier le type d'image système sélectionné" -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:12 -msgid "" -"Refresh relationships and power states for all items related to the selected C" -"loud Providers" -msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés aux fournisseurs de cloud sélectionnés" +msgid "Edit the selected User" +msgstr "Modifier l'utilisateur sélectionné" -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:15 -msgid "" -"Refresh relationships and power states for all items related to the selected C" -"loud Providers?" -msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés aux fournisseurs de cloud sélectionnés ?" +msgid "Edit the selected item" +msgstr "Modifier l'élément sélectionné" -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:21 -msgid "Discover Cloud Providers" -msgstr "Détecter les fournisseurs cloud" +msgid "Edit this Action" +msgstr "Modifier cette action" -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:29 -msgid "Add a New Cloud Provider" -msgstr "Ajouter un nouveau fournisseur cloud" +msgid "Edit this Alert" +msgstr "Modifier cette alerte" -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:35 -msgid "Select a single Cloud Provider to edit" -msgstr "Sélectionner un fournisseur de cloud à modifier" +msgid "Edit this Alert Profile" +msgstr "Modifier ce profil d'alerte" -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:36 -msgid "Edit Selected Cloud Provider" -msgstr "Modifier le fournisseur cloud sélectionné" +msgid "Edit this Analysis Profile" +msgstr "Modifier ce profil d'analyse" -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:43 -msgid "Remove selected Cloud Providers" -msgstr "Supprimer les fournisseurs de cloud sélectionnés" +msgid "Edit this Button" +msgstr "Modifier ce bouton" -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:44 -msgid "Remove Cloud Providers" -msgstr "Suppprimer les fournisseurs de cloud" +msgid "Edit this Button Group" +msgstr "Modifier ce groupe de boutons" -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:46 -msgid "" -"Warning: The selected Cloud Providers and ALL related components will be perma" -"nently removed!" -msgstr "" -"Avertissement : les fournisseurs de cloud sélectionnées et TOUS les composants" -" associés seront définitivement supprimés." +msgid "Edit this Chargeback Rate" +msgstr "Modifier ce taux de rejet de débit" -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:64 -msgid "Manage Policies for the selected Cloud Providers" -msgstr "Gérer les stratégies pour les fournisseurs de cloud sélectionnés" +msgid "Edit this Class" +msgstr "Modifier cette classe" -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:72 -msgid "Edit Tags for the selected Cloud Providers" -msgstr "Modifier les balises pour les fournisseurs cloud sélectionnés" +msgid "Edit this Cloud Network" +msgstr "Modifier ce réseau cloud" -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:80 -msgid "Check Compliance of the last known configuration for these Cloud Managers" -msgstr "" +msgid "Edit this Cloud Provider" +msgstr "Modifier ce fournisseur cloud" -#: ../app/helpers/application_helper/toolbar/ems_clouds_center.rb:101 -msgid "Re-check Authentication Status for the selected Cloud Providers" -msgstr "" -"Revérifier le statut d'authentification pour les fournisseurs de cloud sélecti" -"onnés" +msgid "Edit this Cloud Subnet" +msgstr "Modifier ce sous-réseau cloud" -#: ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:18 -#: ../app/helpers/application_helper/toolbar/host_center.rb:61 -msgid "Remove this item" -msgstr "Supprimer cet élément" +msgid "Edit this Cloud Volume" +msgstr "Modifier ce volume cloud" -#: ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:19 -#: ../app/helpers/application_helper/toolbar/host_center.rb:62 -msgid "Remove item" -msgstr "Supprimer l'élément" +msgid "Edit this Condition" +msgstr "Modifier cette condition" -#: ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:21 -msgid "Warning: This item and ALL of its components will be permanently removed!" -msgstr "" -"Avertissement : cet élément et TOUS ses composants seront définitivement suppr" -"imés" +msgid "Edit this Containers Provider" +msgstr "Modifier ce fournisseur de conteneurs" -#: ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:35 -#: ../app/helpers/application_helper/toolbar/host_center.rb:78 -msgid "Manage Policies for this item" -msgstr "Gérer les stratégies pour cet élément" +msgid "Edit this Customization Template" +msgstr "Modifier ce modèle de personnalisation" + +msgid "Edit this Dashboard" +msgstr "Modifier ce tableau de bord" + +msgid "Edit this Datawarehouse Provider" +msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:40 -#: ../app/helpers/application_helper/toolbar/host_center.rb:84 -msgid "Edit Tags for this item" -msgstr "Modifier les balises pour cet élément" +msgid "Edit this Dialog" +msgstr "Modifier cette boîte de dialogue" -#: ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:55 -#: ../app/helpers/application_helper/toolbar/host_center.rb:126 -msgid "Show Capacity & Utilization data for this item" -msgstr "Afficher les données de capacité et d'utilisation de cet élément" +msgid "Edit this Domain" +msgstr "Modifier ce domaine" -#: ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:62 -#: ../app/helpers/application_helper/toolbar/host_center.rb:133 -msgid "Show Timelines for this item" -msgstr "Afficher les chronologies pour cet élément" +msgid "Edit this Expression" +msgstr "Modifier cette expression" -#: ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:23 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:30 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:32 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:33 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:42 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:23 -msgid "Select two or more items to compare" -msgstr "Sélectionner plusieurs éléments à comparer" +msgid "Edit this Generic Object Definition" +msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:24 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:31 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:33 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:34 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:43 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:24 -msgid "Compare Selected items" -msgstr "Comparer les Éléments sélectionnés" +msgid "Edit this Group" +msgstr "Modifier ce groupe" -#: ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:35 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:97 -msgid "" -"Warning: The selected items and ALL of their components will be permanently re" -"moved!?" -msgstr "" -"Avertissement : les éléments sélectionnés et TOUS leurs composants seront défi" -"nitivement supprimés" - -#: ../app/helpers/application_helper/toolbar/ems_clusters_center.rb:53 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:115 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:113 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:89 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:105 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:70 -msgid "Manage Policies for the selected items" -msgstr "Gérer les stratégies pour les éléments sélectionnés" +msgid "Edit this ISO Image" +msgstr "Modifier cette image ISO" -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:17 -msgid "Refresh items and relationships related to this Containers Provider" -msgstr "" -"Actualiser les éléments et les relations associées à ce fournisseur de contene" -"urs" +msgid "Edit this Image" +msgstr "Modifier cette image" -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:18 -#: ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:13 -#: ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:13 -msgid "Refresh items and relationships" -msgstr "Actualiser les éléments et les relations" +msgid "Edit this Infrastructure Provider" +msgstr "Modifier ce fournisseur d'infrastructure" -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:19 -msgid "Refresh items and relationships related to this Containers Provider?" -msgstr "" -"Actualiser les éléments et les relations associées à ce fournisseur de contene" -"urs ?" +msgid "Edit this Instance" +msgstr "Modifier cette instance" -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:24 -msgid "Edit this Containers Provider" -msgstr "Modifier ce fournisseur de conteneurs" +msgid "Edit this Item" +msgstr "Modifier cet élément" -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:29 -msgid "Remove this Containers Provider" -msgstr "Supprimer ce fournisseur de conteneurs" +msgid "Edit this LDAP Domain" +msgstr "Modifier ce domaine LDAP" -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:32 -msgid "" -"Warning: This Containers Provider and ALL of its components will be permanentl" -"y removed!" -msgstr "" -"Avertissement : ce fournisseur de conteneurs et TOUS ses composants seront déf" -"initivement supprimés" +msgid "Edit this LDAP Region" +msgstr "Modifier cette région LDAP" -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:46 -msgid "Show Timelines for this Containers Provider" -msgstr "Afficher les chronologies pour ce fournisseur de conteneurs" +msgid "Edit this Method" +msgstr "Modifier cette méthode" -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:54 -msgid "Show Capacity & Utilization data for this Provider" -msgstr "Afficher les données de capacité et d'utilisation de ce fournisseur" +msgid "Edit this Middleware Provider" +msgstr "Modifier ce fournisseur de middleware" -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:62 -msgid "Show Ad hoc Metrics for this Provider" -msgstr "" +msgid "Edit this Namespace" +msgstr "Modifier cet espace de nommage" -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:63 -msgid "Ad hoc Metrics" -msgstr "" +msgid "Edit this Network Provider" +msgstr "Modifier ce fournisseur réseau" -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:80 -msgid "Edit Tags for this Containers Provider" -msgstr "Modifier les balises pour ce fournisseur de conteneurs" +msgid "Edit this Orchestration Template" +msgstr "Modifier ce modèle d'orchestration" -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:85 -msgid "Manage Policies for this Containers Provider" -msgstr "Gérer les stratégies pour ce fournisseur de conteurs" +msgid "Edit this PXE Image" +msgstr "Modifier cette image PXE" -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:90 -msgid "Check Compliance of the last known configuration for this Container Manager" -msgstr "" +msgid "Edit this PXE Server" +msgstr "Modifier ce serveur PXE" -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:106 -msgid "Re-check Authentication Status for this Containers Provider" -msgstr "Revérifier le statut d'authentification pour ce fournisseur de conteneurs" +msgid "Edit this Policy Profile" +msgstr "Modifier ce profil de stratégie" -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:12 -msgid "Refresh Items and Relationships for all Containers Providers" -msgstr "" -"Actualiser les éléments et les relations pour tous les fournisseurs de contene" -"urs" +msgid "Edit this Policy's Condition assignments" +msgstr "Modifier les affectations de conditions de cette stratégie" -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:13 -#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:13 -#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:13 -msgid "Refresh Items and Relationships" -msgstr "Actualiser les éléments et les relations" +msgid "Edit this Policy's Event assignments" +msgstr "Modifier les affectations d'événements de cette stratégie" -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:14 -msgid "Refresh Items and Relationships related to Containers Providers?" -msgstr "" -"Actualiser les éléments et les relations associées aux fournisseurs de contene" -"urs ?" +msgid "Edit this Provider" +msgstr "Modifier ce fournisseur" -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:22 -msgid "Add Existing Containers Provider" -msgstr "Ajouter un fournisseur de conteneurs existant" +msgid "Edit this Region" +msgstr "Modifier cette région" -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:28 -#: ../app/views/ems_container/_deploy.html.haml:4 -msgid "Create Containers Provider" -msgstr "Créer un fournisseur de conteneurs" +msgid "Edit this Report" +msgstr "Modifier ce rapport" -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:35 -msgid "Select a single Containers Provider to edit" -msgstr "Sélectionner un fournisseur de conteneurs à modifier" +msgid "Edit this Role" +msgstr "Modifier ce rôle" -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:36 -msgid "Edit Selected Containers Provider" -msgstr "Modifier le fournisseur de conteneurs sélectionné" +msgid "Edit this Router" +msgstr "Modifier ce router" -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:43 -msgid "Remove selected Containers Providers" -msgstr "Supprimer les fournisseurs de conteneurs sélectionnés" +msgid "Edit this Schedule" +msgstr "Modifier ce planning" -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:44 -msgid "Remove Containers Providers" -msgstr "Supprimer les fournisseurs de conteneurs" +msgid "Edit this Scope" +msgstr "Modifier cette étendue" -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:46 -msgid "" -"Warning: The selected Containers Providers and ALL of their components will be" -" permanently removed!" +msgid "Edit this Security Group" msgstr "" -"Avertissement : les fournisseurs de conteneurs sélectionnés et TOUS leurs comp" -"osants seront définitivement supprimés." -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:64 -msgid "Edit Tags for these Containers Providers" -msgstr "Modifier les balises pour ces fournisseurs de conteneurs" +msgid "Edit this Service" +msgstr "Modifier ce service" -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:72 -msgid "Manage Policies for these Containers Providers" -msgstr "Gérer les stratégies pour les fournisseurs de conteurs sélectionnés" +msgid "Edit this Storage Manager" +msgstr "Modifier ce gestionnaire de stockage" -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:80 -msgid "Check Compliance of the last known configuration for these Container Managers" -msgstr "" +msgid "Edit this System Image Type" +msgstr "Modifier ce type d'image système" -#: ../app/helpers/application_helper/toolbar/ems_containers_center.rb:101 -msgid "Re-check Authentication Status for the selected Containers Providers " -msgstr "" -"Revérifier le statut d'authentification pour les fournisseurs de conteneurs sé" -"lectionnés " +msgid "Edit this Template" +msgstr "Modifier ce modèle" -#: ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:12 -msgid "Refresh items and relationships related to this Datawarehouse Provider" -msgstr "" +msgid "Edit this User" +msgstr "Modifier cet utilisateur" -#: ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:14 -msgid "Refresh items and relationships related to this Datawarehouse Provider?" -msgstr "" +msgid "Edit this VM" +msgstr "Modifier cette machine virtuelle" -#: ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:19 -msgid "Edit this Datawarehouse Provider" -msgstr "" +msgid "Edit this Volume" +msgstr "Modifier ce volume" -#: ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:24 -msgid "Remove this Datawarehouse Provider" -msgstr "" +msgid "Edit this Widget" +msgstr "Modifier ce composant d'interface" -#: ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:27 -msgid "" -"Warning: This Datawarehouse Provider and ALL of its components will be permane" -"ntly removed!" -msgstr "" +msgid "Edit this Widget to configure a timer." +msgstr "Modifiez ce composant d'interface pour configurer un minuteur." -#: ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:42 -msgid "Show Timelines for this Datawarehouse Provider" -msgstr "" +msgid "Edit this Windows Image" +msgstr "Modifier cette image Windows" -#: ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:58 -msgid "Edit Tags for this Datawarehouse Provider" -msgstr "" +msgid "Edit this Zone" +msgstr "Modifier cette zone" -#: ../app/helpers/application_helper/toolbar/ems_datawarehouse_center.rb:73 -msgid "Re-check Authentication Status for this Datawarehouse Provider" -msgstr "" +msgid "Edit this item" +msgstr "Modifier cet élément" -#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:12 -msgid "Refresh Items and Relationships for these Datawarehouse Providers" -msgstr "" +msgid "Editing " +msgstr "Modification " -#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:14 -msgid "Refresh Items and Relationships related to these Datawarehouse Providers?" -msgstr "" +msgid "Editing %{model} \"%{name}\"" +msgstr "Modification de %{model} \"%{name}\"" -#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:22 -msgid "Add a New Datawarehouse Provider" -msgstr "" +msgid "Editing %{model} Condition \"%{name}\"" +msgstr "Modification de la condition %{model} \"%{name}\"" -#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:28 -msgid "Select a single Datawarehouse Providers to edit" -msgstr "" +msgid "Editing %{model} Tags for \"%{name}\"" +msgstr "Modification des balises %{model} pour \"%{name}\"" -#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:29 -msgid "Edit Selected Datawarehouse Providers" -msgstr "" +msgid "Editing %{model} for \"%{name}\"" +msgstr "Modification de %{model} pour \"%{name}\"" -#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:36 -msgid "Remove selected Datawarehouse Providers" -msgstr "" +msgid "Editing %{record_name}" +msgstr "Modification de %{record_name}" -#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:37 -msgid "Remove Datawarehouse Providers" -msgstr "" +msgid "Editing %{vm_or_template} \"%{name}\"" +msgstr "Modification de %{vm_or_template} \"%{name}\"" -#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:39 -msgid "" -"Warning: The selected Datawarehouse Providers and ALL of their components will" -" be permanently removed!" -msgstr "" +msgid "Editing Button \"%{name}\"" +msgstr "Modification du bouton \"%{name}\"" -#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:58 -msgid "Edit Tags for these Datawarehouse Providers" -msgstr "" +msgid "Editing Button Group \"%{name}\"" +msgstr "Modification du groupe de boutons \"%{name}\"" -#: ../app/helpers/application_helper/toolbar/ems_datawarehouses_center.rb:78 -msgid "Re-check Authentication Status for the selected Datawarehouse Providers" -msgstr "" +msgid "Editing Catalog Bundle \"%{name}\"" +msgstr "Modification du regroupement de catalogues \"%{name}\"" -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:17 -msgid "" -"Refresh relationships and power states for all items related to this Infrastru" -"cture Provider" -msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés à ce fournisseur d'infrastructure" +msgid "Editing Dashboard \"%{name}\"" +msgstr "Modification du tableau de bord \"%{name}\"" -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:19 -msgid "" -"Refresh relationships and power states for all items related to this Infrastru" -"cture Provider?" -msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés à ce fournisseur d'infrastructure ?" +msgid "Editing Dashboard sequence for \"%{name}\"" +msgstr "Modification de la séquence du tableau de bord pour \"%{name}\"" -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:31 -msgid "Edit this Infrastructure Provider" -msgstr "Modifier ce fournisseur d'infrastructure" +msgid "Editing Log Depot Settings for %{class}: %{display}" +msgstr "Modification des paramètres du dépôt de journaux pour %{class} : %{display}" -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:36 -msgid "Scale this Infrastructure Provider" -msgstr "Moduler ce fournisseur d'infrastructure" +msgid "Editing Log Depot settings" +msgstr "Modification des paramètres du dépôt de journaux" -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:43 -msgid "Scale this Infrastructure Provider down" -msgstr "Réduire ce fournisseur d'infrastructure" +msgid "Editing Sequence of User Groups" +msgstr "Modification de la séquence de groupes d'utilisateurs" -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:50 -msgid "Remove this Infrastructure Provider" -msgstr "Supprimer ce fournisseur d'infrastructure" +msgid "Editing Service \"%{name}\"" +msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:53 -msgid "" -"Warning: This Infrastructure Provider and ALL of its components will be perman" -"ently removed!" +msgid "Editing tag mapping from label \"%{name}\"" +msgstr "Modifier le mappage du libellé \"%{name}\"" + +msgid "Elapsed" msgstr "" -"Avertissement : ce fournisseur d'infrastructure et TOUS ses composants seront " -"définitivement supprimés" -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:67 -msgid "Manage Policies for this Infrastructure Provider" -msgstr "Gérer les stratégies pour ce fournisseur d'infrastructure" +msgid "Element" +msgstr "Élément" -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:72 -msgid "Edit Tags for this Infrastructure Provider" -msgstr "Modifier les balises pour ce fournisseur d'infrastructure" +msgid "Element Information" +msgstr "Informations sur l'élément" -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:77 -msgid "Check Compliance of the last known configuration for this Infra Manager" -msgstr "" +msgid "Element Label is required" +msgstr "Un libellé sur l'élément est obligatoire" -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:93 -msgid "Show Timelines for this Infrastructure Provider" -msgstr "Afficher les chronologies pour ce fournisseur d'infrastructure" +msgid "Element Name must be alphanumeric characters and underscores without spaces" +msgstr "Le nom de l'élément doit être composé de caractères alphanumériques et de soulignement, sans espaces" -#: ../app/helpers/application_helper/toolbar/ems_infra_center.rb:110 -msgid "Re-check Authentication Status for this Infrastructure Provider" -msgstr "Revérifier le statut d'authentification pour ce fournisseur d'infrastructure" +msgid "Element Name must not be 'action' or 'controller'" +msgstr "Le nom de l'élément ne peut pas être 'action' ni 'controller'" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:12 -msgid "" -"Refresh relationships and power states for all items related to the selected I" -"nfrastructure Providers" -msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés aux fournisseurs d'infrastructure sélectionnés" +msgid "Element Type is required" +msgstr "Le type d'élément est obligatoire" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:15 -msgid "" -"Refresh relationships and power states for all items related to the selected I" -"nfrastructure Providers?" -msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés aux fournisseurs d'infrastructure sélectionnés ?" +msgid "Eligible %{type} " +msgstr "%{type} admissible " -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:21 -msgid "Discover Infrastructure Providers" -msgstr "Détecter les fournisseurs d'infrastructure" +msgid "Email Address" +msgstr "Adresse e-mail" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:29 -msgid "Add a New Infrastructure Provider" -msgstr "Ajouter un nouveau fournisseur d'infrastructure" +msgid "Email:" +msgstr "E-mail :" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:35 -msgid "Select a single Infrastructure Provider to edit" -msgstr "Sélectionner un fournisseur d'infrastructure à modifier" +msgid "Enable" +msgstr "Activer" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:36 -msgid "Edit Selected Infrastructure Providers" -msgstr "Modifier les fournisseurs d'infrastructure sélectionnés" +msgid "Enable CDN Channel" +msgstr "Activer le canal CDN" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:43 -msgid "Remove selected Infrastructure Providers" -msgstr "Supprimer les fournisseurs d'infrastructure sélectionnés" +msgid "Enable Collection by %{clusters}" +msgstr "Activer la collecte par %{clusters}" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:44 -msgid "Remove Infrastructure Providers" -msgstr "Supprimer les fournisseurs d'infrastructure" +msgid "Enable Collection by Datastore" +msgstr "Activer la collecte par le magasin de données" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:46 -msgid "" -"Warning: The selected Infrastructure Providers and ALL of their components wil" -"l be permanently removed!" +msgid "Enable DHCP" msgstr "" -"Avertissement : les fournisseurs d'infrastructure sélectionnés et TOUS leurs c" -"omposants seront définitivement supprimés" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:64 -msgid "Manage Policies for the selected Infrastructure Providers" -msgstr "Gérer les stratégies pour les fournisseurs d'infrastructure sélectionnés" +msgid "Enable Deployment" +msgstr "Activer le déploiement" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:72 -msgid "Edit Tags for the selected Infrastructure Providers" -msgstr "Modifier les balises pour les fournisseurs d'infrastructure sélectionnés" +msgid "Enable SAML" +msgstr "Activer SAML" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:80 -msgid "Check Compliance of the last known configuration for these Infra Managers" -msgstr "" +msgid "Enable Single Sign-On" +msgstr "Activer Single Sign-On" -#: ../app/helpers/application_helper/toolbar/ems_infras_center.rb:101 -msgid "Re-check Authentication Status for the selected Infrastructure Providers" -msgstr "" -"Revérifier le statut d'authentification pour les fournisseurs d'infrastructure" -" sélectionnés" +msgid "Enable event monitoring. Used to automatically resync state when changes are performed on VMware vCloud Director directly." +msgstr "Activer la surveillance d'événements. Avait pour habitude de resync les états automatiquement suite à des modifications de VMware vCloud Director directement." -#: ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:12 -msgid "Refresh items and relationships related to this Middleware Provider" -msgstr "" -"Actualiser les éléments et les relations associées à ce fournisseur de middlew" -"are" +msgid "Enable initiated for selected deployment(s)" +msgstr "Activation lancée pour le(s) déploiement(s) sélectionné(s)" -#: ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:14 -msgid "Refresh items and relationships related to this Middleware Provider?" -msgstr "" -"Actualiser les éléments et les relations associées à ce fournisseur de middlew" -"are ?" +msgid "Enable the selected Schedules" +msgstr "Activer les plannings sélectionnés" -#: ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:19 -msgid "Edit this Middleware Provider" -msgstr "Modifier ce fournisseur de middleware" +msgid "Enable these Middleware Deployments" +msgstr "Activer ces déploiements de middleware" -#: ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:24 -msgid "Remove this Middleware Provider" -msgstr "Supprimer ce fournisseur de middleware" +msgid "Enable this Middleware Deployment" +msgstr "Activer ce déploiement de middleware" -#: ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:27 -msgid "" -"Warning: This Middleware Provider and ALL of its components will be permanentl" -"y removed!" -msgstr "" -"Avertissement : ce fournisseur de middleware et TOUS ses composants seront déf" -"initivement supprimés" +msgid "Enabled" +msgstr "Activés" -#: ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:41 -msgid "Show Timelines for this Middleware Provider" -msgstr "Afficher les chronologies pour ce fournisseur de middleware" +msgid "Encryption" +msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:57 -msgid "Edit Tags for this Middleware Provider" -msgstr "Modifier les balises pour ce fournisseur de middleware" +msgid "End Date" +msgstr "Date de Fin" -#: ../app/helpers/application_helper/toolbar/ems_middleware_center.rb:72 -msgid "Re-check Authentication Status for this Middleware Provider" -msgstr "" +msgid "End Date cannot be greater than Start Date" +msgstr "La Date de fin ne peut pas être plus grande que la Date de début" -#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:12 -msgid "Refresh Items and Relationships for these Middleware Providers" -msgstr "Actualiser les éléments et les relations pour ces fournisseurs de middleware" +msgid "End Port" +msgstr "Port de fin" -#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:14 -msgid "Refresh Items and Relationships related to these Middleware Providers?" -msgstr "" -"Actualiser les éléments et les relations associées à ces fournisseurs de middl" -"eware ?" +msgid "Endpoints" +msgstr "Points d'accès" -#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:22 -msgid "Add a New Middleware Provider" -msgstr "Ajouter un nouveau fournisseur de middleware" +msgid "Enforced" +msgstr "Forcé" -#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:28 -msgid "Select a single Middleware Providers to edit" -msgstr "Sélectionner un fournisseur de middleware à modifier" +msgid "Enter Automation Simulation options on the left and press Submit." +msgstr "Indiquez les options Simulation d'automatisation sur la gauche et appuyez sur Envoyer." -#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:29 -msgid "Edit Selected Middleware Providers" -msgstr "Modifier les fournisseurs de middleware sélectionnés" +msgid "Enter Datasource name" +msgstr "Saisir le nom de la source de données" -#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:36 -msgid "Remove selected Middleware Providers" -msgstr "Supprimer les fournisseurs de middleware sélectionnés" +msgid "Enter JDBC Driver Class" +msgstr "Saisir la classe de pilote JDBC" -#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:37 -msgid "Remove Middleware Providers" -msgstr "Supprimer les fournisseurs de middleware" +msgid "Enter JDBC Driver name" +msgstr "Saisir le nom du pilote JDBC" -#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:39 -msgid "" -"Warning: The selected Middleware Providers and ALL of their components will be" -" permanently removed!" -msgstr "" -"Avertissement : les fournisseurs de middleware sélectionnés et TOUS leurs comp" -"osants seront définitivement supprimés" +msgid "Enter JDBC Module name" +msgstr "Saisir le nom du module JDBC" -#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:57 -msgid "Edit Tags for these Middleware Providers" -msgstr "Modifier les balises pour ces fournisseurs de middleware" +msgid "Enter JNDI name" +msgstr "Saisir le nom JNDI" -#: ../app/helpers/application_helper/toolbar/ems_middlewares_center.rb:77 -msgid "Re-check Authentication Status for the selected Middleware Providers" -msgstr "" -"Revérifier le statut d'authentification pour les fournisseurs de middleware sé" -"lectionnés" +msgid "Enter Maintenance Mode" +msgstr "Entrer en Mode Maintenance" -#: ../app/helpers/application_helper/toolbar/ems_network_center.rb:17 -msgid "" -"Refresh relationships and power states for all items related to this Network P" -"rovider" -msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés à ce fournisseur de réseau" +msgid "Enter Major Version" +msgstr "Saisir la version majeure" -#: ../app/helpers/application_helper/toolbar/ems_network_center.rb:19 -msgid "" -"Refresh relationships and power states for all items related to this Network P" -"rovider?" -msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés à ce fournisseur de réseau ?" +msgid "Enter Minor Version" +msgstr "Saisir la version mineure" -#: ../app/helpers/application_helper/toolbar/ems_network_center.rb:24 -msgid "Edit this Network Provider" -msgstr "Modifier ce fournisseur réseau" +msgid "Enter Password" +msgstr "Saisir le mot de passe" -#: ../app/helpers/application_helper/toolbar/ems_network_center.rb:30 -msgid "Remove this Network Provider" -msgstr "Supprimer ce fournisseur de réseau" +msgid "Enter Security Domain" +msgstr "Saisir le domaine de sécurité" -#: ../app/helpers/application_helper/toolbar/ems_network_center.rb:33 -msgid "" -"Warning: This Network Provider and ALL of its components will be permanently r" -"emoved!" -msgstr "" -"Avertissement : ce fournisseur de réseaux et TOUS ses composants seront défini" -"tivement supprimés" +msgid "Enter Standby Mode" +msgstr "Passer en mode veille" -#: ../app/helpers/application_helper/toolbar/ems_network_center.rb:47 -msgid "Manage Policies for this Network Provider" -msgstr "Gérer les stratégies pour ce fournisseur réseau" +msgid "Enter Support Case:" +msgstr "Saisir le dossier d'assistance :" -#: ../app/helpers/application_helper/toolbar/ems_network_center.rb:52 -msgid "Edit Tags for this Network Provider" -msgstr "Modifier les balises pour ce fournisseur réseau" +msgid "Enter URL Manually" +msgstr "Saisir manuellement l'URL" -#: ../app/helpers/application_helper/toolbar/ems_network_center.rb:67 -msgid "Show Timelines for this Network Provider" -msgstr "Afficher les chronologies pour ce fournisseur de réseaux" +msgid "Enter Username" +msgstr "Saisir le nom d'utilisateur" -#: ../app/helpers/application_helper/toolbar/ems_networks_center.rb:12 -msgid "" -"Refresh relationships and power states for all items related to the selected N" -"etwork Providers" +msgid "Enter a comma separated list of IP or DNS names" msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés aux fournisseurs de réseau sélectionnés" -#: ../app/helpers/application_helper/toolbar/ems_networks_center.rb:15 -msgid "" -"Refresh relationships and power states for all items related to the selected N" -"etwork Providers?" -msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés aux fournisseurs de réseau sélectionnés ?" +msgid "Enter a name or IP address" +msgstr "Saisir un nom ou une adresse IP" -#: ../app/helpers/application_helper/toolbar/ems_networks_center.rb:22 -msgid "Add a New Network Provider" -msgstr "Ajouter un nouveau Fournisseur réseau" +msgid "Enter your Red Hat Network Satellite account information" +msgstr "Entrez vos informations de compte Red Hat Network Satellite" -#: ../app/helpers/application_helper/toolbar/ems_networks_center.rb:29 -msgid "Select a single Network Provider to edit" -msgstr "Sélectionner un fournisseur de réseau à modifier" +msgid "Enter your Red Hat account information" +msgstr "Entrez vos informations de compte Red Hat" -#: ../app/helpers/application_helper/toolbar/ems_networks_center.rb:30 -msgid "Edit Selected Network Provider" -msgstr "Modifier un fournisseur réseau sélectionné" +msgid "Enterprise" +msgstr "Enterprise" -#: ../app/helpers/application_helper/toolbar/ems_networks_center.rb:38 -msgid "Remove selected Network Providers" -msgstr "Supprimer les fournisseurs de réseau sélectionnés" +msgid "Entity" +msgstr "Entité" -#: ../app/helpers/application_helper/toolbar/ems_networks_center.rb:39 -msgid "Remove Network Providers" -msgstr "Supprimer les fournisseurs de réseau" +msgid "Entity:" +msgstr "Entité :" -#: ../app/helpers/application_helper/toolbar/ems_networks_center.rb:41 -msgid "" -"Warning: The selected Network Providers and ALL of their components will be pe" -"rmanently removed!" -msgstr "" -"Avertissement : les fournisseurs de réseaux sélectionnés et TOUS leurs composa" -"nts seront définitivement supprimés" +msgid "Entries" +msgstr "Entrées" -#: ../app/helpers/application_helper/toolbar/ems_networks_center.rb:59 -msgid "Manage Policies for the selected Network Providers" -msgstr "Gérer les stratégies pour les fournisseurs réseau sélectionnés" +msgid "Entry Point" +msgstr "Point d'entrée" -#: ../app/helpers/application_helper/toolbar/ems_networks_center.rb:67 -msgid "Edit Tags for the selected Network Providers" -msgstr "Modifier les balises pour les fournisseurs de réseaux sélectionnés" +msgid "Entry Point (NS/Cls/Inst)" +msgstr "Point d'entrée (NS/Cls/Inst)" -#: ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:12 -msgid "" -"Refresh relationships and power states for all items related to the selected O" -"bject Storage Managers" -msgstr "" +msgid "Entry Point must be given." +msgstr "Un Point d'entrée doit être défini" -#: ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:15 -msgid "" -"Refresh relationships and power states for all items related to the selected O" -"bject Storage Managers?" -msgstr "" +msgid "Environment" +msgstr "Environnement" -#: ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:22 -msgid "Remove selected Object Storage Managers" -msgstr "" +msgid "Environment variables" +msgstr "Variables d'environnement" -#: ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:23 -msgid "Remove Object Storage Managers" -msgstr "" +msgid "Error" +msgstr "Erreur" -#: ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:25 -msgid "" -"Warning: The selected Object Storage Managers and ALL of their components will" -" be permanently removed!" +msgid "Error Count" msgstr "" -#: ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:43 -msgid "Manage Policies for the selected Object Storage Managers" -msgstr "" +msgid "Error Generating Report" +msgstr "Erreur lors de la génération du rapport" -#: ../app/helpers/application_helper/toolbar/ems_object_storages_center.rb:51 -msgid "Edit Tags for the selected Object Storage Managers" -msgstr "" +msgid "Error Generating Report for %{report_name}" +msgstr "Erreur lors de la génération du rapport pour %{report_name}" -#: ../app/helpers/application_helper/toolbar/ems_storage_center.rb:17 -msgid "" -"Refresh relationships and power states for all items related to this Storage M" -"anager" -msgstr "" +msgid "Error building timeline %{error_message}" +msgstr "Erreur lors de la création de la chronologie %{error_message}" -#: ../app/helpers/application_helper/toolbar/ems_storage_center.rb:19 -msgid "" -"Refresh relationships and power states for all items related to this Storage M" -"anager?" -msgstr "" +msgid "Error building timeline %{error_message}" +msgstr "Erreur lors de la création de la chronologie %{error_message}" -#: ../app/helpers/application_helper/toolbar/ems_storage_center.rb:24 -#: ../app/helpers/application_helper/toolbar/storage_manager_center.rb:31 -msgid "Remove this Storage Manager" -msgstr "Supprimer ce gestionnaire de stockage" +msgid "Error details: %{message}" +msgstr "Infos erreur: %{message}" -#: ../app/helpers/application_helper/toolbar/ems_storage_center.rb:27 -#: ../app/helpers/application_helper/toolbar/storage_manager_center.rb:34 -msgid "" -"Warning: This Storage Manager and ALL of its components will be permanently re" -"moved!" -msgstr "" -"Avertissement : ce gestionnaire de stockage et TOUS ses composants seront défi" -"nitivement supprimés" +msgid "Error during '%{name} update': %{message}" +msgstr "Erreur pendant la 'mise à jour de %{name}': %{message}" -#: ../app/helpers/application_helper/toolbar/ems_storage_center.rb:41 -msgid "Manage Policies for this Storage Manager" -msgstr "" +msgid "Error during '%{record} copy': %{error_message}" +msgstr "Erreur pendant 'la copie de%{record}': %{error_message}" -#: ../app/helpers/application_helper/toolbar/ems_storage_center.rb:46 -msgid "Edit Tags for this Storage Manager" -msgstr "" +msgid "Error during '%{task} ': %{message}" +msgstr "Erreur pendant '%{task} ': %{message}" -#: ../app/helpers/application_helper/toolbar/ems_storage_center.rb:61 -msgid "Show Timelines for this Storage Manager" -msgstr "" +msgid "Error during '%{task}': %{error_message}" +msgstr "Erreur pendant '%{task}': %{error_message}" -#: ../app/helpers/application_helper/toolbar/ems_storages_center.rb:12 -msgid "" -"Refresh relationships and power states for all items related to the selected S" -"torage Managers" -msgstr "" +msgid "Error during '%{task}': %{message}" +msgstr "Erreur pendant '%{task}' : %{message}" -#: ../app/helpers/application_helper/toolbar/ems_storages_center.rb:15 -msgid "" -"Refresh relationships and power states for all items related to the selected S" -"torage Managers?" -msgstr "" +msgid "Error during '%{title}': %{message}" +msgstr "Erreur pendant '%{title}' : %{message}" -#: ../app/helpers/application_helper/toolbar/ems_storages_center.rb:22 -#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:45 -msgid "Remove selected Storage Managers" -msgstr "Supprimer les gestionnaires de stockage sélectionnés" +msgid "Error during 'Add VM to service': %{message}" +msgstr "Erreur lors de l'opération \"Ajouter la machine virtuelle à un service\" : %{message}" -#: ../app/helpers/application_helper/toolbar/ems_storages_center.rb:23 -#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:46 -msgid "Remove Storage Managers" -msgstr "Supprimer les gestionnaires de stockage" +msgid "Error during 'Alert Profile %{params}': %{message}" +msgstr "Erreur lors de l'opération \"Profil d'alerte %{params}\" : %{message}" + +msgid "Error during 'Appliance restart': %{message}" +msgstr "Erreur lors du redémarrage de l'application : %{message}" + +msgid "Error during 'C & U Gap Collection': %{message}" +msgstr "Erreur lors de l'opération \"Collecte des écarts C & U\" : %{message}" -#: ../app/helpers/application_helper/toolbar/ems_storages_center.rb:25 -#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:48 -msgid "" -"Warning: The selected Storage Managers and ALL of their components will be per" -"manently removed!" -msgstr "" -"Avertissement : les gestionnaires de stockage sélectionnés et TOUS leurs compo" -"sants seront définitivement supprimés" +msgid "Error during 'Catalog Edit': %{error_message}" +msgstr "Erreur lors de la modification du catalogue : %{error_message}" -#: ../app/helpers/application_helper/toolbar/ems_storages_center.rb:43 -msgid "Manage Policies for the selected Storage Managers" -msgstr "" +msgid "Error during 'Clear Connection Broker cache': %{message}" +msgstr "Erreur lors de l'opération \"Effacer le cache du broker de connexion\" : %{message}" -#: ../app/helpers/application_helper/toolbar/ems_storages_center.rb:51 -msgid "Edit Tags for the selected Storage Managers" -msgstr "" +msgid "Error during 'Create Snapshot': %{message}" +msgstr "Erreur lors de la création du cliché : %{message}" -#: ../app/helpers/application_helper/toolbar/flavor_center.rb:12 -msgid "Edit Tags for this Flavor" -msgstr "Modifier les balises pour ce gabarit" +msgid "Error during 'Database Garbage Collection': %{message}" +msgstr "Erreur lors de l'opération de nettoyage de la mémoire de la base de données : %{message}" -#: ../app/helpers/application_helper/toolbar/flavors_center.rb:14 -msgid "Edit Tags for the selected Flavors" -msgstr "Modifier les balises pour les gabarits sélectionnés" +msgid "Error during 'LDAP Group Look Up': %{message}" +msgstr "Erreur lors de l'opération \"Recherche de groupe LDAP\" : %{message}" -#: ../app/helpers/application_helper/toolbar/floating_ip_center.rb:12 -msgid "Edit Tags for this Floating IP" -msgstr "Modifier les balises pour cette adresse IP flottante" +msgid "Error during 'Orchestration Template Copy': %{error_message}" +msgstr "Erreur lors de l'opération \"Copie du modèle d'orchestration\" : %{error_message}" -#: ../app/helpers/application_helper/toolbar/floating_ips_center.rb:14 -msgid "Edit Tags for the selected Floating IPs" -msgstr "Modifier les balises pour les adresses IP flottantes sélectionnées" +msgid "Error during 'Orchestration Template Deletion': %{error_message}" +msgstr "Erreur lors de l'opération \"Suppression du modèle d'orchestration\" : %{error_message}" -#: ../app/helpers/application_helper/toolbar/generic_object_definition.rb:12 -#: ../app/views/generic_object/explorer.html.haml:98 -msgid "Create a new Generic Object Definition" -msgstr "Créer une définition d'objet générique" +msgid "Error during 'Orchestration Template Edit': %{error_message}" +msgstr "Erreur lors de l'opération \"Modification du modèle d'orchestration\" : %{error_message}" -#: ../app/helpers/application_helper/toolbar/gtl_view.rb:6 -#: ../app/helpers/application_helper/toolbar/x_gtl_view.rb:6 -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:72 -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:78 -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:84 -#: ../app/views/configuration/_ui_1.html.haml:114 -msgid "Grid View" -msgstr "Vue en mode Grille" +msgid "Error during 'Orchestration Template creation': %{error_message}" +msgstr "Erreur lors de l'opération \"Création du modèle d'orchestration\" : %{error_message}" -#: ../app/helpers/application_helper/toolbar/gtl_view.rb:14 -#: ../app/helpers/application_helper/toolbar/x_gtl_view.rb:14 -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:73 -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:79 -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:85 -#: ../app/views/configuration/_ui_1.html.haml:114 -msgid "Tile View" -msgstr "Mosaïque" +msgid "Error during 'Policy Import': %{messages}" +msgstr "Erreur lors de l'opération \"Importation de stratégie\" : %{messages}" -#: ../app/helpers/application_helper/toolbar/gtl_view.rb:22 -#: ../app/helpers/application_helper/toolbar/x_gtl_view.rb:22 -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:74 -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:80 -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:86 -#: ../app/views/configuration/_ui_1.html.haml:114 -msgid "List View" -msgstr "Mode Liste" +msgid "Error during 'Policy Profile %{params}': %{messages}" +msgstr "Erreur lors de l'opération \"Profil de stratégie %{params}\" : %{messages}" -#: ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:12 -#: ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:21 -#: ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:30 -msgid "Select this Host Aggregate" -msgstr "Sélectionner cet agrégat de machines" +msgid "Error during 'Provisioning': %{error_message}" +msgstr "Erreur lors du mise en service : %{error_message}" -#: ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:13 -#: ../app/views/host_aggregate/edit.html.haml:7 -msgid "Edit Host Aggregate" -msgstr "Modifier Agrégat de machines" +msgid "Error during 'Rate assignments': %{error_message}" +msgstr "Erreur lors de l'opération \"Affectations de taux\" : %{error_message}" -#: ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:22 -#: ../app/views/host_aggregate/add_host_select.html.haml:7 -msgid "Add Host to Host Aggregate" -msgstr "Ajouter l'Hôte à la Collection d'hôtes" +msgid "Error during 'Remove VM from service': %{message}" +msgstr "Erreur lors de l'opération \"Supprimer la machine virtuelle du service\" : %{message}" -#: ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:31 -#: ../app/views/host_aggregate/remove_host_select.html.haml:7 -msgid "Remove Host from Host Aggregate" -msgstr "Supprimer l'hôte de l'agrégat d'hôtes" +msgid "Error during 'Reset/synchronization process': %{message}" +msgstr "Erreur lors du processus de réinitialisation/synchronisation : %{message}" -#: ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:39 -#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:42 -msgid "Delete selected Host Aggregates" -msgstr "Supprimer les agrégats d'hôtes sélectionnés" +msgid "Error during 'Resource Add': %{error_message}" +msgstr "Erreur pendant 'Ajout de Ressource': %{error_message}" -#: ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:40 -#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:43 -msgid "Delete Host Aggregates" -msgstr "Supprimer les agrégats d'hôtes" +msgid "Error during 'Save Tags': %{error_message}" +msgstr "Erreur pendant 'la Sauvegarde des balises': %{error_message}" -#: ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:42 -#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:45 -msgid "Warning: The selected Host Aggregates will be permanently deleted!" -msgstr "" -"Avertissement : les agrégats d'hôtes sélectionnés seront définitivement suppri" -"més" +msgid "Error during 'Save': %{message}" +msgstr "Erreur pendant 'la Sauvegarde': %{message}" -#: ../app/helpers/application_helper/toolbar/host_aggregate_center.rb:59 -msgid "Edit Tags for this Host Aggregate" -msgstr "Modifier les balises de cet Agrégat de machines" +msgid "Error during 'Service Edit': %{message}" +msgstr "Erreur pendant 'l'Édition du Service': %{message} " -#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:12 -msgid "Add a New Host Aggregate" -msgstr "Ajouter un nouvel Agrégat d'hôtes" +msgid "Error during 'Validate': %{error_message}" +msgstr "Erreur pendant 'la Validation': %{error_message}" -#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:18 -msgid "Select a single Host Aggregate to edit" -msgstr "Sélectionner un agrégat de machines à modifier" +msgid "Error during 'Validate': %{message}" +msgstr "Erreur pendant 'la Validation': %{message}" -#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:19 -msgid "Edit Selected Host Aggregate" -msgstr "Modifier Agrégat de machines sélectionnées" +msgid "Error during 'add': %{error_message}" +msgstr "Erreur lors de l'ajout : %{error_message}" -#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:26 -msgid "Select a single Host Aggregate to Add Host" -msgstr "Sélectionner un agrégat de machines auquel ajouter l'hôte" +msgid "Error during 'add': %{field_name} %{error_name}" +msgstr "Erreur lors de l'ajout : %{field_name} %{error_name}" -#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:27 -msgid "Add Host to Selected Host Aggregate" -msgstr "Ajouter l'Hôte à la Collection d'hôtes sélectionnés" +msgid "Error during 'add': %{message}" +msgstr "Erreur lors de l'ajout : %{message}" -#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:34 -msgid "Select a single Host Aggregate to Remove Host" -msgstr "Sélectionner un agrégat de machines dans lequel supprimer l'hôte" +msgid "Error during 'apply': %{error}" +msgstr "Erreur lors de l'application : %{error}" -#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:35 -msgid "Remove Host from Selected Host Aggregate" -msgstr "Supprimer l'hôte de l'agrégat d'hôtes sélectionné" +msgid "Error during 'edit': %{field_name} %{error_message}" +msgstr "Erreur lors de la modification : %{field_name} %{error_message}" -#: ../app/helpers/application_helper/toolbar/host_aggregates_center.rb:63 -msgid "Edit Tags for the selected Host Aggregates" -msgstr "Modifier les balises pour les agrégats d'hôtes sélectionnés" +msgid "Error during 'save': %{error_message}" +msgstr "Erreur lors de l'enregistrement : %{error_message}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:12 -msgid "Refresh relationships and power states for all items related to this item" -msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés à cet élément" +msgid "Error during 'save': %{message}" +msgstr "Erreur lors de l'enregistrement : %{message}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:14 -msgid "Refresh relationships and power states for all items related to this item?" -msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés à cet élément ?" +msgid "Error during 'upload': %{message}" +msgstr "Erreur lors du téléchargement : %{message}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:26 -msgid "Set this item to manageable state" -msgstr "Définir cet élément à l'état gérable" +msgid "Error during 'workers restart': %{message}" +msgstr "Erreur lors du redémarrage des workers : %{message}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:27 -msgid "Set Node to Manageable" -msgstr " Définir Nœud à Gérable" +msgid "Error during Analysis Affinity save: %{message}" +msgstr "Erreur lors de l'enregistrement de l'affinité d'analyse : %{message}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:28 -msgid "Set this item to manageable?" -msgstr "Définir cet élément à gérable ?" +msgid "Error during Orchestration Template creation: new template content cannot be empty" +msgstr "Erreur lors de la création du modèle d'orchestration : le contenu du nouveau modèle ne peut pas être vide" -#: ../app/helpers/application_helper/toolbar/host_center.rb:33 -msgid "Introspect this item" -msgstr "Introspecter cet élément" +msgid "Error during Orphaned Records delete for user %{id}: %{message}" +msgstr "Erreur lors de la suppression des enregistrements orphelins pour l'utilisateur %{id} : %{message}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:34 -msgid "Introspect Node" -msgstr "Introspecter Nœud" +msgid "Error during Saved Report delete from the %{product} Database" +msgid_plural "Error during Saved Reports delete from the %{product} Database" +msgstr[0] "Erreur lors de la suppression du rapport enregistré de la base de données %{product}" +msgstr[1] "Erreur lors de la suppression des rapports enregistrés de la base de données %{product}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:35 -msgid "Introspect this item?" -msgstr "Introspecter cet élément ?" +msgid "Error during Sysprep \"%{params}\" file upload: %{message}" +msgstr "Erreur lors du téléchargement du fichier \"%{params}\" de Sysprep : %{message}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:40 -msgid "Provide this item" -msgstr "Fournir cet élément ?" +msgid "Error during alarms: %{messages}" +msgstr "Erreur pendant les alarmes : %{messages}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:41 -msgid "Provide Node" -msgstr "Fournir Noeud" +msgid "Error during export: %{error_message}" +msgstr "Erreur lors de l'exportation : %{error_message}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:42 -msgid "Provide this item?" -msgstr "Fournir cet élément ?" +msgid "Error during replication configuration save: %{message}" +msgstr "Erreur lors de l'enregistrement de la configuration de réplication : %{message}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:48 -#: ../app/helpers/application_helper/toolbar/tenant_center.rb:28 -msgid "Edit this item" -msgstr "Modifier cet élément" +msgid "Error during repository fetch: %{message}" +msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:54 -msgid "Toggle maintenance mode for this item" -msgstr "Basculer le mode de maintenance pour cet élément" +msgid "Error during repository setup: %{error_message}" +msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:55 -msgid "Toggle Maintenance Mode" -msgstr "Basculer le mode de maintenance" +msgid "Error during reset: Status [%{status}] Message [%{message}]" +msgstr "Erreur lors de la réinitialisation : État [%{status}] Message [%{message}]" -#: ../app/helpers/application_helper/toolbar/host_center.rb:57 -msgid "Toggle maintenance mode for this item?" -msgstr "Basculer le mode de maintenance pour cet élément ?" +msgid "Error during sending test email: %{class_name}, %{error_message}" +msgstr "Erreur lors de l'envoi de l'e-mail de test : %{class_name}, %{error_message}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:64 -msgid "Warning: This item and ALL of its components will be permanently removed!?" -msgstr "" -"Avertissement : cet élément et TOUS ses composants seront définitivement suppr" -"imés" +msgid "Error during upload: %{messages}" +msgstr "Erreur lors du téléchargement : %{messages}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:95 -msgid "Analyze then Check Compliance for this item" -msgstr "Analyser, puis vérifier la conformité pour cet élément" +msgid "Error during upload: incorrect Dialog format, only service dialogs can be imported" +msgstr "Erreur lors du téléchargement : format de boîte de dialogue incorrect, seules les boîtes de dialogue de service peuvent être importées" -#: ../app/helpers/application_helper/toolbar/host_center.rb:96 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:141 -msgid "Analyze then Check Compliance" -msgstr "Analyser, puis vérifier la conformité" +msgid "Error during upload: one of the DialogField types is not supported" +msgstr "Erreur lors du téléchargement : l'un des types de champ de boîte de dialogue (DialogField) n'est pas pris en charge" -#: ../app/helpers/application_helper/toolbar/host_center.rb:97 -msgid "Analyze then Check Compliance for this item?" -msgstr "Analyser, puis vérifier la conformité pour cet élément ?" +msgid "Error executing register and configure workflows: %{message}" +msgstr "Erreur lors de l'enregistrement et la configuration des workflows : %{message}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:111 -msgid "Provision this item" -msgstr "Mettre en service cet élément" +msgid "Error executing: \"%{task_description}\" %{error_message}" +msgstr "Erreur lors de l'exécution : \"%{task_description}\" %{error_message}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:144 -msgid "Power Functions" -msgstr "Fonctions d'alimentation" +msgid "Error occured when queuing action: %{message}" +msgstr "Une erreur s'est produite lors de la mise en file d'attente de l'action : %{message}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:150 -msgid "Put this item into Maintenance Mode" -msgstr "Mettre cet élément en mode de maintenance" +msgid "Error on line %{line_num}: %{err_txt}" +msgstr "Erreur sur la ligne %{line_num} : %{err_txt}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:153 -msgid "Put this item into Maintenance Mode?" -msgstr "Mettre cet élément en mode de maintenance ?" +msgid "Error requesting data from server" +msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:159 -msgid "Take this item out of Maintenance Mode" -msgstr "Sortir cet élément du mode de maintenance" +msgid "Error retrieving LDAP info: %{error_message}" +msgstr "Erreur lors de la récupération des infos LDAP : %{error_message}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:162 -msgid "Take this item out of Maintenance Mode?" -msgstr "Sortir cet élément du mode de maintenance ?" +msgid "Error saving the excluded tables list: %{message}" +msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:168 -msgid "Shutdown this item to Standby Mode" -msgstr "Mettre en veille cet élément" +msgid "Error text:" +msgstr "Texte d'erreur :" -#: ../app/helpers/application_helper/toolbar/host_center.rb:169 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:180 -msgid "Enter Standby Mode" -msgstr "Passer en mode veille" +msgid "Error when adding a new schedule: %{message}" +msgstr "Erreur lors de l'ajout d'un nouveau planning : %{message}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:171 -msgid "Shutdown this item to Standby Mode?" -msgstr "Mettre en veille cet élément ?" +msgid "Error when adding a new tenant: %{message}" +msgstr "Erreur lors de l'ajout d'un nouveau locataire : %{message}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:177 -msgid "Shutdown this item" -msgstr "Arrêter cet élément" +msgid "Error when creating Service Dialog: %{error_message}" +msgstr "Erreur lors de la création d'une boîte de dialogue de service : %{error_message}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:180 -msgid "Shutdown this item?" -msgstr "Arrêter cet élément ?" +msgid "Error when creating a Service Dialog from Orchestration Template: %{error_message}" +msgstr "Erreur lors de la création d'une boîte de dialogue de service à partir du modèle d'orchestration : %{error_message}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:186 -msgid "Restart this item" -msgstr "Redémarrer cet élément" +msgid "Error when saving new server name: %{message}" +msgstr "Erreur lors de l'enregistrement d'un nouveau nom de serveur : %{message}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:189 -msgid "Restart this item?" -msgstr "Redémarrer cet élément ?" +msgid "Error when saving tenant quota: %{message}" +msgstr "Erreur lors de l'enregistrement du quota de locataires : %{message}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:196 -msgid "Power On this item" -msgstr "Activer cet élément" +msgid "Error while generating report: %{error_message}" +msgstr "Erreur lors de la génération du rapport : %{error_message}" -#: ../app/helpers/application_helper/toolbar/host_center.rb:199 -msgid "Power On this item?" -msgstr "Activer cet élément ?" +msgid "Error: Authentication failed" +msgstr "Erreur : échec de l'authentification" -#: ../app/helpers/application_helper/toolbar/host_center.rb:205 -msgid "Power Off this item" -msgstr "Désactiver cet élément" +msgid "Error: Datastore import file upload expired" +msgstr "Erreur : expiration du téléchargement du fichier d'importation du magasin de données" -#: ../app/helpers/application_helper/toolbar/host_center.rb:208 -msgid "Power Off this item?" -msgstr "Désactiver cet élément ?" +msgid "Error: Datastore import was not successful" +msgstr "" -#: ../app/helpers/application_helper/toolbar/host_center.rb:214 -msgid "Reset this item" -msgstr "Réinitialiser cet élément" +msgid "Error: ImportFileUpload expired" +msgstr "Erreur : expiration du téléchargement du fichier d'importation" -#: ../app/helpers/application_helper/toolbar/host_center.rb:217 -msgid "Reset this item?" -msgstr "Réinitialiser cet élément ?" +msgid "Error: Name is required" +msgstr " Erreur : le nom est obligatoire" -#: ../app/helpers/application_helper/toolbar/host_cloud_service_center.rb:5 -#: ../app/helpers/application_helper/toolbar/host_cloud_services_center.rb:5 -msgid "Cloud Service Configuration" -msgstr "Configuration du service cloud" +msgid "Error: New password and verify password must be the same" +msgstr "Erreur : le nouveau mot de passe et le mot de passe vérifiés doivent correspondre" -#: ../app/helpers/application_helper/toolbar/host_cloud_service_center.rb:11 -#: ../app/helpers/application_helper/toolbar/host_cloud_service_center.rb:12 -#: ../app/helpers/application_helper/toolbar/host_cloud_services_center.rb:11 -#: ../app/helpers/application_helper/toolbar/host_cloud_services_center.rb:12 -msgid "Toggle Scheduling" -msgstr "Basculer l'ordonnancement" +msgid "Error: New password can not be blank" +msgstr "Erreur : le nouveau nom ne peut rester vide." -#: ../app/helpers/application_helper/toolbar/host_cloud_service_center.rb:13 -#: ../app/helpers/application_helper/toolbar/host_cloud_services_center.rb:13 -msgid "Toggle Scheduling for this Cloud Service?" -msgstr "Basculer l'ordonnancement pour ce service cloud ?" +msgid "Error: New password is the same as existing password" +msgstr "Erreur : le nouveau mot de passe est le même que le mot de passe existant" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:12 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:14 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:14 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:14 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:14 -msgid "" -"Refresh relationships and power states for all items related to the selected i" -"tems" -msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés aux éléments sélectionnés" +msgid "Error: Record no longer exists in the database" +msgstr "Erreur : l'enregistrement n'existe plus dans la base de données" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:15 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:17 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:17 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:17 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:17 -msgid "" -"Refresh relationships and power states for all items related to the selected i" -"tems?" -msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés aux éléments sélectionnés ?" +msgid "Error: Widget import file upload expired" +msgstr "Erreur : expiration du téléchargement du fichier d'importation du composant d'interface," -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:45 -msgid "Set selected items to manageable state." -msgstr "Définir les éléments sélectionnés à l'état gérable." +msgid "Error: import failed: %{message}" +msgstr "Erreur : échec d'importation : %{message}" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:46 -msgid "Set Nodes to Manageable" -msgstr " Définir Nœuds à Gérable" +msgid "Error: import processing failed: %{message}" +msgstr "Erreur : échec du traitement de l'importation : %{message}" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:48 -msgid "Set selected items to manageable state?" -msgstr "Définir les éléments sélectionnés à l'état gérable ?" +msgid "Error: the file uploaded contains no widgets" +msgstr "Erreur : le fichier téléchargé ne contient aucun composant d'interface" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:54 -msgid "Introspect selected items" -msgstr "Introspecter Eléments sélectionnés" +msgid "Error: the file uploaded is not of the supported format" +msgstr "Erreur : le format du fichier téléchargé n'est pas pris en charge" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:55 -msgid "Introspect Nodes" -msgstr "Introspecter Noeuds" +msgid "Errors in Management Engine can be caused by:" +msgstr "Les erreurs au niveau du moteur de gestion peuvent être causées par :" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:57 -msgid "Introspect selected items?" -msgstr "Introspecter Éléments sélectionnés" +msgid "Etcd" +msgstr "Etcd" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:63 -msgid "Provide selected items" -msgstr "Fournir Éléments sélectionnés" +msgid "Etcd can only be assigned to Masters or Nodes" +msgstr "Etcd ne peut être affecté qu'à des maîtres ou des nœuds" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:64 -msgid "Provide Nodes" -msgstr "Fournir Nœuds sélectionnés" +msgid "Etcds" +msgstr "Etcd" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:66 -msgid "Provide selected items?" -msgstr "Fournir Éléments sélectionnés ?" +msgid "Evacuate Host" +msgstr "Évacuer l'hôte" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:72 -msgid "Discover items" -msgstr "Détecter les éléments" +msgid "Evacuate Instance" +msgstr "Évacuer l'instance" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:80 -msgid "Add a New item" -msgstr "Ajouter un Nouvel élément" +msgid "Evacuate Instance '%{name}'" +msgstr "Évacuer l'instance '%{name}'" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:86 -msgid "Edit Selected items" -msgstr "Modifier les éléments sélectionnés" +msgid "Evacuate selected Instance" +msgstr "Évacuer l'instance sélectionnée" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:94 -msgid "Remove Selected items" -msgstr "Supprimer les éléments sélectionnés" +msgid "Evacuating %{instance} \"%{name}\"" +msgstr "Évacuation de %{instance} \"%{name}\"" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:95 -msgid "Remove items" -msgstr "Supprimer les éléments" +msgid "Evacuating %{model} \"%{name}\"" +msgstr "Évacuation de %{model} \"%{name}\"" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:140 -msgid "Analyze then Check Compliance for the selected items" -msgstr "Analyser, puis vérifier la conformité pour les éléments sélectionnés" +msgid "Evacuation of %{model} \"%{name}\" was cancelled by the user" +msgstr "L'évacuation de %{model} \"%{name}\" a été annulée par l'utilisateur" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:143 -msgid "Analyze then Check Compliance for the selected items?" -msgstr "Analyser, puis vérifier la conformité pour les éléments sélectionnés ?" +msgid "Event Group" +msgstr "Groupe d'événements" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:159 -msgid "Request to Provision items" -msgstr "Demande de mise en service d'éléments" +msgid "Event Groups" +msgstr "Groupes d'événements" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:160 -msgid "Provision items" -msgstr "Mettre en service les éléments" +msgid "Event Log" +msgid_plural "Event Logs" +msgstr[0] "Log d'événement" +msgstr[1] "Logs d'événement" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:171 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:176 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:205 -msgid "Power Operations" -msgstr "Opérations d'alimentation" +msgid "Event Log Entry" +msgstr "Entrée du journal des événements" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:179 -msgid "Shutdown the selected items to Standby Mode" -msgstr "Mettre en veille les éléments sélectionnés" +msgid "Event Log Items" +msgstr "Éléments du journal des événements" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:182 -msgid "Shutdown the selected items to Standy Mode?" -msgstr "Mettre en veille les éléments sélectionnés ?" +msgid "Event Logs" +msgstr "Journaux des événements" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:191 -msgid "Shutdown the selected items" -msgstr "Arrêter les éléments sélectionnés" +msgid "Event Monitor" +msgstr "Moniteur d'événement" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:195 -msgid "Shutdown the selected items?" -msgstr "Arrêter les éléments sélectionnés ?" +msgid "Event Name" +msgstr "Nom d'événement" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:203 -msgid "Restart the selected items" -msgstr "Redémarrer les éléments sélectionnés" +msgid "Event Selection" +msgstr "Sélection d'événement" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:207 -msgid "Restart the selected items?" -msgstr "Redémarrer les éléments sélectionnés ?" +msgid "Event log name is required" +msgstr "Le nom du journal des événements est obligatoire" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:216 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:234 -msgid "Power On the selected items" -msgstr "Activer les éléments sélectionnés" +msgid "Event name is required" +msgstr "Un nom d'événement est requis" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:220 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:238 -msgid "Power On the selected items?" -msgstr "Activer les éléments sélectionnés ?" +msgid "Event to Check is required" +msgstr "Un événement à vérifier est requis" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:226 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:244 -msgid "Power Off the selected items" -msgstr "Désactiver les éléments sélectionnés" +msgid "Event to position at" +msgstr "Événement à positionner à" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:230 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:248 -msgid "Power Off the selected items?" -msgstr "Désactiver les éléments sélectionnés ?" +msgid "Event:" +msgstr "Événement :" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:236 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:264 -msgid "Reset the selected items" -msgstr "Réinitialiser les éléments sélectionnés" +msgid "Events" +msgstr "Événements" -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:240 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:268 -msgid "Reset the selected items?" -msgstr "Réinitialiser les éléments sélectionnés ?" +msgid "Examples (read only)" +msgstr "Exemples (lecture seule)" -#: ../app/helpers/application_helper/toolbar/infra_networking_center.rb:12 -#: ../app/helpers/application_helper/toolbar/x_infra_networking_switch_center.rb:12 -msgid "Edit Tags for this Distributed Switch" -msgstr "Modifier les balises pour ce commutateur distribué" +msgid "Excluded Tables" +msgstr "" -#: ../app/helpers/application_helper/toolbar/infra_networkings_center.rb:14 -msgid "Edit Tags for the selected Network Elements" -msgstr "Modifier les balises pour les éléments réseau sélectionnés" +msgid "Execute Methods" +msgstr "Méthodes d'exécution" -#: ../app/helpers/application_helper/toolbar/iso_datastore_center.rb:12 -msgid "Remove this ISO Datastore" -msgstr "Supprimer ce magasin de données ISO" +msgid "Existing Driver" +msgstr "" -#: ../app/helpers/application_helper/toolbar/iso_datastore_center.rb:15 -msgid "" -"Warning: This ISO Datastore and ALL of its components will be permanently remo" -"ved!" +msgid "Existing JDBC Driver:" msgstr "" -"Avertissement : ce magasin de données ISO et TOUS ses composants seront défini" -"tivement supprimés" -#: ../app/helpers/application_helper/toolbar/iso_datastore_center.rb:20 -msgid "Refresh Relationships for this ISO Datastore" -msgstr "Actualiser les relations pour ce magasin de données ISO" +msgid "Exists Mode" +msgstr "Mode Existe" -#: ../app/helpers/application_helper/toolbar/iso_datastore_center.rb:21 -#: ../app/helpers/application_helper/toolbar/iso_datastores_center.rb:28 -#: ../app/helpers/application_helper/toolbar/pxe_server_center.rb:26 -#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:36 -msgid "Refresh Relationships" -msgstr "Actualiser les relations" +msgid "Exit Code" +msgstr "Sortir du Code" -#: ../app/helpers/application_helper/toolbar/iso_datastore_center.rb:22 -msgid "Refresh Relationships for this ISO Datastore?" -msgstr "Actualiser les relations pour ce magasin de données ISO ?" +msgid "Exit Maintenance Mode" +msgstr "Sortir du Mode Maintenance" -#: ../app/helpers/application_helper/toolbar/iso_datastores_center.rb:12 -msgid "Add a New ISO Datastore" -msgstr "Ajouter un nouveau magasin de données ISO" +msgid "Expand All" +msgstr "Tout agrandir" -#: ../app/helpers/application_helper/toolbar/iso_datastores_center.rb:17 -msgid "Remove selected ISO Datastores" -msgstr "Supprimer les magasins de données ISO sélectionnés" +msgid "Expanded View" +msgstr "Vue étendue" -#: ../app/helpers/application_helper/toolbar/iso_datastores_center.rb:18 -msgid "Remove ISO Datastores" -msgstr "Supprimer les magasins de données ISO" +msgid "Explorer" +msgstr "Explorer" -#: ../app/helpers/application_helper/toolbar/iso_datastores_center.rb:20 -msgid "" -"Warning: The selected ISO Datastores and ALL of their components will be perma" -"nently removed!" -msgstr "" -"Avertissement : les magasins de données ISO sélectionnés et TOUS leurs composa" -"nts seront définitivement supprimés" +msgid "Export" +msgstr "Exporter" -#: ../app/helpers/application_helper/toolbar/iso_datastores_center.rb:27 -msgid "Refresh Relationships for selected ISO Datastores" -msgstr "Actualiser les relations pour les magasins de données ISO sélectionnés" +msgid "Export Selected %{title}" +msgstr "Exporter le %{title} sélectionné" -#: ../app/helpers/application_helper/toolbar/iso_datastores_center.rb:30 -msgid "Refresh Relationships for selected ISO Datastores?" -msgstr "Actualiser les relations pour les magasins de données ISO sélectionnés ?" +msgid "Export all classes and instances" +msgstr "Exporter toutes les classes et instances" -#: ../app/helpers/application_helper/toolbar/iso_image_center.rb:12 -msgid "Edit this ISO Image" -msgstr "Modifier cette image ISO" +msgid "Export all classes and instances to a file" +msgstr "Exporter toutes les classes et instances dans un fichier" -#: ../app/helpers/application_helper/toolbar/ldap_domain_center.rb:12 -msgid "Edit this LDAP Domain" -msgstr "Modifier ce domaine LDAP" +msgid "Export cancelled by user" +msgstr "Exportation annulée par l'utilisateur" -#: ../app/helpers/application_helper/toolbar/ldap_domain_center.rb:17 -msgid "Delete this LDAP Domain" -msgstr "Supprimer ce Domaine LDAP" +msgid "Export:" +msgstr "Exporter :" -#: ../app/helpers/application_helper/toolbar/ldap_domain_center.rb:20 -msgid "Are you sure you want to delete this LDAP Domain?" -msgstr "Êtes-vous sûr de vouloir supprimer ce Domaine LDAP ?" +msgid "Exposed Ports" +msgstr "" -#: ../app/helpers/application_helper/toolbar/ldap_region_center.rb:12 -msgid "Add a new LDAP Domain" -msgstr "Ajouter un nouveau Domaine LDAP" +msgid "Expression" +msgstr "Expression" -#: ../app/helpers/application_helper/toolbar/ldap_region_center.rb:17 -msgid "Edit this LDAP Region" -msgstr "Modifier cette région LDAP" +msgid "Expression (Choose an element of the expression to edit)" +msgstr "Expression (sélectionnez un élément de l'expression à modifier)" -#: ../app/helpers/application_helper/toolbar/ldap_region_center.rb:22 -msgid "Delete this LDAP Region" -msgstr "Supprimer cette Région LDAP" +msgid "Expression (Custom)" +msgstr "Expression (personnalisée)" -#: ../app/helpers/application_helper/toolbar/ldap_region_center.rb:25 -msgid "Are you sure you want to delete this LDAP Region?" -msgstr "Êtes-vous sûr de vouloir supprimer cette Région LDAP ?" +msgid "Expression (Press the \"Edit\" button to edit the expression)" +msgstr "Expression (appuyez sur le bouton \"Modifier\" pour modifier l'expression)" -#: ../app/helpers/application_helper/toolbar/ldap_regions_center.rb:12 -msgid "Add a new LDAP Region" -msgstr "Ajouter une nouvelle Région LDAP" +msgid "External" +msgstr "Externe" -#: ../app/helpers/application_helper/toolbar/ldap_regions_center.rb:17 -msgid "Select a single LDAP Region to edit" -msgstr "Sélectionner une région LDAP à modifier" +msgid "External (httpd)" +msgstr "Externe (httpd)" -#: ../app/helpers/application_helper/toolbar/ldap_regions_center.rb:18 -msgid "Edit the selected LDAP Region" -msgstr "Modifier la région LDAP sélectionnée" +msgid "External Authentication" +msgstr "Authentification externe" -#: ../app/helpers/application_helper/toolbar/ldap_regions_center.rb:25 -msgid "Select one or more LDAP Regions to delete" -msgstr "Sélectionner une ou plusieurs régions LDAP à supprimer" +msgid "External Authentication (httpd) Settings" +msgstr "Paramètres d'authentification externe (httpd)" -#: ../app/helpers/application_helper/toolbar/ldap_regions_center.rb:26 -msgid "Delete selected LDAP Regions" -msgstr "Supprimer les Régions LDAP sélectionnées" +msgid "External Database" +msgstr "Base de données externe" -#: ../app/helpers/application_helper/toolbar/ldap_regions_center.rb:28 -msgid "Delete all selected LDAP Regions?" -msgstr "Supprimer tous les Régions LDAP sélectionnées?" +msgid "External Logging" +msgstr "" -#: ../app/helpers/application_helper/toolbar/load_balancer_center.rb:12 -msgid "Edit Tags for this Load Balancer" -msgstr "Modifier les balises pour cet équilibreur de charge" +msgid "External Network" +msgstr "" -#: ../app/helpers/application_helper/toolbar/load_balancers_center.rb:14 -msgid "Edit Tags for the selected Load Balancers" -msgstr "Modifier les balises pour les équilibreurs de charge sélectionnés" +msgid "External RSS Feed/URL" +msgstr "Flux RSS/URL externe" -#: ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:12 -msgid "Show Capacity & Utilization data for this Datasource" -msgstr "Afficher les données de capacité et d'utilisation de cette source de données" +msgid "External Router" +msgstr "Routeur externe" -#: ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:30 -msgid "Edit Tags for this Middleware Datasource" -msgstr "Modifier les balises pour cette source de données de middleware" +msgid "Extract Running Processes" +msgstr "Extraire les processus en cours d'exécution" -#: ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:40 -#: ../app/helpers/application_helper/toolbar/middleware_datasources_center.rb:27 -#: ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:23 -#: ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:27 -msgid "Operations" -msgstr "Opérations" +msgid "Extract Running Processes for the selected items" +msgstr "Extraire les processus en cours d'exécution pour les éléments sélectionnés" -#: ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:46 -msgid "Remove Middleware Datasource" -msgstr "Supprimer la source de données de middleware" +msgid "Extract Running Processes for the selected items?" +msgstr "Extraire les processus en cours d'exécution pour les éléments sélectionnés ?" -#: ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:47 -#: ../app/helpers/application_helper/toolbar/middleware_datasources_center.rb:36 -#: ../app/views/host_aggregate/remove_host_select.html.haml:40 -#: ../app/views/report/_form_styling.html.haml:57 -msgid "Remove" -msgstr "Supprimer" +msgid "Extract Running Processes for this VM" +msgstr "Extraire les processus en cours d'exécution pour cette machine virtuelle" -#: ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:48 -msgid "Do you want to remove this datasource?" -msgstr "" +msgid "Extract Running Processes for this VM?" +msgstr "Extraire les processus en cours d'exécution pour cette machine virtuelle ?" -#: -#: ../app/helpers/application_helper/toolbar/middleware_datasources_center.rb:14 -msgid "Edit Tags for these Middleware Datasources" -msgstr "Modifier les balises pour ces sources de données de middleware" +msgid "FS Type" +msgstr "Type de FS" -#: -#: ../app/helpers/application_helper/toolbar/middleware_datasources_center.rb:35 -msgid "Remove Middleware Datasources" -msgstr "Supprimer les sources de données de middleware" +msgid "Fail Open" +msgstr "Erreur d'ouverture" -#: -#: ../app/helpers/application_helper/toolbar/middleware_datasources_center.rb:40 -msgid "" -"Do you want to remove these Datasources? Some Applications could be using thes" -"e Datasources and may malfunction if they are deleted." -msgstr "" +msgid "Failed" +msgstr "Échec" -#: ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:14 -msgid "Edit Tags for this Middleware Deployment" -msgstr "Modifier les balises pour ce déploiement de middleware" +msgid "Failed (%{number})" +msgstr "Échec (%{number})" -#: ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:29 -msgid "Restart this Middleware Deployment" -msgstr "Redémarrer ce déploiement de middleware" +msgid "Failed Events" +msgstr "Événements ayant échoué" -#: ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:31 -msgid "Do you want to restart this deployment ?" -msgstr "Voulez-vous redémarrer ce déploiement ?" +msgid "Failed system services of %{name}" +msgstr "Services système de %{name} ayant échoué" -#: ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:36 -msgid "Disable this Middleware Deployment" -msgstr "Désactiver ce déploiement de middleware" +msgid "Failed to deploy %{name}. Error:" +msgstr "Échec du déploiement de %{name}. Erreur :" -#: ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:37 -#: ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:46 -msgid "Disable" -msgstr "Désactiver" +msgid "False" +msgstr "False" -#: ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:38 -msgid "Do you want to disable this deployment ?" -msgstr "Voulez-vous désactiver ce déploiement ?" +msgid "Feed URL" +msgstr "URL du flux" -#: ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:43 -msgid "Enable this Middleware Deployment" -msgstr "Activer ce déploiement de middleware" +msgid "Fetch settings from a schedule" +msgstr "Récupérer les paramètres d'un planning" -#: ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:44 -#: ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:56 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:251 -#: ../app/helpers/vm_helper/textual_summary.rb:732 -msgid "Enable" -msgstr "Activer" +msgid "Field" +msgstr "Champ" -#: ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:45 -msgid "Do you want to enable this deployment ?" -msgstr "Voulez-vous activer ce déploiement ?" +msgid "Field Value Error: %{msg}" +msgstr "Erreur de valeur du champ : %{msg}" -#: ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:50 -msgid "Undeploy this Middleware Deployment" -msgstr "Rétracter ce déploiement de middleware" +msgid "Fields" +msgstr "Champs" -#: ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:51 -#: ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:66 -msgid "Undeploy" -msgstr "Rétracter un déploiement" +msgid "Fields not added: Adding the selected %{count} fields will exceed the maximum of %{max} fields" +msgstr "Champs non ajoutés : en ajoutant les %{count} champs sélectionnés, le maximum de %{max} champs sera dépassé" -#: ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:52 -msgid "Do you want to undeploy this deployment ?" -msgstr "Voulez-vous rétracter ce déploiement ?" +msgid "File" +msgstr "Fichier" -#: -#: ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:15 -msgid "Edit Tags for these Middleware Deployments" -msgstr "Modifier les balises pour ces déploiements de middleware" +msgid "File Entry" +msgstr "Entrée de fichier" -#: -#: ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:35 -msgid "Restart these Middleware Deployments" -msgstr "Redémarrer ces déploiements de middleware" +msgid "File Entry is required" +msgstr "L'entrée de fichier est obligatoiree" -#: -#: ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:40 -msgid "Do you want to restart these deployments ?" -msgstr "Voulez-vous redémarrer ces déploiements ?" +msgid "File Items" +msgstr "Éléments de fichier" -#: -#: ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:45 -msgid "Disable these Middleware Deployments" -msgstr "Désactiver ces déploiements de middleware" +msgid "File System Drivers" +msgstr "Pilotes du système de fichiers" -#: -#: ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:50 -msgid "Do you want to disable these deployments ?" -msgstr "Voulez-vous désactiver ces déploiements ?" +msgid "Filename" +msgstr "Nom de fichier" -#: -#: ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:55 -msgid "Enable these Middleware Deployments" -msgstr "Activer ces déploiements de middleware" +msgid "Files" +msgstr "Fichiers" -#: -#: ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:60 -msgid "Do you want to enable these deployments ?" -msgstr "Voulez-vous activer ces déploiements ?" +msgid "Filesystem" +msgid_plural "Filesystems" +msgstr[0] "Système de fichiers" +msgstr[1] "Systèmes de fichiers" -#: -#: ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:65 -msgid "Undeploy these Middleware Deployments" -msgstr "Rétracter ces déploiements de middleware" +msgid "Filesystem Driver" +msgid_plural "Filesystem Drivers" +msgstr[0] "Pilote du système de fichiers" +msgstr[1] "Pilotes du système de fichiers" -#: -#: ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:70 -msgid "Do you want to undeploy these deployments ?" -msgstr "Voulez-vous rétracter ces déploiements ?" +msgid "Filter" +msgstr "Filtrer" -#: ../app/helpers/application_helper/toolbar/middleware_domain_center.rb:13 -msgid "Edit Tags for this Middleware Domain" -msgstr "Modifier les balises pour ce domaine de middleware" +msgid "Filter By" +msgstr "Filtrer par" -#: ../app/helpers/application_helper/toolbar/middleware_domains_center.rb:14 -msgid "Edit Tags for these Middleware Domains" -msgstr "Modifier les balises pour ces domaines de middleware" +msgid "Filter Message" +msgstr "Message de filtre" -#: ../app/helpers/application_helper/toolbar/middleware_messaging_center.rb:13 -msgid "Show Capacity & Utilization data for this Middleware messaging" +msgid "Filter by %s..." msgstr "" -"Afficher les données de capacité et d'utilisation de cette messagerie middlewa" -"re" -#: ../app/helpers/application_helper/toolbar/middleware_messaging_center.rb:32 -msgid "Edit Tags for this Middleware messaging" -msgstr "Modifier les balises pour cette messagerie de middleware" +msgid "Filter by Acknowledged" +msgstr "" -#: ../app/helpers/application_helper/toolbar/middleware_messagings_center.rb:15 -msgid "Edit Tags for these Middleware mesagings" -msgstr "Modifier les balises pour ces messageries de middleware" +msgid "Filter by Host Name" +msgstr "" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:13 -msgid "Show Capacity & Utilization data for this Server" -msgstr "Afficher les données de capacité et d'utilisation de ce serveur" +msgid "Filter by Message Text" +msgstr "" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:31 -msgid "Edit Tags for this Middleware Server" -msgstr "Modifier les balises pour ce serveur de middleware" +msgid "Filter by Name" +msgstr "" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:46 -msgid "Gracefully shut this server down" -msgstr "Arrêter normalement ce serveur" +msgid "Filter by Owner" +msgstr "" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:47 -msgid "Gracefully shutdown Server" -msgstr "Arrêter normalement le serveur" +msgid "Filter by Provider Name" +msgstr "" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:57 -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:117 -msgid "Restart this server" -msgstr "Redémarrer ce serveur" +msgid "Filter by Provider Type" +msgstr "" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:58 -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:118 -msgid "Restart Server" -msgstr "Redémarrer un serveur" +msgid "Filter by Severity" +msgstr "" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:60 -msgid "Do you want to restart this server?" -msgstr "Voulez-vous redémarrer ce serveur ?" +msgid "Filter by Type" +msgstr "" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:66 -msgid "Stop this Middleware Server" -msgstr "Arrêter ce serveur de middleware" +msgid "Filter must be selected" +msgstr "Un filtre doit être sélectionné" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:67 -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:110 -msgid "Stop Server" -msgstr "Arrêter le serveur" +msgid "Filter tab is not available until Trending Target Limit has been configured" +msgstr "L'onglet Filtre n'est pas disponible tant que la limite cible de la tendance n'a pas été configurée" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:69 -msgid "Do you want to stop this server?" -msgstr "Voulez-vous arrêter ce serveur ?" +msgid "Filter tab is not available until Trending for field has been selected" +msgstr "L'onglet Filtre n'est pas disponible tant que le champ \"Tendance pour\" n'a pas été sélectionné" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:74 -msgid "Suspend this server" -msgstr "Suspendre ce serveur" +msgid "Filter tab is not available until at least 1 field has been selected" +msgstr "L'onglet Filtre n'est pas disponible tant qu'au moins 1 champ n'a pas été sélectionné" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:75 -msgid "Suspend Server" -msgstr "Suspendre le serveur" +msgid "Filter value must be selected" +msgstr "Une valeur" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:85 -msgid "Resume this server" -msgstr "Reprendre ce serveur" +msgid "Filter: %{filter_description}" +msgstr "Filtre : %{filter_description}" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:86 -msgid "Resume Server" -msgstr "Reprendre un serveur" +msgid "Filters" +msgstr "Filtres" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:88 -msgid "Do you want to resume this server?" -msgstr "Voulez-vous relancer ce serveur ?" +msgid "Find" +msgstr "Chercher" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:93 -msgid "Reload this server" -msgstr "Recharger ce serveur" +msgid "Find Value Error: %{msg}" +msgstr "Erreur de la valeur du recherche : %{msg}" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:94 -#: ../app/helpers/application_helper/toolbar/middleware_servers_center.rb:36 -msgid "Reload Server" -msgstr "Recharger le serveur" +msgid "Finish" +msgstr "Terminer" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:95 -msgid "Do you want to trigger a reload of this server?" -msgstr "Voulez-vous initier un rechargement de ce serveur?" +msgid "Finished" +msgstr "Terminé" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:101 -msgid "Start this server" -msgstr "Démarrer ce serveur" +msgid "Finished At" +msgstr "Terminé à" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:102 -msgid "Start Server" -msgstr "Démarrer le serveur" +msgid "Finished Task cannot be cancelled" +msgstr "Une tâche terminée ne peut pas être annulée" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:104 -msgid "Do you want to trigger a start of this server?" -msgstr "Souhaitez-vous déclencher un démarrage pour ce serveur ?" +msgid "Firewall Rules" +msgstr "Règles de pare-feu" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:109 -msgid "Stop this server" -msgstr "Arrêter ce serveur" +msgid "First" +msgstr "Premier" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:112 -msgid "Do you want to trigger a stop of this server?" -msgstr "Souhaitez-vous déclencher un arrêt pour ce serveur ?" +msgid "First %{number}" +msgstr "Premier %{number}" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:120 -msgid "Do you want to trigger a restart of this server?" -msgstr "Voulez-vous initier un redémarrage de ce serveur ?" +msgid "Fixed" +msgstr "Fixé" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:125 -msgid "Kill this server" -msgstr "Kill ce serveur" +msgid "Fixed IP Address" +msgstr "" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:126 -msgid "Kill Server" -msgstr "Kill Serveur" +msgid "Flavors" +msgstr "Gabarits" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:128 -msgid "Do you want to trigger a kill of this server?" -msgstr "Voulez-vous initier un kill de ce serveur ?" +msgid "Floating IP" +msgstr "IP Flottante" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:137 -#: ../app/presenters/menu/default_menu.rb:128 -#: ../app/views/middleware_topology/show.html.haml:51 -msgid "Deployments" -msgstr "Déploiements" +msgid "Floating IP \"%{name}\" created" +msgstr "" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:143 -msgid "Add a new Middleware Deployment" -msgstr "Ajouter un nouveau déploiement de middleware" +msgid "Floating IP \"%{name}\" updated" +msgstr "" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:144 -msgid "Add Deployment" -msgstr "Ajouter un déploiement" +msgid "Floating IP Address (optional)" +msgstr "" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:157 -msgid "JDBC Drivers" -msgstr "Pilotes JDBC" +msgid "Floating IP creation failed: Task start failed: ID [%{id}]" +msgstr "" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:163 -msgid "Add a new Middleware JDBC Driver" -msgstr "Ajouter un nouveau pilote JDBC de middleware" +msgid "Floating IP no longer exists." +msgstr "" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:164 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:35 -msgid "Add JDBC Driver" -msgstr "Ajouter un pilote JDBC" +msgid "Floating IP update failed: Task start failed: ID [%{id}]" +msgstr "" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:177 -#: ../app/presenters/menu/default_menu.rb:129 -#: ../app/views/middleware_topology/show.html.haml:70 -msgid "Datasources" -msgstr "Sources de données" +msgid "Floating IPs" +msgstr "IP flottantes" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:183 -msgid "Add a new Middleware Datasource" -msgstr "Ajouter une nouvelle Source de données de Middleware" +msgid "Floating Ips" +msgstr "IP flottantes" -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:184 -msgid "Add Datasource" -msgstr "Ajouter une source de données" +msgid "Folder" +msgstr "Dossier" -#: -#: ../app/helpers/application_helper/toolbar/middleware_server_group_center.rb:13 -msgid "Edit Tags for this Middleware Server Group" -msgstr "Modifier les balises pour ce groupe de serveurs de middleware" +msgid "Folder name '%{value}' is already in use" +msgstr "Nom de dossier '%{value}' déjà utilisé" -#: -#: ../app/helpers/application_helper/toolbar/middleware_server_groups_center.rb:14 -msgid "Edit Tags for these Middleware Server Groups" -msgstr "Modifier les balises pour ces groupes de serveurs de middleware" +msgid "Folder name is required" +msgstr "Le nom du dossier est obligatoire" -#: ../app/helpers/application_helper/toolbar/middleware_servers_center.rb:15 -msgid "Edit Tags for these Middleware Servers" -msgstr "Modifier les balises pour ces serveurs de middleware" +msgid "Folder: %{folder_name}" +msgstr "Dossier : %{folder_name}" -#: ../app/helpers/application_helper/toolbar/middleware_servers_center.rb:35 -msgid "Reload these Middleware Servers" -msgstr "Recharger ces serveurs de middleware" +msgid "Follow Referrals" +msgstr "Suivre les références" -#: ../app/helpers/application_helper/toolbar/middleware_servers_center.rb:39 -msgid "Do you want to reload selected servers?" -msgstr "Voulez-vous recharger les serveurs sélectionnés?" +msgid "For more information, visit the %{subject} documentation." +msgstr "Pour plus d'informations, consultez la documentation de %{subject}." -#: ../app/helpers/application_helper/toolbar/miq_action_center.rb:12 -msgid "Edit this Action" -msgstr "Modifier cette action" +msgid "For questions or problem reporting, visit " +msgstr "Pour toute question ou pour signaler un problème, rendez-vous sur " -#: ../app/helpers/application_helper/toolbar/miq_action_center.rb:19 -msgid "Delete this Action" -msgstr "Supprimer cette Action" +msgid "Forgot your login or password? Look it up at" +msgstr "Vous avez oublié votre nom de connexion ou votre mot de passe ? Rendez-vous sur" -#: ../app/helpers/application_helper/toolbar/miq_action_center.rb:22 -msgid "Are you sure you want to delete this Action?" -msgstr "Voulez-vous vraiment supprimer cette Action ?" +msgid "Format" +msgstr "Format" -#: ../app/helpers/application_helper/toolbar/miq_actions_center.rb:12 -msgid "Add a new Action" -msgstr "Ajouter une Nouvelle Action" +msgid "Format on Summary Row" +msgstr "Format sur la ligne de résumé" -#: ../app/helpers/application_helper/toolbar/miq_ae_class_center.rb:12 -#: ../app/helpers/application_helper/toolbar/miq_ae_fields_center.rb:12 -#: ../app/helpers/application_helper/toolbar/miq_ae_instances_center.rb:12 -#: ../app/helpers/application_helper/toolbar/miq_ae_methods_center.rb:12 -msgid "Edit this Class" -msgstr "Modifier cette classe" +msgid "Formatting" +msgstr "Mise en forme" -#: ../app/helpers/application_helper/toolbar/miq_ae_class_center.rb:18 -#: ../app/helpers/application_helper/toolbar/miq_ae_fields_center.rb:18 -#: ../app/helpers/application_helper/toolbar/miq_ae_instances_center.rb:18 -#: ../app/helpers/application_helper/toolbar/miq_ae_methods_center.rb:18 -msgid "Copy this Class" -msgstr "Copier cette Classe" +msgid "Formatting tab is not available until at least 1 field has been selected" +msgstr "L'onglet Mise en forme n'est pas disponible tant qu'au moins 1 champ n'a pas été sélectionné" -#: ../app/helpers/application_helper/toolbar/miq_ae_class_center.rb:24 -#: ../app/helpers/application_helper/toolbar/miq_ae_fields_center.rb:24 -#: ../app/helpers/application_helper/toolbar/miq_ae_instances_center.rb:24 -#: ../app/helpers/application_helper/toolbar/miq_ae_methods_center.rb:24 -msgid "Remove this Class" -msgstr "Supprimer cette classe" +msgid "Free Index Nodes" +msgstr "Nœuds d'index libres" -#: ../app/helpers/application_helper/toolbar/miq_ae_class_center.rb:27 -#: ../app/helpers/application_helper/toolbar/miq_ae_fields_center.rb:27 -#: ../app/helpers/application_helper/toolbar/miq_ae_instances_center.rb:27 -#: ../app/helpers/application_helper/toolbar/miq_ae_methods_center.rb:27 -msgid "Are you sure you want to remove this Class?" -msgstr "Êtes-vous sûr de vouloir supprimer cette Classe ?" +msgid "Free Space" +msgstr "Espace libre" -#: ../app/helpers/application_helper/toolbar/miq_ae_domain_center.rb:12 -msgid "Edit this Domain" -msgstr "Modifier ce domaine" +msgid "Free Space on Volume" +msgstr "Espace libre sur le Volume" -#: ../app/helpers/application_helper/toolbar/miq_ae_domain_center.rb:18 -msgid "Remove this Domain" -msgstr "Supprimer ce domaine" +msgid "Friday" +msgstr "Vendredi" -#: ../app/helpers/application_helper/toolbar/miq_ae_domain_center.rb:20 -msgid "Are you sure you want to remove this Domain?" -msgstr "Êtes-vous certain de vouloir supprimer ce Domaine ?" +msgid "From" +msgstr "De" -#: ../app/helpers/application_helper/toolbar/miq_ae_domain_center.rb:25 -msgid "Unlock this Domain" -msgstr "Déverrouiller ce domaine" +msgid "From %{time} Ago" +msgstr "Depuis %{time}" -#: ../app/helpers/application_helper/toolbar/miq_ae_domain_center.rb:31 -msgid "Lock this Domain" -msgstr "Verrouiller ce domaine" +msgid "From Address" +msgstr "Depuis l'adresse" -#: ../app/helpers/application_helper/toolbar/miq_ae_domain_center.rb:37 -msgid "Refresh with a new branch or tag" -msgstr "Actualiser avec une nouvelle branche ou balise" +msgid "From Domain" +msgstr "Depuis le domaine" -#: ../app/helpers/application_helper/toolbar/miq_ae_domain_center.rb:44 -#: ../app/helpers/application_helper/toolbar/miq_ae_namespace_center.rb:26 -msgid "Add a New Namespace" -msgstr "Ajouter un nouvel espace de nommage" +msgid "From E-mail" +msgstr "Depuis l'e-mail" -#: ../app/helpers/application_helper/toolbar/miq_ae_domain_center.rb:50 -msgid "Select a single Namespace to edit" -msgstr "Sélectionner un espace de nommage à modifier" +msgid "From E-mail Address" +msgstr "Depuis l'adresse e-mail" -#: ../app/helpers/application_helper/toolbar/miq_ae_domain_center.rb:51 -msgid "Edit Selected Namespace" -msgstr "Modifier l'espace de nommage sélectionné" +msgid "Front (...1234)" +msgstr "Avant (...1234)" -#: ../app/helpers/application_helper/toolbar/miq_ae_domain_center.rb:59 -msgid "Remove selected Namespaces" -msgstr "Supprimer les espaces de nommage sélectionnés" +msgid "Full Name" +msgstr "Nom complet" -#: ../app/helpers/application_helper/toolbar/miq_ae_domain_center.rb:60 -msgid "Remove Namespaces" -msgstr "Supprimer les espaces de nommage" +msgid "GB" +msgstr "Go" -#: ../app/helpers/application_helper/toolbar/miq_ae_domain_center.rb:62 -msgid "Are you sure you want to remove the selected Namespaces?" -msgstr "Voulez-vous vraiment supprimer les espaces de nommage sélectionnés ?" +msgid "GCE PD Resource" +msgstr "Ressource GCE PD" -#: ../app/helpers/application_helper/toolbar/miq_ae_domains_center.rb:12 -msgid "Add a New Domain" -msgstr "Ajouter un Nouveau Domaine" +msgid "Gateway" +msgstr "Passerelle" -#: ../app/helpers/application_helper/toolbar/miq_ae_domains_center.rb:18 -msgid "Select a single Domains to edit" -msgstr "Sélectionner un domaine à modifier" +msgid "Genealogy" +msgid_plural "Genealogy" +msgstr[0] "Généalogie" +msgstr[1] "Généalogie" -#: ../app/helpers/application_helper/toolbar/miq_ae_domains_center.rb:19 -msgid "Edit Selected Domains" -msgstr "Modifier les domaines sélectionnés" +msgid "General" +msgstr "Général" -#: ../app/helpers/application_helper/toolbar/miq_ae_domains_center.rb:27 -msgid "Remove selected Domains" -msgstr "Supprimer les domaines sélectionnés" +msgid "Generate Report Preview" +msgstr "Générer un aperçu de rapport" -#: ../app/helpers/application_helper/toolbar/miq_ae_domains_center.rb:28 -msgid "Remove Domains" -msgstr "Supprimer les domaines" +msgid "Generate Report preview" +msgstr "Générer un aperçu de rapport" -#: ../app/helpers/application_helper/toolbar/miq_ae_domains_center.rb:30 -msgid "Are you sure you want to remove the selected Domains?" -msgstr "Êtes-vous sûr de vouloir supprimer les Domaines sélectionnés ?" +msgid "Generate Widget content now" +msgstr "Générer le contenu de composant d'interface maintenant" -#: ../app/helpers/application_helper/toolbar/miq_ae_domains_center.rb:38 -msgid "Edit Priority Order of Domains" -msgstr "Modifier l'ordre de priorité des domaines" +msgid "Generating Report" +msgstr "Génération du rapport" -#: ../app/helpers/application_helper/toolbar/miq_ae_fields_center.rb:33 -msgid "Edit selected Schema" -msgstr "Modifier le schéma sélectionné" +msgid "Generating Report for - %{report_name}" +msgstr "Génération du rapport pour - %{report_name}" -#: ../app/helpers/application_helper/toolbar/miq_ae_fields_center.rb:39 -msgid "Edit sequence of Class Schema" -msgstr "Modifier la séquence du schéma de classe" +msgid "Generating utilization data..." +msgstr "Génération des données d'utilisation…" -#: ../app/helpers/application_helper/toolbar/miq_ae_fields_center.rb:40 -msgid "Edit sequence" -msgstr "Modifier la séquence" +msgid "Generic Object Definition created successfully" +msgstr "Définition d'objet générique créée" -#: ../app/helpers/application_helper/toolbar/miq_ae_instance_center.rb:12 -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:26 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:26 -msgid "Edit this Instance" -msgstr "Modifier cette instance" +msgid "Generic Object Definition deleted" +msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_ae_instance_center.rb:18 -msgid "Copy this Instance" -msgstr "Copier cette instance" +msgid "Generic Object Definition saved successfully" +msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_ae_instance_center.rb:24 -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:36 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:37 -msgid "Remove this Instance" -msgstr "Supprimer cette instance" +msgid "Generic Objects" +msgstr "Objets génériques" -#: ../app/helpers/application_helper/toolbar/miq_ae_instance_center.rb:27 -msgid "Are you sure you want to remove this Instance?" -msgstr "Êtes-vous certain de vouloir supprimer cette Instance ?" +msgid "Generic SCSI (%{location})" +msgstr "SCSI générique (%{location})" -#: ../app/helpers/application_helper/toolbar/miq_ae_instances_center.rb:33 -msgid "Add a New Instance" -msgstr "Ajouter une Nouvelle Instance" +msgid "Generic Workers" +msgstr "Workers génériques" -#: ../app/helpers/application_helper/toolbar/miq_ae_instances_center.rb:39 -msgid "Select a single Instance to edit" -msgstr "Sélectionner une instance à modifier" +msgid "Get Roles from Home Forest" +msgstr "Obtenir des rôles de l'accueil de la forêt" -#: ../app/helpers/application_helper/toolbar/miq_ae_instances_center.rb:40 -msgid "Edit Selected Instance" -msgstr "Modifier l'instance sélectionnée" +msgid "Get User Groups from Amazon" +msgstr "Obtenir des groupes d'utilisateurs d'Amazon" -#: ../app/helpers/application_helper/toolbar/miq_ae_instances_center.rb:48 -msgid "Select Instances to copy" -msgstr "Sélectionner les instances à copier" +msgid "Get User Groups from External Authentication (httpd)" +msgstr "Obtenir des groupes d'utilisateurs de l'authentification externe (httpd)" -#: ../app/helpers/application_helper/toolbar/miq_ae_instances_center.rb:49 -msgid "Copy selected Instances" -msgstr "Copier les instances sélectionnées" +msgid "Get User Groups from LDAP" +msgstr "Obtenir des groupes d'utilisateurs de LDAP" -#: ../app/helpers/application_helper/toolbar/miq_ae_instances_center.rb:57 -msgid "Remove selected Instances" -msgstr "Supprimer les instances sélectionnées" +msgid "Git Repository" +msgstr "Référentiel Git" -#: ../app/helpers/application_helper/toolbar/miq_ae_instances_center.rb:58 -msgid "Remove Instances" -msgstr "Supprimer les instances" +msgid "Git Revision" +msgstr "Révision Git" -#: ../app/helpers/application_helper/toolbar/miq_ae_instances_center.rb:60 -msgid "Are you sure you want to remove the selected Instances?" -msgstr "Êtes-vous sûr de vouloir supprimer les Instances sélectionnées ?" +msgid "Git URL:" +msgstr "URL Git :" -#: ../app/helpers/application_helper/toolbar/miq_ae_method_center.rb:12 -msgid "Edit this Method" -msgstr "Modifier cette méthode" +msgid "Git based refresh canceled" +msgstr "Actualisation basée sur Git annulée" -#: ../app/helpers/application_helper/toolbar/miq_ae_method_center.rb:18 -msgid "Copy this Method" -msgstr "Copier cette méthode" +msgid "GitHub" +msgstr "GitHub" -#: ../app/helpers/application_helper/toolbar/miq_ae_method_center.rb:24 -msgid "Remove this Method" -msgstr "Supprimer cette méthode" +msgid "Global Default" +msgstr "Valeur par défaut globale" -#: ../app/helpers/application_helper/toolbar/miq_ae_method_center.rb:27 -msgid "Are you sure you want to remove this Method?" -msgstr "Êtes-vous certain de vouloir supprimer cette Méthode ?" +msgid "Global Filters" +msgstr "Filtres globaux" -#: ../app/helpers/application_helper/toolbar/miq_ae_methods_center.rb:33 -msgid "Add a New Method" -msgstr "Ajouter un Nouvelle Méthode" +msgid "Global Shared Filters" +msgstr "Filtrer partagés globaux" -#: ../app/helpers/application_helper/toolbar/miq_ae_methods_center.rb:39 -msgid "Select a single Method to edit" -msgstr "Sélectionner une méthode à modifier" +msgid "Global Time Profile cannot be edited" +msgstr "Le profil temporel global ne peut pas être modifié" -#: ../app/helpers/application_helper/toolbar/miq_ae_methods_center.rb:40 -msgid "Edit Selected Method" -msgstr "Modifier la méthode sélectionnée" +msgid "Global Utilization" +msgstr "Utilisation globale" -#: ../app/helpers/application_helper/toolbar/miq_ae_methods_center.rb:48 -msgid "Select Methods to copy" -msgstr "Sélectionner les méthodes à copier" +msgid "Global search:" +msgstr "Recherche globale :" -#: ../app/helpers/application_helper/toolbar/miq_ae_methods_center.rb:49 -msgid "Copy selected Methods" -msgstr "Copier la méthode sélectionnée" +msgid "Glusterfs Endpoint Name" +msgstr "Nom du point d'accès GlusterFS" -#: ../app/helpers/application_helper/toolbar/miq_ae_methods_center.rb:57 -msgid "Remove selected Methods" -msgstr "Supprimer les méthodes sélectionnées" +msgid "Go to my start page" +msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_ae_methods_center.rb:58 -msgid "Remove Methods" -msgstr "Supprimer les méthodes" +msgid "Go to summary page" +msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_ae_methods_center.rb:60 -msgid "Are you sure you want to remove the selected Methods?" -msgstr "Êtes-vous sûr de vouloir supprimer les Méthodes sélectionnées ?" +msgid "Go to this item" +msgstr "Accéder à cet élément" -#: ../app/helpers/application_helper/toolbar/miq_ae_namespace_center.rb:12 -msgid "Edit this Namespace" -msgstr "Modifier cet espace de nommage" +msgid "Google" +msgstr "Google" -#: ../app/helpers/application_helper/toolbar/miq_ae_namespace_center.rb:18 -msgid "Remove this Namespace" -msgstr "Supprimer cet espace de nommage" +msgid "Gracefully shut this server down" +msgstr "Arrêter normalement ce serveur" -#: ../app/helpers/application_helper/toolbar/miq_ae_namespace_center.rb:20 -msgid "Are you sure you want to remove this Namespace?" -msgstr "Voulez-vous vraiment supprimer cet espace de nommage ?" +msgid "Gracefully shutdown Server" +msgstr "Arrêter normalement le serveur" -#: ../app/helpers/application_helper/toolbar/miq_ae_namespace_center.rb:32 -msgid "Add a New Class" -msgstr "Ajouter une Nouvelle Classe" +msgid "Graph View" +msgstr "Vue du graphique" -#: ../app/helpers/application_helper/toolbar/miq_ae_namespace_center.rb:38 -#: ../app/helpers/application_helper/toolbar/servicetemplatecatalogs_center.rb:18 -#: ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:23 -msgid "Edit Selected Item" -msgstr "Modifier l'élément sélectionné" +msgid "Gray Background" +msgstr "Arrière-plan gris" -#: ../app/helpers/application_helper/toolbar/miq_ae_namespace_center.rb:47 -msgid "Select Classes to copy" -msgstr "Sélectionner les classes à copier" +msgid "Gray Text" +msgstr "Texte en gris" -#: ../app/helpers/application_helper/toolbar/miq_ae_namespace_center.rb:48 -msgid "Copy selected Classes" -msgstr "Copier les classes sélectionnées" +msgid "Green" +msgstr "Vert" + +msgid "Green Background" +msgstr "Arrière-plan vert" -#: ../app/helpers/application_helper/toolbar/miq_ae_namespace_center.rb:56 -msgid "Remove selected Items" -msgstr "Supprimer les éléments sélectionnés" +msgid "Green Text" +msgstr "Texte en vert" -#: ../app/helpers/application_helper/toolbar/miq_ae_namespace_center.rb:59 -msgid "Are you sure you want to remove selected Items?" -msgstr "Êtes-vous sûr de vouloir supprimer les Éléments sélectionnés ?" +msgid "Grid View" +msgstr "Vue en mode Grille" -#: ../app/helpers/application_helper/toolbar/miq_ae_tools_simulate_center.rb:6 -msgid "Copy object details for use in a Button" -msgstr "Copier les détails d'objet à utiliser dans un bouton" +msgid "Grid/Tile Icons" +msgstr "Icônes de grille/titre" -#: ../app/helpers/application_helper/toolbar/miq_ae_tools_simulate_center.rb:7 -#: ../app/views/layouts/_x_edit_buttons.html.haml:92 -#: ../app/views/layouts/_x_edit_buttons.html.haml:154 -msgid "Copy" -msgstr "Copier" +msgid "Group" +msgid_plural "Groups" +msgstr[0] "Groupe" +msgstr[1] "Groupes" -#: ../app/helpers/application_helper/toolbar/miq_alert_center.rb:12 -msgid "Edit this Alert" -msgstr "Modifier cette alerte" +msgid "Group By" +msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_alert_center.rb:18 -msgid "Copy this Alert" -msgstr "Copier cette Alerte" +msgid "Group Information" +msgstr "Informations sur le groupe" -#: ../app/helpers/application_helper/toolbar/miq_alert_center.rb:20 -msgid "Are you sure you want to copy this Alert?" -msgstr "Voulez-vous vraiment copier cette alerte ?" +msgid "Group Records by up to 3 Columns" +msgstr "Grouper les enregistrements selon un maximum de 3 colonnes" -#: ../app/helpers/application_helper/toolbar/miq_alert_center.rb:25 -msgid "Delete this Alert" -msgstr "Supprimer cette Alerte" +msgid "Group by" +msgstr "Grouper par" -#: ../app/helpers/application_helper/toolbar/miq_alert_center.rb:28 -msgid "Are you sure you want to delete this Alert?" -msgstr "Voulez-vous vraiment supprimer cette Alerte ?" +msgid "Group by Tag" +msgstr "Grouper par balise" -#: ../app/helpers/application_helper/toolbar/miq_alert_profile_center.rb:12 -msgid "Edit this Alert Profile" -msgstr "Modifier ce profil d'alerte" +msgid "Group: %{name}" +msgstr "Groupe : %{name}" -#: ../app/helpers/application_helper/toolbar/miq_alert_profile_center.rb:18 -msgid "Edit assignments for this Alert Profile" -msgstr "Modifier des affectations pour ce profil d'alerte" +msgid "Groups" +msgstr "Groupes" -#: ../app/helpers/application_helper/toolbar/miq_alert_profile_center.rb:24 -msgid "Delete this Alert Profile" -msgstr "Supprimer ce Profil d'alerte" +msgid "Groups (%{groups_count})" +msgstr "Groupes (%{groups_count})" -#: ../app/helpers/application_helper/toolbar/miq_alert_profile_center.rb:27 -msgid "Are you sure you want to delete this Alert Profile?" -msgstr "Voulez-vous vraiment supprimer ce Profil d'alerte ?" +msgid "Groups Using this Role" +msgstr "Groupes à l'aide de ce rôle" -#: ../app/helpers/application_helper/toolbar/miq_alert_profiles_center.rb:13 -msgid "Add a New %{alert_profile_type} Alert Profile" -msgstr "Ajouter une nouvelle alerte de profil %{alert_profile_type}" +msgid "Groups in this %{type}" +msgstr "Groupes de ce %{type}" -#: ../app/helpers/application_helper/toolbar/miq_alerts_center.rb:12 -msgid "Add a New Alert" -msgstr "Ajouter une Nouvelle Alerte" +msgid "Guest Application" +msgid_plural "Guest Applications" +msgstr[0] "Application invitée" +msgstr[1] "Applications invitées" -#: ../app/helpers/application_helper/toolbar/miq_dialog_center.rb:27 -msgid "" -"Warning: This Dialog will be permanently removed from the Virtual Management D" -"atabase!" -msgstr "" -"Avertissement : cette boîte de dialogue sera définitivement supprimée de la ba" -"se de données Virtual Management" +msgid "HA Admit Control" +msgstr "Contrôle d'autorisation haute disponibilité (HA)" -#: ../app/helpers/application_helper/toolbar/miq_dialogs_center.rb:38 -msgid "Warning: The selected Dialog will be permanently removed!" -msgstr "" -"Avertissement : la boîte de dialogue sélectionnée sera définitivement supprimé" -"e" +msgid "HA Enabled" +msgstr "Haute disponibilité (HA) activée" -#: ../app/helpers/application_helper/toolbar/miq_event_center.rb:12 -msgid "Edit Actions for this Policy Event" -msgstr "Modifier les actions pour cet événement de stratégie" +msgid "HKLM" +msgstr "HKLM" -#: ../app/helpers/application_helper/toolbar/miq_group_center.rb:12 -msgid "Edit this Group" -msgstr "Modifier ce groupe" +msgid "HTPassword" +msgstr "HTPassword" -#: ../app/helpers/application_helper/toolbar/miq_group_center.rb:17 -msgid "Delete this Group" -msgstr "Supprimer ce Groupe" +msgid "HTTP Proxy Address" +msgstr "Adresse proxy HTTP" -#: ../app/helpers/application_helper/toolbar/miq_group_center.rb:20 -msgid "Are you sure you want to delete this Group?" -msgstr "Voulez-vous vraiment supprimer ce Groupe ?" +msgid "HTTP Proxy:" +msgstr "Proxy HTTP :" -#: ../app/helpers/application_helper/toolbar/miq_group_center.rb:35 -msgid "Edit '%{customer_name}' Tags for this Group" -msgstr "Modifier les balises '%{customer_name}' pour ce groupe" +msgid "HVM (Hardware Virtual Machine)" +msgstr "HVM (Hardware Virtual Machine - Machine virtuelle matérielle)" -#: ../app/helpers/application_helper/toolbar/miq_groups_center.rb:12 -msgid "Add a new Group" -msgstr "Ajouter un nouveau Groupe" +msgid "Hard Disk (IDE %{location})" +msgstr "Disque dur (IDE %{location})" -#: ../app/helpers/application_helper/toolbar/miq_groups_center.rb:17 -msgid "Select a single Group to edit" -msgstr "Sélectionner un groupe à modifier" +msgid "Hard Disk (SCSI %{location})" +msgstr "Disque dur (SCSI %{location})" -#: ../app/helpers/application_helper/toolbar/miq_groups_center.rb:18 -msgid "Edit the selected Group" -msgstr "Modifier le groupe sélectionné" +msgid "Hard Reboot" +msgstr "Redémarrage" -#: ../app/helpers/application_helper/toolbar/miq_groups_center.rb:25 -msgid "Select one or more Groups to delete" -msgstr "Sélectionner un ou plusieurs groupes à supprimer" +msgid "Hard Reboot the Guest OS on the selected items" +msgstr "Effectuer le redémarrage du système d'exploitation invité sur les éléments sélectionnés" -#: ../app/helpers/application_helper/toolbar/miq_groups_center.rb:26 -msgid "Delete selected Groups" -msgstr "Supprimer les Groupes sélectionnés" +msgid "Hard Reboot the Guest OS on the selected items?" +msgstr "Effectuer le redémarrage du système d'exploitation invité sur les éléments sélectionnés ?" -#: ../app/helpers/application_helper/toolbar/miq_groups_center.rb:28 -msgid "Delete all selected Groups?" -msgstr "Supprimer tous les Groupes sélectionnés?" +msgid "Hard Reboot the Guest OS on this Instance" +msgstr "Effectuer le redémarrage du système d'exploitation invité sur cette instance" -#: ../app/helpers/application_helper/toolbar/miq_groups_center.rb:35 -msgid "Edit Sequence of User Groups for LDAP Look Up" -msgstr "Modifier la séquence de groupes d'utilisateurs pour la recherche LDAP" +msgid "Hard Reboot the Guest OS on this Instance?" +msgstr "Effectuer le redémarrage du système d'exploitation invité sur cette instance ?" -#: ../app/helpers/application_helper/toolbar/miq_groups_center.rb:53 -msgid "Edit '%{customer_name}' Tags for the selected Groups" -msgstr "Modifier les balises '%{customer_name}' pour les groupes sélectionnés" +msgid "Hardware" +msgstr "Matériel" -#: ../app/helpers/application_helper/toolbar/miq_policies_center.rb:13 -msgid "Add a New %{model} %{mode} Policy" -msgstr "Ajouter une nouvelle stratégie %{model} %{mode}" +msgid "Hardware Attribute" +msgstr "Attribut matériel" -#: ../app/helpers/application_helper/toolbar/miq_policy_center.rb:12 -msgid "Edit Basic Info, Scope, and Notes" -msgstr "Modifier les infos de base, l'étendue et les notes" +msgid "Hawkular" +msgstr "Hawkular" -#: ../app/helpers/application_helper/toolbar/miq_policy_center.rb:21 -msgid "Copy this Policy to new Policy [%{new_policy_description}]" -msgstr "Copier cette stratégie dans une nouvelle [%{new_policy_description}]" +msgid "Hawkular API Port" +msgstr "Port API Hawkular" -#: ../app/helpers/application_helper/toolbar/miq_policy_center.rb:26 -msgid "Copy this %{policy_type} Policy" -msgstr "Copier cette stratégie %{policy_type}" +msgid "Hawkular Host Name" +msgstr "Nom d'hôte Hawkular" -#: ../app/helpers/application_helper/toolbar/miq_policy_center.rb:29 -msgid "" -"Are you sure you want to create Policy [%{new_policy_description}] from this P" -"olicy?" -msgstr "" -"Voulez-vous vraiment créer la stratégie [%{new_policy_description}] à partir d" -"e cette stratégie ?" +msgid "Header" +msgstr "En-tête" -#: ../app/helpers/application_helper/toolbar/miq_policy_center.rb:40 -msgid "Delete this %{policy_type} Policy" -msgstr "Supprimer cette stratégie %{policy_type}" +msgid "Headers" +msgstr "En-têtes" -#: ../app/helpers/application_helper/toolbar/miq_policy_center.rb:45 -msgid "Are you sure you want to delete this %{policy_type} Policy?" -msgstr "Voulez-vous vraiment supprimer cette stratégie %{policy_type} ?" +msgid "Headers:" +msgstr "En-têtes :" -#: ../app/helpers/application_helper/toolbar/miq_policy_center.rb:50 -msgid "Create a new Condition assigned to this Policy" -msgstr "Créer une condition affectée à cette stratégie" +msgid "Healthy" +msgstr "Sain" -#: ../app/helpers/application_helper/toolbar/miq_policy_center.rb:58 -msgid "Edit this Policy's Condition assignments" -msgstr "Modifier les affectations de conditions de cette stratégie" +msgid "Heat Templates" +msgstr "Modèles Heat" -#: ../app/helpers/application_helper/toolbar/miq_policy_center.rb:66 -msgid "Edit this Policy's Event assignments" -msgstr "Modifier les affectations d'événements de cette stratégie" +msgid "Help" +msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_policy_profile_center.rb:12 -msgid "Edit this Policy Profile" -msgstr "Modifier ce profil de stratégie" +msgid "Hide Detail Rows" +msgstr "Masquer les lignes de détails" -#: ../app/helpers/application_helper/toolbar/miq_policy_profile_center.rb:19 -msgid "Remove this Policy Profile" -msgstr "Supprimer ce profil de stratégie" +msgid "Hide Input Parameters" +msgstr "Masquer les paramètres d'entrée" -#: ../app/helpers/application_helper/toolbar/miq_policy_profile_center.rb:23 -msgid "Are you sure you want to remove this Policy Profile?" -msgstr "Voulez-vous supprimer ce Profil de stratégie ?" +msgid "Hide deprecated" +msgstr "" -#: ../app/helpers/application_helper/toolbar/miq_policy_profiles_center.rb:12 -msgid "Add a New Policy Profile" -msgstr "Ajouter un nouveau profil de stratégie" +msgid "High" +msgstr "Élevé" -#: ../app/helpers/application_helper/toolbar/miq_report_center.rb:6 -msgid "Queue this Report to be generated" -msgstr "Mettre ce rapport en file d'attente de production" +msgid "Hint: Press Ctrl-Alt to release the cursor from the guest" +msgstr "Conseil : appuyez sur Ctrl+Alt pour libérer le pointeur de l'invité" -#: ../app/helpers/application_helper/toolbar/miq_report_center.rb:7 -msgid "Queue" -msgstr "File d'attente" +msgid "History" +msgstr "Historique" -#: ../app/helpers/application_helper/toolbar/miq_report_center.rb:20 -#: ../app/helpers/application_helper/toolbar/miq_reports_center.rb:12 -msgid "Add a new Report" -msgstr "Ajouter un nouveau Rapport" +msgid "Host" +msgid_plural "Hosts" +msgstr[0] "Hôte" +msgstr[1] "Hôtes" -#: ../app/helpers/application_helper/toolbar/miq_report_center.rb:26 -msgid "Edit this Report" -msgstr "Modifier ce rapport" +msgid "Host \"%{hostname}\" added to %{model} \"%{name}\"" +msgstr "Hôte \"%{hostname}\" ajouté à %{model} \"%{name}\"" -#: ../app/helpers/application_helper/toolbar/miq_report_center.rb:32 -msgid "Copy this Report" -msgstr "Copier ce Rapport" +msgid "Host \"%{hostname}\" removed from %{model} \"%{name}\"" +msgstr "Hôte \"%{hostname}\" supprimé de %{model} \"%{name}\"" -#: ../app/helpers/application_helper/toolbar/miq_report_center.rb:38 -#: ../app/helpers/application_helper/toolbar/saved_report_center.rb:20 -msgid "Delete this Saved Report from the Database" -msgstr "Supprimer ce Rapport sauvegardé de la Base de données" +msgid "Host / Node" +msgstr "Hôte / Nœud" -#: ../app/helpers/application_helper/toolbar/miq_report_center.rb:43 -#: ../app/helpers/application_helper/toolbar/saved_reports_center.rb:34 -msgid "" -"Warning: The selected Saved Reports will be permanently removed from the datab" -"ase!" +msgid "Host / Node: %{name}" msgstr "" -"Avertissement : les rapports enregistrés sélectionnés seront définitivement su" -"pprimés de la base de données" -#: ../app/helpers/application_helper/toolbar/miq_report_center.rb:48 -msgid "Delete this Report from the Database" -msgstr "Supprimer ce Rapport de la Base de données" +msgid "Host Aggregate Name" +msgstr "Nom d'agrégat de machines" -#: ../app/helpers/application_helper/toolbar/miq_report_center.rb:51 -msgid "Warning: The selected Reports will be permanently removed from the database!" -msgstr "" -"Avertissement : les rapports sélectionnés seront définitivement supprimés de l" -"a base de données" +msgid "Host Aggregate creation failed: Task start failed: ID [%{id}]" +msgstr "La création d'un agrégat de machines a échoué : échec de démarrage de la tâche : ID [%{id}]" -#: ../app/helpers/application_helper/toolbar/miq_report_center.rb:56 -#: ../app/helpers/application_helper/toolbar/miq_report_schedules_center.rb:12 -#: ../app/helpers/application_helper/toolbar/miq_schedules_center.rb:12 -msgid "Add a new Schedule" -msgstr "Ajouter un nouveau Planning" +msgid "Host Aggregates" +msgstr "Agrégats d'hôtes" -#: ../app/helpers/application_helper/toolbar/miq_report_schedule_center.rb:12 -#: ../app/helpers/application_helper/toolbar/miq_schedule_center.rb:12 -msgid "Edit this Schedule" -msgstr "Modifier ce planning" +msgid "Host Aggregates not supported by chosen provider" +msgstr "Agrégats d'hôtes non pris en charge par le fournisseur" -#: ../app/helpers/application_helper/toolbar/miq_report_schedule_center.rb:17 -msgid "Delete this Schedule" -msgstr "Supprimer ce Planning" +msgid "Host Analysis" +msgstr "Analyse de l'hôte" -#: ../app/helpers/application_helper/toolbar/miq_report_schedule_center.rb:20 -#: ../app/helpers/application_helper/toolbar/miq_schedule_center.rb:20 -msgid "Warning: This Schedule and ALL of its components will be permanently removed!" -msgstr "" -"Avertissement : ce planning et TOUS ses composants seront définitivement suppr" -"imés" +msgid "Host Compliance Check" +msgstr "Vérification de conformité de l'hôte" -#: ../app/helpers/application_helper/toolbar/miq_report_schedule_center.rb:25 -#: ../app/helpers/application_helper/toolbar/miq_schedule_center.rb:25 -msgid "Queue up this Schedule to run now" -msgstr "Mettre ce planning en file d'attente pour exécution immédiate" +msgid "Host Compliance Policies" +msgstr "Stratégies de conformité de l'hôte" -#: ../app/helpers/application_helper/toolbar/miq_report_schedules_center.rb:18 -#: ../app/helpers/application_helper/toolbar/miq_schedules_center.rb:17 -msgid "Edit the selected Schedule" -msgstr "Modifier le planning sélectiionné" +msgid "Host Conditions" +msgstr "Conditions de l'hôte" -#: ../app/helpers/application_helper/toolbar/miq_report_schedules_center.rb:26 -#: ../app/helpers/application_helper/toolbar/miq_schedules_center.rb:25 -msgid "Delete the selected Schedules" -msgstr "Supprimer les plannings sélectionnées" +msgid "Host Control Policies" +msgstr "Stratégies de contrôle de l'hôte" -#: ../app/helpers/application_helper/toolbar/miq_report_schedules_center.rb:29 -#: ../app/helpers/application_helper/toolbar/miq_schedules_center.rb:28 -msgid "" -"Warning: The selected Schedules and ALL of their components will be permanentl" -"y removed!" +msgid "Host Default VNC End Port" +msgstr "Port VNC de fin par défaut de l'hôte" + +msgid "Host Default VNC Port Range" +msgstr "Plage de ports VNC par défaut de l'hôte" + +msgid "Host Default VNC Start Port" +msgstr "Port VNC de début par défaut de l'hôte" + +msgid "Host Name" msgstr "" -"Avertissement : les plannings sélectionnés et TOUS leurs composants seront déf" -"initivement supprimés" -#: ../app/helpers/application_helper/toolbar/miq_report_schedules_center.rb:35 -#: ../app/helpers/application_helper/toolbar/miq_schedules_center.rb:34 -msgid "Enable the selected Schedules" -msgstr "Activer les plannings sélectionnés" +msgid "Host Protocol" +msgstr "Protocole hôte" + +msgid "Host Selection" +msgstr "Sélection d'hôte" -#: ../app/helpers/application_helper/toolbar/miq_report_schedules_center.rb:43 -#: ../app/helpers/application_helper/toolbar/miq_schedules_center.rb:42 -msgid "Disable the selected Schedules" -msgstr "Désactiver les plannings sélectionnées" +msgid "Host is required" +msgstr "L'hôte est obligatoire" -#: ../app/helpers/application_helper/toolbar/miq_report_schedules_center.rb:52 -#: ../app/helpers/application_helper/toolbar/miq_schedules_center.rb:51 -msgid "Queue up selected Schedules to run now" -msgstr "Mettre les plannings sélectionnés en file d'attente pour exécution immédiate" +msgid "Host platform" +msgstr "Plateforme hôte" -#: ../app/helpers/application_helper/toolbar/miq_request_center.rb:6 -msgid "Copy original Request" -msgstr "Copier la requête originale" +msgid "Host: %{name}" +msgstr "Hôte : %{name}" -#: ../app/helpers/application_helper/toolbar/miq_request_center.rb:13 -msgid "Edit the original Request" -msgstr "Modifier la demande initiale" +msgid "Hosted Domain" +msgstr "Domaine hébergé" -#: ../app/helpers/application_helper/toolbar/miq_request_center.rb:20 -msgid "Delete this Request" -msgstr "Supprimer cette Requête" +msgid "Hosted Domain:" +msgstr "Domaine hébergé :" -#: ../app/helpers/application_helper/toolbar/miq_request_center.rb:23 -msgid "Are you sure you want to delete this Request?" -msgstr "Êtes-vous sûr de vouloir supprimer cette Requête ?" +msgid "Hostname" +msgid_plural "Hostnames" +msgstr[0] "Nom d'hôte" +msgstr[1] "Noms d'hôte" -#: ../app/helpers/application_helper/toolbar/miq_request_center.rb:27 -#: ../app/helpers/application_helper/toolbar/miq_requests_center.rb:6 -#: ../app/helpers/application_helper/toolbar/tasks_center.rb:6 -msgid "Reload the current display" -msgstr "Recharger l'affichage actuel" +msgid "Hostname (or IPv4 or IPv6 address)" +msgstr "Nom d'hôte (ou adresse IPv4 ou IPv6)" -#: ../app/helpers/application_helper/toolbar/miq_request_center.rb:35 -msgid "Approve this Request" -msgstr "Approuver cette Requête" +msgid "Hostname is required" +msgstr "Le nom d'hôte est obligatoire" -#: ../app/helpers/application_helper/toolbar/miq_request_center.rb:44 -msgid "Deny this Request" -msgstr "Refuser cette demande" +msgid "Hostname or IP address" +msgstr "Nom d'hôte ou adresse IP" -#: ../app/helpers/application_helper/toolbar/miq_schedule_center.rb:17 -msgid "Delete this Schedule from the Database" -msgstr "Supprimer ce Planning de la base de données" +msgid "Hostname or IPv4/IPv6 address" +msgstr "Nom d'hôte ou adresse IPv4/IPv6" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:12 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:12 -msgid "Refresh relationships and power states for all items related to this Template" -msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés à ce modèle" +msgid "Hosts" +msgstr "Hôtes" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:14 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:14 -msgid "Refresh relationships and power states for all items related to this Template?" -msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés à ce modèle ?" +msgid "Hosts / Nodes" +msgstr "Hôtes / Nœuds" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:19 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:19 -msgid "Perform SmartState Analysis on this Template" -msgstr "Effectuer une analyse SmartState sur ce modèle" +msgid "Hosts with failed %{name}" +msgstr "Hôtes avec %{name} en échec" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:21 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:21 -msgid "Perform SmartState Analysis on this Template?" -msgstr "Effectuer une analyse SmartState sur ce modèle ?" +msgid "Hosts with running %{name}" +msgstr "Hôtes avec %{name} en cours d'exécution" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:27 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:27 -msgid "Edit this Template" -msgstr "Modifier ce modèle" +msgid "Hour" +msgstr "Heure" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:33 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:32 -msgid "Set Ownership for this Template" -msgstr "Définir la propriété de ce modèle" +msgid "Hourly" +msgstr "Horaire" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:38 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:37 -msgid "Remove this Template" -msgstr "Supprimer ce modèle" +msgid "Hourly Timer" +msgstr "Minuterie horaire" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:39 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:38 -msgid "Remove Template" -msgstr "Supprimer le modèle" +msgid "Hours" +msgstr "Heures" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:41 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:40 -msgid "Warning: This Template and ALL of its components will be permanently removed!" -msgstr "" -"Avertissement : ce modèle et TOUS ses composants seront définitivement supprim" -"és" +msgid "Hover Text" +msgstr "Texte de pointage" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:55 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:54 -msgid "Manage Policies for this Template" -msgstr "Gérer les stratégies pour ce modèle" +msgid "Hybrid View" +msgstr "Vue hybride" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:61 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:60 -msgid "View Policy Simulation for this Template" -msgstr "Afficher la simulation de stratégie pour ce modèle" +msgid "Hyper-V" +msgstr "Hyper-V" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:67 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:177 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:66 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:164 -msgid "Edit Tags for this Template" -msgstr "Modifier les balises pour ce modèle" +msgid "ID" +msgstr "ID" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:72 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:167 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:71 -msgid "Check Compliance of the last known configuration for this Template" -msgstr "Vérifier la conformité de la dernière configuration connue pour ce modèle" +msgid "ID within Provider" +msgstr "ID dans le fournisseur" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:74 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:169 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:73 -msgid "Initiate Check Compliance of the last known configuration for this Template?" +msgid "ID:" +msgstr "ID :" + +msgid "IOPS" msgstr "" -"Lancer la vérification de conformité de la dernière configuration connue pour " -"ce modèle ?" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:88 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:129 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:94 -msgid "Clone this Template" -msgstr "Cloner ce modèle" +msgid "IP Address" +msgid_plural "IP Addresses" +msgstr[0] "Adresse IP" +msgstr[1] "Adresses IP" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:105 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:111 -msgid "Show Capacity & Utilization data for this Template" -msgstr "Afficher les données de capacité et d'utilisation de ce modèle" +msgid "IP Address Information" +msgstr "Informations sur l'adresse IP" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:112 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:117 -msgid "Show Timelines for this Template" -msgstr "Afficher les chronologies pour ce modèle" +msgid "IP Version" +msgstr "Version IP" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:123 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:127 -msgid "Create a new snapshot for this Template" -msgstr "Créer un cliché pour ce modèle" +msgid "IPMI" +msgstr "IPMI " -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:130 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:133 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:280 -msgid "Delete Snapshots" -msgstr "Supprimer les Clichés" +msgid "IPMI Credentials" +msgstr "Informations d'identification IPMI" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:136 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:139 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:286 -msgid "Delete Selected Snapshot" -msgstr "Supprimer le Cliché sélectionné" +msgid "IPMI IP Address" +msgstr "Adresse IP IPMI" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:138 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:141 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:288 -msgid "" -"The selected snapshot will be permanently deleted. Are you sure you want to de" -"lete the selected snapshot?" -msgstr "" -"Le cliché sélectionné sera définitivement supprimé. Voulez-vous vraiment suppr" -"imer ce cliché ?" +msgid "IPMI IP Address, Username and matching password fields are needed to perform verification of credentials" +msgstr "L'adresse IP IPMI, le nom d'utilisateur et les champs de mot de passe correspondants sont nécessaires pour effectuer la vérification des informations d'identification" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:144 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:147 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:294 -msgid "Delete All Existing Snapshots" -msgstr "Supprimer tous les clichés existants" +msgid "IPMI Password and Verify Password fields do not match" +msgstr "Les champs Mot de passe IPMI et Vérifier le mot de passe ne correspondent pas" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:146 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:149 -msgid "Delete all of this Templates existing snapshots?" -msgstr "Supprimer tous les clichés existants de ce modèle ?" +msgid "IPMI Present" +msgstr "Adresse IPMI présente" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:152 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:155 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:302 -msgid "Revert to selected snapshot" -msgstr "Revenir au cliché sélectionné" +msgid "IPv6 Address" +msgstr "Adresse IPv6" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:154 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:157 -msgid "" -"This Template will revert to selected snapshot. Are you sure you want to rever" -"t to the selected snapshot?" -msgstr "" -"Ce modèle reviendra au cliché sélectionné. Voulez-vous vraiment revenir au cli" -"ché sélectionné ?" +msgid "ISCSI Target Lun Number" +msgstr "Numéro LUN cible ISCSI" -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:182 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:169 -msgid "Compare selected Templates" -msgstr "Comparer les modèles sélectionnés" +msgid "ISCSI Target Portal" +msgstr "Portail cible ISCSI" -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:14 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:14 -msgid "" -"Refresh relationships and power states for all items related to the selected T" -"emplates" -msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés aux modèles sélectionnés" +msgid "ISCSI Target Qualified Name" +msgstr "Nom qualifié cible ISCSI" -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:17 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:17 -msgid "" -"Refresh relationships and power states for all items related to the selected T" -"emplates?" -msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés aux modèles sélectionnés ?" +msgid "ISO" +msgstr "ISO" -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:23 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:32 -msgid "Select two or more Templates to compare" -msgstr "Sélectionner plusieurs modèles à comparer" +msgid "ISO Datastores" +msgstr "Magasins de données ISO" -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:24 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:33 -msgid "Compare Selected Templates" -msgstr "Comparer les Modèles sélectionnés" +msgid "ISO Images" +msgstr "Images ISO" -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:32 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:41 -msgid "Select a single Template to edit" -msgstr "Sélectionner un modèle à modifier" +msgid "Identification" +msgstr "Identification" -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:33 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:42 -msgid "Edit Selected Template" -msgstr "Modifier le modèle sélectionné" +msgid "If" +msgstr "Si" -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:40 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:49 -msgid "Set Ownership for the selected Templates" -msgstr "Définir la propriété des modèles sélectionnés" +msgid "If this widget is new or has just been added to your dashboard, the data is being generated and should be available soon." +msgstr "Si ce composant d'interface est nouveau ou vient d'être ajouté à votre tableau de bord, les données sont en cours de génération et devraient bientôt être disponibles." -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:48 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:57 -msgid "Remove selected Templates" -msgstr "Supprimer les modèles sélectionnés" +msgid "If you choose to close this wizard, deployment status can be monitored under requests." +msgstr "Si vous choisissez de fermer cet assistant, l'état de déploiement peut être contrôlé sous les demandes." -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:49 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:58 -msgid "Remove Templates" -msgstr "Supprimer les modèles" +msgid "Image" +msgstr "Image" -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:51 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:60 -msgid "" -"Warning: The selected Templates and ALL of their components will be permanentl" -"y removed!" +msgid "Image Id" +msgstr "ID d'image" + +msgid "Image Registries" msgstr "" -"Avertissement : les modèles sélectionnés et TOUS leurs composants seront défin" -"itivement supprimés" -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:69 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:78 -msgid "Manage Policies for the selected Templates" -msgstr "Gérer les stratégies pour les modèles sélectionnés" +msgid "Image Type" +msgstr "Type d'image" -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:77 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:86 -msgid "View Policy Simulation for the selected Templates" -msgstr "Afficher la simulation de stratégie pour les modèles sélectionnés" +msgid "Image shown at 25% of actual size" +msgstr "Image affichée à 25 % de sa taille réelle" -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:85 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:94 -msgid "Edit tags for the selected Templates" -msgstr "Modifier les balises pour les modèles sélectionnés" +msgid "Images" +msgstr "Images" -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:93 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:102 -msgid "Check Compliance of the last known configuration for the selected Templates" -msgstr "" -"Vérifier la conformité de la dernière configuration connue pour les modèles sé" -"lectionnés" +msgid "Images by Provider" +msgstr "Images par fournisseur" -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:96 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:105 -msgid "" -"Initiate Check Compliance of the last known configuration for the selected Tem" -"plates?" -msgstr "" -"Lancer la vérification de conformité de la dernière configuration connue pour " -"les modèles sélectionnés ?" +msgid "Immutable VM" +msgstr "Machine virtuelle non modifiable" -#: ../app/helpers/application_helper/toolbar/miq_widget_center.rb:12 -msgid "Edit this Widget" -msgstr "Modifier ce composant d'interface" +msgid "Import" +msgstr "Importer" -#: ../app/helpers/application_helper/toolbar/miq_widget_center.rb:17 -msgid "Copy this Widget" -msgstr "Copier ce Widget" +msgid "Import / Export" +msgstr "Importer / Exporter" -#: ../app/helpers/application_helper/toolbar/miq_widget_center.rb:22 -msgid "Delete this Widget from the Database" -msgstr "Supprimer ce composant d'interface de la base de données" +msgid "Import Datastore classes" +msgstr "Importer des classes de magasin de données" -#: ../app/helpers/application_helper/toolbar/miq_widget_center.rb:25 -msgid "Warning: This Widget and ALL of its components will be permanently removed!" -msgstr "" -"Avertissement : ce composant graphique et TOUS ses composants seront définitiv" -"ement supprimés" +msgid "Import Datastore classes (*.zip)" +msgstr "Importer des classes de magasin de données (*.zip)" -#: ../app/helpers/application_helper/toolbar/miq_widget_center.rb:30 -msgid "Generate Widget content now" -msgstr "Générer le contenu de composant d'interface maintenant" +msgid "Import Datastore via git" +msgstr "Importer le magasin de données via Git" -#: ../app/helpers/application_helper/toolbar/miq_widget_center.rb:32 -msgid "Are you sure you want initiate content generation for this Widget now?" -msgstr "" -"Voulez-vous vraiment initier la génération de contenu pour ce Widget maintenan" -"t ?" +msgid "Import Service Dialogs" +msgstr "Importer des boîtes de dialogue de service" -#: ../app/helpers/application_helper/toolbar/miq_widget_set_center.rb:12 -msgid "Edit this Dashboard" -msgstr "Modifier ce tableau de bord" +msgid "Import Tags" +msgstr "Importer des balises" -#: ../app/helpers/application_helper/toolbar/miq_widget_set_center.rb:17 -msgid "Delete this Dashboard from the Database" -msgstr "Supprimer ce Dashboard de la base de données" +msgid "Import Variables" +msgstr "Importer les variables" -#: ../app/helpers/application_helper/toolbar/miq_widget_set_center.rb:20 -msgid "Warning: This Dashboard and ALL of its components will be permanently removed!" -msgstr "" -"Avertissement : ce tableau de bord et TOUS ses composants seront définitivemen" -"t supprimés" +msgid "Import Widgets" +msgstr "Importer des composants d'interface" -#: ../app/helpers/application_helper/toolbar/miq_widget_sets_center.rb:12 -msgid "Add a new Dashboard" -msgstr "Ajouter un Nouveau Dashboard" +msgid "Import cancelled by user" +msgstr "Importation annulée par l'utilisateur" -#: ../app/helpers/application_helper/toolbar/miq_widget_sets_center.rb:18 -msgid "Edit Sequence of Dashboards" -msgstr "Modifier la séquence de tableaux de bord" +msgid "Import file cannot be empty" +msgstr "Le fichier d'importation ne peut pas être vide" -#: ../app/helpers/application_helper/toolbar/miq_widgets_center.rb:6 -msgid "Reload Widgets" -msgstr "Recharger les composants graphiques" +msgid "Import file was uploaded successfully" +msgstr "Le fichier d'importation a été téléchargé" -#: ../app/helpers/application_helper/toolbar/miq_widgets_center.rb:19 -msgid "Add a new Widget" -msgstr "Ajouter un nouveau Widget" +msgid "Import not available due to conflicts" +msgstr "Importation non disponible en raison de conflits" -#: ../app/helpers/application_helper/toolbar/network_port_center.rb:12 -msgid "Edit Tags for this Network Port" -msgstr "Modifier les balises de ce port de réseau" +msgid "Import validation complete: %{good_record}, %{bad_record}" +msgstr "Validation de l'importation terminée : %{good_record}, %{bad_record}" -#: ../app/helpers/application_helper/toolbar/network_ports_center.rb:14 -msgid "Edit Tags for the selected Network Ports" -msgstr "Modifier les balises pour les ports de réseaux sélectionnés" +msgid "Import/Export" +msgstr "Importer/Exporter" -#: ../app/helpers/application_helper/toolbar/network_router_center.rb:14 -msgid "Edit this Router" -msgstr "Modifier ce router" +msgid "Imported from git" +msgstr "Importé depuis Git" -#: ../app/helpers/application_helper/toolbar/network_router_center.rb:21 -msgid "Delete this Router" -msgstr "Supprimer ce Routeur" +msgid "In Use" +msgstr "En cours d'utilisation" -#: ../app/helpers/application_helper/toolbar/network_router_center.rb:24 -msgid "Warning: This Router and ALL of its components will be removed!" -msgstr "Avertissement : ce router et TOUS ses composants seront supprimés" +msgid "In use by %s reports, cannot be disabled" +msgstr "Utilisé par les rapports %s ; désactivation impossible" -#: ../app/helpers/application_helper/toolbar/network_router_center.rb:42 -msgid "Edit Tags for this Network Router" -msgstr "Modifier les balises de ce routeur réseau" +msgid "Include Capacity & Utilization Metrics" +msgstr "" -#: ../app/helpers/application_helper/toolbar/network_routers_center.rb:14 -msgid "Add a new Router" -msgstr "Ajouter un nouveau Router" +msgid "Include Domain prefix in the path" +msgstr "Inclure le préfixe du domaine dans le chemin d'accès" -#: ../app/helpers/application_helper/toolbar/network_routers_center.rb:21 -msgid "Edit selected Router" -msgstr "Éditer le router sélectionné" +msgid "Incorrect username or password" +msgstr "Nom d'utilisateur ou mot de passe incorrect" -#: ../app/helpers/application_helper/toolbar/network_routers_center.rb:30 -msgid "Delete selected Routers" -msgstr "Supprimer les routers sélectionnés" +msgid "Incremental?" +msgstr "Incrémentiel ?" -#: ../app/helpers/application_helper/toolbar/network_routers_center.rb:33 -msgid "Warning: The selected Routers and ALL of their components will be removed!" -msgstr "" -"Avertissement : les routers sélectionnés et TOUS leurs composants seront défin" -"itivement supprimés" +msgid "Index" +msgstr "Index" -#: ../app/helpers/application_helper/toolbar/network_routers_center.rb:54 -msgid "Edit Tags for the selected Network Routers" -msgstr "Modifier les balises pour les routers de réseaux sélectionnés" +msgid "Indexes" +msgstr "Index" -#: ../app/helpers/application_helper/toolbar/ontap_file_share_center.rb:12 -msgid "Create a Datastore based on this File Share" -msgstr "Créer un magasin de données selon ce partage de fichiers" +msgid "Indexes for %{model} \"%{name}\"" +msgstr "Index pour %{model} \"%{name}\"" -#: ../app/helpers/application_helper/toolbar/ontap_file_share_center.rb:13 -msgid "Create Datastore" -msgstr "Créer un magasin de données" +msgid "Infinity" +msgstr "Infinité" -#: ../app/helpers/application_helper/toolbar/ontap_file_share_center.rb:27 -msgid "Edit Tags for this File Share" -msgstr "Modifier les balises pour ce partage de fichiers" +msgid "Info" +msgstr "Infos" -#: ../app/helpers/application_helper/toolbar/ontap_file_share_center.rb:42 -msgid "Show Utilization for this File Share" -msgstr "Afficher l'utilisation de ce partage de fichiers" +msgid "Info/Settings" +msgstr "Infos/Paramètres" -#: ../app/helpers/application_helper/toolbar/ontap_file_shares_center.rb:14 -msgid "Edit tags for the selected File Shares" -msgstr "Modifier les balises pour les partages de fichiers sélectionnés" +msgid "Information" +msgstr "" -#: ../app/helpers/application_helper/toolbar/ontap_logical_disk_center.rb:12 -msgid "Edit Tags for this Logical Disk" -msgstr "Modifier les balises pour ce disque logique" +msgid "Information Count" +msgstr "" -#: ../app/helpers/application_helper/toolbar/ontap_logical_disk_center.rb:27 -msgid "Show Capacity & Utilization data for this Logical Disk" -msgstr "Afficher les données de capacité et d'utilisation de ce disque logique" +msgid "Information for Registered VMs" +msgstr "Informations pour les machines virtuelles enregistrées" -#: ../app/helpers/application_helper/toolbar/ontap_logical_disk_center.rb:34 -msgid "Show Utilization Statistics for this Logical Disk" -msgstr "Afficher les statistiques d'utilisation de ce disque logique" +msgid "Infrastructure" +msgstr "Infrastructure" -#: ../app/helpers/application_helper/toolbar/ontap_logical_disk_center.rb:35 -msgid "Statistics" -msgstr "Statistiques" +msgid "Infrastructure Machine ID" +msgstr "ID de machine d'infrastructure" -#: ../app/helpers/application_helper/toolbar/ontap_logical_disks_center.rb:14 -msgid "Edit tags for the selected Logical Disks" -msgstr "Modifier les balises pour les disques logiques sélectionnés" +msgid "Infrastructure Providers" +msgstr "Fournisseurs d'infrastructure" -#: ../app/helpers/application_helper/toolbar/ontap_storage_system_center.rb:12 -msgid "Create a Logical Disk (NetApp Flexible Volume) on this Filer" -msgstr "" -"Créer un disque logique (volume flexible NetApp) sur cet organiseur de fichier" -"s" +msgid "Infrastructure can only be assigned to Nodes" +msgstr "L'infrastructure ne peut être affectée qu'à des nœuds" -#: ../app/helpers/application_helper/toolbar/ontap_storage_system_center.rb:13 -msgid "Create Logical Disk" -msgstr "Créer un Disque Logique" +msgid "Infrastructures" +msgstr "Infrastructures" -#: ../app/helpers/application_helper/toolbar/ontap_storage_system_center.rb:27 -msgid "Edit Tags for this Filer" -msgstr "Modifier les balises pour cet organiseur de fichiers" +msgid "Inherit Tags" +msgstr "Hériter des balises" -#: ../app/helpers/application_helper/toolbar/ontap_storage_system_center.rb:42 -msgid "Show Utilization for this Filer" -msgstr "Afficher l'utilisation de cet organiseur de fichiers" +msgid "Inherit Tags Settings" +msgstr "Hériter des paramètres des balises" -#: ../app/helpers/application_helper/toolbar/ontap_storage_systems_center.rb:14 -msgid "Edit tags for the selected Systems" -msgstr "Modifier les balises pour les systèmes sélectionnés" +msgid "Init Process" +msgid_plural "Init Processes" +msgstr[0] "Processus d'initialisation" +msgstr[1] "Processus d'initialisation" -#: ../app/helpers/application_helper/toolbar/ontap_storage_volume_center.rb:12 -#: ../app/helpers/application_helper/toolbar/persistent_volume_center.rb:39 -msgid "Edit Tags for this Volume" -msgstr "Modifier les balises pour ce volume" +msgid "Init Processes" +msgstr "Processus d'initialisation" -#: ../app/helpers/application_helper/toolbar/ontap_storage_volume_center.rb:27 -msgid "Show Utilization for this Storage System" -msgstr "Afficher l'utilisation de ce système de stockage" +msgid "Initialization in progress..." +msgstr "Initialisation en cours…" -#: ../app/helpers/application_helper/toolbar/ontap_storage_volumes_center.rb:14 -msgid "Edit tags for the selected Volumes" -msgstr "Modifier les balises pour les volumes sélectionnés" +msgid "Initialized" +msgstr "Initialisé" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:12 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:12 -msgid "Refresh relationships and power states for all items related to this Instance" -msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés à cette instance" +msgid "Initializing" +msgstr "Initialisation" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:14 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:14 -msgid "Refresh relationships and power states for all items related to this Instance?" -msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés à cette instance ?" +msgid "Initiate Check Compliance of the last known configuration for the selected Templates?" +msgstr "Lancer la vérification de conformité de la dernière configuration connue pour les modèles sélectionnés ?" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:18 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:18 -msgid "Perform SmartState Analysis on this Instance" -msgstr "Effectuer une analyse SmartState sur cette instance" +msgid "Initiate Check Compliance of the last known configuration for the selected items?" +msgstr "Lancer la vérification de conformité de la dernière configuration connue pour les éléments sélectionnés ?" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:20 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:20 -msgid "Perform SmartState Analysis on this Instance?" -msgstr "Effectuer une analyse SmartState sur cette instance ?" +msgid "Initiate Check Compliance of the last known configuration for this Image?" +msgstr "Lancer la vérification de conformité de la dernière configuration connue pour cette image ?" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:31 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:31 -msgid "Set Ownership for this Instance" -msgstr "Définir la propriété de cette instance" +msgid "Initiate Check Compliance of the last known configuration for this Instance?" +msgstr "Lancer la vérification de conformité de la dernière configuration connue pour cette instance ?" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:37 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:38 -msgid "Remove Instance" -msgstr "Supprimer l'instance" +msgid "Initiate Check Compliance of the last known configuration for this Template?" +msgstr "Lancer la vérification de conformité de la dernière configuration connue pour ce modèle ?" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:39 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:40 -msgid "Warning: This Instance and ALL of its components will be permanently removed!" -msgstr "" -"Avertissement : cette instance et TOUS ses composants seront définitivement su" -"pprimés" +msgid "Initiate Check Compliance of the last known configuration for this VM?" +msgstr "Lancer la vérification de conformité de la dernière configuration connue pour cette machine virtuelle ?" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:43 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:52 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:44 -msgid "Edit Management Engine Relationship" -msgstr "Modifier la relation du moteur de gestion" +msgid "Initiate Check Compliance of the last known configuration for this item?" +msgstr "Lancer la vérification de conformité de la dernière configuration connue pour cet élément ?" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:49 -msgid "Attach a Cloud Volume to this Instance" -msgstr "Associer un volume cloud à cette instance" +msgid "Initiate refresh of recent C&U data" +msgstr "Lancer l'actualisation des données C&U récentes" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:54 -msgid "Detach a Cloud Volume from this Instance" -msgstr "Dissocier un volume cloud de cette instance" +msgid "Initiate refresh of recent C&U data?" +msgstr "Lancer l'actualisation des données C&U récentes ?" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:60 -msgid "Associate a Floating IP with this Instance" -msgstr "Associer une adresse IP flottante à cette instance" +msgid "Input Name" +msgstr "Nom de l'entrée" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:66 -msgid "Disassociate a Floating IP from this Instance" -msgstr "Dissocier une adresse IP flottante de cette instance" +msgid "Input Parameters" +msgstr "Paramètres d'entrée" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:72 -msgid "Reconfigure this Instance" -msgstr "Reconfigurer cette instance" +msgid "Insecure" +msgstr "Non sécurisé" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:79 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:58 -msgid "CPU/Memory Recommendations of this VM" -msgstr "Recommandations processeur/mémoire de cette machine virtuelle" +msgid "Insecure:" +msgstr "Non sécurisé :" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:80 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:68 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:78 -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:45 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:59 -msgid "Right-Size Recommendations" -msgstr "Recommandations de calibrage" +msgid "Instance" +msgstr "Instance" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:94 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:59 -msgid "Manage Policies for this Instance" -msgstr "Gérer les stratégies pour cette instance" +msgid "Instance \"%{name}\" does not have any associated Floating IPs" +msgstr "Aucune adresse IP flottante n'est associée à l'instance \"%{name}\"" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:99 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:64 -msgid "View Policy Simulation for this Instance" -msgstr "Afficher la simulation de stratégie pour cette instance" +msgid "Instance Power Functions" +msgstr "Fonctions d'alimentation de l'instance" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:104 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:69 -msgid "Edit Tags for this Instance" -msgstr "Modifier les balises pour cette instance" +msgid "Instance Type:" +msgstr "Type d'instance :" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:109 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:74 -msgid "Check Compliance of the last known configuration for this Instance" -msgstr "Vérifier la conformité de la dernière configuration connue pour cette instance" +msgid "Instance is already retired" +msgstr "L'instance est déjà hors service" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:111 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:76 -msgid "Initiate Check Compliance of the last known configuration for this Instance?" +msgid "Instance live migration task failed." msgstr "" -"Lancer la vérification de conformité de la dernière configuration connue pour " -"cette instance ?" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:125 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:90 -msgid "Set Retirement Dates for this Instance" -msgstr "Définir des dates de désactivation pour cette instance" +msgid "Instances" +msgstr "Instances" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:126 -#: ../app/helpers/application_helper/toolbar/orchestration_stack_center.rb:45 -#: ../app/helpers/application_helper/toolbar/service_center.rb:66 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:134 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:91 -msgid "Set Retirement Date" -msgstr "Définir une date de désactivation" +msgid "Instances (%{count})" +msgstr "Instances (%{count})" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:130 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:95 -msgid "Retire this Instance" -msgstr "Désactiver cette instance" +msgid "Instances by Provider" +msgstr "Instances par fournisseur" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:132 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:97 -msgid "Retire this Instance?" -msgstr "Désactiver cette instance ?" +msgid "Integer" +msgstr "Nombre entier" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:136 -#: ../app/views/vm_common/_live_migrate.html.haml:7 -msgid "Migrate Instance" -msgstr "Migrer une instance" +msgid "Integrated NFS Server (POC only)" +msgstr "Serveur NFC intégré (POC uniquement)" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:144 -msgid "Evacuate Instance" -msgstr "Évacuer l'instance" +msgid "Internal" +msgstr "Interne" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:162 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:111 -msgid "Show Capacity & Utilization data for this Instance" -msgstr "Afficher les données de capacité et d'utilisation de cette instance" +msgid "Internal Database" +msgstr "Base de données interne" -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:168 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:117 -msgid "Show Timelines for this Instance" -msgstr "Afficher les chronologies pour cette instance" +msgid "Internal RSS Feed" +msgstr "Flux RSS interne" -#: ../app/helpers/application_helper/toolbar/orchestration_stack_center.rb:12 -msgid "Remove this Orchestration Stack" -msgstr "Supprimer cette pile d'orchestration" +msgid "Interval" +msgstr "Intervalle" -#: ../app/helpers/application_helper/toolbar/orchestration_stack_center.rb:15 -msgid "" -"Warning: This Orchestration Stack and ALL of its components will be permanentl" -"y removed!" -msgstr "" -"Avertissement : cette pile d'orchestration et TOUS ses composants seront défin" -"itivement supprimés" +msgid "Introspect" +msgstr "Introspecter" -#: ../app/helpers/application_helper/toolbar/orchestration_stack_center.rb:29 -msgid "Edit Tags for this Orchestration Stack" -msgstr "Modifier les balises pour cette pile d'orchestration" +msgid "Introspect Node" +msgstr "Introspecter Nœud" -#: ../app/helpers/application_helper/toolbar/orchestration_stack_center.rb:44 -msgid "Set Retirement Dates for this Orchestration Stack" -msgstr "Définir des dates de désactivation pour cette pile d'orchestration" +msgid "Introspect Nodes" +msgstr "Introspecter Noeuds" -#: ../app/helpers/application_helper/toolbar/orchestration_stack_center.rb:49 -#: ../app/helpers/application_helper/toolbar/orchestration_stack_center.rb:51 -msgid "Retire this Orchestration Stack" -msgstr "Désactiver cette pile d'orchestration" +msgid "Introspect selected items" +msgstr "Introspecter Eléments sélectionnés" -#: ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:12 -msgid "Remove selected Orchestration Stacks" -msgstr "Supprimer les piles d'orchestration sélectionnées" +msgid "Introspect selected items?" +msgstr "Introspecter Éléments sélectionnés" -#: ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:13 -msgid "Remove Orchestration Stacks" -msgstr "Supprimer les piles d'orchestration" +msgid "Introspect this item" +msgstr "Introspecter cet élément" -#: ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:15 -msgid "" -"Warning: The selected Orchestration Stacks and ALL of their components will be" -" permanently removed!" -msgstr "" -"Avertissement : les piles d'orchestration sélectionnées et TOUS leurs composan" -"ts seront définitivement supprimés" +msgid "Introspect this item?" +msgstr "Introspecter cet élément ?" -#: ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:33 -msgid "Edit Tags for the selected Orchestration Stacks" -msgstr "Modifier les balises pour les piles d'orchestration sélectionnées" +msgid "Introspected" +msgstr "Introspection" -#: ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:53 -msgid "Set Retirement Dates for the selected Orchestration Stacks" +msgid "Invalid Single Sign-On credentials" +msgstr "Informations d'identification SSO (authentification unique) non valides" + +msgid "Invalid Stack" msgstr "" -"Définir des dates de désactivation pour les piles d'orchestration sélectionnée" -"s" -#: ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:54 -#: ../app/helpers/application_helper/toolbar/services_center.rb:73 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:140 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:183 -msgid "Set Retirement Dates" -msgstr "Définir des dates de désactivation" +msgid "Invalid chart data. Try regenerating the widgets." +msgstr "Données de graphique non valides. Essayez de régénérer les composants d'interface." -#: ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:61 -msgid "Retire selected Orchestration Stacks" -msgstr "Désactiver les piles d'orchestration sélectionnées" +msgid "Invalid chart definition" +msgstr "Définition de graphique non valide" -#: ../app/helpers/application_helper/toolbar/orchestration_stacks_center.rb:63 -msgid "Retire the selected Orchestration Stacks?" -msgstr "Désactiver les piles d'orchestration sélectionnées ?" +msgid "Invalid input" +msgstr "Entrée non valide" -#: -#: ../app/helpers/application_helper/toolbar/orchestration_template_center.rb:12 -msgid "Create Service Dialog from Orchestration Template" -msgstr "Créer une boîte de dialogue de service à partir du modèle d'orchestration" +msgid "Invalid input for \"wait_for_task\"." +msgstr "Entrée non valide pour \"wait_for_task\"." -#: -#: ../app/helpers/application_helper/toolbar/orchestration_template_center.rb:18 -msgid "Edit this Orchestration Template" -msgstr "Modifier ce modèle d'orchestration" +msgid "Invalid input format, please enter a GUID" +msgstr "Format d'entrée non valide. Veuillez saisir un GUID." -#: -#: ../app/helpers/application_helper/toolbar/orchestration_template_center.rb:25 -msgid "Copy this Orchestration Template" -msgstr "Copier ce modèle d'orchestration" +msgid "Invalid items passed" +msgstr "" -#: -#: ../app/helpers/application_helper/toolbar/orchestration_template_center.rb:30 -msgid "Remove this Orchestration Template" -msgstr "Supprimer ce modèle d'orchestration" +msgid "Invalid items selected." +msgstr "" -#: -#: ../app/helpers/application_helper/toolbar/orchestration_template_center.rb:33 -msgid "Remove this Orchestration Template?" -msgstr "Supprimer ce modèle d'orchestration ?" +msgid "Inventory" +msgstr "" -#: -#: ../app/helpers/application_helper/toolbar/orchestration_template_center.rb:47 -msgid "Edit Tags for this Orchestration Template" -msgstr "Modifier les balises pour ce modèle d'orchestration" +msgid "Item" +msgid_plural "Items" +msgstr[0] "Élément" +msgstr[1] "Éléments" + +msgid "Item Type" +msgstr "" -#: -#: ../app/helpers/application_helper/toolbar/orchestration_templates_center.rb:12 -msgid "Create new Orchestration Template" -msgstr "Créer un modèle d'orchestration" +msgid "Items out of scope" +msgstr "Éléments hors limites" -#: -#: ../app/helpers/application_helper/toolbar/orchestration_templates_center.rb:17 -msgid "Edit selected Orchestration Template" -msgstr "Modifier le modèle d'orchestration sélectionné" +msgid "Items per page:" +msgstr "Éléments par page :" -#: -#: ../app/helpers/application_helper/toolbar/orchestration_templates_center.rb:26 -msgid "Copy selected Orchestration Template" -msgstr "Copier le modèle d'orchestration sélectionné" +msgid "JDBC Driver \"%s\" has been installed on this server." +msgstr "Le pilote JDBC \"%s\" a été installé sur ce serveur." -#: -#: ../app/helpers/application_helper/toolbar/orchestration_templates_center.rb:35 -msgid "Remove selected Orchestration Templates" -msgstr "Supprimer les modèles d'orchestration sélectionnés" +msgid "JDBC Driver installation" +msgstr "Installation du pilote JDBC" -#: -#: ../app/helpers/application_helper/toolbar/orchestration_templates_center.rb:37 -msgid "Remove selected Orchestration Templates?" -msgstr "Supprimer les modèles d'orchestration sélectionnés ?" +msgid "JDBC Drivers" +msgstr "Pilotes JDBC" -#: -#: ../app/helpers/application_helper/toolbar/orchestration_templates_center.rb:56 -#: ../app/helpers/application_helper/toolbar/services_center.rb:52 -#: ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:51 -msgid "Edit tags for the selected Items" -msgstr "Modifier les balises pour les éléments sélectionnés" +msgid "JNDI Name" +msgstr "Nom JNDI" -#: ../app/helpers/application_helper/toolbar/persistent_volume_center.rb:13 -msgid "Edit this Volume" -msgstr "Modifier ce volume" +msgid "JSON file format is incorrect, missing 'nodes'." +msgstr "Le format de fichier JSON est incorrect ; 'nœuds' manquants." -#: ../app/helpers/application_helper/toolbar/persistent_volume_center.rb:20 -msgid "Remove this Volume" -msgstr "Supprimer ce volume" +msgid "Job" +msgstr "Tâche" -#: ../app/helpers/application_helper/toolbar/persistent_volume_center.rb:24 -msgid "Warning: This Volume and ALL of its components will be permanently removed!" +msgid "Job Templates" msgstr "" -"Avertissement : ce volume et TOUS ses composants seront définitivement supprim" -"és" -#: ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:13 -msgid "Add a New Volume" -msgstr "Ajouter un nouveau volume" +msgid "Jobs" +msgstr "Tâches" -#: ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:20 -msgid "Select a single Volume to edit" -msgstr "Sélectionner un volume à modifier" +msgid "KBps" +msgstr "kbit/s" -#: ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:21 -msgid "Edit Selected Volume" -msgstr "Modifier le volume sélectionné" +msgid "KVM" +msgstr "KVM" -#: ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:28 -msgid "Remove selected Volumes" -msgstr "Supprimer les volumes sélectionnés" +msgid "Kernel" +msgstr "Noyau" -#: ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:29 -msgid "Remove Volumes" -msgstr "Supprimer les volumes" +msgid "Kernel Driver" +msgid_plural "Kernel Drivers" +msgstr[0] "Pilote de noyau" +msgstr[1] "Pilotes de noyau" -#: ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:32 -msgid "" -"Warning: The selected Volumes and ALL of their components will be permanently " -"removed!" +msgid "Kernel Drivers" +msgstr "Pilotes de noyau" + +msgid "Key Pair \"%{name}\" created" msgstr "" -"Avertissement : les volumes sélectionnés et TOUS leurs composants seront défin" -"itivement supprimés" -#: ../app/helpers/application_helper/toolbar/persistent_volumes_center.rb:50 -msgid "Edit Tags for this Volumes" -msgstr "Modifier les balises pour ces volumes" +msgid "Key Pair creation failed: Task start failed" +msgstr "" -#: ../app/helpers/application_helper/toolbar/pxe_image_center.rb:12 -msgid "Edit this PXE Image" -msgstr "Modifier cette image PXE" +msgid "Key Pairs" +msgstr "Paires de Clés" -#: ../app/helpers/application_helper/toolbar/pxe_image_type_center.rb:12 -msgid "Edit this System Image Type" -msgstr "Modifier ce type d'image système" +msgid "Key:" +msgstr "Clé :" -#: ../app/helpers/application_helper/toolbar/pxe_image_type_center.rb:17 -msgid "Remove this System Image Type" -msgstr "Supprimer ce type d'image système" +msgid "Keystone V3 Domain ID" +msgstr "ID de domaine Keystone V3" -#: ../app/helpers/application_helper/toolbar/pxe_image_type_center.rb:20 -msgid "Warning: This System Image Type will be permanently removed!" -msgstr "Avertissement : ce type d'image système sera définitivement supprimé" +msgid "Kickstart" +msgstr "Kickstart" -#: ../app/helpers/application_helper/toolbar/pxe_image_types_center.rb:12 -msgid "Add a new System Image Type" -msgstr "Ajouter un nouveau type d'image système" +msgid "Kill" +msgstr "Kill" -#: ../app/helpers/application_helper/toolbar/pxe_image_types_center.rb:17 -msgid "Select a single System Image Type to edit" -msgstr "Sélectionner un type d'image système à modifier" +msgid "Kill Server" +msgstr "Kill Serveur" -#: ../app/helpers/application_helper/toolbar/pxe_image_types_center.rb:18 -msgid "Edit the selected System Image Type" -msgstr "Modifier le type d'image système sélectionné" +msgid "Kill this server" +msgstr "Kill ce serveur" -#: ../app/helpers/application_helper/toolbar/pxe_image_types_center.rb:25 -msgid "Remove selected System Image Types" -msgstr "Supprimer les types d'images système sélectionnés" +msgid "Kind" +msgstr "Genre" -#: ../app/helpers/application_helper/toolbar/pxe_image_types_center.rb:26 -msgid "Remove System Image Types" -msgstr "Supprimer les types d'images système" +msgid "LDAP" +msgstr "LDAP" -#: ../app/helpers/application_helper/toolbar/pxe_image_types_center.rb:28 -msgid "Warning: The selected System Image Types will be permanently removed!" -msgstr "" -"Avertissement : les types d'images système sélectionnés seront définitivement " -"supprimés" +msgid "LDAP Domain: %{ldap_domain_name}" +msgstr "Domaine LDAP : %{ldap_domain_name}" -#: ../app/helpers/application_helper/toolbar/pxe_server_center.rb:12 -msgid "Edit this PXE Server" -msgstr "Modifier ce serveur PXE" +msgid "LDAP Domains" +msgstr "Domaines LDAP" -#: ../app/helpers/application_helper/toolbar/pxe_server_center.rb:17 -msgid "Remove this PXE Server" -msgstr "Supprimer ce serveur PXE" +msgid "LDAP Group Look Up" +msgstr "Recherche de groupe LDAP" -#: ../app/helpers/application_helper/toolbar/pxe_server_center.rb:20 -msgid "" -"Warning: This PXE Server and ALL of its components will be permanently removed" -"!" -msgstr "" -"Avertissement : ce serveur PXE et TOUS ses composants seront définitivement su" -"pprimés" +msgid "LDAP Group Lookup" +msgstr "Recherche de groupe LDAP" -#: ../app/helpers/application_helper/toolbar/pxe_server_center.rb:25 -msgid "Refresh Relationships for this PXE Server" -msgstr "Actualiser les relations pour ce serveur PXE" +msgid "LDAP Groups for User" +msgstr "Groupes LDAP pour l'utilisateur" -#: ../app/helpers/application_helper/toolbar/pxe_server_center.rb:27 -msgid "Refresh Relationships for this PXE Server?" -msgstr "Actualiser les relations pour ce serveur PXE ?" +msgid "LDAP Host Names" +msgstr "Noms d'hôte LDAP" -#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:12 -msgid "Add a New PXE Server" -msgstr "Ajouter un Nouveau Serveur PXE" +msgid "LDAP Host is required" +msgstr "L'Hôte LDAP est requis" -#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:17 -msgid "Select a single PXE Servers to edit" -msgstr "Sélectionner un serveur PXE à modifier" +msgid "LDAP Host should be unique" +msgstr "L'Hôte LDAP doit être unique" -#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:18 -msgid "Edit Selected PXE Servers" -msgstr "Modifier les serveurs PXE sélectionnés" +msgid "LDAP Hostname" +msgstr "Nom d'hôte LDAP" -#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:25 -msgid "Remove selected PXE Servers" -msgstr "Supprimer les serveurs PXE sélectionnés" +msgid "LDAP Hostname and Port fields are needed to perform verification of LDAP Settings" +msgstr "Les champs Port et Nom d'hôte LDAP sont nécessaires pour effectuer la vérification des paramètres LDAP" -#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:26 -msgid "Remove PXE Servers" -msgstr "Supprimer les serveurs PXE" +msgid "LDAP Port" +msgstr "Port LDAP" -#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:28 -msgid "" -"Warning: The selected PXE Servers and ALL of their components will be permanen" -"tly removed!" -msgstr "" -"Avertissement : les serveurs PXE sélectionnés et TOUS leurs composants seront " -"définitivement supprimés" +msgid "LDAP Region: %{ldap_region_name}" +msgstr "Région LDAP : %{ldap_region_name}" -#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:35 -msgid "Refresh Relationships for selected PXE Servers" -msgstr "Actualiser les relations pour les serveurs PXE sélectionnés" +msgid "LDAP Regions" +msgstr "Régions LDAP" -#: ../app/helpers/application_helper/toolbar/pxe_servers_center.rb:38 -msgid "Refresh Relationships for selected PXE Servers?" -msgstr "Actualiser les relations pour les serveurs PXE sélectionnés ?" +msgid "LDAP Servers" +msgstr "Serveurs LDAP" -#: ../app/helpers/application_helper/toolbar/report_view.rb:6 -msgid "Graph View" -msgstr "Vue du graphique" +msgid "LDAP Settings" +msgstr "Paramètres LDAP" -#: ../app/helpers/application_helper/toolbar/report_view.rb:14 -msgid "Hybrid View" -msgstr "Vue hybride" +msgid "LDAP Settings validation was successful" +msgstr "La validation des paramètres LDAP a réussi" -#: ../app/helpers/application_helper/toolbar/report_view.rb:22 -msgid "Tabular View" -msgstr "Vue tabulaire" +msgid "LDAPS" +msgstr "LDAPS" -#: ../app/helpers/application_helper/toolbar/resource_pool_center.rb:12 -msgid "Remove this Resource Pool" -msgstr "Supprimer ce pool de ressources" +msgid "LUN: %{name}" +msgstr "LUN: %{name}" -#: ../app/helpers/application_helper/toolbar/resource_pool_center.rb:13 -msgid "Remove Resource Pool" -msgstr "Supprimer le pool de ressources" +msgid "Label" +msgstr "Libellé" -#: ../app/helpers/application_helper/toolbar/resource_pool_center.rb:15 -msgid "" -"Warning: This Resource Pool and ALL of its components will be permanently remo" -"ved!" +msgid "Label is required" +msgstr "Le libéllé est obligatoire" + +msgid "Labeled Container Images" msgstr "" -"Avertissement : ce pool de ressources et TOUS ses composants seront définitive" -"ment supprimés" -#: ../app/helpers/application_helper/toolbar/resource_pool_center.rb:29 -msgid "Manage Policies for this Resource Pool" -msgstr "Gérer les stratégies pour ce pool de ressources" +msgid "Labels" +msgstr "Libellés" -#: ../app/helpers/application_helper/toolbar/resource_pool_center.rb:34 -msgid "Edit Tags for this Resource Pool" -msgstr "Modifier les balises pour ce pool de ressources" +msgid "Large Trees" +msgstr "Arborescences de grande taille" -#: ../app/helpers/application_helper/toolbar/resource_pools_center.rb:14 -msgid "Remove selected Resource Pools" -msgstr "Supprimer les pools de ressources sélectionnés" +msgid "Largest Tables" +msgstr "Tables les plus grandes" -#: ../app/helpers/application_helper/toolbar/resource_pools_center.rb:15 -msgid "Remove Resource Pools" -msgstr "Supprimer les pools de ressources" +msgid "Last" +msgstr "Dernier" -#: ../app/helpers/application_helper/toolbar/resource_pools_center.rb:17 -msgid "" -"Warning: The selected Resource Pools and ALL of their components will be perma" -"nently removed!" +msgid "Last 10 minutes" msgstr "" -"Avertissement : les pools de ressources sélectionnés et TOUS leurs composants " -"seront définitivement supprimés" - -#: ../app/helpers/application_helper/toolbar/resource_pools_center.rb:35 -msgid "Manage Policies for the selected Resource Pools" -msgstr "Gérer les stratégies pour les pools de ressources sélectionnés" - -#: ../app/helpers/application_helper/toolbar/resource_pools_center.rb:43 -msgid "Edit Tags for the selected Resource Pools" -msgstr "Modifier les balises pour les pools de ressources sélectionnés" - -#: ../app/helpers/application_helper/toolbar/saved_report_center.rb:12 -#: ../app/helpers/application_helper/toolbar/saved_reports_center.rb:21 -msgid "Show full screen Report" -msgstr "Afficher un rapport plein écran" -#: ../app/helpers/application_helper/toolbar/saved_report_center.rb:23 -msgid "" -"Warning: This Saved Report and ALL of its components will be permanently remov" -"ed!" -msgstr "" -"Avertissement : ce rapport enregistré et TOUS ses composants seront définitive" -"ment supprimés" +msgid "Last 1000 lines from server %{name} [%{id}] in zone %{zone}" +msgstr "Les 1 000 dernières lignes du serveur %{name} [%{id}] dans la zone %{zone}" -#: ../app/helpers/application_helper/toolbar/saved_reports_center.rb:6 -msgid "Reload selected Reports" -msgstr "Recharger les rapports sélectionnés" +msgid "Last 1000 lines from server %{server_name} [%{server_id}] in zone %{zone_name}" +msgstr "Les 1 000 dernières lignes du serveur %{server_name} [%{server_id}] dans la zone %{zone_name}" -#: ../app/helpers/application_helper/toolbar/saved_reports_center.rb:31 -msgid "Delete selected Saved Reports" -msgstr "Supprimer les Rapports Sauvegardés sélectionnés" +msgid "Last 1000 lines from the Automation log" +msgstr "Les 1 000 dernières lignes du journal d'automatisation" -#: ../app/helpers/application_helper/toolbar/scan_profile_center.rb:12 -msgid "Edit this Analysis Profile" -msgstr "Modifier ce profil d'analyse" +msgid "Last 24 Hours" +msgstr "Dernières 24 heures" -#: ../app/helpers/application_helper/toolbar/scan_profile_center.rb:17 -msgid "Copy this selected Analysis Profile" -msgstr "Copie ce profil d'analyse sélectionné" +msgid "Last 24 hours" +msgstr "" -#: ../app/helpers/application_helper/toolbar/scan_profile_center.rb:23 -msgid "Delete this Analysis Profile" -msgstr "Supprimer ce profil d'analyse" +msgid "Last 30 Days" +msgstr "30 derniers jours" -#: ../app/helpers/application_helper/toolbar/scan_profile_center.rb:26 -msgid "" -"Warning: This Analysis Profile and ALL of its components will be permanently r" -"emoved!" +msgid "Last 30 days" msgstr "" -"Avertissement : ce profil d'analyse et TOUS ses composants seront définitiveme" -"nt supprimés" - -#: ../app/helpers/application_helper/toolbar/scan_profiles_center.rb:12 -msgid "Add a new Host Analysis Profile" -msgstr "Ajouter un nouveau profil d'analyse d'hôte" -#: ../app/helpers/application_helper/toolbar/scan_profiles_center.rb:13 -msgid "Add Host Analysis Profile" -msgstr "Ajouter un profil d'analyse d'hôte" +msgid "Last 7 Days" +msgstr "7 derniers jours" -#: ../app/helpers/application_helper/toolbar/scan_profiles_center.rb:17 -msgid "Add a new VM Analysis Profile" -msgstr "Ajouter un nouveau Profil d''Analyse de VM" +msgid "Last Analyzed" +msgstr "Dernière analyse" -#: ../app/helpers/application_helper/toolbar/scan_profiles_center.rb:18 -msgid "Add VM Analysis Profile" -msgstr "Ajouter un Profil d'Analyse de MV" +msgid "Last Boot Time" +msgstr "Heure du dernier démarrage" -#: ../app/helpers/application_helper/toolbar/scan_profiles_center.rb:22 -msgid "Edit the selected Analysis Profiles" -msgstr "Modifier les profils d'analyse sélectionnés" +msgid "Last Checked for updates" +msgstr "Dernière vérification des mises à jour" -#: ../app/helpers/application_helper/toolbar/scan_profiles_center.rb:30 -msgid "Copy the selected Analysis Profiles" -msgstr "Copier les profils d'analyse sélectionnés" +msgid "Last Collection" +msgstr "Dernière collecte" -#: ../app/helpers/application_helper/toolbar/scan_profiles_center.rb:38 -msgid "Delete the selected Analysis Profiles" -msgstr "Supprimer les profils d'analyse sélectionnés" +msgid "Last Hour" +msgstr "Dernière heure" -#: ../app/helpers/application_helper/toolbar/scan_profiles_center.rb:41 -msgid "" -"Warning: The selected Analysis Profiles and ALL of their components will be pe" -"rmanently removed!" -msgstr "" -"Avertissement : les profils d'analyse sélectionnées et TOUS leurs composants s" -"eront définitivement supprimés." +msgid "Last Log Collection" +msgstr "Dernière collecte de journaux" -#: ../app/helpers/application_helper/toolbar/security_group_center.rb:12 -msgid "Edit Tags for this Security Group" -msgstr "Modifier les balises pour ce groupe de sécurité" +msgid "Last Message" +msgstr "Dernier message" -#: ../app/helpers/application_helper/toolbar/security_groups_center.rb:14 -msgid "Edit Tags for the selected Security Groups" -msgstr "Modifier les balises pour les groupes de sécurité sélectionnés" +msgid "Last Metrics Collection" +msgstr "Dernière collecte de métriques" -#: ../app/helpers/application_helper/toolbar/service_center.rb:13 -msgid "Edit this Service" -msgstr "Modifier ce service" +msgid "Last Month" +msgstr "Le mois dernier" -#: ../app/helpers/application_helper/toolbar/service_center.rb:18 -msgid "Remove this Service" -msgstr "Supprimer ce service" +msgid "Last Quarter" +msgstr "Le trimestre dernier" -#: ../app/helpers/application_helper/toolbar/service_center.rb:19 -msgid "Remove Service" -msgstr "Supprimer le service" +msgid "Last Refresh" +msgstr "Dernière actualisation" -#: ../app/helpers/application_helper/toolbar/service_center.rb:21 -msgid "Warning: This Service and ALL of their components will be permanently removed!" -msgstr "" -"Avertissement : ces services et TOUS leurs composants seront définitivement su" -"pprimés" +msgid "Last Refreshed On" +msgstr "Dernière actualisation le" -#: ../app/helpers/application_helper/toolbar/service_center.rb:26 -msgid "Set Ownership for this Service" -msgstr "Définir la propriété de ce service" +msgid "Last Run Time" +msgstr "Heure de la dernière exécution" -#: ../app/helpers/application_helper/toolbar/service_center.rb:32 -msgid "Reconfigure the options of this Service" -msgstr "Reconfigurer les options de ce service" +msgid "Last Start Time" +msgstr "Heure du dernier démarrage" -#: ../app/helpers/application_helper/toolbar/service_center.rb:33 -msgid "Reconfigure this Service" -msgstr "Reconfigurer ce service" +msgid "Last State" +msgstr "Dernier état" -#: ../app/helpers/application_helper/toolbar/service_center.rb:65 -msgid "Set Retirement Dates for this Service" -msgstr "Définir des dates de désactivation pour ce service" +msgid "Last Transition Time" +msgstr "Heure de la dernière transition" -#: ../app/helpers/application_helper/toolbar/service_center.rb:70 -msgid "Retire this Service" -msgstr "Désactiver ce service" +msgid "Last Update" +msgstr "Dernière mise à jour" -#: ../app/helpers/application_helper/toolbar/service_center.rb:72 -msgid "Retire this Service?" -msgstr "Désactiver ce service ?" +msgid "Last Update Status" +msgstr "État de la dernière mise à jour" -#: ../app/helpers/application_helper/toolbar/services_center.rb:14 -msgid "Select a single service to edit" -msgstr "Sélectionner un service à modifier" +msgid "Last Updated" +msgstr "Dernière mise à jour" -#: ../app/helpers/application_helper/toolbar/services_center.rb:15 -msgid "Edit Selected Service" -msgstr "Modifier le service sélectionné" +msgid "Last Week" +msgstr "La semaine dernière" -#: ../app/helpers/application_helper/toolbar/services_center.rb:22 -msgid "Remove selected Services" -msgstr "Supprimer les services sélectionnés" +msgid "Last Year" +msgstr "L'année dernière" -#: ../app/helpers/application_helper/toolbar/services_center.rb:23 -msgid "Remove Services" -msgstr "Supprimer les services" +msgid "Last selected %{record_name} no longer exists" +msgstr "Le dernier %{record_name} sélectionné n'existe plus" -#: ../app/helpers/application_helper/toolbar/services_center.rb:25 -msgid "" -"Warning: The selected Services and ALL of their components will be permanently" -" removed!" -msgstr "" -"Avertissement : les services sélectionnés et TOUS leurs composants seront défi" -"nitivement supprimés" +msgid "Last selected Snapshot no longer exists" +msgstr "Le dernier cliché sélectionné n'existe plus" -#: ../app/helpers/application_helper/toolbar/services_center.rb:32 -msgid "Set Ownership for the selected Services" -msgstr "Définir la propriété des services sélectionnés" +msgid "Leave all options unchecked to show the original column value from the first record in the group." +msgstr "N'activez aucune des options pour afficher la valeur de colonne d'origine du premier enregistrement dans le groupe." -#: ../app/helpers/application_helper/toolbar/services_center.rb:72 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:139 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:182 -msgid "Set Retirement Dates for the selected items" -msgstr "Définir des dates de désactivation pour les éléments sélectionnés" +msgid "Level" +msgstr "Niveau" -#: ../app/helpers/application_helper/toolbar/services_center.rb:80 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:147 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:191 -msgid "Retire the selected items" -msgstr "Désactiver les éléments sélectionnés" +msgid "Lifecycle" +msgstr "Cycle de vie" -#: ../app/helpers/application_helper/toolbar/services_center.rb:81 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:148 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:192 -msgid "Retire selected items" -msgstr "Désactiver les éléments sélectionnés" +msgid "Lifespan" +msgstr "Durée de vie" -#: ../app/helpers/application_helper/toolbar/services_center.rb:83 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:150 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:194 -msgid "Retire the selected items?" -msgstr "Désactiver les éléments sélectionnés ?" +msgid "Light Blue Background" +msgstr "Arrière-plan bleu clair" -#: ../app/helpers/application_helper/toolbar/servicetemplate_center.rb:26 -#: ../app/helpers/application_helper/toolbar/servicetemplatecatalog_center.rb:13 -msgid "Edit this Item" -msgstr "Modifier cet élément" +msgid "Light Blue Text" +msgstr "Texte bleu clair" -#: ../app/helpers/application_helper/toolbar/servicetemplate_center.rb:32 -msgid "Remove this Catalog Item" -msgstr "Supprimer cet élément de catalogue" +msgid "Limit Chart to" +msgstr "Limiter le graphique à" -#: ../app/helpers/application_helper/toolbar/servicetemplate_center.rb:33 -msgid "Remove Catalog Item" -msgstr "Supprimer l'élément de catalogue" +msgid "Limit Ranges" +msgstr "Limiter les plages" -#: ../app/helpers/application_helper/toolbar/servicetemplate_center.rb:35 -msgid "" -"Warning: This Catalog Items and ALL of their components will be permanently re" -"moved!" -msgstr "" -"Avertissement : ces éléments de catalogue et TOUS leurs composants seront défi" -"nitivement supprimés" +msgid "Limit Request Ratio" +msgstr "Limiter le coefficient de demandes" -#: ../app/helpers/application_helper/toolbar/servicetemplate_center.rb:49 -msgid "Edit Tags for this Catalog Item" -msgstr "Modifier les balises pour cet élément de catalogue" +msgid "List View" +msgstr "Mode Liste" -#: -#: ../app/helpers/application_helper/toolbar/servicetemplatecatalog_center.rb:19 -msgid "Remove this Catalog" -msgstr "Supprimer ce catalogue" +msgid "Live Migrate Instance '%{name}'" +msgstr "Migrer de façon dynamique l'instance '%{name}'" -#: -#: ../app/helpers/application_helper/toolbar/servicetemplatecatalog_center.rb:20 -msgid "Remove Catalog" -msgstr "Supprimer Catalogue" +msgid "Live Migrating %{model} \"%{name}\"" +msgstr "Migration dynamique de %{model} \"%{name}\"" -#: -#: ../app/helpers/application_helper/toolbar/servicetemplatecatalog_center.rb:22 -msgid "Warning: This Catalog will be permanently removed!" -msgstr "Avertissement : ce catalogue sera définitivement supprimé" +msgid "Live Migration of %{model} \"%{name}\" was cancelled by the user" +msgstr "La migration dynamique de %{model} \"%{name}\" a été annulée par l'utilisateur" -#: -#: ../app/helpers/application_helper/toolbar/servicetemplatecatalogs_center.rb:12 -msgid "Add a New Catalog" -msgstr "Ajouter un Nouveau Catalogue" +msgid "Live migration of Instance \"%{name}\" complete." +msgstr "" -#: -#: ../app/helpers/application_helper/toolbar/servicetemplatecatalogs_center.rb:17 -#: ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:22 -msgid "Select a single Item to edit" -msgstr "Sélectionner un élément à modifier" +msgid "Load" +msgstr "Charger" -#: -#: ../app/helpers/application_helper/toolbar/servicetemplatecatalogs_center.rb:25 -msgid "Remove selected Catalogs" -msgstr "Supprimer Catalogues sélectionnés" +msgid "Load Balancer" +msgstr "Équilibreur de charge" -#: -#: ../app/helpers/application_helper/toolbar/servicetemplatecatalogs_center.rb:26 -msgid "Remove Catalogs" -msgstr "Supprimer Catalogues" +msgid "Load Balancer Status" +msgstr "État de l'équilibreur de charge" -#: -#: ../app/helpers/application_helper/toolbar/servicetemplatecatalogs_center.rb:28 -msgid "Warning: The selected Catalogs will be permanently removed!" -msgstr "Avertissement : les catalogues sélectionnés seront définitivement supprimés." +msgid "Load Balancers" +msgstr "Équilibreurs de charge" -#: ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:12 -msgid "Add a New Catalog Item" -msgstr "Ajouter un Nouvel Elément de Catalogue" +msgid "Load Values on Init" +msgstr "Charger les valeurs lors de l'initialisation" -#: ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:17 -msgid "Add a New Catalog Bundle" -msgstr "Ajouter un Nouveau Bundle de Catalogues" +msgid "Load a filter" +msgstr "Charger un filtre" -#: ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:30 -msgid "Remove selected Catalog Items" -msgstr "Supprimer les éléments de catalogue sélectionnés" +msgid "Load balancers can only be assigned to Masters or Nodes" +msgstr "Les équilibreurs de charge ne peuvent être affectés qu'à des maîtres ou des nœuds" -#: ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:31 -msgid "Remove Catalog Items" -msgstr "Supprimer les éléments de catalogue" +msgid "Load the filter shown above" +msgstr "Charger le filtre affiché ci-dessus" -#: ../app/helpers/application_helper/toolbar/servicetemplates_center.rb:33 -msgid "" -"Warning: The selected Items and ALL of their components will be permanently re" -"moved!" +msgid "Loading available tags" msgstr "" -"Avertissement : les éléments sélectionnés et TOUS leurs composants seront défi" -"nitivement supprimés " -#: -#: ../app/helpers/application_helper/toolbar/stack_orchestration_template_center.rb:12 -msgid "Make the Orchestration Template orderable" -msgstr "Rendre le modèle d'orchestration organisable" +msgid "Loading summary..." +msgstr "Chargement du résumé..." -#: -#: ../app/helpers/application_helper/toolbar/stack_orchestration_template_center.rb:18 -msgid "Copy this Orchestration Template as orderable" -msgstr "Copier ce modèle d'orchestration comme organisable" +msgid "Locale" +msgstr "Paramètres régionaux" -#: -#: ../app/helpers/application_helper/toolbar/stack_orchestration_template_center.rb:24 -msgid "View this Orchestration Template in Catalogs" -msgstr "Afficher ce modèle d'orchestration dans les catalogues" +msgid "Localhost" +msgstr "" -#: ../app/helpers/application_helper/toolbar/storage_center.rb:12 -msgid "Perform SmartState Analysis on this Datastore" -msgstr "Effectuer une analyse SmartState sur ce magasin de données" +msgid "Locate and upload a file to start the import process" +msgstr "Localiser et télécharger un fichier pour démarrer le processus d'importation" -#: ../app/helpers/application_helper/toolbar/storage_center.rb:14 -msgid "Perform SmartState Analysis on this Datastore?" -msgstr "Effectuer une analyse SmartState sur ce magasin de données ?" +msgid "Location" +msgstr "Emplacement" -#: ../app/helpers/application_helper/toolbar/storage_center.rb:19 -msgid "Remove this Datastore" -msgstr "Supprimer ce magasin de données" +msgid "Lock this Domain" +msgstr "Verrouiller ce domaine" -#: ../app/helpers/application_helper/toolbar/storage_center.rb:20 -msgid "Remove Datastore" -msgstr "Supprimer le magasin de données" +msgid "Lockdown Mode" +msgstr "Mode de verrouillage" -#: ../app/helpers/application_helper/toolbar/storage_center.rb:22 -msgid "Warning: This Datastore and ALL of its components will be permanently removed!" -msgstr "" -"Avertissement : ce magasin de données et TOUS ses composants seront définitive" -"ment supprimés" +msgid "Locked" +msgstr "Verrouillé" -#: ../app/helpers/application_helper/toolbar/storage_center.rb:36 -msgid "Edit Tags for this Datastore" -msgstr "Modifier les balises pour ce magasin de données" +msgid "Lockout Duration" +msgstr "Durée de verrouillage" -#: ../app/helpers/application_helper/toolbar/storage_center.rb:51 -msgid "Show Capacity & Utilization data for this Datastore" -msgstr "Afficher les données de capacité et d'utilisation de ce magasin de données" +msgid "Lockout Threshold" +msgstr "Seuil de verrouillage" -#: ../app/helpers/application_helper/toolbar/storage_manager_center.rb:12 -msgid "Refresh Inventory for all Storage CIs known to this Storage Manager" -msgstr "" -"Actualiser l'inventaire pour toutes les CI de stockage connues de ce gestionna" -"ire de stockage" +msgid "Log" +msgstr "Journal" -#: ../app/helpers/application_helper/toolbar/storage_manager_center.rb:14 -msgid "Refresh Inventory for all Storage CIs known to this Storage Manager?" -msgstr "" -"Actualiser l'inventaire pour toutes les CI de stockage connues de ce gestionna" -"ire de stockage ?" +msgid "Log Depot Settings were saved" +msgstr "Les paramètres du référentiel de fichiers journaux ont été enregistrés" -#: ../app/helpers/application_helper/toolbar/storage_manager_center.rb:18 -msgid "Refresh Status for all Storage CIs known to this Storage Manager" -msgstr "" -"Actualiser le statut pour toutes les CI de stockage connues de ce gestionnaire" -" de stockage" +msgid "Log Depot Settings were validated" +msgstr "Les paramètres du référentiel de fichiers journaux ont été validés" -#: ../app/helpers/application_helper/toolbar/storage_manager_center.rb:20 -msgid "Refresh Status for all Storage CIs known to this Storage Manager?" -msgstr "" -"Actualiser le statut pour toutes les CI de stockage connues de ce gestionnaire" -" de stockage ?" +msgid "Log Depot URI" +msgstr "URI du référentiel de fichiers journaux" -#: ../app/helpers/application_helper/toolbar/storage_manager_center.rb:25 -msgid "Edit this Storage Manager" -msgstr "Modifier ce gestionnaire de stockage" +msgid "Log Level" +msgstr "Niveau de journalisation" -#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:12 -msgid "Refresh Inventory for all Storage CIs known to the selected Storage Managers" -msgstr "" -"Actualiser l'inventaire pour toutes les CI de stockage connues des gestionnair" -"es de stockage" +msgid "Log Wrap Size must be numeric and greater than zero" +msgstr "La taille du renvoi à la ligne du journal doit être numérique et supérieur à zéro" -#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:15 -msgid "Refresh Inventory for all Storage CIs known to the selected Storage Managers?" -msgstr "" -"Actualiser l'inventaire pour toutes les CI de stockage connues des gestionnair" -"es de stockage ?" +msgid "Log collection error returned: %{error_message}" +msgstr "Erreur renvoyée lors de la collecte de journaux : %{error_message}" -#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:21 -msgid "Refresh Status for all Storage CIs known to the selected Storage Managers" -msgstr "" -"Actualiser le statut pour toutes les CI de stockage connues des gestionnaires " -"de stockage" +msgid "Log collection for %{product} %{object_type} %{name} has been initiated" +msgstr "La collecte de journaux pour %{product} %{object_type} %{name} a été initiée" -#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:24 -msgid "Refresh Status for all Storage CIs known to the selected Storage Managers?" -msgstr "" -"Actualiser le statut pour toutes les CI de stockage connues des gestionnaires " -"de stockage ?" +msgid "Log collection is already in progress for one or more %{servers} in this Zone" +msgstr "La collecte de journaux est déjà en cours pour un ou plusieurs %{servers} de cette zone" -#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:31 -msgid "Add a New Storage Manager" -msgstr "Ajouter un nouveau gestionnaire de stockage" +msgid "Log collection is already in progress for this %{server}" +msgstr "La collecte de journaux est déjà en cours pour ce %{server}" -#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:37 -msgid "Select a single Storage Manager to edit" -msgstr "Sélectionner un gestionnaire de stockage à modifier" +msgid "Log collection requires the Log Depot settings to be configured" +msgstr "La collecte de journaux nécessite la configuration des paramètres du référentiel de jounaux" -#: ../app/helpers/application_helper/toolbar/storage_managers_center.rb:38 -msgid "Edit Selected Storage Manager" -msgstr "Modifier le gestionnaire de stockage sélectionné" +msgid "Logging" +msgstr "Journalisation" -#: ../app/helpers/application_helper/toolbar/storages_center.rb:14 -msgid "Perform SmartState Analysis on the selected Datastores" -msgstr "Effectuer une analyse SmartState sur les magasins de données sélectionnés" +msgid "Logging into" +msgstr "Connexion à" -#: ../app/helpers/application_helper/toolbar/storages_center.rb:17 -msgid "Perform SmartState Analysis on the selected Datastores?" -msgstr "Effectuer une analyse SmartState sur les magasins de données sélectionnés ?" +msgid "Login" +msgstr "Connexion" -#: ../app/helpers/application_helper/toolbar/storages_center.rb:23 -msgid "Remove selected Datastores" -msgstr "Supprimer les magasins de données sélectionnés" +msgid "Login URL" +msgstr "URL de connexion" -#: ../app/helpers/application_helper/toolbar/storages_center.rb:24 -msgid "Remove Datastores" -msgstr "Supprimer les magasins de données" +msgid "Login URL:" +msgstr "URL de connexion :" + +msgid "Login not allowed, User's %{feature} is missing. Please contact the administrator" +msgstr "Connexion non autorisée, %{feature} de l'utilisateur manquant. Veuillez contacter l'administrateur" + +msgid "Login to Corporate System" +msgstr "Connexion au système d'entreprise" -#: ../app/helpers/application_helper/toolbar/storages_center.rb:26 -msgid "" -"Warning: The selected Datastores and ALL of their components will be permanent" -"ly removed!" -msgstr "" -"Avertissement : les magasins de données sélectionnés et TOUS leurs composants " -"seront définitivement supprimés." +msgid "Logout" +msgstr "Déconnexion" -#: ../app/helpers/application_helper/toolbar/storages_center.rb:44 -msgid "Edit Tags for the selected Datastores" -msgstr "Modifier les balises pour les magasins de données sélectionnés" +msgid "Logs for this %{product} Server are not available for viewing" +msgstr "Impossible d'afficher les journaux pour le serveur %{product}" -#: ../app/helpers/application_helper/toolbar/summary_center.rb:7 -#: ../app/helpers/application_helper/toolbar/summary_center_restful.rb:7 -msgid "Show %{object_name} Summary" -msgstr "Afficher la synthèse de %{object_name}" +msgid "Long Description" +msgstr "Description longue" -#: ../app/helpers/application_helper/toolbar/summary_view.rb:6 -#: ../app/helpers/application_helper/toolbar/summary_view_restful.rb:6 -#: ../app/helpers/application_helper/toolbar/x_summary_view.rb:6 -msgid "Download summary in PDF format" -msgstr "Télécharger le résumé au format PDF" +msgid "Long Description is required" +msgstr "La description longue est requise" -#: ../app/helpers/application_helper/toolbar/tasks_center.rb:14 -msgid "Delete Tasks" -msgstr "Supprimer les Tâches" +msgid "Lookup" +msgstr "Rechercher" -#: ../app/helpers/application_helper/toolbar/tasks_center.rb:21 -msgid "Delete selected tasks" -msgstr "Supprimer les tâches sélectionnées" +msgid "Low" +msgstr "Faible" -#: ../app/helpers/application_helper/toolbar/tasks_center.rb:24 -msgid "Warning: The selected tasks will be permanently removed from the database!" -msgstr "" -"Avertissement : les tâches sélectionnées seront définitivement supprimées de l" -"a base de données" +msgid "MAC Address" +msgid_plural "MAC Addresses" +msgstr[0] "Adresse MAC" +msgstr[1] "Adresses MAC" -#: ../app/helpers/application_helper/toolbar/tasks_center.rb:30 -msgid "Delete tasks older than the selected task" -msgstr "Supprimer les tâches antérieures à la tâche sélectionnée" +msgid "MB" +msgstr "Mo" -#: ../app/helpers/application_helper/toolbar/tasks_center.rb:31 -msgid "Delete Older" -msgstr "Effacer les plus anciennes" +msgid "MHz" +msgstr "MHz" -#: ../app/helpers/application_helper/toolbar/tasks_center.rb:33 -msgid "" -"Warning: Tasks that are older than selected task will be permanently removed f" -"rom the database!" +msgid "MM/DD/YYYY HH:mm" msgstr "" -"Avertissement : les tâches antérieures à la tâche sélectionnée seront définiti" -"vement supprimées de la base de données." -#: ../app/helpers/application_helper/toolbar/tasks_center.rb:39 -msgid "Delete all finished tasks" -msgstr "Supprimer toutes les tâches complétées" +msgid "MS vCenter" +msgstr "MS vCenter" -#: ../app/helpers/application_helper/toolbar/tasks_center.rb:40 -msgid "Delete All" -msgstr "Supprimer tout" +msgid "Mac address" +msgstr "Adresse Mac" -#: ../app/helpers/application_helper/toolbar/tasks_center.rb:42 -msgid "Warning: Finished tasks will be permanently removed from the database!" +msgid "Machine" msgstr "" -"Avertissement : les tâches terminées seront définitivement supprimées de la ba" -"se de données." - -#: ../app/helpers/application_helper/toolbar/tasks_center.rb:51 -msgid "Cancel the selected task" -msgstr "Annuler la tâche sélectionnée" -#: ../app/helpers/application_helper/toolbar/tasks_center.rb:52 -msgid "Cancel Job" -msgstr "Annuler la tâche" +msgid "Machine Credential" +msgstr "" -#: ../app/helpers/application_helper/toolbar/tasks_center.rb:54 -msgid "" -"Warning: The selected task will be cancelled. Are you sure you want to cancel " -"the task?" +msgid "Machine Credentials" msgstr "" -"Avertissement : la tâche sélectionnée sera annulée. Voulez-vous vraiment annul" -"er cette tâche ?" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:49 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:50 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:59 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:40 -msgid "Set Ownership for the selected items" -msgstr "Définir la propriété des éléments sélectionnés" +msgid "Machine ID" +msgstr "ID de la machine" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:67 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:77 -msgid "CPU/Memory Recommendations of selected item" -msgstr "Recommandations processeur/mémoire de l'élément sélectionné" +msgid "Main Info" +msgstr "Informations principales" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:75 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:85 -msgid "Reconfigure the Memory/CPUs of selected items" -msgstr "Reconfigurer la mémoire/les processeurs des éléments sélectionnés" +msgid "Maintenance" +msgstr "Maintenance" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:76 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:86 -msgid "Reconfigure Selected items" -msgstr "Reconfigurer les éléments sélectionnés" +msgid "Maintenance Mode" +msgstr "Mode de maintenance" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:93 -msgid "Select a single Image to Provision Instances" -msgstr "Sélectionner une image pour la mise en service des instances" +msgid "Maintenance mode is not supported for this host" +msgstr "Le mode de maintenance n'est pas pris en charge pour cet hôte" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:94 -msgid "Provision Instances using selected Image" -msgstr "Mettre en service les instances en utilisant l'image sélectionnée" +msgid "Major Version" +msgstr "Version majeure" -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:121 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:97 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:113 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:78 -msgid "View Policy Simulation for the selected items" -msgstr "Afficher la simulation de stratégie pour les éléments sélectionnés" +msgid "Make %{name} the base" +msgstr "Faire de %{name} la base" -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:23 -msgid "Perform SmartState Analysis on the selected Templates" -msgstr "Effectuer une analyse SmartState sur les modèles sélectionnés" +msgid "Make the Orchestration Template orderable" +msgstr "Rendre le modèle d'orchestration organisable" -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:26 -msgid "Perform SmartState Analysis on the selected Templates?" -msgstr "Effectuer une analyse SmartState sur les modèles sélectionnés ?" +msgid "Manage Accordions" +msgstr "Gérer les accordéons" -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:121 -msgid "Select a single Template to Provision VMs" -msgstr "Sélectionner un modèle pour la mise en service des MV" +msgid "Manage Accordions & Folders" +msgstr "Gérer les accordéons et les dossiers" -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:122 -msgid "Provision VMs using selected Template" -msgstr "Mettre en service les MV à l'aide du modèle sélectionné" +msgid "Manage Folders" +msgstr "Gérer les dossiers" -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:130 -msgid "Clone selected Template" -msgstr "Cloner le modèle sélectionné" +msgid "Manage Policies" +msgstr "Gérer les stratégies" -#: ../app/helpers/application_helper/toolbar/tenant_center.rb:12 -msgid "Add child Tenant to this Tenant" -msgstr "Ajouter un locataire enfant à ce locataire" +msgid "Manage Policies for the selected Block Storage Managers" +msgstr "" -#: ../app/helpers/application_helper/toolbar/tenant_center.rb:20 -msgid "Add Project to this Tenant" -msgstr "Ajouter un projet à ce locataire" +msgid "Manage Policies for the selected Cloud Providers" +msgstr "Gérer les stratégies pour les fournisseurs de cloud sélectionnés" -#: ../app/helpers/application_helper/toolbar/tenant_center.rb:34 -msgid "Manage Quotas" -msgstr "Gérer les quotas" +msgid "Manage Policies for the selected Infrastructure Providers" +msgstr "Gérer les stratégies pour les fournisseurs d'infrastructure sélectionnés" -#: ../app/helpers/application_helper/toolbar/tenant_center.rb:39 -msgid "Delete this item" -msgstr "Supprimer cet Elément" +msgid "Manage Policies for the selected Network Providers" +msgstr "Gérer les stratégies pour les fournisseurs réseau sélectionnés" -#: ../app/helpers/application_helper/toolbar/tenant_center.rb:42 -msgid "Are you sure you want to delete this item and all of it's children?" +msgid "Manage Policies for the selected Object Storage Managers" msgstr "" -"Êtes-vous sûr de vouloir supprimer cet élément et tous les éléments sous-jacen" -"ts ?" -#: ../app/helpers/application_helper/toolbar/tenant_center.rb:57 -msgid "Edit '%{customer_name}' Tags for this Tenant" -msgstr "Modifier les balises '%{customer_name}' pour ce locataire" +msgid "Manage Policies for the selected Physical Infrastructure Providers" +msgstr "" -#: ../app/helpers/application_helper/toolbar/tenants_center.rb:13 -msgid "Edit the selected item" -msgstr "Modifier l'élément sélectionné" +msgid "Manage Policies for the selected Resource Pools" +msgstr "Gérer les stratégies pour les pools de ressources sélectionnés" -#: ../app/helpers/application_helper/toolbar/tenants_center.rb:20 -msgid "Select one or more items to delete" -msgstr "Sélectionner un ou plusieurs éléments à supprimer" +msgid "Manage Policies for the selected Storage Managers" +msgstr "" -#: ../app/helpers/application_helper/toolbar/tenants_center.rb:21 -msgid "Delete selected items" -msgstr "Supprimer les éléments sélectionnés" +msgid "Manage Policies for the selected Templates" +msgstr "Gérer les stratégies pour les modèles sélectionnés" -#: ../app/helpers/application_helper/toolbar/tenants_center.rb:23 -msgid "Delete all selected items and all of their children?" -msgstr "Supprimer tous les éléments sélectionnés et tous leurs enfants ?" +msgid "Manage Policies for the selected items" +msgstr "Gérer les stratégies pour les éléments sélectionnés" -#: ../app/helpers/application_helper/toolbar/tenants_center.rb:29 -msgid "Select a single item to manage quotas" -msgstr "Sélectionner un élément pour la gestion des quotas" +msgid "Manage Policies for these Containers Providers" +msgstr "Gérer les stratégies pour les fournisseurs de conteurs sélectionnés" -#: ../app/helpers/application_helper/toolbar/tenants_center.rb:30 -msgid "Manage Quotas for the Selected Item" -msgstr "Gérer les quotas pour les éléments sélectionnés" +msgid "Manage Policies for these Nodes" +msgstr "Gérer les stratégies pour ces nœuds" -#: ../app/helpers/application_helper/toolbar/tenants_center.rb:50 -msgid "Edit '%{customer_name}' Tags for the selected Tenant" -msgstr "Modifier les balises '%{customer_name}' pour le locataire sélectionné" +msgid "Manage Policies for these Pods" +msgstr "Gérer les stratégies pour ces pods" -#: ../app/helpers/application_helper/toolbar/time_profiles_center.rb:12 -msgid "Add a new Time Profile" -msgstr "Ajouter un nouveau profil temporel" +msgid "Manage Policies for these Replicators" +msgstr "Gérer les stratégies pour ces réplicateurs" -#: ../app/helpers/application_helper/toolbar/time_profiles_center.rb:18 -msgid "Select a single Time Profile to edit" -msgstr "Sélectionner un profil de temps à modifier" +msgid "Manage Policies for this Cloud Provider" +msgstr "Gérer les stratégies pour ce fournisseur cloud" -#: ../app/helpers/application_helper/toolbar/time_profiles_center.rb:19 -msgid "Edit selected Time Profile" -msgstr "Modifier le profil temporel sélectionné" +msgid "Manage Policies for this Container Image" +msgstr "Gérer les stratégies pour cette image de conteneur" -#: ../app/helpers/application_helper/toolbar/time_profiles_center.rb:26 -msgid "Select a single Time Profile to copy" -msgstr "Sélectionner un profil de temps à copier" +msgid "Manage Policies for this Containers Provider" +msgstr "Gérer les stratégies pour ce fournisseur de conteurs" -#: ../app/helpers/application_helper/toolbar/time_profiles_center.rb:27 -msgid "Copy selected Time Profile" -msgstr "Copier le profil temporel sélectionné" +msgid "Manage Policies for this Image" +msgstr "Gérer les stratégies pour cette image" -#: ../app/helpers/application_helper/toolbar/time_profiles_center.rb:34 -msgid "Delete selected Time Profiles" -msgstr "Supprimer les profils temporels sélectionnés" +msgid "Manage Policies for this Infrastructure Provider" +msgstr "Gérer les stratégies pour ce fournisseur d'infrastructure" -#: ../app/helpers/application_helper/toolbar/time_profiles_center.rb:37 -msgid "Warning: The selected Time Profiles will be permanently removed!" -msgstr "" -"Avertissement : les profils de temps sélectionnés seront définitivement suppri" -"més" +msgid "Manage Policies for this Instance" +msgstr "Gérer les stratégies pour cette instance" -#: ../app/helpers/application_helper/toolbar/timeline_center.rb:6 -msgid "Download this Timeline data in text format" -msgstr "Télécharger ces éléments de chronologie au format texte" +msgid "Manage Policies for this Network Provider" +msgstr "Gérer les stratégies pour ce fournisseur réseau" -#: ../app/helpers/application_helper/toolbar/timeline_center.rb:13 -msgid "Download this Timeline data in CSV format" -msgstr "Télécharger ces éléments de chronologie au format CSV" +msgid "Manage Policies for this Node" +msgstr "Gérer les stratégies pour ce nœud" -#: ../app/helpers/application_helper/toolbar/timeline_center.rb:20 -msgid "Download this Timeline data in PDF format" -msgstr "Télécharger ces éléments de chronologie au format PDF" +msgid "Manage Policies for this Physical Infrastructure Provider" +msgstr "" -#: ../app/helpers/application_helper/toolbar/user_center.rb:12 -msgid "Edit this User" -msgstr "Modifier cet utilisateur" +msgid "Manage Policies for this Pod" +msgstr "Gérer les stratégies pour ce pod" -#: ../app/helpers/application_helper/toolbar/user_center.rb:17 -msgid "Copy this User to a new User" -msgstr "Copier cet Utilisateur vers un nouvel Utilisateur" +msgid "Manage Policies for this Replicator" +msgstr "Gérer les stratégies pour ce réplicateur" -#: ../app/helpers/application_helper/toolbar/user_center.rb:22 -msgid "Delete this User" -msgstr "Supprimer cet Utilisateur" +msgid "Manage Policies for this Resource Pool" +msgstr "Gérer les stratégies pour ce pool de ressources" -#: ../app/helpers/application_helper/toolbar/user_center.rb:25 -msgid "Are you sure you want to delete this User?" -msgstr "Êtes-vous sûr de vouloir supprimer cet Utilisateur ?" +msgid "Manage Policies for this Storage Manager" +msgstr "" -#: ../app/helpers/application_helper/toolbar/user_center.rb:40 -msgid "Edit '%{customer_name}' Tags for this User" -msgstr "Modifier les balises '%{customer_name}' pour cet utilisateur" +msgid "Manage Policies for this Template" +msgstr "Gérer les stratégies pour ce modèle" -#: ../app/helpers/application_helper/toolbar/user_role_center.rb:12 -msgid "Edit this Role" -msgstr "Modifier ce rôle" +msgid "Manage Policies for this VM" +msgstr "Gérer les stratégies pour cette MV" -#: ../app/helpers/application_helper/toolbar/user_role_center.rb:17 -msgid "Copy this Role to a new Role" -msgstr "Copier cet Rôle vers un nouveau Rôle" +msgid "Manage Policies for this item" +msgstr "Gérer les stratégies pour cet élément" -#: ../app/helpers/application_helper/toolbar/user_role_center.rb:22 -msgid "Delete this Role" -msgstr "Supprimer ce Rôle" +msgid "Manage Quotas" +msgstr "Gérer les quotas" -#: ../app/helpers/application_helper/toolbar/user_role_center.rb:25 -msgid "Are you sure you want to delete this Role?" -msgstr "Êtes-vous sûr de vouloir supprimer ce Rôle ?" +msgid "Manage Quotas for the Selected Item" +msgstr "Gérer les quotas pour les éléments sélectionnés" -#: ../app/helpers/application_helper/toolbar/user_roles_center.rb:12 -msgid "Add a new Role" -msgstr "Ajouter un nouveau Role" +msgid "Manage Reports" +msgstr "Gérer les rapports" -#: ../app/helpers/application_helper/toolbar/user_roles_center.rb:17 -msgid "Select a single Role to edit" -msgstr "Sélectionner un rôle à modifier" +msgid "Manage quotas for %{model} \"%{name}\"" +msgstr "Gérer les quotas pour le %{model} \"%{name}\"" -#: ../app/helpers/application_helper/toolbar/user_roles_center.rb:18 -msgid "Edit the selected Role" -msgstr "Modifier le rôle sélectionné" +msgid "Manage quotas for %{model} \"%{name}\" was cancelled by the user" +msgstr "La gestion des quotas pour le %{model} \"%{name}\" a été annulée par l'utilisateur" -#: ../app/helpers/application_helper/toolbar/user_roles_center.rb:25 -msgid "Select a single Role to copy" -msgstr "Sélectionner un rôle à copier" +msgid "Manage the port association of this Floating" +msgstr "" -#: ../app/helpers/application_helper/toolbar/user_roles_center.rb:26 -msgid "Copy the selected Role to a new Role" -msgstr "Copier le Rôle sélectionné vers un nouveau Rôle" +msgid "ManageIQ" +msgstr "ManageIQ" -#: ../app/helpers/application_helper/toolbar/user_roles_center.rb:33 -msgid "Delete the selected Roles from the VMDB" +msgid "ManageIQ HTML5 Remote Console" msgstr "" -"Supprimer les rôles sélectionnés de la base de données des machines virtuelles" -" (VMDB)" -#: ../app/helpers/application_helper/toolbar/user_roles_center.rb:34 -msgid "Delete selected Roles" -msgstr "Supprimer les Rôles sélectionnés" +msgid "ManageIQ-Blue" +msgstr "ManageIQ-Blue" -#: ../app/helpers/application_helper/toolbar/user_roles_center.rb:36 -msgid "Delete all selected Roles?" -msgstr "Supprimer tous les Rôles sélectionnés?" +msgid "Manageable" +msgstr "Gérable" + +msgid "Managed %{tables}" +msgstr "%{tables} gérées" -#: ../app/helpers/application_helper/toolbar/users_center.rb:12 -msgid "Add a new User" -msgstr "Ajouter un nouvel utilisateur" +msgid "Managed Hosts" +msgstr "Hôtes gérés" -#: ../app/helpers/application_helper/toolbar/users_center.rb:17 -msgid "Select a single User to edit" -msgstr "Sélectionner un utilisateur à modifier" +msgid "Managed Subnets" +msgstr "Sous-réseaux gérés" -#: ../app/helpers/application_helper/toolbar/users_center.rb:18 -msgid "Edit the selected User" -msgstr "Modifier l'utilisateur sélectionné" +msgid "Managed VMs" +msgstr "MV gérées" -#: ../app/helpers/application_helper/toolbar/users_center.rb:25 -msgid "Select a single User to copy" -msgstr "Sélectionner un utilisateur à copier" +msgid "Managed by Zone" +msgstr "Géré par zone" -#: ../app/helpers/application_helper/toolbar/users_center.rb:26 -msgid "Copy the selected User to a new User" -msgstr "Copier l'utilisateur sélectionné dans un nouvel utilisateur" +msgid "Managed/Registered VMs" +msgstr "MV gérées/enregistrées" -#: ../app/helpers/application_helper/toolbar/users_center.rb:33 -msgid "Select one or more Users to delete" -msgstr "Sélectionner un ou plusieurs utilisateurs à supprimer" +msgid "Managed/Unregistered VMs" +msgstr "MV gérées/non enregistrées" -#: ../app/helpers/application_helper/toolbar/users_center.rb:34 -msgid "Delete selected Users" -msgstr "Supprimer les utilisateurs sélectionnés" +msgid "Management" +msgstr "Gestion" -#: ../app/helpers/application_helper/toolbar/users_center.rb:36 -msgid "Delete all selected Users?" -msgstr "Supprimer tous les Utilisateurs sélectionnés" +msgid "Management Engine GUID" +msgstr "GUID du moteur de gestion" -#: ../app/helpers/application_helper/toolbar/users_center.rb:55 -msgid "Edit '%{customer_name}' Tags for the selected Users" -msgstr "Modifier les balises '%{customer_name}' pour les utilisateurs sélectionnés" +msgid "Management Engine Relationship saved" +msgstr "Relation du moteur de gestion enregistrée" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:69 -msgid "Reconfigure selected Instance" -msgstr "Reconfigurer l'instance sélectionnée" +msgid "Management Event" +msgstr "Événement de gestion" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:132 -msgid "Request to Provision Instances" -msgstr "Demande de mise en service d'instances" +msgid "Management Events" +msgstr "Événements de gestion" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:133 -msgid "Provision Instances" -msgstr "Mettre en service les instances" +msgid "Manager" +msgstr "Gestionnaire" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:156 -msgid "Migrate selected Instance" -msgstr "Migrer l'instance sélectionnée" +msgid "Managers" +msgstr "" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:164 -msgid "Evacuate selected Instance" -msgstr "Évacuer l'instance sélectionnée" +msgid "Manual Input" +msgstr "Saisie manuelle" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:184 -msgid "Stop the selected items" -msgstr "Arrêter les éléments sélectionnés" +msgid "Manufacturer / Model" +msgstr "Fabricant / Modèle" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:188 -msgid "Stop the selected items?" -msgstr "Arrêter les éléments sélectionnés ?" +msgid "Map Tags" +msgstr "Mappe balises" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:194 -msgid "Start the selected items" -msgstr "Lancer les éléments sélectionnés" +msgid "Mapping for %{entity}, %{label} already exists" +msgstr "Mappage de %{entity}, %{label} déjà existant" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:198 -msgid "Start the selected items?" -msgstr "Lancer les éléments sélectionnés ?" +msgid "Mark All Read" +msgstr "Tout marquer comme lu" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:204 -msgid "Pause the selected items" -msgstr "Suspendre les éléments sélectionnés" +msgid "Master" +msgstr "Maître" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:208 -msgid "Pause the selected items?" -msgstr "Suspendre les éléments sélectionnés ?" +msgid "Master configuration" +msgstr "Configuration maîtresse" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:214 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:254 -msgid "Suspend the selected items" -msgstr "Suspendre les éléments sélectionnés" +msgid "Masters" +msgstr "Maîtres" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:218 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:258 -msgid "Suspend the selected items?" -msgstr "Suspendre les éléments sélectionnés ?" +msgid "Masters & Nodes" +msgstr "Maîtres et nœuds" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:224 -msgid "Shelve the selected items" -msgstr "Classer les éléments sélectionnés" +msgid "Masters Base Name:" +msgstr "Nom de la base de maîtres" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:228 -msgid "Shelve the selected items?" -msgstr "Classer les éléments sélectionnés ?" +msgid "Max" +msgstr "Max" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:234 -msgid "Shelve Offload the selected items" -msgstr "Classer hors charge les éléments sélectionnés" +msgid "Max Active VM Scans" +msgstr "Analyses de MV actives max." -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:238 -msgid "Shelve Offload the selected items?" -msgstr "Classer hors charge les éléments sélectionnés ?" +msgid "Max Concurrent" +msgstr "Concurrents max." -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:244 -msgid "Resume the selected items" -msgstr "Reprendre les éléments sélectionnés" +msgid "Max Password Age" +msgstr "Âge max. du mot de passe" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:248 -msgid "Resume the selected items?" -msgstr "Reprendre les éléments sélectionnés ?" +msgid "Max Pods Capacity" +msgstr "Capacité max. des stations" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:255 -msgid "Soft Reboot the selected items" -msgstr "Effectuer un redémarrage logiciel des éléments sélectionnés" +msgid "Max Retries" +msgstr "Nb max. de tentatives" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:259 -msgid "Soft Reboot the selected items?" -msgstr "Effectuer un redémarrage logiciel des éléments sélectionnés ?" +msgid "Max Time" +msgstr "Durée max." -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:265 -msgid "Hard Reboot the Guest OS on the selected items" -msgstr "" -"Effectuer le redémarrage du système d'exploitation invité sur les éléments sél" -"ectionnés" +msgid "Max VMs" +msgstr "Nb max. de MV" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:269 -msgid "Hard Reboot the Guest OS on the selected items?" -msgstr "" -"Effectuer le redémarrage du système d'exploitation invité sur les éléments sél" -"ectionnés ?" +msgid "Max active VM Scans" +msgstr "Analyses de MV actives max." -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:276 -msgid "Delete the selected items" -msgstr "Supprimer les éléments sélectionnés" +msgid "Maximum length is 100" +msgstr "La longueur maximale est 100" -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:280 -msgid "Delete the selected items?" -msgstr "Supprimer les éléments sélectionnés ?" +msgid "Maximum length is 256" +msgstr "La longueur maximale est 256" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:33 -msgid "Extract Running Processes for the selected items" -msgstr "Extraire les processus en cours d'exécution pour les éléments sélectionnés" +msgid "Medium" +msgstr "Support" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:34 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:27 -msgid "Extract Running Processes" -msgstr "Extraire les processus en cours d'exécution" +msgid "Member VMs (%{count})" +msgstr "MV membres (%{count})" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:35 -msgid "Extract Running Processes for the selected items?" -msgstr "Extraire les processus en cours d'exécution pour les éléments sélectionnés ?" +msgid "Memory" +msgstr "Mémoire" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:148 -msgid "Request to Provision VMs" -msgstr "Demande de mise en service de MV" +msgid "Memory Limit" +msgstr "Mémoire limite" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:149 -msgid "Provision VMs" -msgstr "Mettre en service les MV" +msgid "Memory Reserve" +msgstr "Réserve de mémoire" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:155 -msgid "Clone this item" -msgstr "Cloner cet élément" +msgid "Memory Reserve Expand" +msgstr "Extension de la réserve de mémoire" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:156 -msgid "Clone selected item" -msgstr "Cloner l'élément sélectionné" +msgid "Memory Shares" +msgstr "Partages de mémoire" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:164 -msgid "Publish selected VM to a Template" -msgstr "Publier la MV sélectionnée dans un modèle" +msgid "Memory Shares Level" +msgstr "Niveau des partages de mémoire" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:173 -msgid "Migrate selected items to another Host/Datastore" -msgstr "Migrer les éléments sélectionnés vers un autre hôte/magasin de données" +msgid "Memory Size" +msgstr "Taille de mémoire" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:174 -msgid "Migrate selected items" -msgstr "Migrer les éléments sélectionnés" +msgid "Memory Usage" +msgstr "Utilisation de la mémoire" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:213 -msgid "Shutdown the Guest OS on the selected items" -msgstr "Arrêter le SE invité sur les éléments sélectionnés" +msgid "Memory on Disk" +msgstr "Mémoire sur disque" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:214 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:179 -msgid "Shutdown Guest" -msgstr "Arrêter l'invité" +msgid "Memory threshold" +msgstr "Seuil de mémoire" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:217 -msgid "Shutdown the Guest OS on the selected items?" -msgstr "Arrêter le SE invité sur les éléments sélectionnés ?" +msgid "Menu" +msgstr "Menu" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:223 -msgid "Restart the Guest OS on the selected items" -msgstr "Redémarrer le SE invité sur les éléments sélectionnés" +msgid "Menu Name" +msgstr "Nom du menu" -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:227 -msgid "Restart the Guest OS on the selected items?" -msgstr "Redémarrer le SE invité sur les éléments sélectionnés ?" +msgid "Menu Shortcuts" +msgstr "Raccourcis de menu" -#: ../app/helpers/application_helper/toolbar/vm_performance.rb:6 -#: ../app/helpers/application_helper/toolbar/x_vm_performance.rb:6 -msgid "Initiate refresh of recent C&U data" -msgstr "Lancer l'actualisation des données C&U récentes" +msgid "Menus" +msgstr "Menus" -#: ../app/helpers/application_helper/toolbar/vm_performance.rb:8 -#: ../app/helpers/application_helper/toolbar/x_vm_performance.rb:8 -msgid "Initiate refresh of recent C&U data?" -msgstr "Lancer l'actualisation des données C&U récentes ?" +msgid "Message" +msgstr "Message" -#: ../app/helpers/application_helper/toolbar/vm_performance.rb:13 -#: ../app/helpers/application_helper/toolbar/x_vm_performance.rb:13 -msgid "Reload the charts from the most recent C&U data" -msgstr "Recharger les graphiques à partir des données C&U les plus récentes" +msgid "Message Filter" +msgstr "Filtre de message" -#: ../app/helpers/application_helper/toolbar/vms_center.rb:113 -msgid "Request to Provision" -msgstr "Demande de mise en service" +msgid "Message Text" +msgstr "" -#: ../app/helpers/application_helper/toolbar/vms_center.rb:114 -msgid "Provision" -msgstr "Mettre en service" +msgid "Messages" +msgstr "Messages" -#: ../app/helpers/application_helper/toolbar/windows_image_center.rb:12 -msgid "Edit this Windows Image" -msgstr "Modifier cette image Windows" +msgid "Messaging" +msgstr "Messagerie" -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:30 -#: ../app/views/layouts/_edit_form_buttons.html.haml:123 -#: ../app/views/layouts/_edit_form_buttons.html.haml:132 -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:67 -#: ../app/views/miq_policy/_export.html.haml:33 -#: ../app/views/miq_policy/import.html.haml:73 -#: ../app/views/report/_export_widgets.html.haml:68 -#: ../app/views/vm_common/_resize.html.haml:70 -#: ../app/views/vm_common/_resize.html.haml:83 -msgid "Cancel Changes" -msgstr "Annuler les modifications" +msgid "Messagings" +msgstr "Messageries" -#: -#: ../app/helpers/application_helper/toolbar/x_foreman_configured_system_center.rb:13 -#: ../app/helpers/application_helper/toolbar/x_provider_foreman_foreman_configured_system_center.rb:13 -msgid "Provision Configured System" -msgstr "Mettre en service le système configuré" +msgid "Method Inputs" +msgstr "Entrées de méthode" -#: ../app/helpers/application_helper/toolbar/x_gtl_view.rb:38 -msgid "Download these items in text format" -msgstr "Télécharger ces éléments au format Texte" +msgid "Methods" +msgstr "Méthodes" -#: ../app/helpers/application_helper/toolbar/x_gtl_view.rb:45 -msgid "Download these items in CSV format" -msgstr "Télécharger ces éléments au format CSV" +msgid "Metrics" +msgstr "Métriques" -#: ../app/helpers/application_helper/toolbar/x_gtl_view.rb:52 -msgid "Download these items in PDF format" -msgstr "Télécharger ces éléments au format PDF" +msgid "Microsoft System Center VMM" +msgstr "Microsoft System Center VMM" -#: ../app/helpers/application_helper/toolbar/x_history.rb:6 -#: ../app/helpers/compliance_summary_helper.rb:34 -msgid "History" -msgstr "Historique" +msgid "Middle (AB...34)" +msgstr "Intermédiaire (AB...34)" -#: ../app/helpers/application_helper/toolbar/x_history.rb:13 -msgid "Go to this item" -msgstr "Accéder à cet élément" +msgid "Middleware" +msgstr "Middleware" -#: ../app/helpers/application_helper/toolbar/x_history.rb:23 -msgid "Reload current display" -msgstr "Recharger l'affichage actuel" +msgid "Middleware Datasources" +msgstr "Sources de données de middleware" -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:87 -msgid "Provision VMs using this Template" -msgstr "Mettre en service les MV à l'aide de ce modèle" +msgid "Middleware Deployments" +msgstr "Déploiements de middleware" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:12 -msgid "Refresh relationships and power states for all items related to this Image" -msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés à cette image" +msgid "Middleware Domains" +msgstr "Domaines de middleware" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:14 -msgid "Refresh relationships and power states for all items related to this Image?" -msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés à cette image ?" +msgid "Middleware Messaging" +msgstr "Messagerie de middleware" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:18 -msgid "Perform SmartState Analysis on this Image" -msgstr "Effectuer une analyse SmartState sur cette image" +msgid "Middleware Providers" +msgstr "Fournisseurs de middleware" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:20 -msgid "Perform SmartState Analysis on this Image?" -msgstr "Effectuer une analyse SmartState sur cette image ?" +msgid "Middleware Server Groups" +msgstr "Groupes de serveurs de middleware" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:26 -msgid "Edit this Image" -msgstr "Modifier cette image" +msgid "Middleware Servers" +msgstr "Serveurs de middleware" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:31 -msgid "Set Ownership for this Image" -msgstr "Définir la propriété de cette image" +msgid "Migrate %{vm_or_template}" +msgstr "Migrer %{vm_or_template}" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:36 -msgid "Remove this Image" -msgstr "Supprimer cette image" +msgid "Migrate Instance" +msgstr "Migrer une instance" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:37 -msgid "Remove Image" -msgstr "Supprimer l'image" +msgid "Migrate selected Instance" +msgstr "Migrer l'instance sélectionnée" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:39 -msgid "Warning: This Image and ALL of its components will be permanently removed!" -msgstr "" -"Avertissement : cette image et TOUS ses composants seront définitivement suppr" -"imés" +msgid "Migrate selected items" +msgstr "Migrer les éléments sélectionnés" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:44 -msgid "CPU/Memory Recommendations of this Image" -msgstr "Recommandations processeur/mémoire de cette image" +msgid "Migrate selected items to another Host/Datastore" +msgstr "Migrer les éléments sélectionnés vers un autre hôte/magasin de données" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:49 -msgid "Reconfigure the Memory/CPU of this Image" -msgstr "Reconfigurer la mémoire/le processeur de cette image" +msgid "Migrate this VM" +msgstr "Migrer cette MV" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:50 -msgid "Reconfigure this Image" -msgstr "Reconfigurer cette image" +msgid "Migrate this VM to another Host/Datastore" +msgstr "Migrer cette MV vers un autre hôte/magasin de données" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:64 -msgid "Provision Instances using this Image" -msgstr "Mettre en service les instances à partir de cette image" +msgid "Min" +msgstr "Min" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:86 -msgid "View Policy Simulation for this Image" -msgstr "Afficher la simulation de stratégie pour cette image" +msgid "Min Password Age" +msgstr "Durée min. du mot de passe" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:96 -msgid "Check Compliance of the last known configuration for this Image" -msgstr "Vérifier la conformité de la dernière configuration connue pour cette image" +msgid "Min Password Length" +msgstr "Longueur min. du mot de passe" -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:98 -msgid "Initiate Check Compliance of the last known configuration for this Image?" +msgid "Min interval 1 Minute" msgstr "" -"Lancer la vérification de conformité de la dernière configuration connue pour " -"cette image ?" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:12 -msgid "Refresh relationships and power states for all items related to this VM" +msgid "Min interval 20 Minutes" msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés à cette MV" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:14 -msgid "Refresh relationships and power states for all items related to this VM?" +msgid "Min interval 5 Minutes" msgstr "" -"Actualiser les relations et les états d'alimentation pour tous les éléments as" -"sociés à cette MV ?" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:19 -msgid "Perform SmartState Analysis on this VM" -msgstr "Effectuer une analyse SmartState sur cette MV" - -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:21 -msgid "Perform SmartState Analysis on this VM?" -msgstr "Effectuer une analyse SmartState sur cette MV ?" - -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:26 -msgid "Extract Running Processes for this VM" -msgstr "Extraire les processus en cours d'exécution pour cette machine virtuelle" +msgid "Minor Version" +msgstr "Version mineure" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:28 -msgid "Extract Running Processes for this VM?" -msgstr "Extraire les processus en cours d'exécution pour cette machine virtuelle ?" +msgid "Minute" +msgstr "Minute" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:35 -msgid "Edit this VM" -msgstr "Modifier cette machine virtuelle" +msgid "MiqGroup no longer exists" +msgstr "Le groupe MIQ n'existe plus" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:40 -msgid "Set Ownership for this VM" -msgstr "Définir la propriété de cette MV" +msgid "Mode" +msgstr "Mode" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:45 -msgid "Remove this Virtual machine" -msgstr "Supprimer cette machine virtuelle" +msgid "Module Name" +msgstr "Nom du module" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:46 -msgid "Remove Virtual Machine" -msgstr "Supprimer la machine virtuelle" +msgid "Monday" +msgstr "Lundi" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:48 -msgid "" -"Warning: This Virtual Machine and ALL of its components will be permanently re" -"moved!" +msgid "Monitor" msgstr "" -"Avertissement : cette machine virtuelle et TOUS ses composants seront définiti" -"vement supprimés" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:63 -msgid "Reconfigure the Memory/CPU of this VM" -msgstr "Reconfigurer la mémoire/le processeur de cette MV" +msgid "Monitoring" +msgstr "Surveillance" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:64 -msgid "Reconfigure this VM" -msgstr "Reconfigurer cette MV" +msgid "Month" +msgstr "Mois" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:79 -msgid "Manage Policies for this VM" -msgstr "Gérer les stratégies pour cette MV" +msgid "Monthly" +msgstr "Mensuel" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:85 -msgid "View Policy Simulation for this VM" -msgstr "Afficher la simulation de stratégie pour cette MV" +msgid "Months" +msgstr "Mois" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:91 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:312 -msgid "Edit Tags for this VM" -msgstr "Modifier les balises pour cette machine virtuelle" +msgid "Most Recent" +msgstr "" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:96 -msgid "Check Compliance of the last known configuration for this VM" +msgid "Most Recent Alerts" msgstr "" -"Vérifier la conformité de la dernière configuration connue pour cette machine " -"virtuelle" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:98 -msgid "Initiate Check Compliance of the last known configuration for this VM?" +msgid "Most Recent Hour" msgstr "" -"Lancer la vérification de conformité de la dernière configuration connue pour " -"cette machine virtuelle ?" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:112 -msgid "Clone this VM" -msgstr "Cloner cette machine virtuelle" +msgid "Move Selected buttons left" +msgstr "Déplacer les boutons sélectionnés vers la gauche" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:119 -msgid "Publish this VM to a Template" -msgstr "Publier cette MV dans un modèle" +msgid "Move Selected buttons right" +msgstr "Déplacer les boutons sélectionnés vers la droite" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:126 -msgid "Migrate this VM to another Host/Datastore" -msgstr "Migrer cette MV vers un autre hôte/magasin de données" +msgid "Move all VMs to right" +msgstr "Déplacer toutes les MV vers la droite" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:127 -msgid "Migrate this VM" -msgstr "Migrer cette MV" +msgid "Move selected Accordion down" +msgstr "Déplacer l'accordéon sélectionné vers le bas" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:133 -msgid "Set Retirement Dates for this VM" -msgstr "Définir des dates de désactivation pour cette MV" +msgid "Move selected Accordion to bottom" +msgstr "Déplacer l'accordéon sélectionné en bas" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:139 -msgid "Retire this VM" -msgstr "Désactiver cette MV" +msgid "Move selected Accordion to top" +msgstr "Déplacer l'accordéon sélectionné en haut" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:141 -msgid "Retire this VM?" -msgstr "Désactiver cette MV ?" +msgid "Move selected Accordion up" +msgstr "Déplacer l'accordéon sélectionné vers le haut" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:156 -msgid "Show Capacity & Utilization data for this VM" -msgstr "Afficher les données de capacité et d'utilisation de cette MV" +msgid "Move selected Action down" +msgstr "Déplacer l'action sélectionnée vers le bas" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:162 -msgid "Show Timelines for this VM" -msgstr "Afficher les chronologies pour cette MV" +msgid "Move selected Action up" +msgstr "Déplacer l'action sélectionnée vers le haut" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:172 -msgid "VM Power Functions" -msgstr "Fonctions d'alimentation MV" +msgid "Move selected Actions into this Event" +msgstr "Déplacer les actions sélectionnées vers cet événement" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:178 -msgid "Shutdown the Guest OS on this VM" -msgstr "Arrêter le SE invité sur cette MV" +msgid "Move selected Alerts into this Action" +msgstr "Déplacer les actions sélectionnées vers cette action" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:181 -msgid "Shutdown the Guest OS on this VM?" -msgstr "Arrêter le SE invité sur cette MV ?" +msgid "Move selected Alerts into this Profile" +msgstr "Déplacer les alertes sélectionnées vers ce profil" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:187 -msgid "Restart the Guest OS on this VM" -msgstr "Redémarrer le SE invité sur cette MV" +msgid "Move selected Conditions into this Policy" +msgstr "Déplacer les conditions sélectionnées vers cette stratégie" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:190 -msgid "Restart the Guest OS on this VM?" -msgstr "Redémarrer le SE invité sur cette MV ?" +msgid "Move selected Policies into this Profile" +msgstr "Déplacer les stratégies sélectionnées vers ce profil" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:197 -msgid "Power On this VM" -msgstr "Activer cette MV" +msgid "Move selected VMs to left" +msgstr "Déplacer les VM sélectionnées vers la gauche" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:200 -msgid "Power On this VM?" -msgstr "Activer cette MV ?" +msgid "Move selected VMs to right" +msgstr "Déplacer les VM sélectionnées vers la droite" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:206 -msgid "Power Off this VM" -msgstr "Désactiver cette MV" +msgid "Move selected field down" +msgstr "Déplacer le champ sélectionné vers le bas" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:209 -msgid "Power Off this VM?" -msgstr "Désactiver cette MV ?" +msgid "Move selected field up" +msgstr "Déplacer le champ sélectionné vers le haut" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:215 -msgid "Suspend this VM" -msgstr "Suspendre cette MV" +msgid "Move selected fields %{where}" +msgstr "Déplacer les champs sélectionnés %{where}" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:218 -msgid "Suspend this VM?" -msgstr "Suspend cette MV ?" +msgid "Move selected fields down" +msgstr "Déplacer les champs sélectionnés vers le bas" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:224 -msgid "Reset this VM" -msgstr "Réinitialiser cette MV" +msgid "Move selected fields left" +msgstr "Déplacer les champs sélectionnés vers la gauche" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:227 -msgid "Reset this VM?" -msgstr "Réinitialiser cette MV ?" +msgid "Move selected fields right" +msgstr "Déplacer les champs sélectionnés vers la droite" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:237 -msgid "VM Remote Access" -msgstr "" +msgid "Move selected fields to bottom" +msgstr "Déplacer les champs sélectionnés tout en bas" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:238 -msgid "Access" -msgstr "" +msgid "Move selected fields to top" +msgstr "Déplacer les champs sélectionnés tout en haut" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:243 -msgid "Open a web-based console for this VM" -msgstr "Ouvrir une console Web pour cette MV" +msgid "Move selected fields up" +msgstr "Déplacer les champs sélectionnés vers le haut" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:244 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:251 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:257 -msgid "VM Console" -msgstr "" +msgid "Move selected folder down" +msgstr "Déplacer le répertoire sélectionné vers le bas" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:246 -msgid "" -"Opening a VM web-based console can take a while and requires that the VMware M" -"KS plugin version configured for Management Engine already be installed and wo" -"rking. Are you sure?" -msgstr "" -"L'ouverture d'une console Web de MV peut prendre du temps et nécessite que la " -"version d'extension de VMware configurée pour Management Engine soit déjà inst" -"allée et fonctionnelle. Êtes-vous sûr ?" +msgid "Move selected folder to bottom" +msgstr "Déplacer le répertoire sélectionné tout en bas" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:256 -msgid "" -"Open a web-based VMRC console for this VM. This requires that VMRC is pre-con" -"figured to work in your browser." -msgstr "" -"Ouvrez une console VMRC Web pour cette MV. Pour cela, cette VMRC doit être pré" -"configurée pour fonctionner dans votre navigateur." +msgid "Move selected folder to top" +msgstr "Déplacer le dossier sélectionné en haut" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:259 -msgid "" -"Opening a VM web-based VMRC console requires that VMRC is pre-configured to wo" -"rk in your browser. Are you sure?" -msgstr "" -"Pour ouvrir une console VMRC Web, cette VMRC doit être préconfigurée pour fonc" -"tionner dans votre navigateur. Êtes-vous sûr ?" +msgid "Move selected folder top" +msgstr "Déplacer le répertoire sélectionné au sommet" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:274 -msgid "Create a new snapshot for this VM" -msgstr "Créer un cliché pour cette machine virtuelle" +msgid "Move selected folder up" +msgstr "Déplacer le répertoire sélectionné vers le haut" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:296 -msgid "Delete all of this VMs existing snapshots?" -msgstr "Supprimer tous les clichés existants de cette machine virtuelle ?" +msgid "Move selected reports down" +msgstr "Déplacer les rapports sélectionnés vers le bas" + +msgid "Move selected reports left" +msgstr "Déplacer les rapports sélectionnés vers la gauche" + +msgid "Move selected reports right" +msgstr "Déplacer les rapports sélectionnés vers la droite" + +msgid "Move selected reports to bottom" +msgstr "Déplacer les rapports sélectionnés tout en bas" + +msgid "Move selected reports to top" +msgstr "Déplacer les rapports sélectionnés au sommet" + +msgid "Move selected reports up" +msgstr "Déplacer les rapports sélectionnés vers le haut" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:304 -msgid "" -"This VM will revert to selected snapshot. Are you sure you want to revert to t" -"he selected snapshot?" +msgid "Multiselect" msgstr "" -"Cette MV reviendra au cliché sélectionné. Voulez-vous vraiment revenir au clic" -"hé sélectionné ?" -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:317 -msgid "Compare selected VMs" -msgstr "Comparer les MV sélectionnées" +msgid "Must be a number (greater than 0)" +msgstr "Doit être un nombre (supérieur à 0)" -#: ../app/helpers/application_helper/toolbar/zone_center.rb:12 -msgid "Edit this Zone" -msgstr "Modifier cette zone" +msgid "Must start with 'jdbc:'" +msgstr "Doit commencer par « jdbc »" -#: ../app/helpers/application_helper/toolbar/zone_center.rb:17 -msgid "Delete this Zone" -msgstr "Supprimer cette Zone" +msgid "My EVM Groups" +msgstr "" -#: ../app/helpers/application_helper/toolbar/zone_center.rb:20 -msgid "Are you sure you want to delete this Zone?" -msgstr "Êtes-vous sûr de vouloir supprimer cette Zone ?" +msgid "My Filters" +msgstr "Mes Filtres" -#: ../app/helpers/application_helper/toolbar/zones_center.rb:12 -msgid "Add a new Zone" -msgstr "Ajouter une nouvelle Zone" +msgid "My Other UI Tasks" +msgstr "Mes autres tâches IU" -#: ../app/helpers/application_helper/toolbar_builder.rb:505 -msgid "No %{providers} are available to create an ISO Datastore on" -msgstr "Aucun %{providers} disponible pour créer un magasin de données ISO sur" +msgid "My Personal Filters" +msgstr "Mes Filtres Personnels" -#: ../app/helpers/application_helper/toolbar_builder.rb:514 -msgid "No Capacity & Utilization data has been collected for this Availability Zone" -msgstr "" -"Aucune donnée de capacité et d'utilisation n'a été collectée pour cette zone d" -"e disponibilité" +msgid "My Services" +msgstr "Mes services" -#: ../app/helpers/application_helper/toolbar_builder.rb:518 -msgid "No Timeline data has been collected for this Availability Zone" -msgstr "" -"Aucune donnée de chronologie n'a été collectée pour cette zone de disponibilit" -"é" +msgid "My Settings" +msgstr "Mes paramètres" -#: ../app/helpers/application_helper/toolbar_builder.rb:524 -#: ../app/helpers/application_helper/toolbar_builder.rb:538 -#: ../app/helpers/application_helper/toolbar_builder.rb:543 -#: ../app/helpers/application_helper/toolbar_builder.rb:548 -#: ../app/helpers/application_helper/toolbar_builder.rb:553 -msgid "No Statistics Collected" -msgstr "Aucune statistique collectée" +msgid "My VM and Container Analysis Tasks" +msgstr "Mes tâches d'analyse de MV et de conteneur" -#: ../app/helpers/application_helper/toolbar_builder.rb:530 -msgid "No Capacity & Utilization data has been collected for this Logical Disk" -msgstr "" -"Aucune donnée de capacité et d'utilisation n'a été collectée pour ce disque lo" -"gique" +msgid "N/A" +msgstr "N/A" -#: ../app/helpers/application_helper/toolbar_builder.rb:533 -msgid "No Statistics collected for this Logical Disk" -msgstr "Aucune statistique collectée pour ce disque logique" +msgid "NFS Server" +msgstr "Serveur NFS" -#: ../app/helpers/application_helper/toolbar_builder.rb:558 -msgid "No Capacity & Utilization data has been collected for this Cluster" -msgstr "Aucune donnée de capacité et d'utilisation n'a été collectée pour ce cluster" +msgid "NOT" +msgstr "PAS" -#: ../app/helpers/application_helper/toolbar_builder.rb:561 -msgid "No Timeline data has been collected for this Cluster" -msgstr "Aucune donnée de chronologie n'a été collectée pour ce cluster" +msgid "NTP Servers" +msgstr "Serveurs NTP" -#: ../app/helpers/application_helper/toolbar_builder.rb:567 -msgid "No Compliance Policies assigned to this Host" -msgstr "Aucune stratégie de conformité attribuée à cet hôte" +msgid "Name" +msgstr "Nom" -#: ../app/helpers/application_helper/toolbar_builder.rb:569 -msgid "No Capacity & Utilization data has been collected for this Host" -msgstr "Aucune donnée de capacité et d'utilisation n'a été collectée pour cet hôte" +msgid "Name / Description" +msgstr "Nom/Description" -#: ../app/helpers/application_helper/toolbar_builder.rb:571 -msgid "This Host can not be provisioned because the MAC address is not known" -msgstr "Cet hôte ne peut pas être mis en service car l'adresse MAC n'est pas connue" +msgid "Name cannot contain \"|\"" +msgstr "\"" -#: ../app/helpers/application_helper/toolbar_builder.rb:573 -msgid "No PXE Servers are available for Host provisioning" -msgstr "Aucun serveur PXE n'est disponible pour la mise en service d'hôte" +msgid "Name is required" +msgstr "Le nom est requis" -#: ../app/helpers/application_helper/toolbar_builder.rb:576 -msgid "No Timeline data has been collected for this Host" -msgstr "Aucune donnée de chronologie n'a été collectée pour cet hôte" +msgid "Name:" +msgstr "Nom :" -#: ../app/helpers/application_helper/toolbar_builder.rb:582 -msgid "Default actions can not be changed." -msgstr "Impossible de modifier les actions par défaut." +msgid "Name: " +msgstr "Nom : " -#: ../app/helpers/application_helper/toolbar_builder.rb:584 -msgid "Default actions can not be deleted." -msgstr "Impossible de supprimer les actions par défaut." +msgid "Name: %{name} | Datastore Type: %{storage_type}" +msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:585 -msgid "Actions assigned to Policies can not be deleted" -msgstr "Impossible de supprimer les actions affectées à des stratégies" +msgid "Name: %{name} | Hostname: %{hostname}" +msgstr "Nom: %{name} | Nom d'hôte : %{hostname}" -#: ../app/helpers/application_helper/toolbar_builder.rb:590 -msgid "Alerts that belong to Alert Profiles can not be deleted" -msgstr "Les alertes appartenant à des profils d'alerte ne peuvent pas être supprimées" +msgid "Name: %{name} | Hostname: %{hostname} | Refresh Status: %{status}" +msgstr "Nom : %{name} | Nom d'hôte : %{hostname} | Statut d'actualisation : %{status}" -#: ../app/helpers/application_helper/toolbar_builder.rb:591 -msgid "Alerts referenced by Actions can not be deleted" -msgstr "Les alertes référencées par des actions ne peuvent pas être supprimées" +msgid "Namespace" +msgstr "Espace de nommage" -#: ../app/helpers/application_helper/toolbar_builder.rb:598 -msgid "Users are only allowed to delete their own requests" -msgstr "Un utilisateur ne peut supprimer que ses propres demandes" +msgid "Namespace Details" +msgstr "Détails de l'espace de nommage" -#: ../app/helpers/application_helper/toolbar_builder.rb:600 -msgid "%{approval_states} requests cannot be deleted" -msgstr "%{approval_states} requêtes ne peuvent être supprimées" +msgid "Namespaces" +msgstr "Espaces de nommage" -#: ../app/helpers/application_helper/toolbar_builder.rb:607 -msgid "This Group is Read Only and can not be deleted" -msgstr "Ce groupe est en lecture seule et ne peut pas être supprimé" +msgid "Naming" +msgstr "Désignation" -#: ../app/helpers/application_helper/toolbar_builder.rb:609 -msgid "This Group is Read Only and can not be edited" -msgstr "Ce groupe est en lecture seule et ne peut pas être modifié" +msgid "NetApp" +msgstr "NetApp" -#: ../app/helpers/application_helper/toolbar_builder.rb:615 -msgid "Cannot collect current logs unless the %{server} is started" -msgstr "Impossible de collecter les journaux actuels si le %{server} n'est pas démarré" +msgid "Network" +msgstr "Réseau" -#: ../app/helpers/application_helper/toolbar_builder.rb:619 -msgid "Log collection is already in progress for this %{server}" -msgstr "La collecte de journaux est déjà en cours pour ce %{server}" +msgid "Network Adapter" +msgstr "Adaptateur réseau" -#: ../app/helpers/application_helper/toolbar_builder.rb:623 -msgid "Log collection requires the Log Depot settings to be configured" -msgstr "" -"La collecte de journaux nécessite la configuration des paramètres du référenti" -"el de jounaux" +msgid "Network Adapter Information" +msgstr "Informations sur l'adaptateur réseau" -#: ../app/helpers/application_helper/toolbar_builder.rb:631 -msgid "Default Dashboard cannot be deleted" -msgstr "Impossible de supprimer le tableau de bord par défaut." +msgid "Network Credential" +msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:636 -msgid "Orchestration Stack is already retired" -msgstr "La pile d'orchestration est déjà désactivée" +msgid "Network Credentials" +msgstr "" -#: ../app/helpers/application_helper/toolbar_builder.rb:641 -msgid "Service is already retired" -msgstr "Le service est déjà désactivé" +msgid "Network I/O" +msgstr "E/S réseau" -#: ../app/helpers/application_helper/toolbar_builder.rb:646 -msgid "Sample Analysis Profile cannot be deleted" -msgstr "Impossible de supprimer l'exemple de profil d'analyse" +msgid "Network Information" +msgstr "Informations réseau" -#: ../app/helpers/application_helper/toolbar_builder.rb:648 -msgid "Sample Analysis Profile cannot be edited" -msgstr "Impossible de modifier l'exemple de profil d'analyse" +msgid "Network Management Provider" +msgstr "Fournisseur Gestion réseau" -#: ../app/helpers/application_helper/toolbar_builder.rb:663 -msgid "No Capacity & Utilization data has been collected for this %{storage}" -msgstr "" -"Aucune donnée de capacité et d'utilisation n'a été collectée pour ce %{storage" -"}" +msgid "Network Manager" +msgstr "Gestionnaire réseau" -#: ../app/helpers/application_helper/toolbar_builder.rb:668 -msgid "Only %{storage} without VMs and Hosts can be removed" -msgstr "Seul un %{storage} dépourvu de MV et d'hôte peut être supprimé" +msgid "Network Name" +msgstr "Nom du réseau" -#: ../app/helpers/application_helper/toolbar_builder.rb:675 -msgid "Default Tenant can not be deleted" -msgstr "Impossible de supprimer le locataire par défaut" +msgid "Network Ports" +msgstr "Ports réseau" -#: ../app/helpers/application_helper/toolbar_builder.rb:679 -msgid "User [Administrator] can not be copied" -msgstr "L'utilisateur [Administrator] ne peut pas être copié" +msgid "Network Protocol" +msgstr "Protocole réseau" -#: ../app/helpers/application_helper/toolbar_builder.rb:681 -msgid "User [Administrator] can not be deleted" -msgstr "L'utilisateur [Administrator] ne peut pas être supprimé" +msgid "Network Provider" +msgstr "Fournisseur réseau" -#: ../app/helpers/application_helper/toolbar_builder.rb:686 -msgid "This Role is Read Only and can not be deleted" -msgstr "Ce rôle est en lecture seule et ne peut pas être supprimé" +msgid "Network Provider Information" +msgstr "Informations Fournisseur réseau" -#: ../app/helpers/application_helper/toolbar_builder.rb:687 -msgid "This Role is in use by one or more Groups and can not be deleted" -msgstr "Ce rôle est utilisé par un ou plusieurs groupes et ne peut pas être supprimé" +msgid "Network Router creation failed: Task start failed: ID [%{id}]" +msgstr "La création d'un routeur réseau a échoué : échec de démarrage de la tâche : ID [%{id}]" -#: ../app/helpers/application_helper/toolbar_builder.rb:689 -msgid "This Role is Read Only and can not be edited" -msgstr "Ce rôle est en lecture seule et ne peut pas être modifié" +msgid "Network Routers" +msgstr "Routeurs réseau" -#: ../app/helpers/application_helper/toolbar_builder.rb:694 -msgid "No Capacity & Utilization data has been collected for this VM" -msgstr "Aucune donnée de capacité et d'utilisation n'a été collectée pour cette MV" +msgid "Network Type" +msgstr "Type de réseau" -#: ../app/helpers/application_helper/toolbar_builder.rb:698 -msgid "No Compliance Policies assigned to this virtual machine" -msgstr "Aucune stratégie de conformité attribuée à cette machine virtuelle" +msgid "Network Utilization Trend" +msgstr "Tendance sur l'utilisation du réseau" -#: ../app/helpers/application_helper/toolbar_builder.rb:703 -msgid "" -"The web-based console is only available on IE, Firefox or Chrome (Windows/Linu" -"x)" -msgstr "La console Web n'est disponible que sur IE, Firefox ou Chrome (Windows/Linux)" +msgid "Networking" +msgstr "Gestion réseau" -#: ../app/helpers/application_helper/toolbar_builder.rb:710 -msgid "VM VMRC Console error: %{error}" -msgstr "Erreur de console VMRC de la MV : %{error}" +msgid "Networks" +msgstr "Réseaux" -#: ../app/helpers/application_helper/toolbar_builder.rb:715 -msgid "The web-based console is not available because the VM is not powered on" -msgstr "La console Web n'est pas disponible car la MV n'est pas activée" +msgid "Never" +msgstr "Jamais" -#: ../app/helpers/application_helper/toolbar_builder.rb:719 -msgid "The web-based VNC console is not available because the VM is not powered on" -msgstr "La console VNC sur le Web n'est pas disponible car la MV n'est pas activée" +msgid "Never Verified" +msgstr "Jamais vérifié" -#: ../app/helpers/application_helper/toolbar_builder.rb:722 -msgid "Instance is already retired" -msgstr "L'instance est déjà hors service" +msgid "New " +msgstr "Nouveau " -#: ../app/helpers/application_helper/toolbar_builder.rb:725 -msgid "No Timeline data has been collected for this VM" -msgstr "Aucune donnée de chronologie n'a été collectée pour cette MV" +msgid "New Entry" +msgstr "Nouvelle entrée" -#: ../app/helpers/application_helper/toolbar_builder.rb:734 -msgid "Select the Active snapshot to create a new snapshot for this VM" -msgstr "Sélectionner le cliché actif pour créer un nouveau cliché de cette MV" +msgid "New Field" +msgstr "Nouveau champ" -#: ../app/helpers/application_helper/toolbar_builder.rb:742 -msgid "Select a snapshot that is not the active one" -msgstr "" +msgid "New Folder" +msgstr "Nouveau dossier" -#: ../app/helpers/application_helper/toolbar_builder.rb:749 -msgid "No Compliance Policies assigned to this %{vm}" -msgstr "Aucune stratégie de conformité attribuée à cette %{vm}" +msgid "New Image Usage Trend" +msgstr "Nouvelle tendance d'utilisation d'images" -#: ../app/helpers/application_helper/toolbar_builder.rb:753 -msgid "No Capacity & Utilization data has been collected for this Template" -msgstr "Aucune donnée de capacité et d'utilisation n'a été collectée pour ce modèle" +msgid "New Name" +msgstr "Nouveau nom" -#: ../app/helpers/application_helper/toolbar_builder.rb:759 -msgid "No Timeline data has been collected for this Template" -msgstr "Aucune donnée de chronologie n'a été collectée pour ce modèle" +msgid "New Orchestration Template Information" +msgstr "Nouvelles informations de modèle d'orchestration" -#: ../app/helpers/application_helper/toolbar_builder.rb:766 -msgid "Cannot collect current logs unless there are started %{servers} in the Zone" -msgstr "" -"Impossible de collecter les journaux actuels si aucun %{servers} n'est démarré" -" dans la zone" +msgid "New Parameter" +msgstr "Nouveau paramètre" -#: ../app/helpers/application_helper/toolbar_builder.rb:770 -msgid "This Zone do not have Log Depot settings configured, collection not allowed" -msgstr "" -"Cette zone n'a pas de paramètres de Dêpot des journaux configuré, la collecte " -"n'est pas autorisée" +msgid "New Password" +msgstr "Nouveau mot de passe" -#: ../app/helpers/application_helper/toolbar_builder.rb:773 -msgid "Log collection is already in progress for one or more %{servers} in this Zone" -msgstr "" -"La collecte de journaux est déjà en cours pour un ou plusieurs %{servers} de c" -"ette zone" +msgid "New VM Settings" +msgstr "Nouveaux paramètres de MV" -#: ../app/helpers/application_helper/toolbar_builder.rb:778 -msgid "'Default' zone cannot be deleted" -msgstr "La zone \"par défaut\" ne peut pas être supprimée" +msgid "New datasource initiated for selected server(s)" +msgstr "Nouvelle source de données initiée pour le(s) serveur(s) sélectionné(s)" -#: ../app/helpers/application_helper/toolbar_builder.rb:783 -msgid "Cannot delete a Zone that has Relationships" -msgstr "Impossible de supprimer une zone qui comporte des relations" +msgid "New name?" +msgstr "Nouveau nom ?" -#: ../app/helpers/application_helper/toolbar_builder.rb:790 -msgid "Object attribute must be specified to copy object details for use in a Button" +msgid "New object" msgstr "" -"L'attribut d'objet doit être spécifié pour permettre la copie des détails de l" -"'objet à utiliser dans un bouton" -#: ../app/helpers/application_helper/toolbar_builder.rb:794 -msgid "No System Image Types available, Customization Template cannot be added" -msgstr "" -"Aucun type d'image système n'est disponible. Impossible d'ajouter un modèle de" -" personnalisation" +msgid "New setting will affect Orchestration Stack" +msgid_plural "New setting will affect Orchestration Stacks" +msgstr[0] "Le nouveau paramètre affectera la pile d'orchestration" +msgstr[1] "Le nouveau paramètre affectera les piles d'orchestration" -#: ../app/helpers/application_helper/toolbar_builder.rb:799 -msgid "Only %{dashboard_count} Dashboards are allowed for a group" -msgstr "Un groupe ne peut pas contenir plus de %{dashboard_count} tableaux de bord" +msgid "New setting will affect Service" +msgid_plural "New setting will affect Services" +msgstr[0] "Le nouveau paramètre affectera le service" +msgstr[1] "Le nouveau paramètre affectera les services" -#: ../app/helpers/application_helper/toolbar_builder.rb:803 -msgid "There should be atleast 2 Dashboards to Edit Sequence" -msgstr "Il doit y avoir au moins 2 tableaux de bord pour modifier la séquence" +msgid "New setting will affect VM" +msgid_plural "New setting will affect VMs" +msgstr[0] "Le nouveau paramètre affectera la MV" +msgstr[1] "Le nouveau paramètre affectera les MV" -#: ../app/helpers/application_helper/toolbar_builder.rb:821 -#: ../app/views/layouts/listnav/_ems_storage.html.haml:16 -msgid "No Timeline data has been collected for Policy or Management Events" -msgstr "" +msgid "New template content cannot be empty" +msgstr "Le contenu du nouveau modèle ne doit pas être vide" + +msgid "Next" +msgstr "Suivant" + +msgid "Next >" +msgstr "Suivant >" -#: ../app/helpers/auth_key_pair_cloud_helper/textual_summary.rb:28 -#: ../app/helpers/availability_zone_helper/textual_summary.rb:26 -#: ../app/helpers/availability_zone_helper/textual_summary.rb:37 -#: ../app/helpers/cloud_network_helper/textual_summary.rb:38 -#: ../app/helpers/cloud_subnet_helper/textual_summary.rb:62 -#: ../app/helpers/cloud_subnet_helper/textual_summary.rb:89 -#: ../app/helpers/cloud_tenant_helper/textual_summary.rb:26 -#: ../app/helpers/cloud_tenant_helper/textual_summary.rb:37 -#: ../app/helpers/cloud_tenant_helper/textual_summary.rb:59 -#: ../app/helpers/cloud_tenant_helper/textual_summary.rb:70 -#: ../app/helpers/ems_cloud_helper/textual_summary.rb:81 -#: ../app/helpers/ems_cloud_helper/textual_summary.rb:92 -#: ../app/helpers/ems_cloud_helper/textual_summary.rb:110 -#: ../app/helpers/ems_cloud_helper/textual_summary.rb:142 -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:203 -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:214 -#: ../app/helpers/ems_container_helper/textual_summary.rb:96 -#: ../app/helpers/ems_infra_helper/textual_summary.rb:100 -#: ../app/helpers/ems_infra_helper/textual_summary.rb:111 -#: ../app/helpers/flavor_helper/textual_summary.rb:77 -#: ../app/helpers/host_aggregate_helper/textual_summary.rb:22 -#: ../app/helpers/host_aggregate_helper/textual_summary.rb:33 -#: ../app/helpers/host_helper/textual_summary.rb:292 -#: ../app/helpers/host_helper/textual_summary.rb:324 -#: ../app/helpers/host_helper/textual_summary.rb:340 -#: ../app/helpers/host_helper/textual_summary.rb:351 -#: ../app/helpers/host_helper/textual_summary.rb:362 -#: ../app/helpers/host_helper/textual_summary.rb:373 -#: ../app/helpers/load_balancer_helper/textual_summary.rb:58 -#: ../app/helpers/network_router_helper/textual_summary.rb:38 -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:99 -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:110 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:202 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:224 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:235 -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:67 -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:78 -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:89 -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:100 -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:111 -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:122 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:126 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:137 -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:68 -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:91 -#: ../app/helpers/security_group_helper/textual_summary.rb:48 -#: ../app/helpers/storage_helper/textual_summary.rb:80 -#: ../app/helpers/storage_helper/textual_summary.rb:91 -#: ../app/helpers/storage_helper/textual_summary.rb:102 -#: ../app/helpers/storage_helper/textual_summary.rb:124 -#: ../app/helpers/storage_helper/textual_summary.rb:135 -#: ../app/helpers/textual_summary_helper.rb:132 -#: ../app/helpers/vm_helper/textual_summary.rb:363 -#: ../app/helpers/vm_helper/textual_summary.rb:375 -#: ../app/helpers/vm_helper/textual_summary.rb:387 -#: ../app/helpers/vm_helper/textual_summary.rb:399 -#: ../app/helpers/vm_helper/textual_summary.rb:411 -#: ../app/helpers/vm_helper/textual_summary.rb:425 -#: ../app/helpers/vm_helper/textual_summary.rb:437 -#: ../app/helpers/vm_helper/textual_summary.rb:687 -#: ../app/helpers/vm_helper/textual_summary.rb:699 -#: ../app/helpers/vm_helper/textual_summary.rb:711 -#: ../app/helpers/vm_helper/textual_summary.rb:723 -msgid "Show all %{label}" -msgstr "Afficher tou(te)s les %{label}" +msgid "Next Run Time" +msgstr "Heure de la prochaine exécution" -#: ../app/helpers/catalog_helper/textual_summary.rb:19 -#: ../app/helpers/container_summary_helper.rb:178 -#: ../app/helpers/textual_summary_helper.rb:43 -msgid "%{name} Tags" -msgstr "%{name} balises" +msgid "No" +msgstr "Non" -#: ../app/helpers/catalog_helper/textual_summary.rb:23 -#: ../app/helpers/container_summary_helper.rb:191 -#: ../app/helpers/textual_summary_helper.rb:48 -msgid "No %{label} have been assigned" -msgstr "Aucune %{label} n'a été attribuée" +msgid "No %{alert_profile_type} Alert Profiles are defined that match the entered search string." +msgstr "Aucun profil d'alerte %{alert_profile_type} défini ne correspond à la chaîne de recherche saisie." -#: ../app/helpers/chargeback_helper.rb:5 -msgid "Disk I/O" -msgstr "E/S disque" +msgid "No %{alert_profile_type} Alert Profiles are defined." +msgstr "Aucun profil d'alerte %{alert_profile_type} n'est défini." -#: ../app/helpers/chargeback_helper.rb:6 -#: ../app/views/chargeback/_cb_rate_edit_table.html.haml:29 -#: ../app/views/chargeback/_cb_rate_show.html.haml:55 -msgid "Fixed" -msgstr "Fixé" +msgid "No %{clusters} found in the current region." +msgstr "Aucun %{clusters} trouvé dans la région actuelle." -#: ../app/helpers/chargeback_helper.rb:8 -msgid "Network I/O" -msgstr "E/S réseau" +msgid "No %{item_type} selected" +msgstr "" -#: ../app/helpers/chargeback_helper.rb:9 -#: ../app/presenters/menu/default_menu.rb:152 -#: ../app/views/chargeback/_assignments_list.html.haml:29 -#: ../app/views/configuration/_ui_2.html.haml:242 -#: ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:21 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:87 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:210 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:313 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:424 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:31 -msgid "Storage" -msgstr "Stockage" +msgid "No %{label} have been assigned" +msgstr "Aucune %{label} n'a été attribuée" -#: ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:25 -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:39 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:49 -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:39 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:42 -msgid "Zone Name" -msgstr "Nom de Zone" - -#: ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:33 -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:43 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:57 -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:47 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:50 -msgid "Operational Status" -msgstr "Statut opérationnel" - -#: ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:37 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:61 -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:51 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:54 -msgid "Health State" -msgstr "État d'intégrité" - -#: ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:41 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:65 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:58 -msgid "Enabled State" -msgstr "Statut d'activation" - -#: ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:45 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:73 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:66 -msgid "System Name" -msgstr "Nom du système" - -#: ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:49 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:77 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:70 -msgid "Number of Blocks" -msgstr "Nombre de blocs" - -#: ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:53 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:81 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:74 -msgid "Block Size" -msgstr "Taille de bloc" - -#: ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:57 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:85 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:78 -msgid "Consumable Blocks" -msgstr "Blocs consommables" - -#: ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:61 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:89 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:82 -msgid "Device ID" -msgstr "ID de périphérique" - -#: ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:66 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:94 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:87 -msgid "Extent Status" -msgstr "État de l'étendue" - -#: ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:70 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:110 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:103 -msgid "Primordial" -msgstr "Primordial" - -#: ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:74 -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:55 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:114 -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:59 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:107 -#: ../app/helpers/storage_manager_helper/textual_summary.rb:35 -msgid "Last Update Status" -msgstr "État de la dernière mise à jour" +msgid "No %{members} were selected to move left" +msgstr "Aucun %{members} sélectionné à déplacer vers la gauche" -#: ../app/helpers/cloud_object_store_container_helper/textual_summary.rb:14 -#: ../app/helpers/cloud_object_store_object_helper/textual_summary.rb:13 -#: ../app/helpers/cloud_volume_backup_helper/textual_summary.rb:27 -#: ../app/helpers/cloud_volume_helper/textual_summary.rb:24 -#: ../app/helpers/cloud_volume_snapshot_helper/textual_summary.rb:35 -#: ../app/helpers/ems_network_helper/textual_summary.rb:59 -#: ../app/helpers/ems_storage_helper/textual_summary.rb:56 -msgid "Parent Cloud Provider" -msgstr "" +msgid "No %{members} were selected to move right" +msgstr "Aucun %{members} sélectionné à déplacer vers la droite" -#: ../app/helpers/cloud_object_store_container_helper/textual_summary.rb:22 -#: ../app/helpers/cloud_volume_backup_helper/textual_summary.rb:19 -#: ../app/helpers/cloud_volume_helper/textual_summary.rb:16 -#: ../app/helpers/cloud_volume_snapshot_helper/textual_summary.rb:15 -#: ../app/helpers/ops_helper/textual_summary.rb:109 -#: ../app/views/ops/_db_info.html.haml:59 -#: ../app/views/ops/_db_info.html.haml:152 -#: ../app/views/ops/_db_info.html.haml:217 -#: ../app/views/vm_common/_reconfigure.html.haml:207 -#: ../app/views/vm_common/_snapshots_desc.html.haml:31 -msgid "Size" -msgstr "Taille" +msgid "No %{member} selected to set to Asynchronous" +msgstr "Aucun %{member} sélectionné à définir sur Asynchrone" -#: ../app/helpers/cloud_object_store_container_helper/textual_summary.rb:34 -#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:28 -msgid "Show this Cloud Object Store's parent %{parent}" -msgstr "Afficher le/la %{parent} parent de ce magasin d'objets cloud" +msgid "No %{member} selected to set to Synchronous" +msgstr "Aucun %{member} sélectionné à définir sur Synchrone" -#: ../app/helpers/cloud_object_store_container_helper/textual_summary.rb:45 -msgid "Show this Cloud Object Store's child %{children}" -msgstr "Afficher les %{children} enfants de ce magasin d'objets cloud" +msgid "No %{member} were selected to move left" +msgstr "Aucun %{member} sélectionné à déplacer vers la gauche" -#: ../app/helpers/cloud_object_store_object_helper/textual_summary.rb:25 -msgid "Content Length" -msgstr "Taille du Contenu" +msgid "No %{member} were selected to move right" +msgstr "Aucun %{member} sélectionné à déplacer vers la droite" -#: ../app/helpers/cloud_object_store_object_helper/textual_summary.rb:41 -#: ../app/helpers/cloud_object_store_object_helper/textual_summary.rb:56 -#: ../app/views/layouts/listnav/_cloud_object_store_object.html.haml:28 -#: ../app/views/layouts/listnav/_cloud_object_store_object.html.haml:36 -msgid "Show this Cloud Object's parent %{parent}" -msgstr "Afficher le/la %{parent} parent de cet objet cloud" +msgid "No %{models} were selected for deletion." +msgstr "Aucun %{models} sélectionné à supprimer." -#: ../app/helpers/cloud_subnet_helper/textual_summary.rb:84 -msgid "Managed Subnets" -msgstr "Sous-réseaux gérés" +msgid "No %{model} %{mode} Policies are defined that match the entered search string." +msgstr "Aucune stratégie %{mode} %{model} définie ne correspond à la chaîne de recherche saisie." -#: ../app/helpers/cloud_tenant_helper/textual_summary.rb:66 -#: ../app/presenters/menu/default_menu.rb:171 -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:56 -msgid "Volume Snapshots" -msgstr "Clichés de volume" +msgid "No %{model} %{mode} Policies are defined." +msgstr "Aucune stratégie %{mode} %{model} n'est définie." -#: ../app/helpers/cloud_tenant_helper/textual_summary.rb:82 -#: ../app/helpers/cloud_volume_helper/textual_summary.rb:78 -#: ../app/helpers/cloud_volume_helper/textual_summary.rb:90 -msgid "Show all %{models}" -msgstr "Afficher tou(te)s les %{models}" +msgid "No %{model} Conditions are defined that match the entered search string." +msgstr "Aucune condition %{model} définie ne correspond à la chaîne de recherche saisie." -#: ../app/helpers/cloud_volume_backup_helper/textual_summary.rb:15 -#: ../app/helpers/compliance_summary_helper.rb:7 -#: ../app/helpers/container_group_helper/textual_summary.rb:16 -#: ../app/helpers/container_node_helper/textual_summary.rb:17 -#: ../app/views/ems_container/_main.html.haml:13 -#: ../app/views/ems_datawarehouse/_main.html.haml:10 -#: ../app/views/ems_middleware/_main.html.haml:10 -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:29 -#: ../app/views/miq_request/_ae_prov_show.html.haml:22 -#: ../app/views/miq_request/_request.html.haml:31 -#: ../app/views/miq_request/_request_details.html.haml:44 -#: ../app/views/ops/_selected_by_roles.html.haml:17 -#: ../app/views/ops/_selected_by_roles.html.haml:64 -#: ../app/views/ops/_selected_by_servers.html.haml:48 -#: ../app/views/ops/_selected_by_servers.html.haml:181 -#: ../app/views/ops/_server_desc.html.haml:29 -#: ../app/views/report/_export_widgets.html.haml:29 -#: ../app/views/report/_widget_show.html.haml:65 -#: ../app/views/shared/views/ems_common/_main.html.haml:9 -msgid "Status" -msgstr "Statut" +msgid "No %{model} Conditions are defined." +msgstr "Aucune condition %{model} n'est définie." -#: ../app/helpers/cloud_volume_backup_helper/textual_summary.rb:39 -msgid "Show this Backup's %{parent}" -msgstr "Afficher le %{parent} de cette sauvegarde" +msgid "No %{model} were %{state} %{time}" +msgstr "Aucun %{model} n'était %{state} à %{time}" -#: ../app/helpers/cloud_volume_helper/textual_summary.rb:40 -msgid "Show this Volume's %{availability_zone}" -msgstr "Afficher la %{availability_zone} de ce volume" +msgid "No %{model} were running %{time}" +msgstr "Aucun %{model} n'était en cours d'exécution à %{time}" -#: ../app/helpers/cloud_volume_helper/textual_summary.rb:55 -msgid "Show this Volume's %{parent}" -msgstr "Afficher le %{parent} de ce volume" +msgid "No %{model} were selected for %{task}" +msgstr "Aucun %{model} n'était sélectionné pour %{task}" -#: ../app/helpers/cloud_volume_helper/textual_summary.rb:66 -msgid "Show this Volume's %{cloud_tenant}" -msgstr "Afficher le %{cloud_tenant} de ce volume" +msgid "No %{model} were selected for Analysis" +msgstr "Aucun %{model} sélectionné pour analyse" -#: ../app/helpers/cloud_volume_helper/textual_summary.rb:101 -msgid "Show all attached %{models}" -msgstr "Afficher tou(te)s les %{models} associé(e)s" +msgid "No %{model} were selected for Compliance Check" +msgstr "" -#: ../app/helpers/cloud_volume_snapshot_helper/textual_summary.rb:24 -msgid "Show all %{volumes} based on this Snapshot." -msgstr "Afficher tou(te)s les %{volumes} basé(e)s sur cet cliché." +msgid "No %{model} were selected for cancellation" +msgstr "Aucun %{model} n'était sélectionné pour annulation" -#: ../app/helpers/cloud_volume_snapshot_helper/textual_summary.rb:47 -msgid "Show this Snapshot's %{parent}" -msgstr "Afficher le %{parent} de ce cliché" +msgid "No %{model} were selected for deletion" +msgstr "Aucun %{model} sélectionné à supprimer." -#: ../app/helpers/compliance_summary_helper.rb:9 -msgid "Never Verified" -msgstr "Jamais vérifié" +msgid "No %{model} were selected for refresh" +msgstr "Aucun %{model} n'était sélectionné pour actualisation" -#: ../app/helpers/compliance_summary_helper.rb:15 -msgid "Non-Compliant as of %{time} Ago" -msgstr "Non conforme par rapport à il y a %{time}" +msgid "No %{model} were selected for scanning" +msgstr "Aucun %{model} sélectionné à scanner" -#: ../app/helpers/compliance_summary_helper.rb:18 -msgid "Compliant as of %{time} Ago" -msgstr "Conforme %{time} avant" +msgid "No %{model} were selected to %{button}" +msgstr "Aucun %{model} sélectionné à %{button}" -#: ../app/helpers/compliance_summary_helper.rb:21 -msgid "Show Details of Compliance Check on %{date}" -msgstr "Afficher les détails du contrôle de conformité le %{date}" +msgid "No %{model} were selected to be marked as %{action}" +msgstr "Aucun %{model} sélectionné pour être marqué comme %{action}" -#: ../app/helpers/compliance_summary_helper.rb:36 -#: ../app/helpers/container_summary_helper.rb:143 -#: ../app/helpers/host_helper/textual_summary.rb:481 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:226 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:240 -#: ../app/helpers/vm_helper/textual_summary.rb:660 -#: ../app/helpers/vm_helper/textual_summary.rb:673 -#: ../app/helpers/vm_helper/textual_summary.rb:791 -#: ../app/helpers/vm_helper/textual_summary.rb:801 -#: ../app/helpers/vm_helper/textual_summary.rb:811 -#: ../app/helpers/vm_helper/textual_summary.rb:822 -#: ../app/views/ems_cluster/_config.html.haml:8 -#: ../app/views/layouts/_item.html.haml:145 -#: ../app/views/ops/_settings_server_tab.html.haml:63 -#: ../app/views/resource_pool/_config.html.haml:20 -#: ../app/views/vm_common/_config.html.haml:85 -#: ../app/views/vm_common/_right_size.html.haml:1 -msgid "Not Available" -msgstr "Non disponible" +msgid "No %{mode} Policy Profiles are defined that match the entered search string." +msgstr "Aucun profil de stratégie %{mode} défini ne correspond à la chaîne de recherche saisie." -#: ../app/helpers/compliance_summary_helper.rb:39 -#: ../app/helpers/container_summary_helper.rb:136 -#: ../app/helpers/ems_infra_helper/textual_summary.rb:74 -#: ../app/helpers/ems_infra_helper/textual_summary.rb:86 -#: ../app/helpers/host_helper/textual_summary.rb:214 -#: ../app/helpers/host_helper/textual_summary.rb:481 -#: ../app/helpers/ops_helper/textual_summary.rb:139 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:111 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:240 -#: ../app/helpers/vm_helper/textual_summary.rb:170 -#: ../app/helpers/vm_helper/textual_summary.rb:673 -msgid "Available" -msgstr "Disponible" +msgid "No %{mode} Policy Profiles are defined." +msgstr "Aucun profil de stratégie %{mode} n'est défini." -#: ../app/helpers/compliance_summary_helper.rb:40 -msgid "Show Compliance History of this %{model} (Last 10 Checks)" -msgstr "Afficher l'historique de conformité de %{model} (10 derniers contrôles)" +msgid "No %{name} were selected to move down" +msgstr "Aucun %{name} sélectionné à déplacer vers le bas" -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:62 -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:67 -msgid "Large Trees" -msgstr "Arborescences de grande taille" +msgid "No %{name} were selected to move up" +msgstr "Aucun %{name} sélectionné à déplacer vers le haut" -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:63 -#: ../app/helpers/configuration_helper/configuration_view_helper.rb:68 -msgid "Small Trees" -msgstr "Petits arbres" +msgid "No %{providers} are available to create an ISO Datastore on" +msgstr "Aucun %{providers} disponible pour créer un magasin de données ISO sur" -#: ../app/helpers/configuration_job_helper/textual_summary.rb:33 -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:44 -#: ../app/helpers/vm_helper/textual_summary.rb:346 -#: ../app/views/ops/rhn/_info_subscribed.html.haml:13 -#: ../app/views/vm_common/_add_to_service.html.haml:29 -msgid "Service" -msgstr "Service" +msgid "No %{records} were selected for deletion" +msgstr "Aucun %{records} sélectionné à supprimer" -#: ../app/helpers/configuration_job_helper/textual_summary.rb:39 -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:50 -#: ../app/helpers/vm_helper/textual_summary.rb:352 -msgid "Show this Service" -msgstr "Afficher ce service" +msgid "No %{record} were selected for deletion" +msgstr "Aucun %{record} sélectionné à supprimer" -#: ../app/helpers/configuration_job_helper/textual_summary.rb:52 -msgid "Show this Parent Provider" -msgstr "Afficher ce fournisseur parent" +msgid "No %{schedules} were selected to be disabled" +msgstr "Aucun %{schedules} sélectionné à désactiver" -#: ../app/helpers/configuration_job_helper/textual_summary.rb:63 -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:111 -msgid "Show all parameters" -msgstr "Afficher tous les paramètres" +msgid "No %{schedules} were selected to be enabled" +msgstr "Aucun %{schedules} sélectionné à activer" -#: ../app/helpers/container_build_helper/textual_summary.rb:23 -msgid "Phase" -msgstr "Phase" +msgid "No %{tag} %{model} were running %{time}" +msgstr "Aucun %{model} %{tag} n'était en cours d'exécution à %{time}" -#: ../app/helpers/container_build_helper/textual_summary.rb:24 -#: ../app/helpers/container_helper/textual_summary.rb:50 -#: ../app/views/layouts/_ae_resolve_options.html.haml:42 -#: ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:29 -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:31 -#: ../app/views/miq_policy/import.html.haml:19 -#: ../app/views/miq_request/_ae_prov_show.html.haml:20 -#: ../app/views/ops/_schedule_show.html.haml:101 -#: ../app/views/report/_widget_show.html.haml:97 -#: ../app/views/shared/buttons/_ab_show.html.haml:111 -msgid "Message" -msgstr "Message" +msgid "No %{tenant_name} Tags are assigned" +msgstr "Aucune balise %{tenant_name} attribuée" -#: ../app/helpers/container_build_helper/textual_summary.rb:24 -#: ../app/helpers/container_helper/textual_summary.rb:30 -#: ../app/helpers/container_node_helper/textual_summary.rb:17 -#: ../app/views/miq_request/_request.html.haml:199 -#: ../app/views/miq_request/_request_details.html.haml:84 -msgid "Reason" -msgstr "Motif" +msgid "No %{tenant_name} Tags are common to all of the items below" +msgstr "Aucune balise %{tenant_name} n'est commune à tous les éléments ci-dessous" -#: ../app/helpers/container_build_helper/textual_summary.rb:25 -msgid "Output Image" -msgstr "Image de sortie" +msgid "No %{tenant_name} Tags have been assigned" +msgstr "Aucune balise %{tenant_name} n'a été attribuée" -#: ../app/helpers/container_build_helper/textual_summary.rb:25 -msgid "Pod" -msgstr "Pod" +msgid "No %{types} found" +msgstr "Aucun %{types} trouvé" -#: ../app/helpers/container_build_helper/textual_summary.rb:26 -msgid "Start Timestamp" -msgstr "Horodatage de début" +msgid "No %{types} found." +msgstr "Aucun %{types} trouvé." -#: ../app/helpers/container_build_helper/textual_summary.rb:27 -msgid "Completion Timestamp" -msgstr "Heure de Complétion" +msgid "No Actions are defined" +msgstr "Aucune action n'est définie" -#: ../app/helpers/container_build_helper/textual_summary.rb:28 -msgid "Duration" -msgstr "Durée" +msgid "No Actions are defined that match the entered search string '%s'" +msgstr "Aucune action définie ne correspond à la chaîne de recherche saisie '%s'" -#: ../app/helpers/container_build_helper/textual_summary.rb:88 -msgid "No Pod" -msgstr "Aucune Pod" +msgid "No Alerts are defined" +msgstr "Aucune alerte n'est définie" -#: ../app/helpers/container_group_helper/textual_summary.rb:33 -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:55 -msgid "Storage Medium Type" -msgstr "Type de support de stockage" +msgid "No Alerts are defined that match the entered search string '%s'" +msgstr "Aucune alerte définie ne correspond à la chaîne de recherche saisie '%s'" -#: ../app/helpers/container_group_helper/textual_summary.rb:34 -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:61 -msgid "GCE PD Resource" -msgstr "Ressource GCE PD" +msgid "No Alerts are defined." +msgstr "Aucune alerte n'est définie." -#: ../app/helpers/container_group_helper/textual_summary.rb:35 -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:67 -msgid "Git Repository" -msgstr "Référentiel Git" +msgid "No Alerts have been selected." +msgstr "Aucune alerte n'est sélectionnée." -#: ../app/helpers/container_group_helper/textual_summary.rb:36 -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:73 -msgid "Git Revision" -msgstr "Révision Git" +msgid "No Attribute/Value Pairs found" +msgstr "Aucun(e) attribut/paire de valeurs trouvé(e)" -#: ../app/helpers/container_group_helper/textual_summary.rb:37 -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:79 -msgid "NFS Server" -msgstr "Serveur NFS" +msgid "No Attribute/Value Pairs found." +msgstr "Aucun(e) attribut/paire de valeurs trouvé(e)." -#: ../app/helpers/container_group_helper/textual_summary.rb:38 -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:85 -msgid "ISCSI Target Portal" -msgstr "Portail cible ISCSI" +msgid "No Backup Schedules are defined" +msgstr "Aucun planning de sauvegarde n'est défini" -#: ../app/helpers/container_group_helper/textual_summary.rb:39 -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:91 -msgid "ISCSI Target Qualified Name" -msgstr "Nom qualifié cible ISCSI" +msgid "No Button Group was selected!" +msgstr "Aucun groupe de bouton sélectionné." -#: ../app/helpers/container_group_helper/textual_summary.rb:40 -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:97 -msgid "ISCSI Target Lun Number" -msgstr "Numéro LUN cible ISCSI" +msgid "No Buttons found." +msgstr "Aucun bouton trouvé." -#: ../app/helpers/container_group_helper/textual_summary.rb:41 -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:103 -msgid "Glusterfs Endpoint Name" -msgstr "Nom du point d'accès GlusterFS" +msgid "No Capacity & Utilization data available." +msgstr "Aucune donnée de capacité et d'utilisation disponible." -#: ../app/helpers/container_group_helper/textual_summary.rb:42 -msgid "Persistent Volume Claim Name" -msgstr "Nom de demande de volume persistant" +msgid "No Capacity & Utilization data has been collected for this %{storage}" +msgstr "Aucune donnée de capacité et d'utilisation n'a été collectée pour ce %{storage}" -#: ../app/helpers/container_group_helper/textual_summary.rb:43 -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:109 -msgid "Rados Ceph Monitors" -msgstr "Moniteurs Ceph Rados" +msgid "No Capacity & Utilization data has been collected for this Availability Zone" +msgstr "Aucune donnée de capacité et d'utilisation n'a été collectée pour cette zone de disponibilité" -#: ../app/helpers/container_group_helper/textual_summary.rb:44 -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:115 -msgid "Rados Image Name" -msgstr "Nom d'image Rados" +msgid "No Capacity & Utilization data has been collected for this Cluster" +msgstr "Aucune donnée de capacité et d'utilisation n'a été collectée pour ce cluster" -#: ../app/helpers/container_group_helper/textual_summary.rb:45 -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:121 -msgid "Rados Pool Name" -msgstr "Nom de pool Rados" +msgid "No Capacity & Utilization data has been collected for this Host" +msgstr "Aucune donnée de capacité et d'utilisation n'a été collectée pour cet hôte" -#: ../app/helpers/container_group_helper/textual_summary.rb:46 -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:127 -msgid "Rados User Name" -msgstr "Nom d'utilisateur Rados" +msgid "No Capacity & Utilization data has been collected for this Template" +msgstr "Aucune donnée de capacité et d'utilisation n'a été collectée pour ce modèle" -#: ../app/helpers/container_group_helper/textual_summary.rb:47 -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:133 -msgid "Rados Keyring" -msgstr "Clés d'authentification Rados" +msgid "No Capacity & Utilization data has been collected for this VM" +msgstr "Aucune donnée de capacité et d'utilisation n'a été collectée pour cette MV" -#: ../app/helpers/container_group_helper/textual_summary.rb:48 -msgid "Volume Path" -msgstr "Chemin du volume" +msgid "No Catalog Items found." +msgstr "Aucun élément de catalogue trouvé." -#: ../app/helpers/container_group_helper/textual_summary.rb:49 -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:143 -msgid "FS Type" -msgstr "Type de FS" +msgid "No Choices Available" +msgstr "Aucun choix disponible" -#: ../app/helpers/container_group_helper/textual_summary.rb:50 -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:149 -msgid "Read-Only" -msgstr "Lecture seule" +msgid "No Class found for explorer tree node id '%{number}'" +msgstr "Aucune classe trouvée pour l'ID de nœud d'arborescence de l'explorateur '%{number}'" -#: ../app/helpers/container_group_helper/textual_summary.rb:51 -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:155 -msgid "Volume ID" -msgstr "ID du volume" +msgid "No Cloud Network were selected for deletion." +msgstr "" -#: ../app/helpers/container_group_helper/textual_summary.rb:52 -msgid "Partition" -msgstr "Partition" +msgid "No Cloud Provider that supports instance provisioning added" +msgstr "" -#: ../app/helpers/container_group_helper/textual_summary.rb:53 -msgid "Secret Name" -msgstr "Nom secret" +msgid "No Cloud Subnet were selected for deletion." +msgstr "" -#: ../app/helpers/container_group_helper/textual_summary.rb:57 -msgid "Property" -msgstr "Propriété" +msgid "No Cloud Tenants were selected for deletion." +msgstr "" -#: ../app/helpers/container_group_helper/textual_summary.rb:90 -msgid "DNS Policy" -msgstr "Stratégie DNS" +msgid "No Cloud Volume Snapshots were selected for deletion." +msgstr "Aucuns clichés de volume cloud n'ont été sélectionnés afin d'être supprimés." -#: ../app/helpers/container_group_helper/textual_summary.rb:94 -#: ../app/helpers/host_helper/textual_summary.rb:119 -#: ../app/helpers/ops_helper/textual_summary.rb:41 -#: ../app/helpers/provider_configuration_manager_helper.rb:25 -#: ../app/helpers/provider_foreman_helper.rb:26 -#: ../app/helpers/storage_manager_helper/textual_summary.rb:19 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:64 -#: ../app/helpers/vm_helper/textual_summary.rb:100 -#: ../app/views/host/_config.html.haml:63 -#: ../app/views/ops/_selected_by_servers.html.haml:35 -#: ../app/views/ops/_server_desc.html.haml:19 -#: ../app/views/ops/_settings_server_tab.html.haml:32 -#: ../app/views/storage_manager/_form.html.haml:82 -#: ../app/views/vm_common/_config.html.haml:202 -msgid "IP Address" -msgid_plural "IP Addresses" -msgstr[0] "Adresse IP" -msgstr[1] "Adresses IP" +msgid "No Compliance Policies Found" +msgstr "Aucune stratégie de conformité trouvée" -#: ../app/helpers/container_group_helper/textual_summary.rb:101 -#: ../app/helpers/container_node_helper/textual_summary.rb:78 -#: ../app/views/cloud_volume/attach.html.haml:16 -#: ../app/views/cloud_volume/detach.html.haml:16 -msgid "Instance" -msgstr "Instance" +msgid "No Compliance Policies assigned to this %{vm}" +msgstr "Aucune stratégie de conformité attribuée à cette %{vm}" -#: ../app/helpers/container_group_helper/textual_summary.rb:101 -#: ../app/helpers/container_node_helper/textual_summary.rb:78 -#: ../app/helpers/middleware_server_helper/textual_summary.rb:60 -msgid "Virtual Machine" -msgstr "Machine virtuelle" +msgid "No Compliance Policies assigned to this Host" +msgstr "Aucune stratégie de conformité attribuée à cet hôte" -#: ../app/helpers/container_group_helper/textual_summary.rb:103 -#: ../app/helpers/container_node_helper/textual_summary.rb:80 -msgid "Underlying %{name}" -msgstr "%{name} sous-jacent(e)" +msgid "No Compliance Policies assigned to this virtual machine" +msgstr "Aucune stratégie de conformité attribuée à cette machine virtuelle" -#: ../app/helpers/container_group_helper/textual_summary.rb:135 -#: ../app/helpers/container_replicator_helper/textual_summary.rb:33 -msgid "Show Compliance History of this Replicator (Last 10 Checks)" -msgstr "Afficher l'historique de conformité de ce réplicateur (10 derniers contrôles)" +msgid "No Daily data is available" +msgstr "Aucune donnée journalière disponible" -#: ../app/helpers/container_helper/textual_summary.rb:34 -msgid "Started At" -msgstr "Lancé à" +msgid "No Dashboards are defined for this group. Default dashboard will be shown." +msgstr "Aucun tableau de bord n'est défini pour ce groupe. Le tableau de bord par défaut sera affiché." -#: ../app/helpers/container_helper/textual_summary.rb:38 -msgid "Finished At" -msgstr "Terminé à" +msgid "No Datastores found in the current region." +msgstr "Aucun magasin de données trouvé dans la région actuelle." -#: ../app/helpers/container_helper/textual_summary.rb:42 -msgid "Exit Code" -msgstr "Sortir du Code" +msgid "No Dialog" +msgstr "Aucune boîte de dialogue" -#: ../app/helpers/container_helper/textual_summary.rb:46 -msgid "Signal" -msgstr "Signal" +msgid "No Display Filter defined." +msgstr "Aucun filtre d'affichage n'est défini." -#: ../app/helpers/container_helper/textual_summary.rb:54 -msgid "Last State" -msgstr "Dernier état" +msgid "No Events are defined" +msgstr "Aucun événement n'est défini" -#: ../app/helpers/container_helper/textual_summary.rb:62 -msgid "Backing Ref (Container ID)" -msgstr "Réf. de stockage (ID de conteneur)" +msgid "No Events are defined that match the entered search string '%s'" +msgstr "Aucun événement défini ne correspond à la chaîne de recherche saisie '%s'" -#: ../app/helpers/container_helper/textual_summary.rb:66 -msgid "Command" -msgstr "Commande" +msgid "No Floating IPs were selected for deletion." +msgstr "" -#: ../app/helpers/container_helper/textual_summary.rb:71 -msgid "Add Capabilities" -msgstr "Ajouter des capacités" +msgid "No Hourly or Daily data is available, real time data from the Most Recent Hour is being displayed" +msgstr "Aucune donnée de date/heure n'est disponible, les données en temps réel de du paramètre Heure la plus récente sont affichées." -#: ../app/helpers/container_helper/textual_summary.rb:78 -msgid "Drop Capabilities" -msgstr "Fonctionnalités de déplacement" +msgid "No Image" +msgstr "Aucune image" -#: ../app/helpers/container_helper/textual_summary.rb:84 -msgid "Privileged" -msgstr "Privilégié" +msgid "No Indexes found for this table." +msgstr "Aucun index trouvé pour cette table." -#: ../app/helpers/container_helper/textual_summary.rb:89 -msgid "Run As User" -msgstr "Exécuter comme utilisateur" +msgid "No Infrastructure Provider that supports VM provisioning added" +msgstr "" -#: ../app/helpers/container_helper/textual_summary.rb:95 -msgid "SELinux User" -msgstr "Utilisateur SELinux" +msgid "No Items found." +msgstr "Aucun élément trouvé." -#: ../app/helpers/container_helper/textual_summary.rb:100 -msgid "SELinux Role" -msgstr "Rôle SELinux" +msgid "No Key Pairs were selected for deletion" +msgstr "" -#: ../app/helpers/container_helper/textual_summary.rb:105 -msgid "SELinux Type" -msgstr "Type SELinux" +msgid "No Ordering Dialog is available" +msgstr "Aucune boîte de dialogue d'ordonnancement n'est disponible" -#: ../app/helpers/container_helper/textual_summary.rb:110 -msgid "SELinux Level" -msgstr "Niveau SELinux" +msgid "No Owner" +msgstr "Aucun propriétaire" -#: ../app/helpers/container_helper/textual_summary.rb:114 -msgid "Run As Non Root" -msgstr "Exécuter comme non-root" +msgid "No PXE Servers are available for Host provisioning" +msgstr "Aucun serveur PXE n'est disponible pour la mise en service d'hôte" -#: ../app/helpers/container_helper/textual_summary.rb:121 -#: ../app/helpers/container_image_helper/textual_summary.rb:105 -#: ../app/helpers/container_project_helper/textual_summary.rb:43 -#: ../app/helpers/container_service_helper/textual_summary.rb:50 -#: ../app/helpers/ems_infra_helper/textual_summary.rb:41 -#: ../app/helpers/ems_network_helper/textual_summary.rb:47 -#: ../app/helpers/provider_foreman_helper.rb:258 -#: ../app/helpers/pxe_helper/textual_summary.rb:56 -#: ../app/helpers/pxe_helper/textual_summary.rb:80 -#: ../app/helpers/pxe_helper/textual_summary.rb:108 -#: ../app/helpers/pxe_helper/textual_summary.rb:144 -#: ../app/views/configuration/_ui_4.html.haml:16 -#: ../app/views/ems_container/_form.html.haml:40 -#: ../app/views/ems_datawarehouse/_form.html.haml:40 -#: ../app/views/ems_infra/_form.html.haml:40 -#: ../app/views/ems_middleware/_form.html.haml:40 -#: ../app/views/layouts/_ae_resolve_options.html.haml:92 -#: ../app/views/layouts/_ae_resolve_options.html.haml:116 -#: ../app/views/layouts/_edit_log_depot_settings.html.haml:20 -#: ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:76 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:69 -#: ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:53 -#: ../app/views/miq_policy/_action_details.html.haml:398 -#: ../app/views/miq_policy/_action_options.html.haml:450 -#: ../app/views/miq_policy/_alert_details.html.haml:403 -#: ../app/views/miq_policy/_alert_snmp.html.haml:108 -#: ../app/views/miq_policy/_event_details.html.haml:218 -#: ../app/views/miq_policy/_event_details.html.haml:398 -#: ../app/views/ops/_ap_form.html.haml:55 -#: ../app/views/ops/_ap_show.html.haml:48 -#: ../app/views/ops/_diagnostics_database_tab.html.haml:19 -#: ../app/views/ops/_diagnostics_database_tab.html.haml:141 -#: ../app/views/ops/_log_collection.html.haml:26 -#: ../app/views/ops/_schedule_form_filter.html.haml:19 -#: ../app/views/ops/_settings_import_tab.html.haml:20 -#: ../app/views/ops/_settings_replication_tab.html.haml:86 -#: ../app/views/provider_foreman/_form.html.haml:44 -#: ../app/views/pxe/_iso_img_form.html.haml:17 -#: ../app/views/pxe/_pxe_image_type_form.html.haml:34 -#: ../app/views/pxe/_pxe_img_form.html.haml:17 -#: ../app/views/pxe/_pxe_wimg_form.html.haml:17 -#: ../app/views/pxe/_template_form.html.haml:70 -#: ../app/views/report/_db_list.html.haml:15 -#: ../app/views/report/_widget_form_rss.html.haml:15 -#: ../app/views/report/_widget_show.html.haml:169 -#: ../app/views/shared/buttons/_ab_list.html.haml:51 -#: ../app/views/shared/buttons/_ab_show.html.haml:148 -#: ../app/views/shared/views/ems_common/_form.html.haml:35 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:40 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:14 -#: ../app/views/storage_manager/_form.html.haml:41 -#: ../app/views/vm_common/_disks.html.haml:9 -#: ../app/views/vm_common/_reconfigure.html.haml:203 -msgid "Type" -msgstr "Type" +msgid "No Pod" +msgstr "Aucune Pod" -#: ../app/helpers/container_image_helper/textual_summary.rb:37 -msgid "Image Id" -msgstr "ID d'image" +msgid "No Policies are defined." +msgstr "Aucune stratégie n'est définie." -#: ../app/helpers/container_image_helper/textual_summary.rb:41 -#: ../app/views/ops/_rbac_user_details.html.haml:26 -msgid "Full Name" -msgstr "Nom complet" +msgid "No Policy Profiles are available" +msgstr "Aucun profil de stratégie n'est disponible" -#: ../app/helpers/container_image_helper/textual_summary.rb:46 -#: ../app/helpers/container_node_helper/textual_summary.rb:109 -msgid "Operating System Distribution" -msgstr "Distribution du système d'exploitation" +msgid "No Policy Profiles available." +msgstr "Aucun profil de stratégie disponible." -#: ../app/helpers/container_image_helper/textual_summary.rb:51 -msgid "Product Type" -msgstr "Type de produit" +msgid "No Policy scope defined, the scope of this policy includes all elements." +msgstr "Aucune étendue de stratégie définie. L'étendue de la stratégie inclut tous les éléments." -#: ../app/helpers/container_image_helper/textual_summary.rb:56 -msgid "Product Name" -msgstr "Nom du produit" +msgid "No RSS Feed data found" +msgstr "Aucune donnée de flux RSS trouvée" -#: ../app/helpers/container_image_helper/textual_summary.rb:60 -msgid "Show Compliance History of this Container Image (Last 10 Checks)" -msgstr "" -"Afficher l'historique de conformité de cette image de conteneur (10 derniers c" -"ontrôles)" +msgid "No RSS Feeds Found" +msgstr "Aucun flux RSS trouvé" -#: ../app/helpers/container_image_helper/textual_summary.rb:70 -#: ../app/helpers/vm_helper/textual_summary.rb:789 -#: ../app/helpers/vm_helper/textual_summary.rb:798 -#: ../app/helpers/vm_helper/textual_summary.rb:808 -#: ../app/helpers/vm_helper/textual_summary.rb:819 -#: ../app/views/vm_common/_right_size.html.haml:35 -msgid "Low" -msgstr "Faible" +msgid "No Record Filter defined." +msgstr "Aucun filtre d'enregistrement défini." -#: ../app/helpers/container_image_helper/textual_summary.rb:75 -#: ../app/helpers/provider_foreman_helper.rb:94 -#: ../app/helpers/provider_foreman_helper.rb:175 -#: ../app/helpers/provider_foreman_helper.rb:221 -msgid "Medium" -msgstr "Support" +msgid "No Records Found." +msgstr "Aucun enregistrement trouvé." -#: ../app/helpers/container_image_helper/textual_summary.rb:80 -#: ../app/helpers/vm_helper/textual_summary.rb:789 -#: ../app/helpers/vm_helper/textual_summary.rb:798 -#: ../app/helpers/vm_helper/textual_summary.rb:808 -#: ../app/helpers/vm_helper/textual_summary.rb:819 -#: ../app/views/vm_common/_right_size.html.haml:25 -msgid "High" -msgstr "Élevé" +msgid "No Report Schedules were selected to be Run now" +msgstr "Aucun planning de rapport sélectionné à exécuter maintenant" -#: ../app/helpers/container_image_helper/textual_summary.rb:84 -msgid "Exposed Ports" -msgstr "" +msgid "No Report data found" +msgstr "Aucune donnée de rapport trouvée" -#: ../app/helpers/container_node_helper/textual_summary.rb:17 -msgid "Last Transition Time" -msgstr "Heure de la dernière transition" +msgid "No Reports available." +msgstr "Aucun rapport disponible." -#: ../app/helpers/container_node_helper/textual_summary.rb:40 -#: ../app/helpers/host_helper/textual_summary.rb:238 -msgid "Number of CPU Cores" -msgstr "Nombres de cœurs de processeur" +msgid "No Resources found." +msgstr "Aucune ressource trouvée." -#: ../app/helpers/container_node_helper/textual_summary.rb:41 -#: ../app/helpers/container_node_helper/textual_summary.rb:49 -#: ../app/helpers/container_node_helper/textual_summary.rb:56 -#: ../app/helpers/container_node_helper/textual_summary.rb:61 -#: ../app/helpers/container_node_helper/textual_summary.rb:66 -#: ../app/helpers/container_node_helper/textual_summary.rb:71 -#: ../app/helpers/container_node_helper/textual_summary.rb:92 -#: ../app/helpers/container_node_helper/textual_summary.rb:96 -#: ../app/helpers/container_node_helper/textual_summary.rb:100 -#: ../app/helpers/container_node_helper/textual_summary.rb:105 -#: ../app/helpers/container_node_helper/textual_summary.rb:113 -#: ../app/helpers/ems_infra_helper/textual_summary.rb:74 -#: ../app/helpers/ems_infra_helper/textual_summary.rb:86 -#: ../app/helpers/host_helper/textual_summary.rb:152 -#: ../app/helpers/host_helper/textual_summary.rb:214 -#: ../app/helpers/host_helper/textual_summary.rb:234 -#: ../app/helpers/host_helper/textual_summary.rb:238 -#: ../app/helpers/host_helper/textual_summary.rb:243 -#: ../app/helpers/host_helper/textual_summary.rb:249 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:89 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:145 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:299 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:305 -#: ../app/helpers/vm_helper/textual_summary.rb:147 -#: ../app/helpers/vm_helper/textual_summary.rb:151 -#: ../app/helpers/vm_helper/textual_summary.rb:599 -#: ../app/helpers/vm_helper/textual_summary.rb:600 -#: ../app/helpers/vm_helper/textual_summary.rb:607 -#: ../app/helpers/vm_helper/textual_summary.rb:608 -#: ../app/helpers/vm_helper/textual_summary.rb:629 -#: ../app/helpers/vm_helper/textual_summary.rb:630 -#: ../app/helpers/vm_helper/textual_summary.rb:637 -#: ../app/helpers/vm_helper/textual_summary.rb:638 -#: ../app/helpers/vm_helper/textual_summary.rb:645 -#: ../app/helpers/vm_helper/textual_summary.rb:647 -#: ../app/helpers/vm_helper/textual_summary.rb:779 -#: ../app/helpers/vm_helper/textual_summary.rb:784 -#: ../app/views/miq_policy/_policy_details.html.haml:82 -#: ../app/views/miq_policy/_policy_details.html.haml:97 -msgid "N/A" -msgstr "N/A" +msgid "No Saved Reports available." +msgstr "Aucun rapport enregistré disponible." -#: ../app/helpers/container_node_helper/textual_summary.rb:55 -msgid "Max Pods Capacity" -msgstr "Capacité max. des stations" +msgid "No Schedules available." +msgstr "Aucun planning disponible." -#: ../app/helpers/container_node_helper/textual_summary.rb:60 -msgid "System BIOS UUID" -msgstr "UUID du BIOS système" +msgid "No Security Group were selected for deletion." +msgstr "" -#: ../app/helpers/container_node_helper/textual_summary.rb:65 -msgid "Machine ID" -msgstr "ID de la machine" +msgid "No Server Groups selected" +msgstr "" -#: ../app/helpers/container_node_helper/textual_summary.rb:70 -msgid "Infrastructure Machine ID" -msgstr "ID de machine d'infrastructure" +msgid "No Server was selected" +msgstr "Aucun serveur sélectionné" -#: ../app/helpers/container_node_helper/textual_summary.rb:117 -msgid "Show Compliance History of this Node (Last 10 Checks)" -msgstr "Afficher l'historique de conformité de ce nœud (10 derniers contrôles)" +msgid "No Servers Found." +msgstr "Aucun serveur trouvé." -#: ../app/helpers/container_project_helper/textual_summary.rb:22 -msgid "Desired" -msgstr "Souhaité" +msgid "No Servers found." +msgstr "Aucun serveur trouvé." -#: ../app/helpers/container_project_helper/textual_summary.rb:22 -#: ../app/views/ops/_tenant_quota_form.html.haml:22 -msgid "Enforced" -msgstr "Forcé" +msgid "No Servers selected" +msgstr "Aucun serveur sélectionné" -#: ../app/helpers/container_project_helper/textual_summary.rb:22 -msgid "Observed" -msgstr "Observé(es)" +msgid "No Servers with the SmartProxy role are in Zone: \"%{zone_description}\"" +msgstr "Aucun serveur avec le rôle SmartProxy n'est dans la zone : \"%{zone_description}\"" -#: ../app/helpers/container_project_helper/textual_summary.rb:43 -msgid "Default Limit" -msgstr "Limite Par défaut" +msgid "No Services were selected for deletion" +msgstr "" -#: ../app/helpers/container_project_helper/textual_summary.rb:43 -#: ../app/helpers/provider_foreman_helper.rb:258 -#: ../app/helpers/vm_helper/textual_summary.rb:789 -#: ../app/helpers/vm_helper/textual_summary.rb:798 -#: ../app/helpers/vm_helper/textual_summary.rb:808 -#: ../app/helpers/vm_helper/textual_summary.rb:819 -#: ../app/views/vm_common/_right_size.html.haml:20 -msgid "Max" -msgstr "Max" +msgid "No System Image Types available, Customization Template cannot be added" +msgstr "Aucun type d'image système n'est disponible. Impossible d'ajouter un modèle de personnalisation" -#: ../app/helpers/container_project_helper/textual_summary.rb:43 -#: ../app/helpers/provider_foreman_helper.rb:258 -msgid "Min" -msgstr "Min" +msgid "No Time Profile Selected" +msgstr "Aucun profil temporel sélectionné" -#: ../app/helpers/container_project_helper/textual_summary.rb:44 -msgid "Default Request" -msgstr "Requête Par défaut" +msgid "No Time Profiles found" +msgstr "Aucun profil temporel trouvé" -#: ../app/helpers/container_project_helper/textual_summary.rb:44 -msgid "Limit Request Ratio" -msgstr "Limiter le coefficient de demandes" +msgid "No Timeline data available." +msgstr "Aucune donnée de chronologie disponible." -#: ../app/helpers/container_replicator_helper/textual_summary.rb:25 -msgid "Requested pods" -msgstr "Pods demandés" +msgid "No Timeline data has been collected for Policy or Management Events" +msgstr "" -#: ../app/helpers/container_replicator_helper/textual_summary.rb:29 -msgid "Current pods" -msgstr "Pods actuels" +msgid "No Timeline data has been collected for this %{entity}" +msgstr "" -#: ../app/helpers/container_service_helper/textual_summary.rb:18 -msgid "Node Port" -msgstr "Port de noeud" +msgid "No Timeline data has been collected for this Availability Zone" +msgstr "Aucune donnée de chronologie n'a été collectée pour cette zone de disponibilité" -#: ../app/helpers/container_service_helper/textual_summary.rb:18 -#: ../app/helpers/storage_manager_helper/textual_summary.rb:27 -#: ../app/views/ems_container/_form_fields.html.haml:24 -#: ../app/views/ems_datawarehouse/_form_fields.html.haml:24 -#: ../app/views/ems_middleware/_form_fields.html.haml:24 -#: ../app/views/ops/_ldap_domain_show.html.haml:259 -#: ../app/views/ops/_ldap_server_entries.html.haml:21 -#: ../app/views/ops/_settings_replication_tab.html.haml:144 -#: ../app/views/ops/_settings_server_tab.html.haml:403 -#: ../app/views/security_group/_main.html.haml:20 -#: ../app/views/storage_manager/_form.html.haml:99 -msgid "Port" -msgstr "Port" +msgid "No Timeline data has been collected for this Cluster" +msgstr "Aucune donnée de chronologie n'a été collectée pour ce cluster" -#: ../app/helpers/container_service_helper/textual_summary.rb:18 -msgid "Protocol" -msgstr "Protocole" +msgid "No Timeline data has been collected for this Host" +msgstr "Aucune donnée de chronologie n'a été collectée pour cet hôte" -#: ../app/helpers/container_service_helper/textual_summary.rb:18 -msgid "Target Port" -msgstr "Port cible" +msgid "No Timeline data has been collected for this Provider" +msgstr "Aucune donnée de chronologie n'a été collectée pour ce fournisseur" -#: ../app/helpers/container_service_helper/textual_summary.rb:22 -#: ../app/helpers/container_service_helper/textual_summary.rb:59 -msgid "" -msgstr "" +msgid "No Timeline data has been collected for this Storage Manager" +msgstr "" -#: ../app/helpers/container_service_helper/textual_summary.rb:54 -msgid "Portal IP" -msgstr "IP du portail" +msgid "No Timeline data has been collected for this Template" +msgstr "Aucune donnée de chronologie n'a été collectée pour ce modèle" -#: ../app/helpers/container_service_helper/textual_summary.rb:61 -msgid "%{protocol} port %{port} to pods on target port:'%{target_port}'" -msgstr "%{protocol} port %{port} vers pods sur port cible:'%{target_port}'" +msgid "No Timeline data has been collected for this VM" +msgstr "Aucune donnée de chronologie n'a été collectée pour cette MV" -#: ../app/helpers/container_summary_helper.rb:103 -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:173 -msgid "Creation timestamp" -msgstr "Horodatage de la création" +msgid "No TreeBuilder found for feature '%{name}'" +msgstr "Aucun TreeBuilder trouvé pour la fonction '%{name}'" -#: ../app/helpers/container_summary_helper.rb:119 -msgid "OpenSCAP Results" -msgstr "Résultats OpenSCAP" +msgid "No Utilization data available" +msgstr "Aucune donnée d'utilisation disponible" -#: ../app/helpers/container_summary_helper.rb:134 -msgid "OpenSCAP HTML" -msgstr "HTML OpenSCAP" +msgid "No Utilization data available for this Server's Virtual Machine." +msgstr "Aucune donnée d'utilisation disponible pour cette machine virtuelle de serveur." -#: ../app/helpers/container_template_helper/textual_summary.rb:20 -msgid "Kind" -msgstr "Genre" +msgid "No Utilization data available to generate planning results" +msgstr "Aucune donnée d'utilisation disponible pour générer des résultats de planning" -#: ../app/helpers/container_template_helper/textual_summary.rb:26 -#: ../app/helpers/provider_foreman_helper.rb:258 -#: ../app/views/auth_key_pair_cloud/_form.html.haml:41 -#: ../app/views/configuration/_timeprofile_form.html.haml:42 -#: ../app/views/ems_container/_form.html.haml:30 -#: ../app/views/ems_datawarehouse/_form.html.haml:30 -#: ../app/views/ems_infra/_form.html.haml:30 -#: ../app/views/ems_middleware/_form.html.haml:30 -#: ../app/views/host/_form.html.haml:41 ../app/views/host/_form.html.haml:65 -#: ../app/views/host/_form.html.haml:88 ../app/views/host/_form.html.haml:130 -#: ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:61 -#: ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:117 -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:49 -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:104 -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:150 -#: ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:38 -#: ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:104 -#: ../app/views/layouts/angular-bootstrap/_edit_log_depot_settings_angular_bootstrap.html.haml:24 -#: ../app/views/layouts/angular-bootstrap/_edit_log_depot_settings_angular_bootstrap.html.haml:59 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:31 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:83 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:119 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:207 -#: ../app/views/layouts/angular/_auth_service_account_angular.html.haml:28 -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:33 -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:66 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:32 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:66 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:100 -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:32 -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:64 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:82 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:112 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:142 -#: ../app/views/middleware_server/_choose_datasource.html.haml:32 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:105 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:183 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:384 -#: ../app/views/ops/_schedule_form.html.haml:36 -#: ../app/views/ops/_schedule_form.html.haml:60 -#: ../app/views/ops/_tenant_form.html.haml:33 -#: ../app/views/ops/_tenant_form.html.haml:57 -#: ../app/views/provider_foreman/_form.html.haml:34 -#: ../app/views/provider_foreman/_form.html.haml:125 -#: ../app/views/service/_service_form.html.haml:43 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:30 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:114 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:141 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:360 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:384 -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:23 -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:47 -msgid "Required" -msgstr "Obligatoire" +msgid "No VMs found" +msgstr "Aucune MV trouvée" + +msgid "No VMs match the selection criteria" +msgstr "Aucune MV ne correspond aux critères sélectionnés" -#: ../app/helpers/ems_cinder_helper/textual_summary.rb:31 -#: ../app/helpers/ems_cloud_helper/textual_summary.rb:38 -#: ../app/helpers/ems_cloud_helper/textual_summary.rb:44 -#: ../app/helpers/ems_network_helper/textual_summary.rb:34 -#: ../app/helpers/ems_storage_helper/textual_summary.rb:31 -#: ../app/helpers/ems_swift_helper/textual_summary.rb:31 -#: ../app/helpers/provider_foreman_helper.rb:129 -#: ../app/helpers/provider_foreman_helper.rb:209 -#: ../app/helpers/provider_foreman_helper.rb:238 -#: ../app/helpers/textual_mixins/textual_region.rb:4 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:76 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:221 -msgid "Region" -msgstr "Région" +msgid "No VMs were selected to move left" +msgstr "Aucune MV sélectionnée à déplacer vers la gauche" -#: ../app/helpers/ems_cinder_helper/textual_summary.rb:40 -#: ../app/helpers/ems_cloud_helper/textual_summary.rb:60 -#: ../app/helpers/ems_infra_helper/textual_summary.rb:37 -#: ../app/helpers/ems_network_helper/textual_summary.rb:43 -#: ../app/helpers/ems_storage_helper/textual_summary.rb:40 -#: ../app/helpers/ems_swift_helper/textual_summary.rb:40 -msgid "Discovered IP Address" -msgstr "Adresse IP détectée" +msgid "No VMs were selected to move right" +msgstr "Aucune MV sélectionnée à déplacer vers la droite" -#: ../app/helpers/ems_cinder_helper/textual_summary.rb:48 -#: ../app/helpers/ems_cloud_helper/textual_summary.rb:68 -#: ../app/helpers/ems_infra_helper/textual_summary.rb:45 -#: ../app/helpers/ems_network_helper/textual_summary.rb:51 -#: ../app/helpers/ems_storage_helper/textual_summary.rb:48 -#: ../app/helpers/ems_swift_helper/textual_summary.rb:48 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:57 -#: ../app/views/shared/views/ems_common/_form.html.haml:62 -msgid "API Port" -msgstr "Port API" +msgid "No Value Found" +msgstr "Aucune valeur trouvée" -#: ../app/helpers/ems_cinder_helper/textual_summary.rb:52 -#: ../app/helpers/ems_cloud_helper/textual_summary.rb:72 -#: ../app/helpers/ems_infra_helper/textual_summary.rb:67 -#: ../app/helpers/ems_network_helper/textual_summary.rb:55 -#: ../app/helpers/ems_storage_helper/textual_summary.rb:52 -#: ../app/helpers/ems_swift_helper/textual_summary.rb:52 -#: ../app/helpers/host_helper/textual_summary.rb:256 -#: ../app/helpers/service_helper/textual_summary.rb:35 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:116 -#: ../app/helpers/vm_helper/textual_summary.rb:175 -msgid "Management Engine GUID" -msgstr "GUID du moteur de gestion" +msgid "No Widget compatible Reports found" +msgstr "Aucun rapport compatible avec le widget trouvé" -#: ../app/helpers/ems_cinder_helper/textual_summary.rb:72 -#: ../app/helpers/ems_cloud_helper/textual_summary.rb:162 -#: ../app/helpers/ems_container_helper/textual_summary.rb:80 -#: ../app/helpers/ems_infra_helper/textual_summary.rb:172 -#: ../app/helpers/ems_network_helper/textual_summary.rb:97 -#: ../app/helpers/ems_storage_helper/textual_summary.rb:60 -#: ../app/helpers/ems_swift_helper/textual_summary.rb:68 -msgid "Managed by Zone" -msgstr "Géré par zone" +msgid "No Widgets available to add" +msgstr "Aucun widget disponible à ajouter" -#: ../app/helpers/ems_cloud_helper/textual_summary.rb:38 -msgid "Preferred Region" -msgstr "Région préférée" +msgid "No Widgets available." +msgstr "Aucun widget disponible." -#: ../app/helpers/ems_cloud_helper/textual_summary.rb:50 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:239 -msgid "Keystone V3 Domain ID" -msgstr "ID de domaine Keystone V3" +msgid "No Zones found." +msgstr "Aucune zone trouvée." -#: ../app/helpers/ems_cloud_helper/textual_summary.rb:151 -msgid "Show Arbitration Profiles for this Provider" -msgid_plural "Show Arbitration Profiles for this Provider" -msgstr[0] "Afficher les profils d'arbitrage de ce fournisseur" -msgstr[1] "Afficher les profils d'arbitrage de ce fournisseur" - -#: ../app/helpers/ems_cloud_helper/textual_summary.rb:169 -#: ../app/helpers/ems_container_helper/textual_summary.rb:87 -#: ../app/helpers/ems_infra_helper/textual_summary.rb:185 -#: ../app/helpers/ems_middleware_helper/textual_summary.rb:55 -#: ../app/helpers/ems_network_helper/textual_summary.rb:93 -msgid "Show topology" -msgstr "Afficher la topologie" +msgid "No alarms found for the selected Provider" +msgstr "Aucune alarme trouvée pour le fournisseur sélectionné" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:46 -msgid "Show list of hosts with running %{name}" -msgstr "Afficher la liste des hôtes avec %{name} en cours d'exécution" +msgid "No chart data found" +msgstr "Aucune donnée de graphique trouvée" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:47 -#: ../app/helpers/host_helper/textual_summary.rb:78 -msgid "Running (%{number})" -msgstr "Exécution (%{number})" +msgid "No child VMs to move right, no action taken" +msgstr "Aucune MV enfant à déplacer vers la droite. Aucune action n'a été effectuée." -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:58 -msgid "Show list of hosts with failed %{name}" -msgstr "Afficher la liste des hôtes avec %{name} en échec" +msgid "No cloud providers support creating cloud subnets." +msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:59 -#: ../app/helpers/host_helper/textual_summary.rb:86 -msgid "Failed (%{number})" -msgstr "Échec (%{number})" +msgid "No cloud providers support creating cloud volumes." +msgstr "" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:70 -msgid "Show list of hosts with %{name}" -msgstr "Afficher la liste des hôtes avec %{name}" +msgid "No cloud providers support key pair import or creation." +msgstr "Aucun fournisseur de cloud ne prend en charge l'importation ou la création de paires de clés." -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:71 -#: ../app/helpers/host_helper/textual_summary.rb:94 -msgid "All (%{number})" -msgstr "Tout (%{number})" +msgid "No common configuration profiles available for the selected configured system" +msgid_plural "No common configuration profiles available for the selected configured systems" +msgstr[0] "Aucun profil de configuration commun disponible pour le système configuré sélectionné" +msgstr[1] "Aucun profil de configuration commun disponible pour les systèmes configurés sélectionnés" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:89 -msgid "Total CPU Resources" -msgstr "Total des ressources de processeur" +msgid "No compute hosts were selected for scale down." +msgstr "Aucun hôte de calcul sélectionné pour la mise à l'échelle vers le bas." -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:93 -msgid "Total Memory" -msgstr "Mémoire totale" +msgid "No conditions defined. This policy is unconditional and will ALWAYS return true." +msgstr "Aucune condition définie. Cette stratégie est inconditionnelle et sera TOUJOURS vraie." -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:97 -msgid "Total CPUs" -msgstr "Total des processeurs " +msgid "No custom image has been uploaded" +msgstr "Aucune image personnalisée n'a été téléchargée" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:101 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:47 -msgid "Total %{title} CPU Cores" -msgstr "Total des cœurs de processeur de %{title}" +msgid "No custom login image has been uploaded yet." +msgstr "Aucune image de connexion personnalisée n'a été téléchargée pour le moment." -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:106 -msgid "Total Configured Memory" -msgstr "Mémoire totale configurée" +msgid "No custom logo image has been uploaded yet." +msgstr "Aucune image de logo personnalisée n'a été téléchargée pour le moment." -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:107 -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:114 -msgid "%{number} (Virtual to Real Ratio: %{ratio})" -msgstr "%{number} (Ratio Virtuel/Réel: %{ratio})" +msgid "No data found." +msgstr "Aucune donnée trouvée." -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:113 -msgid "Total Configured CPUs" -msgstr "Total des processeurs configurés" +msgid "No drift history found, an Analysis or Virtual Black Box Synchronization for this VM may need to be run." +msgstr "Aucun historique de dérive trouvé. L'exécution d'une analyse ou d'une synchronisation de Black Box virtuelle pour cette MV peut être nécessaire." -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:131 -msgid "Show all %{title}" -msgstr "Afficher tou(te)s les %{title}" +msgid "No events available for this %{model}" +msgstr "Aucun événement disponible pour ce %{model}" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:139 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:89 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:51 -#: ../app/views/layouts/listnav/_resource_pool.html.haml:42 -msgid "Direct VMs" -msgstr "Machines virtuelles directes" +msgid "No events available for this Cluster" +msgstr "Aucun événement disponible pour ce cluster" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:141 -msgid "Show VMs in this %{title}, but not in Resource Pools below" -msgstr "" -"Afficher les MV dans ce(tte) %{title}, mais pas dans les pools de ressources c" -"i-dessous" +msgid "No events available for this timeline" +msgstr "Aucun événement disponible pour cette chronologie" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:151 -msgid "Show all VMs in this %{title}" -msgstr "Afficher toutes les MV dans ce(tte) %{title}" +msgid "No events available for this timeline." +msgstr "Aucun événement disponible pour cette chronologie." -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:163 -msgid "Show all Templates in this %{title}" -msgstr "Afficher tous les modèles dans ce(tte) %{title}" +msgid "No expression defined, a condition must contain a valid expression." +msgstr "Aucune expression définie. Une condition doit contenir une expression valide." -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:171 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:109 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:72 -#: ../app/views/layouts/listnav/_resource_pool.html.haml:58 -msgid "All VMs (Tree View)" -msgstr "Toutes les MV (Vue arborescente)" +msgid "No fields were moved up" +msgstr "Aucun champ n'a été déplacé vers le haut" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:173 -msgid "Show tree of all VMs by Resource Pool in this %{title}" -msgstr "" -"Afficher l'arborescence de toutes les MV par pool de ressources dans ce %{titl" -"e}" +msgid "No fields were selected to move bottom" +msgstr "Aucun champ sélectionné à déplacer en bas" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:192 -msgid "Show %{title} drift history" -msgstr "Afficher l'historique de dérive de %{title}" +msgid "No fields were selected to move down" +msgstr "Aucun champ sélectionné à déplacer vers le bas" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:245 -msgid "HA Enabled" -msgstr "Haute disponibilité (HA) activée" +msgid "No fields were selected to move left" +msgstr "Aucun champ sélectionné à déplacer vers la gauche" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:251 -msgid "HA Admit Control" -msgstr "Contrôle d'autorisation haute disponibilité (HA)" +msgid "No fields were selected to move right" +msgstr "Aucun champ sélectionné à déplacer vers la droite" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:257 -msgid "DRS Enabled" -msgstr "DRS activé" +msgid "No fields were selected to move top" +msgstr "Aucun champ sélectionné à déplacer en haut" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:263 -msgid "DRS Automation Level" -msgstr "Niveau d'automatisation DRS" +msgid "No fields were selected to move up" +msgstr "Aucun champ sélectionné à déplacer vers le haut" -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:269 -msgid "DRS Migration Threshold" -msgstr "Limite de Migration DRS" +msgid "No file chosen" +msgstr "Aucun fichier sélectionné." -#: ../app/helpers/ems_container_helper/textual_summary.rb:28 -#: ../app/views/miq_task/_tasks_options.html.haml:120 -msgid "Error" -msgstr "Erreur" +msgid "No filter available" +msgstr "" -#: ../app/helpers/ems_container_helper/textual_summary.rb:28 -msgid "Healthy" -msgstr "Sain" +msgid "No filters defined." +msgstr "Aucun filtre défini." -#: ../app/helpers/ems_container_helper/textual_summary.rb:65 -msgid "Aggregate Node Memory" -msgstr "Mémoire du nœud d'agrégat" +msgid "No hosts available to add to %{model} \"%{name}\"" +msgstr "Aucuns hôtes disponibles à ajouter à %{model} \"%{name}\"" -#: ../app/helpers/ems_container_helper/textual_summary.rb:71 -msgid "Aggregate Node CPU Cores" -msgstr "Cœurs de processeur du nœud d'agrégat" +msgid "No hosts to remove from %{model} \"%{name}\"" +msgstr "Aucuns hôtes à supprimer de %{model} \"%{name}\"" -#: ../app/helpers/ems_container_helper/textual_summary.rb:104 -msgid "Hawkular Host Name" -msgstr "Nom d'hôte Hawkular" +msgid "No input to apply" +msgstr "" -#: ../app/helpers/ems_container_helper/textual_summary.rb:106 -msgid "Hawkular API Port" -msgstr "Port API Hawkular" +msgid "No instances found" +msgstr "Aucune instance trouvée" -#: ../app/helpers/ems_infra_helper/textual_summary.rb:49 -msgid "Aggregate %{title} CPU Resources" -msgstr "Ressources de processeur de l'agrégat %{title}" +msgid "No methods found" +msgstr "Aucune méthode trouvée" -#: ../app/helpers/ems_infra_helper/textual_summary.rb:54 -msgid "Aggregate %{title} Memory" -msgstr "Mémoire de l'agrégat %{title}" +msgid "No more than 10 Analyses can be selected for Drift" +msgstr "Impossible de sélectionner plus de 10 analyses pour la dérive" -#: ../app/helpers/ems_infra_helper/textual_summary.rb:59 -msgid "Aggregate %{title} CPUs" -msgstr "Processeurs de l'agrégat %{title} " +msgid "No more than 32 %{model} can be selected for Compare" +msgstr "Impossible de sélectionner plus de 32 %{model} pour la comparaison" -#: ../app/helpers/ems_infra_helper/textual_summary.rb:63 -msgid "Aggregate %{title} CPU Cores" -msgstr "Cœurs de processeur de l'agrégat %{title}" +msgid "No notes have been entered." +msgstr "Aucune remarque saisie." -#: ../app/helpers/ems_infra_helper/textual_summary.rb:77 -#: ../app/helpers/floating_ip_helper/textual_summary.rb:47 -#: ../app/helpers/network_port_helper/textual_summary.rb:52 -msgid "Show %{label}" -msgstr "Afficher %{label}" +msgid "No performance data is available for the selected item." +msgstr "Aucune donnée de performance disponible pour l'élément sélectionné." -#: ../app/helpers/ems_infra_helper/textual_summary.rb:89 -msgid "Show Virtual Machines & Templates" -msgstr "Afficher les machines et modèles virtuels" +msgid "No planning data is available for the selected item." +msgstr "Aucune donnée de planning disponible pour l'élément sélectionné." -#: ../app/helpers/ems_infra_helper/textual_summary.rb:159 -msgid "States of Root Orchestration Stacks" -msgstr "État des piles d'orchestration racines" +msgid "No policies have been chosen yet" +msgstr "Aucune stratégie n'a été sélectionnée pour le moment" -#: ../app/helpers/ems_infra_helper/textual_summary.rb:178 -msgid "%{title} Default VNC Port Range" -msgstr "%{title} Port VNC Par Default" +msgid "No policies were selected for Policy Simulation." +msgstr "Aucune stratégie n'a été sélectionnée pour la simulation de stratégie." -#: ../app/helpers/flavor_helper/textual_summary.rb:39 -msgid "CPU Cores" -msgstr "Cœurs de processeur" +msgid "No providers were selected for %{task}" +msgstr "Aucun fournisseur n'a été sélectionné pour %{task}" -#: ../app/helpers/flavor_helper/textual_summary.rb:44 -msgid "32 Bit Architecture" -msgstr "Architecture 32 Bit" +msgid "No records found for this report" +msgstr "Aucun enregistrement trouvé pour ce rapport" -#: ../app/helpers/flavor_helper/textual_summary.rb:49 -msgid "64 Bit Architecture" -msgstr "Architecture 64 Bit" +msgid "No records found for this timeline" +msgstr "Aucun enregistrement trouvé pour cette chronologie" -#: ../app/helpers/flavor_helper/textual_summary.rb:54 -msgid "HVM (Hardware Virtual Machine)" -msgstr "HVM (Hardware Virtual Machine - Machine virtuelle matérielle)" +msgid "No replication role has been set" +msgstr "Aucun rôle de réplication n'a été défini" -#: ../app/helpers/flavor_helper/textual_summary.rb:59 -msgid "Paravirtualization" -msgstr "Paravirtualisation" +msgid "No router were selected for deletion." +msgstr "Aucun router sélectionné à supprimer." -#: ../app/helpers/flavor_helper/textual_summary.rb:64 -msgid "Block Storage Based" -msgstr "Basé sur un stockage de bloc" +msgid "No saved filters or report filters are available to load" +msgstr "Aucun filtre ou filtre de rapport enregistré disponible à charger" -#: ../app/helpers/host_helper/textual_summary.rb:77 -msgid "Show list of running %{name}" -msgstr "Afficher la liste des %{name} en cours d'exécution" +msgid "No schema found" +msgstr "Aucun schéma trouvé" -#: ../app/helpers/host_helper/textual_summary.rb:85 -msgid "Show list of failed %{name}" -msgstr "Afficher la liste des %{name} en échec" +msgid "No scope defined, the scope of this condition includes all elements." +msgstr "Aucune étendue définie. L'étendue de cette condition inclut tous les éléments." -#: ../app/helpers/host_helper/textual_summary.rb:93 -msgid "Show list of all %{name}" -msgstr "Afficher la liste de tou(te)s les %{name}" +msgid "No servers selected" +msgstr "Aucun serveur sélectionné" -#: ../app/helpers/host_helper/textual_summary.rb:100 -msgid "Show list of configuration files of %{name}" -msgstr "Afficher la liste des fichiers de configuration de %{name}" +msgid "No shortcuts are authorized for this user, contact your Administrator" +msgstr "Aucun raccourci autorisé pour cet utilisateur. Contactez votre administrateur." -#: ../app/helpers/host_helper/textual_summary.rb:102 -msgid "Configuration (%{number})" -msgstr "Configuration (%{number})" +msgid "No subnets available to add interfaces to Router \"%{name}\"" +msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:123 -#: ../app/views/host/_form.html.haml:114 -msgid "IPMI IP Address" -msgstr "Adresse IP IPMI" +msgid "No subnets to remove interfaces to Router \"%{name}\"" +msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:128 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:75 -#: ../app/helpers/vm_helper/textual_summary.rb:120 -#: ../app/views/host/_form.html.haml:97 -#: ../app/views/vm_common/_form.html.haml:18 -msgid "Custom Identifier" -msgstr "Identificateur personnalisé" +msgid "No task target captured" +msgstr "Aucune cible de tâche capturée" -#: ../app/helpers/host_helper/textual_summary.rb:134 -#: ../app/views/layouts/listnav/_host.html.haml:65 -msgid "VMM Information" -msgstr "Informations sur VMM" +msgid "No timer is attached to this Widget, its contents will not be updated." +msgstr "Aucun temporisateur n'est associé à ce widget. Son contenu ne sera pas téléchargé." -#: ../app/helpers/host_helper/textual_summary.rb:141 -#: ../app/helpers/vm_helper/textual_summary.rb:130 -msgid "Show VMM container information" -msgstr "Afficher les informations du conteneur VMM" +msgid "No type set" +msgstr "Aucun type défini" -#: ../app/helpers/host_helper/textual_summary.rb:148 -msgid "Manufacturer / Model" -msgstr "Fabricant / Modèle" +msgid "No url was returned from automate." +msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:168 -#: ../app/helpers/textual_mixins/textual_os_info.rb:8 -#: ../app/views/dashboard/_widget_footer.html.haml:24 -#: ../app/views/pxe/_iso_img_form.html.haml:22 -#: ../app/views/pxe/_pxe_img_form.html.haml:22 -#: ../app/views/pxe/_pxe_wimg_form.html.haml:22 -msgid "Unknown" -msgstr "Inconnu" +msgid "No valid import records were found, please upload another file" +msgstr "Aucun enregistrement d'importation valide trouvé. Veuillez télécharger un autre fichier." -#: ../app/helpers/host_helper/textual_summary.rb:177 -msgid " Build %{number}" -msgstr " Build %{number}" +msgid "No variables configured." +msgstr "Aucune variable configurée." -#: ../app/helpers/host_helper/textual_summary.rb:180 -#: ../app/helpers/textual_mixins/textual_os_info.rb:16 -msgid "Show OS container information" -msgstr "Afficher les informations du conteneur du SE" +msgid "Node" +msgstr "Noeud" -#: ../app/helpers/host_helper/textual_summary.rb:189 -#: ../app/helpers/textual_mixins/textual_power_state.rb:5 -msgid "Power State" -msgstr "État d'alimentation" +msgid "Node Port" +msgstr "Port de noeud" -#: ../app/helpers/host_helper/textual_summary.rb:193 -#: ../app/helpers/host_helper/textual_summary.rb:197 -msgid "Disabled" -msgstr "Désactivé" +msgid "Node Selector" +msgstr "Sélecteur de nœud" -#: ../app/helpers/host_helper/textual_summary.rb:193 -#: ../app/helpers/host_helper/textual_summary.rb:197 -#: ../app/helpers/middleware_datasource_helper/textual_summary.rb:31 -#: ../app/views/miq_ae_class/_ns_list.html.haml:24 -#: ../app/views/miq_ae_class/_ns_list.html.haml:143 -#: ../app/views/report/_report_info.html.haml:253 -msgid "Enabled" -msgstr "Activés" +msgid "Node Utilization" +msgstr "Utilisation du nœud" -#: ../app/helpers/host_helper/textual_summary.rb:193 -msgid "Lockdown Mode" -msgstr "Mode de verrouillage" +msgid "Node configuration" +msgstr "Configuration du nœud" -#: ../app/helpers/host_helper/textual_summary.rb:197 -msgid "Maintenance Mode" -msgstr "Mode de maintenance" +msgid "Node: " +msgstr "Nœud : " -#: ../app/helpers/host_helper/textual_summary.rb:203 -#: ../app/views/layouts/listnav/_host.html.haml:53 -msgid "Storage Adapters" -msgstr "Adaptateurs de stockage" +msgid "Nodes" +msgstr "Nœuds" -#: ../app/helpers/host_helper/textual_summary.rb:205 -msgid "Show %{title} Storage Adapters" -msgstr "Afficher les adaptateurs de stockage de %{title}" +msgid "Nodes Base Name:" +msgstr "Nom de base du nœud :" -#: ../app/helpers/host_helper/textual_summary.rb:214 -#: ../app/views/cloud_subnet/new.html.haml:44 -#: ../app/views/layouts/listnav/_host.html.haml:47 -#: ../app/views/network_router/new.html.haml:63 -msgid "Network" -msgstr "Réseau" +msgid "Nodes were added successfully. Refresh queued." +msgstr "Les nœuds ont été ajoutés. Actualisez la file d'attente." -#: ../app/helpers/host_helper/textual_summary.rb:216 -#: ../app/helpers/host_helper/textual_summary.rb:483 -msgid "Show %{title} Network" -msgstr "Afficher le réseau de %{title}" +msgid "Non-Compliant as of %{time} Ago" +msgstr "Non conforme par rapport à il y a %{time}" -#: ../app/helpers/host_helper/textual_summary.rb:223 -#: ../app/helpers/vm_helper/textual_summary.rb:828 -#: ../app/views/layouts/listnav/_host.html.haml:41 -#: ../app/views/vm_common/_config.html.haml:12 -#: ../app/views/vm_common/_config.html.haml:143 -msgid "Devices" -msgstr "Périphériques" +msgid "Non-SSL" +msgstr "Non SSL" -#: ../app/helpers/host_helper/textual_summary.rb:227 -msgid "Show %{title} devices" -msgstr "Afficher les périphériques de %{title}" +msgid "Non-VM Files" +msgstr "Fichiers non MV" -#: ../app/helpers/host_helper/textual_summary.rb:234 -msgid "Number of CPUs" -msgstr "Nombre de processeurs" +msgid "Non-clustered Hosts" +msgstr "Hôtes non mis en cluster" -#: ../app/helpers/host_helper/textual_summary.rb:242 -msgid "CPU Cores Per Socket" -msgstr "Cœurs de processeur par socket" +msgid "None" +msgstr "Aucun(e)" -#: ../app/helpers/host_helper/textual_summary.rb:267 -msgid "Show this %{host_title}'s %{cluster_title}" -msgstr "Afficher le/la %{cluster_title} de ce(tte) %{host_title}" +msgid "None Available" +msgstr "Aucun(e) disponible" -#: ../app/helpers/host_helper/textual_summary.rb:306 -msgid "Show this %{title}'s %{label}" -msgstr "Afficher le/la %{label} de ce(tte) %{title}" +msgid "None Available or All Selected" +msgstr "Aucun(e) disponible ou tou(te)s sélectionné(e)s" -#: ../app/helpers/host_helper/textual_summary.rb:380 -msgid "Show Compliance History of this %{title} (Last 10 Checks)" -msgstr "Afficher l'historique de conformité de ce %{title} (10 derniers contrôles)" +msgid "None of the selected items allow ownership changes" +msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:388 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:123 -#: ../app/helpers/vm_helper/textual_summary.rb:488 -msgid "Show the User defined on this VM" -msgid_plural "Show the Users defined on this VM" -msgstr[0] "Afficher l'utilisateur défini sur cette MV" -msgstr[1] "Afficher les utilisateurs définis sur cette MV" +msgid "Normal" +msgstr "Normal" -#: ../app/helpers/host_helper/textual_summary.rb:399 -msgid "Show the Group defined on this %{title}" -msgid_plural "Show the Groups defined on this %{title}" -msgstr[0] "Afficher le groupe défini sur ce(tte) %{title}" -msgstr[1] "Afficher les groupes définis sur ce(tte) %{title}" +msgid "Normal Operating Ranges (over 30 days)" +msgstr "Plages de fonctionnement normal (plus de 30 jours)" -#: ../app/helpers/host_helper/textual_summary.rb:411 -msgid "Show the Firewall Rule defined on this %{title}" -msgid_plural "Show the Firewall Rules defined on this %{title}" -msgstr[0] "Afficher la règle de pare-feu définie sur ce(tte) %{title}" -msgstr[1] "Afficher les règles de pare-feu définies sur ce(tte) %{title}" +msgid "Normal Operating Ranges (up to 30 days' data)" +msgstr "Plages de fonctionnement normal (données de 30 jours max.)" -#: ../app/helpers/host_helper/textual_summary.rb:420 -msgid "SSH Root" -msgstr "Root SSH" +msgid "Not %{hawkular_info} the provider" +msgstr "Il ne s'agit pas du fournisseur %{hawkular_info}" -#: ../app/helpers/host_helper/textual_summary.rb:426 -#: ../app/helpers/textual_mixins/textual_patches.rb:6 -#: ../app/views/layouts/listnav/_host.html.haml:200 -msgid "Patches" -msgstr "Correctifs" +msgid "Not %{operation_info} the domain server" +msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:428 -msgid "Show the Patch defined on this %{title}" -msgid_plural "Show the Patches defined on this %{title}" -msgstr[0] "Afficher le correctif défini sur ce(tte) %{title}" -msgstr[1] "Afficher les correctifs définis sur ce(tte) %{title}" +msgid "Not %{operation_info} the provider" +msgstr "" -#: ../app/helpers/host_helper/textual_summary.rb:439 -msgid "Show the Package installed on this %{title}" -msgid_plural "Show the Packages installed on this %{title}" -msgstr[0] "Afficher le package installé sur ce(tte) %{title}" -msgstr[1] "Afficher les packages installés sur ce(tte) %{title}" +msgid "Not %{operation_name} for %{record_name} on the provider itself" +msgstr "Non pas %{operation_name} pour %{record_name} sur le fournisseur lui-même" -#: ../app/helpers/host_helper/textual_summary.rb:450 -msgid "Show the Service installed on this %{title}" -msgid_plural "Show the Services installed on this %{title}" -msgstr[0] "Afficher le service installé sur ce(tte) %{title}" -msgstr[1] "Afficher les services installés sur ce(tte) %{title}" +msgid "Not Available" +msgstr "Non disponible" -#: ../app/helpers/host_helper/textual_summary.rb:461 -msgid "Show the File installed on this %{title}" -msgid_plural "Show the Files installed on this %{title}" -msgstr[0] "Afficher le fichier installé sur ce(tte) %{title}" -msgstr[1] "Afficher les fichiers installés sur ce(tte) %{title}" +msgid "Not a Server" +msgstr "Il ne s'agit pas d'un serveur" -#: ../app/helpers/host_helper/textual_summary.rb:472 -msgid "Show the Advanced Setting installed on this %{title}" -msgid_plural "Show the Advanced Settings installed on this %{title}" -msgstr[0] "Afficher le paramètre avancé installé sur ce(tte) %{title}" -msgstr[1] "Afficher les paramètres avancés installés sur ce(tte) %{title}" +msgid "Not adding new datasource to Hawkular server" +msgstr "Aucun nouvel ajout de source de données sur le serveur Hawkular" -#: ../app/helpers/host_helper/textual_summary.rb:502 -msgid "Openstack Nova Scheduler" -msgstr "Scheduler Openstack Nova" +msgid "Not all hosts can be removed from the deployment." +msgstr "Impossible de supprimer tous les hôtes du déploiement." -#: ../app/helpers/host_helper/textual_summary.rb:507 msgid "Not available. Did you assigned Cloud Provider and run SSA?" msgstr "Indisponible. Avez-vous affecté un fournisseur de cloud et exécuter le SSA ?" -#: ../app/helpers/host_helper/textual_summary.rb:515 -msgid "Introspected" -msgstr "Introspection" - -#: ../app/helpers/host_helper/textual_summary.rb:519 -msgid "Provisioning State" -msgstr "État du mise en service" - -#: ../app/helpers/middleware_datasource_helper/textual_summary.rb:16 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:63 -msgid "Driver Name" -msgstr "Nom de pilote" - -#: ../app/helpers/middleware_datasource_helper/textual_summary.rb:21 -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:48 -msgid "JNDI Name" -msgstr "Nom JNDI" +msgid "Not deploying to Hawkular server" +msgstr "Déploiement vers le serveur Hawkular non lancé" -#: ../app/helpers/middleware_datasource_helper/textual_summary.rb:26 -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:15 -msgid "Connection URL" -msgstr "URL de connexion" +msgid "Note" +msgstr "" -#: ../app/helpers/middleware_server_helper/textual_summary.rb:20 -#: ../app/helpers/middleware_server_helper/textual_summary.rb:32 -#: ../app/helpers/middleware_server_helper/textual_summary.rb:47 -msgid "not yet available" -msgstr "non disponible pour l'instant" +msgid "Note:" +msgstr "Remarque :" -#: ../app/helpers/middleware_server_helper/textual_summary.rb:36 -msgid "Bind Address" -msgstr "Adresse de Liaison" +msgid "Note: Collect for All %{clusters} must be checked to be able to collect C & U data from Cloud Providers such as Red Hat OpenStack or Amazon EC2" +msgstr "Remarque : la collecte pour tous les %{clusters} doit être sélectionnée pour permettre la collecte des données de capacité et d'utilisation à partir des fournisseurs de cloud comme Red Hat OpenStack ou Amazon EC2" -#: ../app/helpers/middleware_server_helper/textual_summary.rb:41 -msgid "Server State" -msgstr "État du serveur" +msgid "Note: Fields marked with * are required." +msgstr "Remarque : le symbole * indique un champ obligatoire." -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:31 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:41 -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:31 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:34 -msgid "Element Name" -msgstr "Nom de l'élément" - -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:35 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:45 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:38 -msgid "Caption" -msgstr "Légende" - -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:47 -msgid "Instance ID" -msgstr "ID d'instance" - -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:51 -msgid "Sharing Directory" -msgstr "Répertoire de partage" - -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:63 -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:76 -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:88 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:191 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:213 -msgid "Show %{label} '%{name}'" -msgstr "Afficher %{label} '%{name}'" - -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:69 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:62 -msgid "Data Redundancy" -msgstr "Redondance des données" - -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:98 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:91 -msgid "Delta Reservation" -msgstr "Réservation delta" - -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:102 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:95 -msgid "No Single Point Of Failure" -msgstr "Aucun point de défaillance unique" - -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:106 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:99 -msgid "Based On Underlying Redundancy" -msgstr "Basé sur la redondance sous-jacente" - -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:122 -msgid "Size Available" -msgstr "Taille disponible" - -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:126 -msgid "Size Used" -msgstr "Taille utilisée" +msgid "Note: Gap Collection is only available for VMware vSphere Infrastructures" +msgstr "Remarque : la collecte d'écart n'est disponible que pour les infrastructures VMware vSphere." -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:130 -msgid "Size Total" -msgstr "Taille totale" +msgid "Note: Only Time Profiles with 'Roll Up Performance' set are shown." +msgstr "Remarque : seuls les profils temporels pour lesquels le paramètre 'Performances de roll-up' est configuré sont affichés." -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:134 -msgid "Snapshot Blocks Reserved" -msgstr "Blocs réservés pour les clichés" +msgid "Note: Some items might be hidden due to the possibility of an ownership change" +msgstr "" -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:139 -msgid "Compressed Data" -msgstr "Données compressées" +msgid "Note: Total quota can be restricted by quotas defined at upper levels" +msgstr "Remarque : le quota total peut être limité par des quotas définis à des niveaux supérieurs." -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:143 -msgid "Compression Saved Percentage" -msgstr "Pourcentage disque économisé par compression fichier" +msgid "Note: Username must be in the format: name@realm" +msgstr "Remarque : le nom d'utilisation doit être au format : nom@domaine" -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:147 -msgid "Dedup Percent Saved" -msgstr "Pourcentage de déduplication enregistré" +msgid "Notes" +msgstr "Remarques" -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:151 -msgid "Dedup Size Saved" -msgstr "Taille de déduplication enregistrée" +msgid "Nothing" +msgstr "Rien" -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:155 -msgid "Dedup Size Shared" -msgstr "Taille de déduplication partagée" +msgid "Nothing selected" +msgstr "" -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:159 -#: ../app/helpers/service_helper/textual_summary.rb:47 -msgid "Disk Count" -msgstr "Nombre de disques" +msgid "Notification Frequency" +msgstr "Fréquence de notification" -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:163 -msgid "Total Files" -msgstr "Total des fichiers" - -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:167 -msgid "Used Files" -msgstr "Fichiers utilisés" - -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:171 -msgid "Is Compression Enabled" -msgstr "Est compression activée" - -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:175 -msgid "Is Inconsistent" -msgstr "Est incohérent" - -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:179 -msgid "Is Invalid" -msgstr "Est non valide" - -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:183 -msgid "Is Unrecoverable" -msgstr "Est irrécupérable" - -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:55 -msgid "Other Identifying Info" -msgstr "Autres infos d'identification" - -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:115 -msgid "Show all %{label} '%{name}'" -msgstr "Afficher tou(te)s les %{label} '%{name}'" - -#: ../app/helpers/ops_helper.rb:30 -#: ../app/presenters/tree_builder_ops_settings.rb:31 -#: ../app/views/ops/_ldap_domain_show.html.haml:279 -#: ../app/views/ops/_ldap_server_entry.html.haml:25 -#: ../app/views/ops/_ldap_server_entry.html.haml:66 -#: ../app/views/ops/_ldap_server_entry.html.haml:125 -#: ../app/views/ops/_settings_authentication_tab.html.haml:55 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:31 -msgid "LDAP" -msgstr "LDAP" +msgid "Notifications" +msgstr "Notifications" -#: ../app/helpers/ops_helper.rb:32 -#: ../app/views/ops/_ldap_domain_show.html.haml:279 -#: ../app/views/ops/_ldap_server_entry.html.haml:25 -#: ../app/views/ops/_ldap_server_entry.html.haml:66 -#: ../app/views/ops/_ldap_server_entry.html.haml:125 -#: ../app/views/ops/_settings_authentication_tab.html.haml:55 -msgid "LDAPS" -msgstr "LDAPS" +msgid "Number" +msgstr "Nombre" -#: ../app/helpers/ops_helper.rb:36 -msgid "External Authentication" -msgstr "Authentification externe" +msgid "Number (Bytes)" +msgstr "Nombre (Octets)" -#: ../app/helpers/ops_helper/textual_summary.rb:53 -msgid "Data Directory" -msgstr "Répertoire de données" +msgid "Number (GB)" +msgstr "Nombre (Go)" -#: ../app/helpers/ops_helper/textual_summary.rb:57 -msgid "Data Disk" -msgstr "Disque de données" +msgid "Number (MB)" +msgstr "Nombre (Mo)" -#: ../app/helpers/ops_helper/textual_summary.rb:61 -msgid "Last Start Time" -msgstr "Heure du dernier démarrage" +msgid "Number (kB)" +msgstr "Nombre (ko)" -#: ../app/helpers/ops_helper/textual_summary.rb:66 -msgid "Last Collection" -msgstr "Dernière collecte" +msgid "Number List" +msgstr "Liste de nombres" -#: ../app/helpers/ops_helper/textual_summary.rb:71 -msgid "Total Space on Volume" -msgstr "Espace total sur le volume" +msgid "Number of CPU Cores" +msgstr "Nombres de cœurs de processeur" -#: ../app/helpers/ops_helper/textual_summary.rb:76 -msgid "Free Space on Volume" -msgstr "Espace libre sur le Volume" +msgid "Number of CPU's" +msgstr "Nombre de processeurs" -#: ../app/helpers/ops_helper/textual_summary.rb:81 -msgid "Used Space on Volume" -msgstr "Espace utilisé sur le volume" +msgid "Number of CPUs" +msgstr "Nombre de processeurs" -#: ../app/helpers/ops_helper/textual_summary.rb:86 -msgid "Total Index Nodes" -msgstr "Total des nœuds d'index" +msgid "Number of Compute Hosts" +msgstr "Nombre d'hôtes de calcul" -#: ../app/helpers/ops_helper/textual_summary.rb:91 -msgid "Used Index Nodes" -msgstr "Nœuds d'index utilisés" +msgid "Number of Disk" +msgid_plural "Number of Disks" +msgstr[0] "Nombre de disques" +msgstr[1] "Nombre de disques" -#: ../app/helpers/ops_helper/textual_summary.rb:96 -msgid "Free Index Nodes" -msgstr "Nœuds d'index libres" +msgid "Number of Disks" +msgstr "Nombre de disques" -#: ../app/helpers/ops_helper/textual_summary.rb:100 -msgid "Tables with the Most Rows" -msgstr "Tables avec le plus de lignes" +msgid "Number of Hosts" +msgstr "Nombre d'hôtes" -#: ../app/helpers/ops_helper/textual_summary.rb:101 -#: ../app/views/ops/_db_info.html.haml:43 -#: ../app/views/ops/_db_info.html.haml:136 -#: ../app/views/ops/_db_info.html.haml:215 -msgid "Rows" -msgstr "Lignes" +msgid "Number of Instances" +msgstr "Nombre d'instances" -#: ../app/helpers/ops_helper/textual_summary.rb:108 -#: ../app/views/ops/_db_summary.html.haml:14 -msgid "Largest Tables" -msgstr "Tables les plus grandes" +msgid "Number of Masters" +msgstr "Nombre de maîtres" -#: ../app/helpers/ops_helper/textual_summary.rb:116 -#: ../app/views/ops/_db_summary.html.haml:16 -msgid "Tables with Most Wasted Space" -msgstr "Tables avec le plus d'espace gaspillé" +msgid "Number of Nodes" +msgstr "Nombre de nœuds" -#: ../app/helpers/ops_helper/textual_summary.rb:117 -#: ../app/views/ops/_db_info.html.haml:75 -#: ../app/views/ops/_db_info.html.haml:168 -#: ../app/views/ops/_db_info.html.haml:219 -msgid "Wasted" -msgstr "Gaspillé" +msgid "Number of Rows to Show" +msgstr "Nombre de lignes à afficher" -#: ../app/helpers/ops_helper/textual_summary.rb:138 -#: ../app/views/ops/_rbac_tenant_details.html.haml:139 -msgid "Tenant Quota" -msgstr "Quota locataire" +msgid "Number of VMs" +msgstr "Nombre de MV" -#: ../app/helpers/ops_helper/textual_summary.rb:139 -msgid "Allocated" -msgstr "Alloué" +msgid "OK" +msgstr "" -#: ../app/helpers/ops_helper/textual_summary.rb:139 -msgid "In Use" -msgstr "En cours d'utilisation" +msgid "OR with a new expression element" +msgstr "OU avec un nouvel élément d'expression" -#: ../app/helpers/ops_helper/textual_summary.rb:139 -msgid "Total Quota" -msgstr "Total des quota" +msgid "OS" +msgstr "SE" -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:38 -#: ../app/helpers/service_helper/textual_summary.rb:66 -#: ../app/helpers/vm_helper/textual_summary.rb:195 -#: ../app/views/shared/views/_retire.html.haml:18 -msgid "Retirement Date" -msgstr "Date de désactivation" +msgid "OS Info" +msgid_plural "OS Info" +msgstr[0] "Informations sur le SE" +msgstr[1] "Informations sur le SE" -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:40 -#: ../app/helpers/service_helper/textual_summary.rb:68 -#: ../app/helpers/textual_mixins/textual_authentications_status.rb:7 -#: ../app/helpers/vm_helper/textual_summary.rb:190 -#: ../app/helpers/vm_helper/textual_summary.rb:197 -#: ../app/views/dashboard/_widget_footer.html.haml:13 -#: ../app/views/ops/_logs_selected.html.haml:4 -msgid "Never" -msgstr "Jamais" +msgid "OS Information" +msgstr "Informations sur le SE" -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:65 -msgid "Child Orchestration Stacks" -msgstr "Piles d'orchestration enfants" +msgid "Object" +msgstr "Objet" -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:79 -msgid "Show this Orchestration Template" -msgstr "Afficher ce modèle d'orchestration" +msgid "Object Attribute" +msgstr "Attribut d'objet" -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:121 -msgid "Show all outputs" -msgstr "Afficher toutes les sorties" +msgid "Object Attribute Name" +msgstr "Nom de l'attribut d'objet" -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:131 -msgid "Show all resources" -msgstr "Afficher toutes les ressources" +msgid "Object Attribute Type" +msgstr "Type d'attribut d'objet" -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:30 -msgid "Quantity" -msgstr "Nombre" +msgid "Object Details" +msgstr "Détails de l'objet" -#: ../app/helpers/provider_configuration_manager_helper.rb:21 -#: ../app/helpers/provider_foreman_helper.rb:22 -msgid "IPMI Present" -msgstr "Adresse IPMI présente" +msgid "Object ID" +msgstr "ID de l'objet" -#: ../app/helpers/provider_configuration_manager_helper.rb:29 -#: ../app/helpers/provider_foreman_helper.rb:30 -msgid "Mac address" -msgstr "Adresse Mac" +msgid "Object ID and Values missing for %{field}" +msgstr "ID d'objet et valeurs manquants pour %{field}" -#: ../app/helpers/provider_configuration_manager_helper.rb:41 -#: ../app/helpers/provider_foreman_helper.rb:52 -#: ../app/helpers/provider_foreman_helper.rb:133 -#: ../app/helpers/storage_manager_helper/textual_summary.rb:31 -#: ../app/views/ems_container/_form.html.haml:75 -#: ../app/views/ems_datawarehouse/_form.html.haml:74 -#: ../app/views/ems_infra/_form.html.haml:92 -#: ../app/views/ems_middleware/_form.html.haml:74 -#: ../app/views/miq_task/_tasks_options.html.haml:16 -#: ../app/views/ops/_all_tabs.html.haml:8 -#: ../app/views/ops/_ldap_region_form.html.haml:55 -#: ../app/views/ops/_ldap_region_show.html.haml:44 -#: ../app/views/ops/_schedule_show.html.haml:229 -#: ../app/views/ops/rhn/_server_table.html.haml:91 -#: ../app/views/provider_foreman/_form.html.haml:77 -#: ../app/views/report/_report_info.html.haml:160 -#: ../app/views/report/_show_schedule.html.haml:120 -#: ../app/views/shared/views/ems_common/_form.html.haml:120 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:295 -#: ../app/views/storage_manager/_form.html.haml:116 -msgid "Zone" -msgstr "Zone" +msgid "Object ID missing for %{field}" +msgstr "ID d'objet manquant pour %{field}" -#: ../app/helpers/provider_foreman_helper.rb:35 -msgid "Configuration Profile Description" -msgstr "Description du profil de configuration" +msgid "Object Info" +msgstr "Informations sur l'objet" -#: ../app/helpers/provider_foreman_helper.rb:62 -#: ../app/helpers/provider_foreman_helper.rb:143 -#: ../app/views/provider_foreman/_main.html.haml:9 -#: ../app/views/provider_foreman/_main_configuration_profile.html.haml:9 -msgid "Environment" -msgstr "Environnement" +msgid "Object Name" +msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:66 -#: ../app/helpers/provider_foreman_helper.rb:147 -#: ../app/views/ops/_settings_server_tab.html.haml:420 -msgid "Domain" -msgstr "Domaine" +msgid "Object Selection" +msgstr "Sélection d'objet" -#: ../app/helpers/provider_foreman_helper.rb:70 -#: ../app/views/ems_infra/_form_fields.html.haml:47 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:189 -msgid "Realm" -msgstr "Royaume" +msgid "Object Storage" +msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:82 -#: ../app/helpers/provider_foreman_helper.rb:163 -msgid "Compute Profile" -msgstr "Profil de calcul" +msgid "Object Store" +msgstr "Support de sauvegarde des objets" -#: ../app/helpers/provider_foreman_helper.rb:86 -#: ../app/helpers/provider_foreman_helper.rb:167 -#: ../app/helpers/provider_foreman_helper.rb:213 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:95 -msgid "Architecture" -msgstr "Architecture" +msgid "Object Store Containers" +msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:90 -#: ../app/views/layouts/listnav/_host.html.haml:59 -msgid "OS Information" -msgstr "Informations sur le SE" +msgid "Object Store Objects" +msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:98 -#: ../app/helpers/provider_foreman_helper.rb:179 -#: ../app/helpers/provider_foreman_helper.rb:225 -msgid "Partition Table" -msgstr "Table de partition" +msgid "Object Type" +msgstr "Type d'objet" -#: ../app/helpers/provider_foreman_helper.rb:151 -msgid "Puppet Realm" -msgstr "Royaume Puppet" +msgid "Object Types" +msgstr "Types d'objet" -#: ../app/helpers/provider_foreman_helper.rb:171 -#: ../app/helpers/provider_foreman_helper.rb:217 -msgid "OS" -msgstr "SE" +msgid "Object attribute must be specified to copy object details for use in a Button" +msgstr "L'attribut d'objet doit être spécifié pour permettre la copie des détails de l'objet à utiliser dans un bouton" -#: ../app/helpers/provider_foreman_helper.rb:256 -msgid "Questions" -msgstr "Questions" +msgid "Objects" +msgstr "Objets" -#: ../app/helpers/provider_foreman_helper.rb:257 -msgid "Question Description" -msgstr "Description de la question" +msgid "Observed" +msgstr "Observé(es)" -#: ../app/helpers/provider_foreman_helper.rb:257 -msgid "Question Name" -msgstr "Nom de la question" +msgid "Off" +msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:257 -#: ../app/views/chargeback/_cb_rate_edit_table.html.haml:31 -#: ../app/views/chargeback/_cb_rate_show.html.haml:57 -msgid "Variable" -msgstr "Variable" +msgid "Ok" +msgstr "Ok" -#: ../app/helpers/provider_foreman_helper.rb:258 -msgid "Choices" -msgstr "Choix" +msgid "On" +msgstr "" -#: ../app/helpers/provider_foreman_helper.rb:258 -#: ../app/helpers/textual_summary_helper.rb:167 -#: ../app/views/layouts/_container_auth.html.haml:14 -#: ../app/views/layouts/_edit_form_buttons.html.haml:94 -#: ../app/views/layouts/_edit_form_buttons.html.haml:154 -#: ../app/views/layouts/_multi_auth_credentials.html.haml:16 -#: ../app/views/layouts/_x_edit_buttons.html.haml:123 -#: ../app/views/layouts/_x_edit_buttons.html.haml:165 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:16 -#: ../app/views/layouts/listnav/_show_list.html.haml:23 -#: ../app/views/layouts/listnav/_show_list.html.haml:51 -#: ../app/views/miq_request/_prov_options.html.haml:129 -#: ../app/views/miq_request/_prov_options.html.haml:163 -#: ../app/views/miq_task/_tasks_options.html.haml:162 -#: ../app/views/miq_task/_tasks_options.html.haml:195 -#: ../app/views/ops/_settings_co_categories_tab.html.haml:20 -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:60 -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:79 -#: ../app/views/report/_form_styling.html.haml:69 -#: ../app/views/report/_form_styling.html.haml:117 -#: ../app/views/report/_widget_show.html.haml:53 -msgid "Default" -msgstr "Par défaut" +msgid "On Entry" +msgstr "En entrée" -#: ../app/helpers/provider_foreman_helper.rb:279 -#: ../app/views/miq_policy/_action_details.html.haml:383 -#: ../app/views/miq_policy/_action_options.html.haml:434 -#: ../app/views/provider_foreman/_configuration_script.html.haml:12 -msgid "Variables" -msgstr "Variables" +msgid "On Error" +msgstr "En cas d'erreur" -#: ../app/helpers/pxe_helper/textual_summary.rb:8 -msgid "URI Prefix" -msgstr "Préfixe URI" +msgid "On Exit" +msgstr "En sortie" -#: ../app/helpers/pxe_helper/textual_summary.rb:12 -#: ../app/views/layouts/_edit_log_depot_settings.html.haml:59 -#: ../app/views/layouts/angular-bootstrap/_edit_log_depot_settings_angular_bootstrap.html.haml:36 -#: ../app/views/miq_ae_tools/_results_uri.html.haml:16 -#: ../app/views/pxe/_pxe_form.html.haml:55 -msgid "URI" -msgstr "URI" +msgid "On Shared Storage" +msgstr "Sur le stockage partagé" -#: ../app/helpers/pxe_helper/textual_summary.rb:16 -#: ../app/views/pxe/_pxe_form.html.haml:84 -msgid "Access URL" -msgstr "URL d'accès" +msgid "Once" +msgstr "Une fois" -#: ../app/helpers/pxe_helper/textual_summary.rb:20 -#: ../app/views/pxe/_pxe_form.html.haml:99 -msgid "PXE Directory" -msgstr "Répertoire PXE" +msgid "One or more %{model} must be selected to Policy assignment" +msgstr "Au moins un %{model} doit être sélectionné pour l'affectation de stratégie" -#: ../app/helpers/pxe_helper/textual_summary.rb:24 -#: ../app/views/pxe/_pxe_form.html.haml:114 -msgid "Windows Images Directory" -msgstr "Répertoire d'images Windows" +msgid "One or more %{model} must be selected to Reconfigure" +msgstr "Au moins un %{model} doit être sélectionné pour la reconfiguration" -#: ../app/helpers/pxe_helper/textual_summary.rb:28 -#: ../app/views/pxe/_pxe_form.html.haml:129 -msgid "Customization Directory" -msgstr "Répertoire de personnalisations" +msgid "One or more %{model} must be selected to Right-Size Recommendations" +msgstr "Au moins un %{model} doit être sélectionné pour les recommandations de dimensions correctes" -#: ../app/helpers/pxe_helper/textual_summary.rb:32 -#: ../app/helpers/pxe_helper/textual_summary.rb:132 -msgid "Last Refreshed On" -msgstr "Dernière actualisation le" +msgid "One or more %{model} must be selected to Set Ownership" +msgstr "Au moins un %{model} doit être sélectionné pour configurer la propriété" -#: ../app/helpers/pxe_helper/textual_summary.rb:40 -#: ../app/views/pxe/_pxe_form.html.haml:156 -#: ../app/views/pxe/_pxe_server_details.html.haml:33 -msgid "Filename" -msgstr "Nom de fichier" +msgid "One or more %{model} must be selected to Smart Tagging" +msgstr "Au moins un %{model} doit être sélectionné pour le Smart Tagging" -#: ../app/helpers/pxe_helper/textual_summary.rb:60 -#: ../app/views/pxe/_pxe_server_details.html.haml:63 -msgid "Kernel" -msgstr "Noyau" +msgid "One or more selected reports are not owned by your group, they cannot be moved" +msgstr "Au moins un des rapports sélectionnés n'appartient pas à votre groupe. Impossible de les déplacer." -#: ../app/helpers/pxe_helper/textual_summary.rb:64 -#: ../app/views/pxe/_pxe_img_form.html.haml:37 -msgid "Windows Boot Environment" -msgstr "Environnement de démarrage Windows" +msgid "One widget must be selected" +msgstr "Un widget doit être sélectionné" -#: ../app/helpers/pxe_helper/textual_summary.rb:84 -#: ../app/views/pxe/_pxe_server_details.html.haml:110 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:70 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:115 -msgid "Path" -msgstr "Chemin" +msgid "Only %{dashboard_count} Dashboards are allowed for a group" +msgstr "Un groupe ne peut pas contenir plus de %{dashboard_count} tableaux de bord" -#: ../app/helpers/pxe_helper/textual_summary.rb:88 -#: ../app/views/ops/_db_info.html.haml:6 -#: ../app/views/pxe/_pxe_server_details.html.haml:112 -msgid "Index" -msgstr "Index" +msgid "Only %{storage} without VMs and Hosts can be removed" +msgstr "Seul un %{storage} dépourvu de MV et d'hôte peut être supprimé" -#: ../app/helpers/pxe_helper/textual_summary.rb:104 -#: ../app/views/pxe/_template_form.html.haml:49 -msgid "Image Type" -msgstr "Type d'image" +msgid "Only 1 Date or Date/Time element can be present in a Dialog" +msgstr "Une boîte de dialogue ne peut contenir qu'un seul élément Date ou Date/Heure" -#: ../app/helpers/pxe_helper/textual_summary.rb:120 -msgid "Provision Type" -msgstr "Type de mise en service" +msgid "Only active Roles on active Servers can be suspended" +msgstr "Seuls les rôles actifs sur des serveurs actifs peuvent être mis en attente" -#: ../app/helpers/quadicon_helper.rb:280 -msgid "Show policy details for %{name}" -msgstr "Afficher les détails de stratégie pour %{name}" +msgid "Only available Roles on active Servers can be started" +msgstr "Seuls les rôles disponibles sur des serveurs actifs peuvent être démarrés" -#: ../app/helpers/quadicon_helper.rb:492 -msgid "Name: %{name} | Hostname: %{hostname}" -msgstr "Nom: %{name} | Nom d'hôte : %{hostname}" +msgid "Only more than 1 Custom Button Groups can be reordered" +msgstr "Seuls plusieurs groupes de boutons personnalisés peuvent être réagencés" -#: ../app/helpers/quadicon_helper.rb:525 -msgid "Name: %{name} | Hostname: %{hostname} | Refresh Status: %{status}" -msgstr "Nom : %{name} | Nom d'hôte : %{hostname} | Statut d'actualisation : %{status}" +msgid "Open Folder" +msgstr "Ouvrir le dossier" -#: ../app/helpers/quadicon_helper.rb:722 -msgid "Name: %{name} | Datastore Type: %{storage_type}" +msgid "Open URL" msgstr "" -#: ../app/helpers/quadicon_helper.rb:812 -msgid "Show policy details for %{item_name}" +msgid "Open a new browser window with Cockpit for this VM. This requires that Cockpit is pre-configured on the VM." +msgstr "Ouvrez un nouvel onglet de navigateur avec Cockpit pour cette MV. Pour cela, Cockpit doit être préconfiguré sur la MV." + +msgid "Open a new browser window with the External Logging Presentation UI. This requires the External Logging to be deployed on this Proider." msgstr "" -#: ../app/helpers/report_helper.rb:3 -msgid "Red Text" -msgstr "Texte rouge" +msgid "Open a web-based VMRC console for this VM. This requires that VMRC is pre-configured to work in your browser." +msgstr "Ouvrez une console VMRC Web pour cette MV. Pour cela, cette VMRC doit être préconfigurée pour fonctionner dans votre navigateur." -#: ../app/helpers/report_helper.rb:4 -msgid "Red Background" -msgstr "Fond rouge" +msgid "Open a web-based VNC or SPICE console for this VM" +msgstr "Ouvrir une console VNC ou SPICE Web pour MV" -#: ../app/helpers/report_helper.rb:5 -msgid "Yellow Text" -msgstr "Texte jaune" +msgid "Open a web-based console for this VM" +msgstr "Ouvrir une console Web pour cette MV" -#: ../app/helpers/report_helper.rb:6 -msgid "Yellow Background" -msgstr "Fond jaune" +msgid "Open the chart and full report in a new window" +msgstr "Ouvrir le graphique et le rapport complet dans une nouvelle fenêtre" -#: ../app/helpers/report_helper.rb:7 -msgid "Green Text" -msgstr "Texte en vert" +msgid "Open the full report in a new window" +msgstr "Ouvrir le rapport complet dans une nouvelle fenêtre" -#: ../app/helpers/report_helper.rb:8 -msgid "Green Background" -msgstr "Arrière-plan vert" +msgid "OpenID Connect" +msgstr "Connecter OpenID" -#: ../app/helpers/report_helper.rb:9 -msgid "Blue Text" -msgstr "Texte bleu" +msgid "OpenSCAP Failed Rules Summary" +msgstr "Résumé des règles OpenSCAP ayant échoué" -#: ../app/helpers/report_helper.rb:10 -msgid "Blue Background" -msgstr "Fond d'écran Bleu" +msgid "OpenSCAP HTML" +msgstr "HTML OpenSCAP" -#: ../app/helpers/report_helper.rb:11 -msgid "Light Blue Text" -msgstr "Texte bleu clair" +msgid "OpenSCAP Results" +msgstr "Résultats OpenSCAP" -#: ../app/helpers/report_helper.rb:12 -msgid "Light Blue Background" -msgstr "Arrière-plan bleu clair" +msgid "OpenShift Enterprise" +msgstr "OpenShift Enterprise" -#: ../app/helpers/report_helper.rb:13 -msgid "Purple Text" -msgstr "Texte violet" +msgid "OpenShift Origin" +msgstr "OpenShift Origin" -#: ../app/helpers/report_helper.rb:14 -msgid "Purple Background" -msgstr "Fond violet" +msgid "OpenStack Service Status" +msgstr "Statut du service OpenStack " -#: ../app/helpers/report_helper.rb:15 -msgid "Gray Text" -msgstr "Texte en gris" +msgid "OpenStack Status" +msgstr "Statut OpenStack" -#: ../app/helpers/report_helper.rb:16 -msgid "Gray Background" -msgstr "Arrière-plan gris" +msgid "Opening a VM web-based VMRC console requires that VMRC is pre-configured to work in your browser. Are you sure?" +msgstr "Pour ouvrir une console VMRC Web, cette VMRC doit être préconfigurée pour fonctionner dans votre navigateur. Êtes-vous sûr ?" -#: ../app/helpers/report_helper.rb:23 -msgid "To All Users" -msgstr "À tous les utilisateurs" +msgid "Opening a VM web-based console can take a while and requires that the VMware MKS plugin version configured for Management Engine already be installed and working. Are you sure?" +msgstr "L'ouverture d'une console Web de MV peut prendre du temps et nécessite que la version d'extension de VMware configurée pour Management Engine soit déjà installée et fonctionnelle. Êtes-vous sûr ?" -#: ../app/helpers/report_helper.rb:25 -msgid "By %{typ}: %{values}" -msgstr "Par %{typ}: %{values}" +msgid "Openstack Hardware" +msgstr "Matériel Openstack" -#: ../app/helpers/report_helper.rb:53 -msgid "Nothing selected" -msgstr "" +msgid "Openstack Infra Provider" +msgstr "Fournisseur d'infrastructure Openstack" -#: ../app/helpers/resource_pool_helper.rb:6 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:121 -#: ../app/views/vm_common/_config.html.haml:236 -msgid "Memory Reserve" -msgstr "Réserve de mémoire" +msgid "Openstack Infra provider" +msgstr "Fournisseur d'infrastructure Openstack" -#: ../app/helpers/resource_pool_helper.rb:8 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:127 -#: ../app/views/vm_common/_config.html.haml:236 -msgid "Memory Reserve Expand" -msgstr "Extension de la réserve de mémoire" +msgid "Openstack Nova Scheduler" +msgstr "Scheduler Openstack Nova" -#: ../app/helpers/resource_pool_helper.rb:13 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:133 -#: ../app/views/vm_common/_config.html.haml:236 -msgid "Memory Limit" -msgstr "Mémoire limite" +msgid "Operating System" +msgstr "Système d'exploitation" -#: ../app/helpers/resource_pool_helper.rb:16 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:139 -#: ../app/views/vm_common/_config.html.haml:236 -msgid "Memory Shares" -msgstr "Partages de mémoire" +msgid "Operating System Distribution" +msgstr "Distribution du système d'exploitation" -#: ../app/helpers/resource_pool_helper.rb:18 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:145 -#: ../app/views/vm_common/_config.html.haml:236 -msgid "Memory Shares Level" -msgstr "Niveau des partages de mémoire" +msgid "Operations" +msgstr "Opérations" -#: ../app/helpers/resource_pool_helper.rb:20 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:151 -#: ../app/views/vm_common/_config.html.haml:236 -msgid "CPU Reserve" -msgstr "Réserve de processeur" +msgid "Optimize" +msgstr "Optimiser" -#: ../app/helpers/resource_pool_helper.rb:22 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:157 -#: ../app/views/vm_common/_config.html.haml:236 -msgid "CPU Reserve Expand" -msgstr "Extension de réserve du processeur" +msgid "Option 1" +msgstr "Option 1" -#: ../app/helpers/resource_pool_helper.rb:27 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:163 -#: ../app/views/vm_common/_config.html.haml:236 -msgid "CPU Limit" -msgstr "Limite de processeurs" +msgid "Option 2" +msgstr "Option 2" -#: ../app/helpers/resource_pool_helper.rb:30 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:169 -#: ../app/views/vm_common/_config.html.haml:236 -msgid "CPU Shares" -msgstr "Partages du processeur" +msgid "Optional, if not specified, method name is used." +msgstr "Facultatif, si ce paramètre n'est pas spécifié, le nom de la méthode est utilisé." -#: ../app/helpers/resource_pool_helper.rb:32 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:175 -#: ../app/views/vm_common/_config.html.haml:236 -msgid "CPU Shares Level" -msgstr "Niveau de partages du processeur" +msgid "Options" +msgstr "Options" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:27 -msgid "vApp" -msgstr "vApp" +msgid "Options %{model}" +msgstr "Options %{model}" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:32 -msgid "Total %{title} CPU Resources" -msgstr "Total des ressources de processeur de %{title}" +msgid "Options %{model}: %{name}" +msgstr "Options %{model}: %{name}" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:37 -msgid "Total %{title} Memory" -msgstr "Mémoire totale de %{title}" +msgid "Or" +msgstr "Ou" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:42 -msgid "Total %{title} CPUs" -msgstr "Total des processeurs de %{title}" +msgid "Orange" +msgstr "Orange" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:52 -msgid "Total Configured VM Memory" -msgstr "Mémoire MV totale configurée" +msgid "Orchestration Stack" +msgstr "Pile d'orchestration" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:56 -msgid "Total Configured VM CPUs" -msgstr "Total des processeurs MV configurés" +msgid "Orchestration Stack is already retired" +msgstr "La pile d'orchestration est déjà désactivée" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:60 -msgid "Parent Datacenter" -msgstr "Datacenter parent" +msgid "Orchestration Stacks" +msgstr "Piles d'orchestration" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:65 -msgid "Parent '%{title}'" -msgstr "'%{title}' parent(e)" +msgid "Orchestration Template" +msgstr "Modèle d'orchestration" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:69 -msgid "Show Parent %{title} %{name}" -msgstr "Afficher le %{title} %{name} parent" +msgid "Orchestration Template \"%{name}\" was deleted." +msgstr "Le modèle d'orchestration \"%{name}\" a été supprimé." -#: ../app/helpers/resource_pool_helper/textual_summary.rb:77 -msgid "Parent %{title}" -msgstr "%{title} parent(e)" +msgid "Orchestration Templates" +msgstr "Modèles d'orchestration" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:81 -msgid "Show Parent %{title} '%{name}'" -msgstr "Afficher le %{title} '%{name}' parent" +msgid "Orchestration Templates that are in use cannot be edited" +msgstr "Les modèles d'orchestration en cours d'utilisation ne peuvent pas être modifiés" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:91 -#: ../app/views/layouts/listnav/_resource_pool.html.haml:42 -msgid "Show VMs in this Resource Pool, but not in Resource Pools below" -msgstr "" -"Afficher les MV dans ce pool de ressources, mais pas dans les pools de ressour" -"ces ci-dessous" +msgid "Orchestration Templates that are in use cannot be removed" +msgstr "Les modèles d'orchestration en cours d'utilisation ne peuvent pas être supprimés" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:101 -#: ../app/views/layouts/listnav/_resource_pool.html.haml:50 -msgid "Show all VMs in this Resource Pool" -msgstr "Afficher toutes les MV dans ce pool de ressources" +msgid "Orchestration stack could not be found." +msgstr "La pile d'orchestration est introuvable." -#: ../app/helpers/resource_pool_helper/textual_summary.rb:112 -#: ../app/views/layouts/listnav/_resource_pool.html.haml:58 -msgid "Show tree of all VMs in this Resource Pool" -msgstr "Afficher l'arborescence de toutes les MV dans ce pool de ressources" +msgid "Orchestration template \"%{name}\" is already orderable" +msgstr "Le modèle d'orchestration \"%{name}\" est déjà organisable" -#: ../app/helpers/resource_pool_helper/textual_summary.rb:133 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:163 -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:85 -#: ../app/views/ops/_zone_form.html.haml:199 -msgid "Unlimited" -msgstr "Illimité" +msgid "Orchestration template \"%{name}\" is now orderable" +msgstr "Le modèle d'orchestration \"%{name}\" est maintenant organisable" -#: ../app/helpers/service_helper/textual_summary.rb:51 -msgid "Disk Space Allocated" -msgstr "Espace disque alloué" +msgid "Orchestration template \"%{name}\" is read-only and cannot be deleted." +msgstr "Le modèle d'orchestration \"%{name}\" est en lecture seule et ne peut pas être supprimé." -#: ../app/helpers/service_helper/textual_summary.rb:56 -msgid "Disk Space Used" -msgstr "Espace disque utilisé" +msgid "Orchestration template \"%{name}\" is read-only and cannot be edited." +msgstr "Le modèle d'orchestration \"%{name}\" est en lecture seule et ne peut pas être modifié." -#: ../app/helpers/service_helper/textual_summary.rb:61 -msgid "Memory on Disk" -msgstr "Mémoire sur disque" +msgid "Order" +msgstr "Tri" -#: ../app/helpers/service_helper/textual_summary.rb:72 -msgid "Retirement State" -msgstr "État de désactivation" +msgid "Order %{model} \"%{name}\"" +msgstr "Trier %{model} \"%{name}\"" -#: ../app/helpers/service_helper/textual_summary.rb:77 -msgid "Parent Catalog Item" -msgstr "Élément de catalogue parent" +msgid "Order Request was Submitted" +msgstr "La demande de tri a été envoyée" -#: ../app/helpers/service_helper/textual_summary.rb:79 -msgid "Show this Service's Parent Service Catalog" -msgstr "Afficher le catalogue de services parent de ce service" +msgid "Order of Actions if ALL Conditions are True" +msgstr "Ordre des actions si TOUTES les conditions sont vérifiées" -#: ../app/helpers/service_helper/textual_summary.rb:88 -msgid "Parent Service" -msgstr "Service parent" +msgid "Order of Actions if ANY Conditions are False" +msgstr "Ordre des actions si au moins UNE condition n'est pas vérifiée" -#: ../app/helpers/service_helper/textual_summary.rb:91 -msgid "Show this Service's Parent Service" -msgstr "Afficher le service parent de ce service" +msgid "Order this Service" +msgstr "Commander ce service" -#: ../app/helpers/service_helper/textual_summary.rb:106 -msgid "Show this Service's Job" -msgstr "Afficher la tâche de ce service" +msgid "Orderable" +msgstr "Organisable" -#: ../app/helpers/service_helper/textual_summary.rb:120 -#: ../app/views/catalog/_ot_tree_show.html.haml:63 -#: ../app/views/miq_ae_class/_method_form.html.haml:88 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:80 -#: ../app/views/miq_ae_customization/_dialog_info.html.haml:44 -#: ../app/views/miq_request/_request.html.haml:113 -#: ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 -#: ../app/views/vm_common/_snapshots_desc.html.haml:50 -msgid "Created On" -msgstr "Créé sur" +msgid "Organization" +msgstr "Organisation" -#: ../app/helpers/storage_helper/textual_summary.rb:36 -msgid "%{storage} Type" -msgstr "%{storage} Type" +msgid "Original Value" +msgstr "Valeur d'origine" -#: ../app/helpers/storage_helper/textual_summary.rb:48 -msgid "Used Space" -msgstr "Espace utilisé" +msgid "Orphaned %{models}" +msgstr "%{models} orphelins" -#: ../app/helpers/storage_helper/textual_summary.rb:65 -msgid "Uncommitted Space" -msgstr "Espace non engagé" +msgid "Orphaned %{model}" +msgstr "" -#: ../app/helpers/storage_helper/textual_summary.rb:70 -msgid "Used + Uncommitted Space" -msgstr "Espace utilisé + Espace non engagé" +msgid "Orphaned Data" +msgstr "Données orphelines" -#: ../app/helpers/storage_helper/textual_summary.rb:86 -msgid "Managed VMs" -msgstr "MV gérées" +msgid "Orphaned Records deleted for userid [%{number}]" +msgstr "Enregistrements orphelins supprimé pour l'utilisateur [%{number}]" -#: ../app/helpers/storage_helper/textual_summary.rb:97 -msgid "Managed %{tables}" -msgstr "%{tables} gérées" +msgid "Orphaned Records for userid %{id} were successfully deleted" +msgstr "Les enregistrements orphelins de l'utilisateur %{id} ont été supprimés" -#: ../app/helpers/storage_helper/textual_summary.rb:108 -msgid "Managed/Registered VMs" -msgstr "MV gérées/enregistrées" +msgid "Orphaned VMs & Templates" +msgstr "MV et modèles orphelins" -#: ../app/helpers/storage_helper/textual_summary.rb:112 -msgid "Managed/Unregistered VMs" -msgstr "MV gérées/non enregistrées" +msgid "Other" +msgstr "Autre" -#: ../app/helpers/storage_helper/textual_summary.rb:116 -msgid "Unmanaged VMs" -msgstr "MV non gérées" +msgid "Other VM Files" +msgstr "Autres fichiers MV" -#: ../app/helpers/storage_helper/textual_summary.rb:146 -#: ../app/helpers/storage_helper/textual_summary.rb:157 -msgid "Show this Datastore's %{label}" -msgstr "Afficher le/la %{label} de ce magasin de données" +msgid "Outgoing SMTP E-mail Server" +msgstr "Serveur email SMTP sortant" -#: ../app/helpers/storage_helper/textual_summary.rb:167 -msgid "Show all files installed on this %{table}" -msgstr "Afficher tous les fichiers installés sur ce(tte) %{table}" +msgid "Output Image" +msgstr "Image de sortie" -#: ../app/helpers/storage_helper/textual_summary.rb:176 -#: ../app/helpers/storage_helper/textual_summary.rb:195 -#: ../app/helpers/storage_helper/textual_summary.rb:213 -#: ../app/helpers/storage_helper/textual_summary.rb:230 -#: ../app/helpers/storage_helper/textual_summary.rb:247 -msgid "%{number} (%{percentage} of Used Space, %{amount} file)" -msgid_plural "%{number} (%{percentage} of Used Space, %{amount} files)" -msgstr[0] "%{number} (%{percentage} d'espace utilisé, %{amount} fichier)" -msgstr[1] "%{number} (%{percentage} d'espace utilisé, %{amount} fichiers)" +msgid "Outputs" +msgstr "Sorties" -#: ../app/helpers/storage_helper/textual_summary.rb:185 -msgid "Show VM Provisioned Disk Files installed on this %{table}" -msgstr "Afficher les fichiers disque configurés de MV installés sur ce(tte) %{table}" +msgid "Overview" +msgstr "Aperçu" -#: ../app/helpers/storage_helper/textual_summary.rb:203 -msgid "Show VM Snapshot Files installed on this %{storage}" -msgstr "Afficher les fichiers de cliché de MV installés sur ce(tte) %{storage}" +msgid "Overwrite (if exists)" +msgstr "Remplacer (s'il existe)" -#: ../app/helpers/storage_helper/textual_summary.rb:221 -msgid "Show VM Memory Files installed on this %{storage}" -msgstr "Afficher les fichiers de mémoire de MV installés sur ce %{storage}" +msgid "Overwrite existing reports?" +msgstr "Écraser les rapports existants ?" -#: ../app/helpers/storage_helper/textual_summary.rb:238 -msgid "Show Other VM Files installed on this %{storage}" -msgstr "Afficher les autres fichiers MV installés sur ce %{storage}" +msgid "Owner" +msgstr "Propriétaire" -#: ../app/helpers/storage_helper/textual_summary.rb:255 -msgid "Show Non-VM Files installed on this %{storage}" -msgstr "Afficher les fichiers non MV installés sur ce %{storage}" +msgid "Ownership is controlled by tenant mapping" +msgstr "" -#: ../app/helpers/storage_manager_helper/textual_summary.rb:23 -msgid "Agent Type" -msgstr "Type d''Agent" +msgid "Ownership saved for selected %{object_types}" +msgstr "Propriété enregistrée pour les %{object_types} sélectionnés" -#: ../app/helpers/textual_mixins/textual_advanced_settings.rb:6 -msgid "Show the advanced settings on this VM" -msgstr "Afficher les paramètres avancés sur cette MV" +msgid "PDF" +msgstr "PDF" -#: ../app/helpers/textual_mixins/textual_authentications_status.rb:5 -msgid "%{time} Ago" -msgstr "Il y a %{time}" +msgid "PDF Output" +msgstr "Sortie PDF" -#: ../app/helpers/textual_mixins/textual_authentications_status.rb:11 -msgid "Valid" -msgstr "Valide" +msgid "PM" +msgstr "PM" -#: ../app/helpers/textual_mixins/textual_authentications_status.rb:13 -msgid "%{status} - %{time}" -msgstr "%{status} - %{time}" +msgid "PM:" +msgstr "PM:" -#: ../app/helpers/textual_mixins/textual_authentications_status.rb:19 -msgid "Updated - %{time}" -msgstr "Mis à jour - %{time}" +msgid "PXE" +msgstr "PXE" -#: ../app/helpers/textual_mixins/textual_authentications_status.rb:23 -msgid "Updated - %{update_time}, Last valid connection - %{valid_time}" -msgstr "Mis à jour - %{update_time}, Dernière connexion valide - %{valid_time}" +msgid "PXE Credentials successfuly validated" +msgstr "Informations d'identification PXE validées" -#: ../app/helpers/textual_mixins/textual_authentications_status.rb:29 -#: ../app/helpers/textual_mixins/textual_authentications_status.rb:37 -msgid "%{label} Authentication" -msgstr "Authentification %{label}" +msgid "PXE Directory" +msgstr "Répertoire PXE" -#: ../app/helpers/textual_mixins/textual_drift.rb:10 -msgid "Show virtual machine drift history" -msgstr "Afficher l'historique de dérive de la machine virtuelle" +msgid "PXE Image Menus" +msgstr "Menus d'images PXE" -#: ../app/helpers/textual_mixins/textual_filesystems.rb:6 -msgid "Show the File installed on this VM" -msgid_plural "Show the Files installed on this VM" -msgstr[0] "Afficher le fichier installé sur cette MV" -msgstr[1] "Afficher les fichiers installés sur cette MV" +msgid "PXE Images" +msgstr "Images PXE" -#: ../app/helpers/textual_mixins/textual_init_processes.rb:9 -msgid "Show the Init Process installed on this VM" -msgid_plural "Show the Init Processes installed on this VM" -msgstr[0] "Afficher le processus Init installés sur cette MV" -msgstr[1] "Afficher les processus Init installés sur cette MV" +msgid "PXE Servers" +msgstr "Serveurs PXE" -#: ../app/helpers/textual_mixins/textual_metrics_status.rb:4 -#: ../app/helpers/textual_mixins/textual_metrics_status.rb:14 -msgid "Last Metrics Collection" -msgstr "Dernière collecte de métriques" +msgid "Package" +msgid_plural "Packages" +msgstr[0] "Package" +msgstr[1] "Packages" -#: ../app/helpers/textual_mixins/textual_metrics_status.rb:15 -msgid "Success" -msgstr "Réussite" +msgid "Packages" +msgstr "Packages" -#: ../app/helpers/textual_mixins/textual_patches.rb:8 -msgid "Show the Patch defined on this VM" -msgid_plural "Show the Patches defined on this VM" -msgstr[0] "Afficher le correctif défini sur cette MV" -msgstr[1] "Afficher les correctifs définis sur cette MV" +msgid "Page Size" +msgstr "Format de page" -#: ../app/helpers/textual_mixins/textual_refresh_status.rb:6 -msgid " - %{last_refresh_date} Ago" -msgstr " - Il y a %{last_refresh_date}" +msgid "Parameters" +msgstr "Paramètres" -#: ../app/helpers/textual_mixins/textual_refresh_status.rb:9 -msgid "Last Refresh" -msgstr "Dernière actualisation" +msgid "Paravirtualization" +msgstr "Paravirtualisation" -#: ../app/helpers/textual_mixins/textual_region.rb:12 -msgid "Connect to this VM in its Region" -msgstr "Connecter à cette VM dans sa Région" +msgid "Parent" +msgstr "Parent" -#: ../app/helpers/textual_mixins/textual_scan_history.rb:3 -msgid "Analysis History" -msgstr "Historique d'analyse" +msgid "Parent %{title}" +msgstr "%{title} parent(e)" -#: ../app/helpers/textual_mixins/textual_scan_history.rb:9 -msgid "Show virtual machine analysis history" -msgstr "Afficher l'historique d'analyse de la machine virtuelle" +msgid "Parent %{title} Platform" +msgstr "Plateforme %{title} parente" -#: ../app/helpers/textual_summary_helper.rb:88 -msgid "Show %{label} '%{value}'" -msgstr "Afficher %{label} '%{value}'" +msgid "Parent %{title}: %{name}" +msgstr "%{title} parent(r) : %{name}" -#: ../app/helpers/textual_summary_helper.rb:163 -msgid "Default Authentication" -msgstr "Authentication par défaut" +msgid "Parent '%{title}'" +msgstr "'%{title}' parent(e)" -#: ../app/helpers/textual_summary_helper.rb:168 -#: ../app/views/layouts/_multi_auth_credentials.html.haml:21 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:22 -msgid "C & U Database" -msgstr "Base de données C & U" +msgid "Parent Catalog Item" +msgstr "Élément de catalogue parent" -#: ../app/helpers/textual_summary_helper.rb:169 -#: ../app/views/layouts/_multi_auth_credentials.html.haml:25 -msgid "AMQP" -msgstr "AMQP" +msgid "Parent Cloud Provider" +msgstr "" -#: ../app/helpers/textual_summary_helper.rb:171 -#: ../app/views/layouts/_multi_auth_credentials.html.haml:33 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:42 -msgid "Remote Login" -msgstr "Connexion à distance" +msgid "Parent Datacenter" +msgstr "Datacenter parent" -#: ../app/helpers/textual_summary_helper.rb:172 -#: ../app/views/layouts/_multi_auth_credentials.html.haml:36 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:45 -#: ../app/views/ops/_settings_server_tab.html.haml:575 -msgid "Web Services" -msgstr "Services Web" +msgid "Parent Service" +msgstr "Service parent" -#: ../app/helpers/textual_summary_helper.rb:173 -msgid "SSH Key Pair" -msgstr "Paire de clés SSH" +msgid "Parent Type" +msgstr "Type de parent" -#: ../app/helpers/textual_summary_helper.rb:174 -msgid "" -msgstr "" +msgid "Parent Type must be selected" +msgstr "Le type de parent doit être sélectionné" -#: ../app/helpers/textual_summary_helper.rb:177 -msgid "%{label} Credentials" -msgstr "%{label} Identification" +msgid "Parent VM" +msgid_plural "Parent VM" +msgstr[0] "MV parente" +msgstr[1] "MV parente" -#: ../app/helpers/ui_constants.rb:41 -msgid "A0 - 841mm x 1189mm" -msgstr "A0 - 841mm x 1189mm" +msgid "Parent VM Selection" +msgstr "Sélection de la MV parente" -#: ../app/helpers/ui_constants.rb:42 -msgid "A1 - 594mm x 841mm" -msgstr "A1 - 594mm x 841mm" +msgid "Parent VM can not be one of the child VMs" +msgstr "La MV parente ne peut pas être une des MV fille" -#: ../app/helpers/ui_constants.rb:43 -msgid "A2 - 420mm x 594mm" -msgstr "A2 - 420mm x 594mm" +msgid "Partition" +msgstr "Partition" -#: ../app/helpers/ui_constants.rb:44 -msgid "A3 - 297mm x 420mm" -msgstr "A3 - 297mm x 420mm" +msgid "Partition Table" +msgstr "Table de partition" -#: ../app/helpers/ui_constants.rb:45 -msgid "A4 - 210mm x 297mm (default)" -msgstr "A4 - 210mm x 297mm (default)" +msgid "Partitions Aligned" +msgstr "Partitions alignées" -#: ../app/helpers/ui_constants.rb:46 -msgid "US Letter - 8.5in x 11.0in" -msgstr "US Letter - 8,5 x 11 po" +msgid "Passed" +msgstr "Réussi" -#: ../app/helpers/ui_constants.rb:47 -msgid "US Legal - 8.5in x 14.0in" -msgstr "US Legal - 8,5 x 14 po" +msgid "Password" +msgstr "Mot de passe" -#: ../app/helpers/ui_constants.rb:48 -msgid "US Executive - 7.25in x 10.5in" -msgstr "US Executive - 7,25 x 10,5 po" +msgid "Password (optional):" +msgstr "Mot de passe (optionnel) :" -#: ../app/helpers/ui_constants.rb:49 -msgid "US Ledger - 17.0in x 11.0in" -msgstr "US Ledger - 17 x 11 po" +msgid "Password Complex" +msgstr "Complexité du mot de passe" -#: ../app/helpers/ui_constants.rb:50 -msgid "US Tabloid - 11.0in x 17.0in" -msgstr "US Tabloid - 11 x 17 po" +msgid "Password Encrypt" +msgstr "Chiffrement du mot de passe" -#: ../app/helpers/ui_constants.rb:51 -msgid "US Government - 8.0in x 11.0in" -msgstr "US Government - 8 x 11 po" +msgid "Password History" +msgstr "Historique des mots de passe" -#: ../app/helpers/ui_constants.rb:52 -msgid "US Statement - 5.5in x 8.5in" -msgstr "US Statement - 5,5 x 8,5 po" +msgid "Password and Verify Password fields do not match" +msgstr "Les champs Mot de passe et Vérifier le mot de passe ne correspondent pas" -#: ../app/helpers/ui_constants.rb:53 -msgid "US Folio - 8.5in x 13.0in" -msgstr "US Folio - 8,5 x 13 po" +msgid "Password is required" +msgstr "Le mot de passe est obligatoire" -#: ../app/helpers/ui_constants.rb:59 -msgid "5 items" -msgstr "" +msgid "Password or Password+One-Time-Password" +msgstr "Mot de passe ou Mot de passe+Mot de passe-une-seule-utilisation" -#: ../app/helpers/ui_constants.rb:60 -msgid "10 items" -msgstr "" +msgid "Password/Verify Password do not match" +msgstr "Mot de passe/Vérifier le mot de passe ne correspondent pas" -#: ../app/helpers/ui_constants.rb:61 -msgid "20 items" -msgstr "" +msgid "Password:" +msgstr "Mot de passe :" -#: ../app/helpers/ui_constants.rb:62 -msgid "50 items" -msgstr "" +msgid "Passwords do not match" +msgstr "Les mots de passe ne correspondent pas" -#: ../app/helpers/ui_constants.rb:63 -msgid "100 items" +msgid "Paste here the trusted CA certificates, in PEM format." msgstr "" -#: ../app/helpers/ui_constants.rb:64 -msgid "200 items" -msgstr "" +msgid "Paste is not available, no object information has been copied from the Simulation screen" +msgstr "Collage non disponible, aucune information objet n'a été copiée à partir de l'écran de simulation" -#: ../app/helpers/ui_constants.rb:65 -msgid "500 items" -msgstr "" +msgid "Paste object details for use in a Button." +msgstr "Coller les détails d'objet à utiliser dans un bouton" -#: ../app/helpers/ui_constants.rb:66 -msgid "1000 items" -msgstr "" +msgid "Patch" +msgid_plural "Patches" +msgstr[0] "Correctif" +msgstr[1] "Correctifs" -#: ../app/helpers/ui_constants.rb:99 -msgid "Red" -msgstr "Rouge" +msgid "Patches" +msgstr "Correctifs" -#: ../app/helpers/ui_constants.rb:100 -msgid "Orange" -msgstr "Orange" +msgid "Path" +msgstr "Chemin" -#: ../app/helpers/ui_constants.rb:101 -msgid "Yellow" -msgstr "Jaune" +msgid "Path:" +msgstr "Chemin :" -#: ../app/helpers/ui_constants.rb:102 -msgid "Green" -msgstr "Vert" +msgid "Pause" +msgstr "Pause" -#: ../app/helpers/ui_constants.rb:103 -msgid "Blue" -msgstr "Bleu" +msgid "Pause the selected items" +msgstr "Suspendre les éléments sélectionnés" -#: ../app/helpers/ui_constants.rb:104 -msgid "ManageIQ-Blue" -msgstr "ManageIQ-Blue" +msgid "Pause the selected items?" +msgstr "Suspendre les éléments sélectionnés ?" -#: ../app/helpers/ui_constants.rb:105 -msgid "Black" -msgstr "Noir" +msgid "Pause this Instance" +msgstr "Suspendre cette instance" -#: ../app/helpers/ui_constants.rb:291 -msgid "2 Days" -msgstr "2 Jours" +msgid "Pause this Instance?" +msgstr "Suspendre cette instance ?" -#: ../app/helpers/ui_constants.rb:292 -msgid "3 Days" -msgstr "3 Jours" +msgid "Pending Approval" +msgstr "En attente d'approbation" -#: ../app/helpers/ui_constants.rb:293 -msgid "4 Days" -msgstr "4 Jours" +msgid "Per Minute" +msgstr "Par minute" -#: ../app/helpers/ui_constants.rb:294 -msgid "5 Days" -msgstr "5 Jours" +msgid "Per Time" +msgstr "Par durée" -#: ../app/helpers/ui_constants.rb:295 -msgid "6 Days" -msgstr "6 Jours" +msgid "Per Unit" +msgstr "Par unité" -#: ../app/helpers/ui_constants.rb:303 -msgid "8 Hours" -msgstr "8 Heures" +msgid "Percent" +msgstr "Pour cent" -#: ../app/helpers/ui_constants.rb:307 -#: ../app/views/report/_form_filter_chargeback.html.haml:254 -msgid "Week" -msgstr "Semaine" +msgid "Percent Bloat" +msgstr "Pourcentage de gonflement" -#: ../app/helpers/ui_constants.rb:308 ../app/helpers/ui_constants.rb:339 -msgid "2 Weeks" -msgstr "2 Semaines" +msgid "Percent Used of Provisioned Size" +msgstr "Pourcentage de la taille allouée utilisée" -#: ../app/helpers/ui_constants.rb:309 ../app/helpers/ui_constants.rb:340 -msgid "3 Weeks" -msgstr "3 Semaines" +msgid "Perform SmartState Analysis" +msgstr "Effectuer une analyse SmartState" -#: ../app/helpers/ui_constants.rb:310 ../app/helpers/ui_constants.rb:341 -msgid "4 Weeks" -msgstr "4 Semaines" +msgid "Perform SmartState Analysis on the selected Datastores" +msgstr "Effectuer une analyse SmartState sur les magasins de données sélectionnés" -#: ../app/helpers/ui_constants.rb:313 -#: ../app/views/report/_form_filter_chargeback.html.haml:254 -msgid "Month" -msgstr "Mois" +msgid "Perform SmartState Analysis on the selected Datastores?" +msgstr "Effectuer une analyse SmartState sur les magasins de données sélectionnés ?" -#: ../app/helpers/ui_constants.rb:314 -msgid "2 Months" -msgstr "2 Mois" +msgid "Perform SmartState Analysis on the selected Templates" +msgstr "Effectuer une analyse SmartState sur les modèles sélectionnés" -#: ../app/helpers/ui_constants.rb:315 -msgid "3 Months" -msgstr "3 Mois" +msgid "Perform SmartState Analysis on the selected Templates?" +msgstr "Effectuer une analyse SmartState sur les modèles sélectionnés ?" -#: ../app/helpers/ui_constants.rb:316 -msgid "4 Months" -msgstr "4 Mois" +msgid "Perform SmartState Analysis on the selected items" +msgstr "Effectuer une analyse SmartState sur les éléments sélectionnés" -#: ../app/helpers/ui_constants.rb:317 -msgid "5 Months" -msgstr "5 Mois" +msgid "Perform SmartState Analysis on the selected items?" +msgstr "Effectuer une analyse SmartState sur les éléments sélectionnés ?" -#: ../app/helpers/ui_constants.rb:318 -msgid "6 Months" -msgstr "6 Mois" +msgid "Perform SmartState Analysis on this Datastore" +msgstr "Effectuer une analyse SmartState sur ce magasin de données" -#: ../app/helpers/ui_constants.rb:338 -msgid "1 Week" -msgstr "1 Semaine" +msgid "Perform SmartState Analysis on this Datastore?" +msgstr "Effectuer une analyse SmartState sur ce magasin de données ?" -#: ../app/helpers/ui_constants.rb:352 -msgid "45 Minutes" -msgstr "45 Minutes" +msgid "Perform SmartState Analysis on this Image" +msgstr "Effectuer une analyse SmartState sur cette image" -#: ../app/helpers/ui_constants.rb:397 -msgid "Allocation" -msgstr "Allocation" +msgid "Perform SmartState Analysis on this Image?" +msgstr "Effectuer une analyse SmartState sur cette image ?" -#: ../app/helpers/ui_constants.rb:398 -msgid "Reservation" -msgstr "Réservation" +msgid "Perform SmartState Analysis on this Instance" +msgstr "Effectuer une analyse SmartState sur cette instance" -#: ../app/helpers/ui_constants.rb:399 -msgid "Usage" -msgstr "Utilisation" +msgid "Perform SmartState Analysis on this Instance?" +msgstr "Effectuer une analyse SmartState sur cette instance ?" -#: ../app/helpers/ui_constants.rb:400 -msgid "Manual Input" -msgstr "Saisie manuelle" +msgid "Perform SmartState Analysis on this Template" +msgstr "Effectuer une analyse SmartState sur ce modèle" -#: ../app/helpers/ui_constants.rb:405 ../app/helpers/ui_constants.rb:579 -msgid "Today" -msgstr "Aujourd'hui" +msgid "Perform SmartState Analysis on this Template?" +msgstr "Effectuer une analyse SmartState sur ce modèle ?" -#: ../app/helpers/ui_constants.rb:406 -msgid "1 Day Ago" -msgstr "1 Jour Passé" +msgid "Perform SmartState Analysis on this VM" +msgstr "Effectuer une analyse SmartState sur cette MV" -#: ../app/helpers/ui_constants.rb:407 ../app/helpers/ui_constants.rb:581 -msgid "2 Days Ago" -msgstr "2 Jours Plus tôt" +msgid "Perform SmartState Analysis on this VM?" +msgstr "Effectuer une analyse SmartState sur cette MV ?" -#: ../app/helpers/ui_constants.rb:408 ../app/helpers/ui_constants.rb:582 -msgid "3 Days Ago" -msgstr " il y a 3 Jours" +msgid "Perform SmartState Analysis on this item" +msgstr "Effectuer une analyse SmartState sur cet élément" -#: ../app/helpers/ui_constants.rb:409 ../app/helpers/ui_constants.rb:583 -msgid "4 Days Ago" -msgstr "4 Jours passés" +msgid "Perform SmartState Analysis on this item?" +msgstr "Effectuer une analyse SmartState sur cet élément ?" -#: ../app/helpers/ui_constants.rb:410 ../app/helpers/ui_constants.rb:584 -msgid "5 Days Ago" -msgstr "5 Jours passés" +msgid "Performance Interval" +msgstr "Intervalle de performances" -#: ../app/helpers/ui_constants.rb:411 ../app/helpers/ui_constants.rb:585 -msgid "6 Days Ago" -msgstr "6 Jours passés" +msgid "Performance Timeframe" +msgstr "Période de performances" -#: ../app/helpers/ui_constants.rb:413 -msgid "Initializing" -msgstr "Initialisation" +msgid "Persistent Volume Claim Name" +msgstr "Nom de demande de volume persistant" -#: ../app/helpers/ui_constants.rb:413 -msgid "Waiting to Start" -msgstr "En attente de démarrage" +msgid "Phase" +msgstr "Phase" -#: ../app/helpers/ui_constants.rb:414 -msgid "Aborting" -msgstr "Annulation" +msgid "Physical Infrastructure" +msgstr "" -#: ../app/helpers/ui_constants.rb:414 -msgid "Cancelling" -msgstr "Annulation en cours" +msgid "Physical NIC: %{name}" +msgstr "Carte réseau physique : %{name}" -#: ../app/helpers/ui_constants.rb:414 ../app/helpers/ui_constants.rb:419 -msgid "Finished" -msgstr "Terminé" +msgid "Physical Servers" +msgstr "" -#: ../app/helpers/ui_constants.rb:415 -msgid "Scanning" -msgstr "Scanning" +msgid "Placement" +msgstr "Placement" -#: ../app/helpers/ui_constants.rb:415 -msgid "Snapshot Create" -msgstr "Création d'un cliché" +msgid "Placement - Options" +msgstr "Placement - Options" -#: ../app/helpers/ui_constants.rb:416 -msgid "Snapshot Delete" -msgstr "Suppression d'un cliché" +msgid "Plan for VM placement on %{hosts} or %{clusters}" +msgstr "Plan de placement de MV sur %{hosts} ou %{clusters}" -#: ../app/helpers/ui_constants.rb:416 -msgid "Synchronizing" -msgstr "Synchronisation" +msgid "Planning" +msgstr "Planning" -#: ../app/helpers/ui_constants.rb:417 -msgid "Deploy Smartproxy" -msgstr "Déployer Smartproxy" +msgid "Planning Options" +msgstr "Options de planning" -#: ../app/helpers/ui_constants.rb:418 -#: ../app/views/miq_policy/_alert_details.html.haml:43 -#: ../app/views/miq_policy/_policy_details.html.haml:49 -#: ../app/views/miq_policy/_policy_details.html.haml:66 -#: ../app/views/ops/_schedule_form.html.haml:70 -#: ../app/views/ops/_schedule_show.html.haml:19 -#: ../app/views/report/_report_info.html.haml:134 -#: ../app/views/report/_schedule_form.html.haml:51 -#: ../app/views/report/_show_schedule.html.haml:19 -#: ../app/views/report/_widget_form.html.haml:54 -#: ../app/views/report/_widget_show.html.haml:42 -msgid "Active" -msgstr "Actif" +msgid "Planning Summary" +msgstr "Résumé du planning" -#: ../app/helpers/ui_constants.rb:418 -msgid "Initialized" -msgstr "Initialisé" +msgid "Planning options have been reset by the user" +msgstr "Les options de planning ont été réinitialisées par l'utilisateur" -#: ../app/helpers/ui_constants.rb:418 -#: ../app/views/miq_task/_tasks_options.html.haml:90 -msgid "Queued" -msgstr "En file d'attente" +msgid "Platform" +msgstr "Plateforme" -#: ../app/helpers/ui_constants.rb:422 -msgid "Pending Approval" -msgstr "En attente d'approbation" +msgid "Platform Tools" +msgstr "Outils de plateforme" -#: ../app/helpers/ui_constants.rb:423 -msgid "Approved" -msgstr "Approuvée" +msgid "Platform Updates Available" +msgstr "Mises à jour de la plateforme disponibles" -#: ../app/helpers/ui_constants.rb:424 -msgid "Denied" -msgstr "Refusé" +msgid "Playbook" +msgstr "" -#: ../app/helpers/ui_constants.rb:427 -msgid "Last 24 Hours" -msgstr "Dernières 24 heures" +msgid "Playbook Catalog Item" +msgstr "" -#: ../app/helpers/ui_constants.rb:428 -msgid "Last 7 Days" -msgstr "7 derniers jours" +msgid "Playbooks" +msgstr "" -#: ../app/helpers/ui_constants.rb:438 -msgid "Software" -msgstr "Logiciel" +msgid "Plays" +msgstr "" -#: ../app/helpers/ui_constants.rb:439 -msgid "System" -msgstr "Système" +msgid "Please contact your administrator for assistance." +msgstr "Contactez votre administrateur pour obtenir de l'aide." -#: ../app/helpers/ui_constants.rb:440 -msgid "User Accounts" -msgstr "Comptes utilisateurs" +msgid "Please correct invalid %{adjective} Entry Point prior to saving" +msgstr "Corrigez le Point d'entrée %{adjective} invalide avant d'enregistrer" -#: ../app/helpers/ui_constants.rb:441 -msgid "VM Configuration" -msgstr "Configuration de la MV" +msgid "Please enable the git owner role in order to import git repositories" +msgstr "Veuillez activer le rôle de propriétaire Git pour pouvoir importer des référentiels Git" -#: ../app/helpers/ui_constants.rb:449 ../app/helpers/ui_constants.rb:484 -#: ../app/helpers/ui_constants.rb:499 ../app/helpers/ui_constants.rb:506 -#: ../app/views/miq_policy/_alert_profile_details.html.haml:194 -msgid "The Enterprise" -msgstr "L'entreprise" +msgid "Please provide a valid git URL" +msgstr "Veuillez fournir une URL Git valide" -#: ../app/helpers/ui_constants.rb:450 -msgid "Selected Providers" -msgstr "" +msgid "Please select a Cloud Tenant from the Environment Tab" +msgstr "Sélectionnez un locataire cloud dans l'onglet Environnement" -#: ../app/helpers/ui_constants.rb:451 -msgid "Tagged Providers" -msgstr "" +msgid "Please select a JSON file containing the nodes you would like to register." +msgstr "Sélectionnez un fichier JSON contenant les nœuds à enregistrer." -#: ../app/helpers/ui_constants.rb:454 ../app/helpers/ui_constants.rb:462 -#: ../app/helpers/ui_constants.rb:470 ../app/helpers/ui_constants.rb:473 -#: ../app/helpers/ui_constants.rb:485 ../app/helpers/ui_constants.rb:494 -#: ../app/helpers/ui_constants.rb:500 ../app/helpers/ui_constants.rb:507 -#: ../app/helpers/ui_constants.rb:510 ../app/helpers/ui_constants.rb:513 -msgid "Selected %{tables}" -msgstr "%{tables} sélectionnées" +msgid "Please select a node from the tree to edit." +msgstr "Sélectionnez un nœud à modifier dans l'arborescence." -#: ../app/helpers/ui_constants.rb:457 ../app/helpers/ui_constants.rb:465 -#: ../app/helpers/ui_constants.rb:476 ../app/helpers/ui_constants.rb:479 -#: ../app/helpers/ui_constants.rb:488 ../app/helpers/ui_constants.rb:516 -#: ../app/helpers/ui_constants.rb:519 -msgid "Tagged %{tables}" -msgstr "%{tables} balisées" +msgid "Please select an Instance Type from above" +msgstr "Sélectionnez un type d'instance ci-dessus" -#: ../app/helpers/ui_constants.rb:522 -msgid "Labeled %{tables}" -msgstr "" +msgid "Pod" +msgstr "Pod" -#: ../app/helpers/ui_constants.rb:528 -msgid "Count of" -msgstr "Nombre de" +msgid "Pod Compliance Policies" +msgstr "Stratégies de conformité de pod" -#: ../app/helpers/ui_constants.rb:529 -msgid "Find" -msgstr "Chercher" +msgid "Pod Conditions" +msgstr "Conditions du pod" -#: ../app/helpers/ui_constants.rb:531 -#: ../app/views/layouts/exp_atom/_editor.html.haml:66 -#: ../app/views/layouts/exp_atom/_editor.html.haml:69 -msgid "Field" -msgstr "Champ" +msgid "Pod Control Policies" +msgstr "Stratégies de contrôle de pod" -#: ../app/helpers/ui_constants.rb:533 -#: ../app/views/layouts/exp_atom/_editor.html.haml:71 -#: ../app/views/miq_policy/_action_details.html.haml:318 -#: ../app/views/report/_form_filter_chargeback.html.haml:110 -#: ../app/views/report/_form_filter_chargeback.html.haml:201 -msgid "Tag" -msgstr "Balise" +msgid "Pod Creation and Deletion Trends" +msgstr "Tendances de création et suppression de pods" -#: ../app/helpers/ui_constants.rb:537 ../app/views/ops/_ap_form.html.haml:86 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:42 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:154 -msgid "Registry" -msgstr "Registre" +msgid "Pods" +msgstr "Pods" -#: ../app/helpers/ui_constants.rb:542 -msgid " Hour" -msgstr "Heure" +msgid "Policies" +msgstr "Stratégies" -#: ../app/helpers/ui_constants.rb:542 -msgid " Hours" -msgstr "Heures" +msgid "Policies that belong to Profiles can not be deleted" +msgstr "Des stratégies appartenant à des profils ne peuvent pas être supprimées" -#: ../app/helpers/ui_constants.rb:543 -msgid " Day" -msgstr "Jour" +msgid "Policy" +msgstr "Stratégie" -#: ../app/helpers/ui_constants.rb:543 -msgid " Days" -msgstr "Jours" +msgid "Policy Conditions:" +msgstr "Conditions de stratégie :" -#: ../app/helpers/ui_constants.rb:544 -msgid " Week" -msgstr "Semaine" +msgid "Policy Events" +msgstr "Événements de stratégie" -#: ../app/helpers/ui_constants.rb:544 -msgid " Weeks" -msgstr "Semaines" +msgid "Policy Profile" +msgstr "" -#: ../app/helpers/ui_constants.rb:553 -msgid "This Hour" -msgstr "Cette heure" +msgid "Policy Profiles" +msgstr "Profils de stratégies" -#: ../app/helpers/ui_constants.rb:554 -msgid "Last Hour" -msgstr "Dernière heure" +msgid "Policy Profiles in Effect" +msgstr "Profils de stratégie en vigueur" -#: ../app/helpers/ui_constants.rb:555 -msgid "2 Hours Ago" -msgstr "Il y a 2 heures" +msgid "Policy Selection" +msgstr "Sélection de la stratégie" -#: ../app/helpers/ui_constants.rb:556 -msgid "3 Hours Ago" -msgstr "Il y a 3 heures" +msgid "Policy Simulation" +msgstr "Simulation de stratégie" -#: ../app/helpers/ui_constants.rb:557 -msgid "4 Hours Ago" -msgstr "Il y a 4 heures" +msgid "Policy Simulation Details" +msgstr "Détails de la simulation de stratégie" -#: ../app/helpers/ui_constants.rb:558 -msgid "5 Hours Ago" -msgstr "Il y a 5 heures" +msgid "Policy Simulation Details for %{name}" +msgstr "Détails de la simulation de stratégie pour %{name}" -#: ../app/helpers/ui_constants.rb:559 -msgid "6 Hours Ago" -msgstr "Il y a 6 heures" +msgid "Policy Simulation Results" +msgstr "Résultats de la simulation de stratégie" -#: ../app/helpers/ui_constants.rb:560 -msgid "7 Hours Ago" -msgstr "Il y a 7 heures" +msgid "Policy Simulation Results for Event [%{description}]" +msgstr "Résultats de la simulation de stratégie pour l'événement [%{description}]" -#: ../app/helpers/ui_constants.rb:561 -msgid "8 Hours Ago" -msgstr "Il y a 8 heures" +msgid "Policy Simulation for %{amount} Item" +msgid_plural "Policy Simulation for %{amount} Items" +msgstr[0] "Simulation de stratégie pour %{amount} élément" +msgstr[1] "Simulation de stratégie pour %{amount} éléments" -#: ../app/helpers/ui_constants.rb:562 -msgid "9 Hours Ago" -msgstr "Il y a 9 heures" +msgid "Policy Simulation generation returned: %{error_message}" +msgstr "La génération de la simulation de stratégie a renvoyé l'erreur : %{error_message}" -#: ../app/helpers/ui_constants.rb:563 -msgid "10 Hours Ago" -msgstr "Il y a 10 heures" +msgid "Policy assignments successfully changed" +msgstr "Affectations de stratégies modifiées" -#: ../app/helpers/ui_constants.rb:564 -msgid "11 Hours Ago" -msgstr "Il y a 11 heures" +msgid "Policy changes will affect %{amount} %{item}" +msgid_plural "Policy changes will affect %{amount} %{items}" +msgstr[0] "Les changements de stratégie affecteront %{amount} %{item}" +msgstr[1] "Les changements de stratégie affecteront %{amount} %{items}" -#: ../app/helpers/ui_constants.rb:565 -msgid "12 Hours Ago" -msgstr "Il y a 12 heures" +msgid "Policy log downloaded" +msgstr "Journal de stratégie téléchargé" -#: ../app/helpers/ui_constants.rb:566 -msgid "13 Hours Ago" -msgstr "Il y a 13 heures" +msgid "Policy no longer exists" +msgstr "" -#: ../app/helpers/ui_constants.rb:567 -msgid "14 Hours Ago" -msgstr "Il y a 14 heures" +msgid "Policy%{caption}" +msgstr "" -#: ../app/helpers/ui_constants.rb:568 -msgid "15 Hours Ago" -msgstr "Il y a 15 heures" +msgid "Port" +msgstr "Port" -#: ../app/helpers/ui_constants.rb:569 -msgid "16 Hours Ago" -msgstr "Il y a 16 heures" +msgid "Port Configurations" +msgstr "Configurations de ports" -#: ../app/helpers/ui_constants.rb:570 -msgid "17 Hours Ago" -msgstr "Il y a 17 heures" +msgid "Port Group: %{name}" +msgstr "Groupe de ports : %{name}" -#: ../app/helpers/ui_constants.rb:571 -msgid "18 Hours Ago" -msgstr "Il y a 18 heures" +msgid "Port id" +msgstr "" -#: ../app/helpers/ui_constants.rb:572 -msgid "19 Hours Ago" -msgstr "Il y a 19 heures" +msgid "Portal IP" +msgstr "IP du portail" -#: ../app/helpers/ui_constants.rb:573 -msgid "20 Hours Ago" -msgstr "Il y a 20 heures" +msgid "Ports" +msgstr "Ports" -#: ../app/helpers/ui_constants.rb:574 -msgid "21 Hours Ago" -msgstr "Il y a 21 heures" +msgid "Power" +msgstr "Alimentation" -#: ../app/helpers/ui_constants.rb:575 -msgid "22 Hours Ago" -msgstr "Il y a 22 heures" +msgid "Power Functions" +msgstr "Fonctions d'alimentation" -#: ../app/helpers/ui_constants.rb:576 -msgid "23 Hours Ago" -msgstr "Il y a 23 heures" +msgid "Power Management" +msgstr "Gestion de l'alimentation" -#: ../app/helpers/ui_constants.rb:580 -#: ../app/views/report/_form_filter_chargeback.html.haml:276 -msgid "Yesterday" -msgstr "Hier" +msgid "Power Off" +msgstr "Désactiver" -#: ../app/helpers/ui_constants.rb:586 -msgid "7 Days Ago" -msgstr "7 Jours plus tôt" +msgid "Power Off the selected items" +msgstr "Désactiver les éléments sélectionnés" -#: ../app/helpers/ui_constants.rb:587 -msgid "14 Days Ago" -msgstr "14 Jours Plus tôt" +msgid "Power Off the selected items?" +msgstr "Désactiver les éléments sélectionnés ?" -#: ../app/helpers/ui_constants.rb:590 -msgid "This Week" -msgstr "Cette semaine" +msgid "Power Off this VM" +msgstr "Désactiver cette MV" -#: ../app/helpers/ui_constants.rb:591 -#: ../app/views/report/_form_filter_chargeback.html.haml:278 -msgid "Last Week" -msgstr "La semaine dernière" +msgid "Power Off this VM?" +msgstr "Désactiver cette MV ?" -#: ../app/helpers/ui_constants.rb:592 -msgid "2 Weeks Ago" -msgstr "2 Semaines Plus tôt" +msgid "Power Off this item" +msgstr "Désactiver cet élément" -#: ../app/helpers/ui_constants.rb:593 -msgid "3 Weeks Ago" -msgstr "3 Semaines passées" +msgid "Power Off this item?" +msgstr "Désactiver cet élément ?" -#: ../app/helpers/ui_constants.rb:594 -msgid "4 Weeks Ago" -msgstr "4 Semaines passées" +msgid "Power On" +msgstr "Activer" -#: ../app/helpers/ui_constants.rb:597 -msgid "This Month" -msgstr "Ce mois" +msgid "Power On the selected items" +msgstr "Activer les éléments sélectionnés" -#: ../app/helpers/ui_constants.rb:598 -msgid "Last Month" -msgstr "Le mois dernier" +msgid "Power On the selected items?" +msgstr "Activer les éléments sélectionnés ?" -#: ../app/helpers/ui_constants.rb:599 -msgid "2 Months Ago" -msgstr "2 Mois Plus tôt" +msgid "Power On this VM" +msgstr "Activer cette MV" -#: ../app/helpers/ui_constants.rb:600 -msgid "3 Months Ago" -msgstr "3 Mois plus tôt" +msgid "Power On this VM?" +msgstr "Activer cette MV ?" -#: ../app/helpers/ui_constants.rb:601 -msgid "4 Months Ago" -msgstr "4 Mois passés" +msgid "Power On this item" +msgstr "Activer cet élément" -#: ../app/helpers/ui_constants.rb:602 -msgid "6 Months Ago" -msgstr " il y a 6 mois" +msgid "Power On this item?" +msgstr "Activer cet élément ?" -#: ../app/helpers/ui_constants.rb:605 -msgid "This Quarter" -msgstr "Ce trimestre" +msgid "Power Operations" +msgstr "Opérations d'alimentation" -#: ../app/helpers/ui_constants.rb:606 -msgid "Last Quarter" -msgstr "Le trimestre dernier" +msgid "Power State" +msgstr "État d'alimentation" -#: ../app/helpers/ui_constants.rb:607 -msgid "2 Quarters Ago" -msgstr "2 Trimestres Plus tôt" +msgid "Preemptible" +msgstr "Préemptive" -#: ../app/helpers/ui_constants.rb:608 -msgid "3 Quarters Ago" -msgstr "3 Trimestres passés" +msgid "Preferred Region" +msgstr "Région préférée" -#: ../app/helpers/ui_constants.rb:609 -msgid "4 Quarters Ago" -msgstr "4 Trimestres passés" +msgid "Press Ctl+Alt to release cursor." +msgstr "Appuyez sur Ctl+Alt pour libérer le curseur." -#: ../app/helpers/ui_constants.rb:612 -msgid "This Year" -msgstr "Cette année" +msgid "Press Ctrl+Alt to release cursor." +msgstr "Appuyez sur Ctl+Alt pour libérer le curseur." -#: ../app/helpers/ui_constants.rb:613 -msgid "Last Year" -msgstr "L'année dernière" +msgid "Press commit to Import" +msgstr "Appuyez sur Valider pour importer" -#: ../app/helpers/ui_constants.rb:614 -msgid "2 Years Ago" -msgstr "2 Ans Plus tôt" +msgid "Press submit to start the Database Vacuum process" +msgstr "Appuyez sur Valider pour commencer le vidage de la base de données" -#: ../app/helpers/ui_constants.rb:615 -msgid "3 Years Ago" -msgstr "3 Années passées" +msgid "Press the Apply button to import the good records into the %{product} database" +msgstr "Appuyez sur Appliquer pour importer les bons enregistrements dans la base de données %{product}" -#: ../app/helpers/ui_constants.rb:616 -msgid "4 Years Ago" -msgstr "4 Années passées" +msgid "Press your browser's Back button or click a tab to continue" +msgstr "Appuyez sur la touche Retour arrière ou cliquez sur un onglet pour continuer" -#: ../app/helpers/ui_constants.rb:623 -msgid "RSS Feeds" -msgstr "Flux RSS" +msgid "Pressing the back button during a session." +msgstr "Enfoncement de la touche Retour arrière pendant une session." -#: ../app/helpers/ui_constants.rb:624 -msgid "Menus" -msgstr "Menus" +msgid "Preview" +msgstr "Prévisualisation" -#: ../app/helpers/ui_constants.rb:628 -#: ../app/views/miq_capacity/_bottlenecks_tabs.html.haml:7 -#: ../app/views/miq_capacity/_planning_tabs.html.haml:7 -#: ../app/views/miq_capacity/_utilization_tabs.html.haml:10 -msgid "Report" -msgstr "Rapport" +msgid "Preview tab is not available until Chargeback Filters has been configured" +msgstr "L'onglet Prévisualisation n'est pas disponible tant que les filtres de rétrofacturation n'ont pas été configurés" -#: ../app/helpers/ui_constants.rb:629 -#: ../app/views/report/_report_info.html.haml:56 -#: ../app/views/report/_report_list.html.haml:132 -msgid "Chart" -msgstr "Graphique" +msgid "Preview tab is not available until Trend Target Limit has been configured" +msgstr "L'onglet Prévisualisation n'est pas disponible tant que la limite cible de la tendance n'a pas été configurée" -#: ../app/helpers/ui_constants.rb:630 -msgid "RSS Feed" -msgstr "Flux RSS" +msgid "Preview tab is not available until Trending for field has been selected" +msgstr "L'onglet Prévisualisation n'est pas disponible tant que le champ \"Tendance pour\" n'a pas été sélectionné" -#: ../app/helpers/ui_constants.rb:631 -msgid "Menu" -msgstr "Menu" +msgid "Preview tab is not available until at least 1 field has been selected" +msgstr "L'onglet Prévisualisation n'est pas disponible tant qu'au moins 1 champ n'a pas été sélectionné" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:83 -msgid "Preemptible" -msgstr "Préemptive" +msgid "Previous" +msgstr "Précédent" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:84 -#: ../app/views/cloud_network/_common_new_edit.html.haml:36 -#: ../app/views/cloud_network/_common_new_edit.html.haml:74 -#: ../app/views/cloud_subnet/_common_new_edit.haml:49 -#: ../app/views/configuration/_ui_1.html.haml:41 -#: ../app/views/configuration/_ui_2.html.haml:120 -#: ../app/views/middleware_server/_deploy.html.haml:70 -#: ../app/views/middleware_server/_deploy.html.haml:105 -#: ../app/views/miq_policy/_alert_details.html.haml:57 -#: ../app/views/miq_policy/_policy_details.html.haml:70 -#: ../app/views/ops/_category_form.html.haml:78 -#: ../app/views/ops/_category_form.html.haml:97 -#: ../app/views/ops/_category_form.html.haml:182 -#: ../app/views/ops/_category_form.html.haml:200 -#: ../app/views/ops/_category_form.html.haml:219 -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:30 -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:89 -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:150 -#: ../app/views/ops/_settings_server_tab.html.haml:442 -#: ../app/views/report/_form_sort.html.haml:78 -#: ../app/views/report/_report_list.html.haml:162 -msgid "No" -msgstr "Non" +msgid "Primary (Record) Filter" +msgstr "Filtre (d'enregistrements) principal" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:84 -msgid "Yes; VM will run at most 24 hours." -msgstr "Oui ; la MV s'exécutera au maximum pendant 24 heures." +msgid "Primary (Record) Filter - Filters the %{model} table records" +msgstr "Filtre (d'enregistrements) principal - Filtre les enregistrements de la table %{model}" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:89 -#: ../app/helpers/vm_helper/textual_summary.rb:151 -msgid "Platform Tools" -msgstr "Outils de plateforme" +msgid "Priority" +msgstr "Priorité" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:102 -#: ../app/helpers/vm_helper/textual_summary.rb:162 -msgid "Show the snapshot info for this VM" -msgstr "Afficher les informations de cliché pour cette MV" +msgid "Priority Order was saved" +msgstr "L'ordre de priorité a été enregistré" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:111 -#: ../app/helpers/vm_helper/textual_summary.rb:170 -msgid "Show resources of this VM" -msgstr "Afficher les ressources de cette MV" +msgid "Priority Workers" +msgstr "Workers prioritaires" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:134 -#: ../app/helpers/vm_helper/textual_summary.rb:499 -msgid "Show the Group defined on this VM" -msgid_plural "Show the Groups defined on this VM" -msgstr[0] "Afficher the le groupe défini sur cette MV" -msgstr[1] "Afficher les groupes définis sur cette MV" +msgid "Private Host Name" +msgstr "Nom d'hôte privé" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:143 -#: ../app/presenters/menu/default_menu.rb:55 -#: ../app/views/configuration/_ui_2.html.haml:175 -msgid "Key Pairs" -msgstr "Paires de Clés" +msgid "Private Key" +msgstr "Clé privée" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:153 -#: ../app/helpers/vm_helper/textual_summary.rb:510 -msgid "Application" -msgid_plural "Applications" -msgstr[0] "Application" -msgstr[1] "Applications" +msgid "Private SSH Key" +msgstr "Clé SSH privée" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:153 -#: ../app/helpers/vm_helper/textual_summary.rb:510 -msgid "Package" -msgid_plural "Packages" -msgstr[0] "Package" -msgstr[1] "Packages" +msgid "Privileged" +msgstr "Privilégié" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:169 -#: ../app/helpers/vm_helper/textual_summary.rb:527 -msgid "Show the Win32 Service installed on this VM" -msgid_plural "Show the Win32 Services installed on this VM" -msgstr[0] "Afficher le service Win32 installé sur cette MV" -msgstr[1] "Afficher les services Win32 installés sur cette MV" +msgid "Process ID" +msgstr "ID du processus" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:184 -#: ../app/helpers/vm_helper/textual_summary.rb:541 -msgid "Show the Kernel Driver installed on this VM" -msgid_plural "Show the Kernel Drivers installed on this VM" -msgstr[0] "Afficher le pilote de noyau installés sur cette MV" -msgstr[1] "Afficher les pilotes de noyau installés sur cette MV" +msgid "Processor Cores_Per_Socket" +msgstr "Cœurs de processeur par socket" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:199 -#: ../app/helpers/vm_helper/textual_summary.rb:555 -msgid "Show the File System Driver installed on this VM" -msgid_plural "Show the File System Drivers installed on this VM" -msgstr[0] "Afficher le pilote du système de fichiers installé sur cette MV" -msgstr[1] "Afficher les pilotes du système de fichiers installés sur cette MV" +msgid "Processor Sockets" +msgstr "Sockets de processeur" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:214 -#: ../app/helpers/vm_helper/textual_summary.rb:570 -msgid "Show the Registry Item installed on this VM" -msgid_plural "Show the Registry Items installed on this VM" -msgstr[0] "Afficher l'élément de registre installés sur cette MV" -msgstr[1] "Afficher les éléments de registre installés sur cette MV" +msgid "Processors" +msgstr "Processeurs" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:229 -#: ../app/helpers/vm_helper/textual_summary.rb:663 -msgid "From %{time} Ago" -msgstr "Depuis %{time}" +msgid "Product" +msgstr "Produit" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:230 -#: ../app/helpers/vm_helper/textual_summary.rb:664 -msgid "Show Running Processes on this VM" -msgstr "Afficher les processus en cours sur cette MV" +msgid "Product Features (Editing)" +msgstr "Fonctionnalités du produit (Modification)" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:242 -msgid "Show Event Log on this VM" -msgid_plural "Show Event Logs on this VM" -msgstr[0] "Afficher le journal d'événements de cette MV" -msgstr[1] "Afficher les journaux d'événements de cette MV" +msgid "Product Features (Read Only)" +msgstr "Fonctionnalités du produit (Lecture seule)" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:256 -#: ../app/helpers/vm_helper/textual_summary.rb:737 -msgid "Agent Address" -msgstr "Adresse de l'agent" +msgid "Product ID" +msgstr "ID du produit" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:261 -#: ../app/helpers/vm_helper/textual_summary.rb:742 -msgid "Agent Port" -msgstr "Port de l'agent" +msgid "Product Name" +msgstr "Nom du produit" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:266 -#: ../app/helpers/vm_helper/textual_summary.rb:747 -msgid "Fail Open" -msgstr "Erreur d'ouverture" +msgid "Product Type" +msgstr "Type de produit" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:271 -#: ../app/helpers/vm_helper/textual_summary.rb:752 -msgid "Immutable VM" -msgstr "Machine virtuelle non modifiable" +msgid "Production" +msgstr "" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:276 -#: ../app/helpers/vm_helper/textual_summary.rb:757 -msgid "Timeout (ms)" -msgstr "Délai d'attente (ms)" +msgid "Profile" +msgstr "" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:292 -#: ../app/helpers/vm_helper/textual_summary.rb:773 -msgid "Show Compliance History of this VM (Last 10 Checks)" -msgstr "Afficher l'historique de conformité de cette MV (10 derniers contrôles)" +msgid "Profile Alerts:" +msgstr "Alertes de profil :" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:299 -#: ../app/helpers/vm_helper/textual_summary.rb:779 -msgid "Last Boot Time" -msgstr "Heure du dernier démarrage" +msgid "Profile Policies:" +msgstr "Stratégies de profil :" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:305 -#: ../app/helpers/vm_helper/textual_summary.rb:784 -msgid "State Changed On" -msgstr "État modifié le" +msgid "Project" +msgstr "Projet" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:311 -msgid "Virtualization Type" -msgstr "Type de virtualisation" +msgid "Project/Tenant" +msgstr "Projet/locataire" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:317 -msgid "Root Device Type" -msgstr "Type de périphérique racine" +msgid "Projects" +msgstr "Projets" -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:322 -msgid "ID within Provider" -msgstr "ID dans le fournisseur" +msgid "Promote Server" +msgstr "Promouvoir le serveur" -#: ../app/helpers/vm_helper.rb:24 -msgid "Virtual Private Cloud" -msgstr "Cloud privé virtuel" +msgid "Promote Server %{server_name} [%{server_id}] to primary for the %{server_role_description} Role" +msgstr "Promouvoir le serveur %{server_name} [%{server_id}] au rang de serveur principal pour le rôle %{server_role_description}" -#: ../app/helpers/vm_helper.rb:29 -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:151 -msgid "Cloud Subnet" -msgstr "Sous-réseau Cloud" +msgid "Properties" +msgstr "Propriétés" -#: ../app/helpers/vm_helper/textual_summary.rb:111 -msgid "Load Balancer Status" -msgstr "État de l'équilibreur de charge" +msgid "Property" +msgstr "Propriété" -#: ../app/helpers/vm_helper/textual_summary.rb:146 -msgid "Parent %{title} Platform" -msgstr "Plateforme %{title} parente" +msgid "Protected" +msgstr "Protégé" -#: ../app/helpers/vm_helper/textual_summary.rb:155 -msgid "CPU Affinity" -msgstr "Affinité de processeur" +msgid "Protocol" +msgstr "Protocole" -#: ../app/helpers/vm_helper/textual_summary.rb:180 -msgid "Storage Profile" -msgstr "Profil de stockage" +msgid "Provide" +msgstr "Fournir" -#: ../app/helpers/vm_helper/textual_summary.rb:184 -msgid "Discovered" -msgstr "Détecté" +msgid "Provide Node" +msgstr "Fournir Noeud" -#: ../app/helpers/vm_helper/textual_summary.rb:188 -msgid "Last Analyzed" -msgstr "Dernière analyse" +msgid "Provide Nodes" +msgstr "Fournir Nœuds sélectionnés" -#: ../app/helpers/vm_helper/textual_summary.rb:207 -msgid "Provisioned On" -msgstr "Mis en service le" +msgid "Provide selected items" +msgstr "Fournir Éléments sélectionnés" -#: ../app/helpers/vm_helper/textual_summary.rb:223 -#: ../app/helpers/vm_helper/textual_summary.rb:234 -msgid "Show this VM's %{title}" -msgstr "Afficher le/la %{title} de cette MV" +msgid "Provide selected items?" +msgstr "Fournir Éléments sélectionnés ?" -#: ../app/helpers/vm_helper/textual_summary.rb:243 -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:45 -#: ../app/views/shared/views/_prov_dialog.html.haml:118 -msgid "Resource Pool" -msgstr "Pool de ressources" +msgid "Provide this item" +msgstr "Fournir cet élément ?" -#: ../app/helpers/vm_helper/textual_summary.rb:245 -msgid "Show this VM's Resource Pool" -msgstr "Afficher le pool de ressources de cette MV" +msgid "Provide this item?" +msgstr "Fournir cet élément ?" -#: ../app/helpers/vm_helper/textual_summary.rb:260 -#: ../app/helpers/vm_helper/textual_summary.rb:268 -#: ../app/helpers/vm_helper/textual_summary.rb:290 -#: ../app/helpers/vm_helper/textual_summary.rb:301 -#: ../app/helpers/vm_helper/textual_summary.rb:312 -#: ../app/helpers/vm_helper/textual_summary.rb:449 -msgid "Show this VM's %{label}" -msgstr "Afficher le %{label} de cette MV" +msgid "Provider" +msgstr "Fournisseur" -#: ../app/helpers/vm_helper/textual_summary.rb:326 -msgid "Show this Image's parent" -msgstr "Afficher le parent de cette image" +msgid "Provider Compliance Policies" +msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:339 -msgid "Show this VM's %{label} '%{name}'" -msgstr "Afficher le %{label} de cette MV '%{name}'" +msgid "Provider Conditions" +msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:460 -msgid "Show all Cloud Volumes attached to this VM." -msgstr "Afficher tous les volumes cloud associés à cette MV." +msgid "Provider Control Policies" +msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:471 -msgid "Show parent and child VMs" -msgstr "Afficher les MV mères et filles" +msgid "Provider Name" +msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:472 -msgid "Show virtual machine genealogy" -msgstr "Afficher la généalogie de la machine virtuelle" +msgid "Provider Network Type" +msgstr "Fournir Type de réseau" -#: ../app/helpers/vm_helper/textual_summary.rb:514 -msgid "Show the %{label} installed on this VM" -msgstr "Afficher le/la %{label} installé(e) sur cette MV" +msgid "Provider Type" +msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:579 -msgid "Number of Disks" -msgstr "Nombre de disques" +msgid "Provider is required" +msgstr "Le fournisseur doit être renseigné" -#: ../app/helpers/vm_helper/textual_summary.rb:581 -msgid "Show disk on this VM" -msgid_plural "Show disks on this VM" -msgstr[0] "Afficher un disque sur cette MV" -msgstr[1] "Afficher des disques sur cette MV" +msgid "Provider no longer exists, this alert must be reconfigured" +msgstr "Le fournisseur n'existe plus, cette alerte doit être reconfigurée" -#: ../app/helpers/vm_helper/textual_summary.rb:589 -msgid "Disks Aligned" -msgstr "Disques alignés" +msgid "Provider stack is not ready to be updated, another operation is in progress." +msgstr "La pile de fournisseurs n'est pas prête à être mise à jour, une autre opération est en cours." -#: ../app/helpers/vm_helper/textual_summary.rb:593 -msgid "Thin Provisioning Used" -msgstr "Mise en service de base utilisée" +msgid "Provider to provision on" +msgstr "Fournisseur pour la mise en service" -#: ../app/helpers/vm_helper/textual_summary.rb:597 -#: ../app/views/vm_common/_reconfigure.html.haml:176 -msgid "Disks" -msgstr "Disques" +msgid "Provider: " +msgstr "Fournisseur : " -#: ../app/helpers/vm_helper/textual_summary.rb:614 -msgid "Total Allocation" -msgstr "Allocation totale" +msgid "Providers" +msgstr "Fournisseurs" -#: ../app/helpers/vm_helper/textual_summary.rb:635 -msgid "Total Datastore Used Space" -msgstr "Espace total utilisé du magasin de données" +msgid "Providers (Click to open)" +msgstr "" -#: ../app/helpers/vm_helper/textual_summary.rb:643 -msgid "Unused/Overcommited Allocation" -msgstr "Allocation inutilisée/surengagée" +msgid "Provision" +msgstr "Mettre en service" -#: ../app/helpers/vm_helper/textual_summary.rb:650 -msgid "(%{value}) * Overallocated" -msgstr "(%{value}) * Sur-alloué" +msgid "Provision %{type} Request was cancelled by the user" +msgstr "La demande de %{type} de mise en service a été annulée par l'utilisateur" -#: ../app/helpers/vm_helper/textual_summary.rb:675 -msgid "Show Event Logs on this VM" -msgstr "Afficher les journaux d'événements de cette MV" +msgid "Provision %{vms_or_templates}" +msgstr "Mettre en service %{vms_or_templates}" -#: ../app/helpers/vm_helper/textual_summary.rb:789 -#: ../app/helpers/vm_helper/textual_summary.rb:798 -#: ../app/helpers/vm_helper/textual_summary.rb:808 -#: ../app/helpers/vm_helper/textual_summary.rb:819 -#: ../app/views/vm_common/_right_size.html.haml:30 -msgid "Average" -msgstr "Moyenne" +msgid "Provision %{what} based on the selected %{type}" +msgstr "Mettre en service %{what} d'après %{type} sélectionné(e)" -#: ../app/helpers/vm_helper/textual_summary.rb:797 -#: ../app/views/vm_common/_right_size.html.haml:79 -msgid "CPU Usage" -msgstr "Utilisation du processeur" +msgid "Provision Configured System" +msgstr "Mettre en service le système configuré" -#: ../app/helpers/vm_helper/textual_summary.rb:818 -#: ../app/views/ops/_selected_by_roles.html.haml:137 -#: ../app/views/ops/_selected_by_servers.html.haml:89 -#: ../app/views/ops/_server_desc.html.haml:53 -#: ../app/views/vm_common/_right_size.html.haml:149 -msgid "Memory Usage" -msgstr "Utilisation de la mémoire" +msgid "Provision Configured Systems" +msgstr "Mettre en service les systèmes configurés" -#: ../app/helpers/vm_helper/textual_summary.rb:833 -msgid "Show VMs devices" -msgstr "Afficher des périphériques MV" +msgid "Provision Instances" +msgstr "Mettre en service les instances" -#: ../app/presenters/menu/default_menu.rb:5 -#: ../app/views/chargeback/_assignments_list.html.haml:16 -msgid "Compute" -msgstr "Calcul" +msgid "Provision Instances - Select an Image" +msgstr "" -#: ../app/presenters/menu/default_menu.rb:14 -msgid "Management" -msgstr "Gestion" +msgid "Provision Instances using selected Image" +msgstr "Mettre en service les instances en utilisant l'image sélectionnée" -#: ../app/presenters/menu/default_menu.rb:15 -msgid "Jobs" -msgstr "Tâches" +msgid "Provision Instances using this Image" +msgstr "Mettre en service les instances à partir de cette image" -#: ../app/presenters/menu/default_menu.rb:20 -msgid "Cloud Intel" -msgstr "Cloud Intel" +msgid "Provision Order" +msgstr "Ordre de mise en service" -#: ../app/presenters/menu/default_menu.rb:21 -#: ../app/presenters/menu/default_menu.rb:33 -msgid "Dashboard" -msgstr "Tableau de bord" +msgid "Provision Type" +msgstr "Type de mise en service" -#: ../app/presenters/menu/default_menu.rb:32 -msgid "Consumption" -msgstr "Consommation" +msgid "Provision VMs" +msgstr "Mettre en service les MV" -#: ../app/presenters/menu/default_menu.rb:41 -msgid "Workloads" -msgstr "Charges de travail" +msgid "Provision VMs using selected Template" +msgstr "Mettre en service les MV à l'aide du modèle sélectionné" -#: ../app/presenters/menu/default_menu.rb:47 -#: ../app/views/configuration/_ui_2.html.haml:172 -msgid "Clouds" -msgstr "Clouds" +msgid "Provision VMs using this Template" +msgstr "Mettre en service les MV à l'aide de ce modèle" -#: ../app/presenters/menu/default_menu.rb:64 -#: ../app/views/configuration/_ui_2.html.haml:207 -#: ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:49 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:115 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:250 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:358 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:434 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:69 -msgid "Infrastructure" -msgstr "Infrastructure" +msgid "Provision Virtual Machines - Select a Template" +msgstr "" -#: ../app/presenters/menu/default_menu.rb:71 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:41 -#: ../app/views/shared/views/_prov_dialog.html.haml:47 -msgid "PXE" -msgstr "PXE" +msgid "Provision items" +msgstr "Mettre en service les éléments" -#: ../app/presenters/menu/default_menu.rb:96 -#: ../app/views/ems_container/_main.html.haml:27 -#: ../app/views/ems_middleware/_main.html.haml:18 -#: ../app/views/shared/views/ems_common/_main.html.haml:19 -msgid "Overview" -msgstr "Aperçu" +msgid "Provision this item" +msgstr "Mettre en service cet élément" -#: ../app/presenters/menu/default_menu.rb:116 -msgid "Datawarehouse" -msgstr "" +msgid "Provisioned Hosts" +msgstr "Hôtes mis en services" -#: ../app/presenters/menu/default_menu.rb:124 -#: ../app/views/configuration/_ui_2.html.haml:143 -msgid "Middleware" -msgstr "Middleware" +msgid "Provisioned On" +msgstr "Mis en service le" -#: ../app/presenters/menu/default_menu.rb:127 -#: ../app/views/middleware_topology/show.html.haml:32 -#: ../app/views/ops/_all_tabs.html.haml:138 -#: ../app/views/ops/_all_tabs.html.haml:232 -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:100 -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:163 -#: ../app/views/ops/_settings_server_tab.html.haml:338 -#: ../app/views/ops/_zone_form.html.haml:87 -#: ../app/views/vm_common/_evm_relationship.html.haml:8 -msgid "Servers" -msgstr "Serveurs" +msgid "Provisioned Size" +msgstr "Taille allouée " -#: ../app/presenters/menu/default_menu.rb:130 -msgid "Messagings" -msgstr "Messageries" +msgid "Provisioned VMs" +msgstr "MV mises en service" -#: ../app/presenters/menu/default_menu.rb:159 -msgid "Block Storage" -msgstr "" +msgid "Provisioned VMs [%{description}]" +msgstr "MV mises en service [%{description}]" -#: ../app/presenters/menu/default_menu.rb:161 -#: ../app/presenters/menu/default_menu.rb:186 -msgid "Managers" -msgstr "" +msgid "Provisioning" +msgstr "Mise en service" -#: ../app/presenters/menu/default_menu.rb:176 -msgid "Volume Backups" -msgstr "" +msgid "Provisioning Dialogs" +msgstr "Boîtes de dialogue de mise en service" -#: ../app/presenters/menu/default_menu.rb:184 -msgid "Object Storage" -msgstr "" +msgid "Provisioning Entry Point" +msgstr "Point d'entrée de mise en service" -#: ../app/presenters/menu/default_menu.rb:191 -msgid "Object Store Containers" -msgstr "" +msgid "Provisioning Entry Point (NameSpace/Class/Instance)" +msgstr "Point d'entrée de mise en service (Espace de nommage/Classe/Instance)" -#: ../app/presenters/menu/default_menu.rb:196 -msgid "Object Store Objects" +msgid "Provisioning Entry Point is required" +msgstr "Le point d'entrée de mise en service est obligatoire" + +msgid "Provisioning Info" msgstr "" -#: ../app/presenters/menu/default_menu.rb:204 -msgid "NetApp" -msgstr "NetApp" +msgid "Provisioning State" +msgstr "État du mise en service" -#: ../app/presenters/menu/default_menu.rb:214 -msgid "Control" -msgstr "Contrôle" +msgid "Provisioning is not supported for at least one of the selected systems" +msgstr "Le mise en service n'est pas pris en charge pour au moins un des systèmes sélectionnés" -#: ../app/presenters/menu/default_menu.rb:228 -msgid "Automate" -msgstr "Automate" +msgid "Public Host Name" +msgstr "Nom d'hôte public" -#: ../app/presenters/menu/default_menu.rb:231 -msgid "Customization" -msgstr "Personnalisation" +msgid "Public Key (optional)" +msgstr "Clé publique (optionnelle)" -#: ../app/presenters/menu/default_menu.rb:240 -msgid "Optimize" -msgstr "Optimiser" +msgid "Publish %{vm_or_template}" +msgstr "Publier %{vm_or_template}" -#: ../app/presenters/menu/default_menu.rb:242 -msgid "Planning" -msgstr "Planning" +msgid "Publish selected VM to a Template" +msgstr "Publier la MV sélectionnée dans un modèle" -#: ../app/presenters/menu/default_menu.rb:249 -msgid "My Settings" -msgstr "Mes paramètres" +msgid "Publish this VM to a Template" +msgstr "Publier cette MV dans un modèle" -#: ../app/presenters/tree_builder_action.rb:10 -msgid "All Actions" -msgstr "Toutes les Actions" +msgid "Puppet Realm" +msgstr "Royaume Puppet" -#: ../app/presenters/tree_builder_ae_customization.rb:14 -msgid "Service Dialog Import/Export" -msgstr "Importation/Exportation de boîtes de dialogue de service" +msgid "Purple Background" +msgstr "Fond violet" -#: ../app/presenters/tree_builder_alert.rb:10 -msgid "All Alerts" -msgstr "Toutes les Alertes" +msgid "Purple Text" +msgstr "Texte violet" -#: ../app/presenters/tree_builder_alert_profile.rb:21 -msgid "All Alert Profiles" -msgstr "Tous les Profils d''Alerte" +msgid "Put this item into Maintenance Mode" +msgstr "Mettre cet élément en mode de maintenance" -#: ../app/presenters/tree_builder_alert_profile.rb:31 -msgid "%{model} Alert Profiles" -msgstr "Profils d'alerte %{model}" +msgid "Put this item into Maintenance Mode?" +msgstr "Mettre cet élément en mode de maintenance ?" -#: ../app/presenters/tree_builder_archived.rb:17 -msgid "" -msgstr "" +msgid "Quantity" +msgstr "Nombre" -#: ../app/presenters/tree_builder_archived.rb:17 -msgid "Archived %{model}" -msgstr "" +msgid "Question Description" +msgstr "Description de la question" -#: ../app/presenters/tree_builder_archived.rb:18 -msgid "" -msgstr "" +msgid "Question Name" +msgstr "Nom de la question" -#: ../app/presenters/tree_builder_archived.rb:18 -msgid "Orphaned %{model}" -msgstr "" +msgid "Questions" +msgstr "Questions" -#: ../app/presenters/tree_builder_buttons.rb:11 -#: ../app/views/shared/buttons/_ab_list.html.haml:11 -msgid "Object Types" -msgstr "Types d'objet" +msgid "Queue" +msgstr "File d'attente" -#: ../app/presenters/tree_builder_catalog_items.rb:17 -msgid "All Catalog Items" -msgstr "Tous les Éléments du Catalogue" +msgid "Queue this Report to be generated" +msgstr "Mettre ce rapport en file d'attente de production" -#: ../app/presenters/tree_builder_catalogs.rb:14 -msgid "All Catalogs" -msgstr "Tous les Catalogues" +msgid "Queue up selected Schedules to run now" +msgstr "Mettre les plannings sélectionnés en file d'attente pour exécution immédiate" -#: ../app/presenters/tree_builder_chargeback_reports.rb:14 -msgid "Saved Chargeback Reports" -msgstr "Rapports de rétrofacturation enregistrés" +msgid "Queue up this Schedule to run now" +msgstr "Mettre ce planning en file d'attente pour exécution immédiate" -#: ../app/presenters/tree_builder_clusters.rb:55 -#: ../app/presenters/tree_builder_clusters.rb:57 -msgid "Non-clustered Hosts" -msgstr "Hôtes non mis en cluster" +msgid "Queued" +msgstr "En file d'attente" -#: ../app/presenters/tree_builder_compliance_history.rb:39 -msgid "No Compliance Policies Found" -msgstr "Aucune stratégie de conformité trouvée" +msgid "Quotas" +msgstr "Quotas" -#: ../app/presenters/tree_builder_compliance_history.rb:55 -#: ../app/presenters/tree_builder_policy_simulation.rb:99 -msgid "Condition: " -msgstr "Condition : " +msgid "Quotas for %{model} \"%{name}\" were saved" +msgstr "Les quotas pour %{model} \"%{name}\" ont été enregistrés" -#: ../app/presenters/tree_builder_condition.rb:15 -msgid "All Conditions" -msgstr "Toutes les Conditions" +msgid "RHN Login" +msgstr "Identifiant RHN" -#: ../app/presenters/tree_builder_condition.rb:20 -msgid "Host Conditions" -msgstr "Conditions de l'hôte" +msgid "RHN Password" +msgstr "Mot de passe RHN" -#: ../app/presenters/tree_builder_condition.rb:21 -msgid "VM and Instance Conditions" -msgstr "Conditions de MV et d'instance" +msgid "RHN Satellite URL" +msgstr "URL RHN Satellite" -#: ../app/presenters/tree_builder_condition.rb:22 -msgid "Replicator Conditions" -msgstr "Conditions du réplicateur" +msgid "RHN Satellite URL:" +msgstr "URL RHN Satellite :" -#: ../app/presenters/tree_builder_condition.rb:23 -msgid "Pod Conditions" -msgstr "Conditions du pod" +msgid "RSA key pair" +msgstr "Paire de clés RSA" -#: ../app/presenters/tree_builder_condition.rb:24 -msgid "Container Node Conditions" -msgstr "Conditions du nœud de conteneur" +msgid "RSS" +msgstr "RSS" -#: ../app/presenters/tree_builder_condition.rb:25 -msgid "Container Image Conditions" -msgstr "Conditions de l'image du conteneur" +msgid "RSS Feed" +msgstr "Flux RSS" -#: ../app/presenters/tree_builder_condition.rb:26 -msgid "Container Provider Conditions" -msgstr "" +msgid "RSS Feed Options" +msgstr "Options de flux RSS" -#: ../app/presenters/tree_builder_configuration_manager.rb:19 -msgid "All Configuration Manager Providers" -msgstr "Tous les fournisseurs de gestionnaires de configuration" +msgid "RSS Feed no longer exists" +msgstr "Le flux RSS n'existe plus" -#: ../app/presenters/tree_builder_configuration_manager.rb:27 -#: ../app/presenters/tree_builder_configuration_manager.rb:29 -msgid "%{name} Providers" -msgstr "Fournisseurs %{name}" +msgid "RSS Feeds" +msgstr "Flux RSS" -#: ../app/presenters/tree_builder_configuration_manager.rb:33 -#: ../app/presenters/tree_builder_configuration_manager.rb:35 -msgid "Ansible Tower Providers" -msgstr "Fournisseurs Ansible Tower" +msgid "Rados Ceph Monitors" +msgstr "Moniteurs Ceph Rados" -#: -#: ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:23 -#: ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:25 -msgid "%{name} Configured Systems" -msgstr "Systèmes configurés %{name}" +msgid "Rados Image Name" +msgstr "Nom d'image Rados" -#: -#: ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:28 -#: ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:30 -msgid "Ansible Tower Configured Systems" -msgstr "Systèmes configurés pour Ansible Tower" +msgid "Rados Keyring" +msgstr "Clés d'authentification Rados" -#: -#: ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:35 -#: ../app/presenters/tree_builder_containers_filter.rb:26 -#: ../app/presenters/tree_builder_storage.rb:20 -#: ../app/presenters/tree_builder_vms_filter.rb:21 -msgid "Global Shared Filters" -msgstr "Filtrer partagés globaux" +msgid "Rados Pool Name" +msgstr "Nom de pool Rados" -#: -#: ../app/presenters/tree_builder_configuration_manager_configured_systems.rb:40 -#: ../app/presenters/tree_builder_storage.rb:21 -#: ../app/presenters/tree_builder_vms_filter.rb:22 -msgid "My Personal Filters" -msgstr "Mes Filtres Personnels" +msgid "Rados User Name" +msgstr "Nom d'utilisateur Rados" -#: ../app/presenters/tree_builder_containers.rb:19 -msgid "All Containers (by Pods)" -msgstr "Tous les conteneurs (par pods)" +msgid "Range" +msgstr "Plage" -#: ../app/presenters/tree_builder_containers_filter.rb:17 -msgid "All Containers" -msgstr "Tous les Conteneurs" +msgid "Rank" +msgstr "Rang" -#: ../app/presenters/tree_builder_datacenter.rb:38 -msgid "Resource Pool: %{name}" -msgstr "Pool de ressources : %{name}" +msgid "Rate" +msgstr "Vitesse" -#: ../app/presenters/tree_builder_event.rb:10 -msgid "All Events" -msgstr "Tous les Evénements" +msgid "Rate (in %{currency})" +msgstr "" -#: ../app/presenters/tree_builder_images.rb:23 -msgid "All Images by Provider that I can see" -msgstr "Toutes les Images que je peux voir par Fournisseur" +msgid "Rate Assignments saved" +msgstr "Affectations de vitesse enregistrées" -#: ../app/presenters/tree_builder_images_filter.rb:16 -msgid "All Images" -msgstr "Toutes les Images" +msgid "Rate Details" +msgstr "Détails de la vitesse" -#: ../app/presenters/tree_builder_images_filter.rb:16 -msgid "All of the Images that I can see" -msgstr "Toutes les Images que je peux consulter" +msgid "Rates" +msgstr "Vitesses" -#: ../app/presenters/tree_builder_infra_networking.rb:23 -msgid "All Distributed Switches" -msgstr "Tous les commutateurs distribués" +msgid "Re-apply the previous change" +msgstr "Réappliquer la modification précédente" -#: ../app/presenters/tree_builder_instances.rb:25 -msgid "All Instances by Provider that I can see" -msgstr "Toutes les instances que je peux voir par Fournisseur" +msgid "Re-check Authentication Status" +msgstr "Revérifier le statut d'authentification" -#: ../app/presenters/tree_builder_instances_filter.rb:16 -msgid "All Instances" -msgstr "Toutes les instances" +msgid "Re-check Authentication Status for the selected Cloud Providers" +msgstr "Revérifier le statut d'authentification pour les fournisseurs de cloud sélectionnés" -#: ../app/presenters/tree_builder_instances_filter.rb:16 -msgid "All of the Instances that I can see" -msgstr "Toutes les Instances que je peux voir" +msgid "Re-check Authentication Status for the selected Containers Providers " +msgstr "Revérifier le statut d'authentification pour les fournisseurs de conteneurs sélectionnés " -#: ../app/presenters/tree_builder_iso_datastores.rb:16 -msgid "All ISO Datastores" -msgstr "Tous les magasins de données ISO" +msgid "Re-check Authentication Status for the selected Datawarehouse Providers" +msgstr "" -#: ../app/presenters/tree_builder_iso_datastores.rb:35 -#: ../app/presenters/tree_builder_iso_datastores.rb:37 -#: ../app/views/pxe/_iso_datastore_details.html.haml:16 -msgid "ISO Images" -msgstr "Images ISO" +msgid "Re-check Authentication Status for the selected Infrastructure Providers" +msgstr "Revérifier le statut d'authentification pour les fournisseurs d'infrastructure sélectionnés" -#: ../app/presenters/tree_builder_ops_diagnostics.rb:18 -#: ../app/presenters/tree_builder_ops_rbac.rb:21 -#: ../app/presenters/tree_builder_ops_settings.rb:18 -#: ../app/presenters/tree_builder_utilization.rb:26 -msgid "%{product} Region: %{region_description} [%{region}]" -msgstr "Région %{product} : %{region_description} [%{region}]" +msgid "Re-check Authentication Status for the selected Middleware Providers" +msgstr "Revérifier le statut d'authentification pour les fournisseurs de middleware sélectionnés" -#: ../app/presenters/tree_builder_ops_settings.rb:27 -#: ../app/views/miq_policy/_action_options.html.haml:507 -#: ../app/views/miq_policy/_action_options.html.haml:516 -#: ../app/views/ops/_settings_details_tab.html.haml:71 -msgid "Analysis Profiles" -msgstr "Profils d''Analyse" +msgid "Re-check Authentication Status for the selected Physical Infrastructure Providers" +msgstr "" -#: ../app/presenters/tree_builder_ops_settings.rb:28 -#: ../app/views/ops/_settings_details_tab.html.haml:86 -msgid "Zones" -msgstr "Zones" +msgid "Re-check Authentication Status for this Cloud Provider" +msgstr "Revérifier le statut d'authentification pour ce fournisseur de cloud" -#: ../app/presenters/tree_builder_ops_vmdb.rb:19 -msgid "VMDB" -msgstr "VMDB" +msgid "Re-check Authentication Status for this Containers Provider" +msgstr "Revérifier le statut d'authentification pour ce fournisseur de conteneurs" -#: ../app/presenters/tree_builder_ops_vmdb.rb:52 -#: ../app/presenters/tree_builder_ops_vmdb.rb:54 -#: ../app/views/ops/_all_tabs.html.haml:285 -#: ../app/views/ops/_db_info.html.haml:200 -msgid "Indexes" -msgstr "Index" +msgid "Re-check Authentication Status for this Datawarehouse Provider" +msgstr "" -#: ../app/presenters/tree_builder_orchestration_templates.rb:15 -msgid "All Orchestration Templates" -msgstr "Tous les Modèles d''Orchestration" +msgid "Re-check Authentication Status for this Infrastructure Provider" +msgstr "Revérifier le statut d'authentification pour ce fournisseur d'infrastructure" -#: ../app/presenters/tree_builder_orchestration_templates.rb:22 -#: ../app/presenters/tree_builder_orchestration_templates.rb:24 -msgid "CloudFormation Templates" -msgstr "Modèles CloudFormation" +msgid "Re-check Authentication Status for this Middleware Provider" +msgstr "" -#: ../app/presenters/tree_builder_orchestration_templates.rb:27 -#: ../app/presenters/tree_builder_orchestration_templates.rb:29 -msgid "Heat Templates" -msgstr "Modèles Heat" +msgid "Re-check Authentication Status for this Physical Infrastructure Provider" +msgstr "" -#: ../app/presenters/tree_builder_orchestration_templates.rb:32 -#: ../app/presenters/tree_builder_orchestration_templates.rb:34 -msgid "Azure Templates" -msgstr "Modèles Azure" +msgid "Re-checking Authentication status for the selected %{controller_name} %{name} was not successful: %{details}" +msgstr "Échec de la revérification du statut d'authentification pour le %{controller_name} %{name} : %{details}" -#: ../app/presenters/tree_builder_orchestration_templates.rb:37 -#: ../app/presenters/tree_builder_orchestration_templates.rb:39 -msgid "VNF Templates" -msgstr "Modèles VNF" +msgid "Re-checking Authentication status for this %{controller_name} was not successful: %{details}" +msgstr "Échec de la revérification du statut d'authentification pour ce %{controller_name}: %{details}" -#: ../app/presenters/tree_builder_orchestration_templates.rb:42 -#: ../app/presenters/tree_builder_orchestration_templates.rb:44 -msgid "vApp Templates" -msgstr "Modèles vApp" +msgid "Read Only" +msgstr "Lecture seule" -#: ../app/presenters/tree_builder_policy.rb:18 -#: ../app/views/miq_policy/_policy_folders.html.haml:2 -msgid "Host Compliance Policies" -msgstr "Stratégies de conformité de l'hôte" +msgid "Read Only %{model} \"%{name}\" can not be edited" +msgstr "Impossible de modifier le %{model} \"%{name}\" en lecture seule" -#: ../app/presenters/tree_builder_policy.rb:19 -#: ../app/views/miq_policy/_policy_folders.html.haml:2 -msgid "Vm Compliance Policies" -msgstr "Stratégies de conformité de MV" +msgid "Read Only %{model} \"%{name}\" cannot be deleted" +msgstr "Impossible de supprimer le %{model} \"%{name}\" en lecture seule" -#: ../app/presenters/tree_builder_policy.rb:20 -#: ../app/views/miq_policy/_policy_folders.html.haml:2 -msgid "Replicator Compliance Policies" -msgstr "Stratégies de conformité des réplicateurs" +msgid "Read Only %{model} \"%{name}\" cannot be edited" +msgstr "Impossible de modifier le %{model} \"%{name}\" en lecture seule" -#: ../app/presenters/tree_builder_policy.rb:21 -#: ../app/views/miq_policy/_policy_folders.html.haml:2 -msgid "Pod Compliance Policies" -msgstr "Stratégies de conformité de pod" +msgid "Read Only Domain cannot be deleted." +msgstr "Impossible de supprimer le domaine en lecture seule." -#: ../app/presenters/tree_builder_policy.rb:22 -#: ../app/views/miq_policy/_policy_folders.html.haml:2 -msgid "Container Node Compliance Policies" -msgstr "Stratégies de conformité du nœud de conteneur" +msgid "Read Only Domain cannot be edited" +msgstr "Impossible de supprimer le domaine en lecture seule" -#: ../app/presenters/tree_builder_policy.rb:23 -#: ../app/views/miq_policy/_policy_folders.html.haml:2 -msgid "Container Image Compliance Policies" -msgstr "Stratégies de conformité de l'image du conteneur" +msgid "Read only" +msgstr "Lecture seule" -#: ../app/presenters/tree_builder_policy.rb:24 -#: ../app/views/miq_policy/_policy_folders.html.haml:2 -msgid "Provider Compliance Policies" -msgstr "" +msgid "Read-Only" +msgstr "Lecture seule" -#: ../app/presenters/tree_builder_policy.rb:25 -#: ../app/views/miq_policy/_policy_folders.html.haml:2 -msgid "Host Control Policies" -msgstr "Stratégies de contrôle de l'hôte" +msgid "Realm" +msgstr "Royaume" -#: ../app/presenters/tree_builder_policy.rb:26 -#: ../app/views/miq_policy/_policy_folders.html.haml:2 -msgid "Vm Control Policies" -msgstr "Stratégies de contrôle de MV" +msgid "Realm is required" +msgstr "Le royaume est obligatoire" -#: ../app/presenters/tree_builder_policy.rb:27 -#: ../app/views/miq_policy/_policy_folders.html.haml:2 -msgid "Replicator Control Policies" -msgstr "Stratégies de contrôle des réplicateurs" +msgid "Reason" +msgstr "Motif" -#: ../app/presenters/tree_builder_policy.rb:28 -#: ../app/views/miq_policy/_policy_folders.html.haml:2 -msgid "Pod Control Policies" -msgstr "Stratégies de contrôle de pod" +msgid "Reason:" +msgstr "Motif :" -#: ../app/presenters/tree_builder_policy.rb:29 -#: ../app/views/miq_policy/_policy_folders.html.haml:2 -msgid "Container Node Control Policies" -msgstr "Stratégies de contrôle du nœud de conteneur" +msgid "Recent Hosts" +msgstr "Hôtes récents" -#: ../app/presenters/tree_builder_policy.rb:30 -#: ../app/views/miq_policy/_policy_folders.html.haml:2 -msgid "Container Image Control Policies" -msgstr "Stratégies de contrôle de l'image du conteneur" +msgid "Recent VMs" +msgstr "MV récentes" -#: ../app/presenters/tree_builder_policy.rb:31 -#: ../app/views/miq_policy/_policy_folders.html.haml:2 -msgid "Provider Control Policies" +msgid "Recent values" msgstr "" -#: ../app/presenters/tree_builder_policy.rb:50 -#: ../app/views/miq_policy/_policy_folders.html.haml:2 -msgid "Compliance Policies" -msgstr "Stratégie de Conformité" +msgid "Recommended" +msgstr "Recommandé" -#: ../app/presenters/tree_builder_policy.rb:51 -#: ../app/views/miq_policy/_policy_folders.html.haml:2 -msgid "Control Policies" -msgstr "Stratégies de contrôle" +msgid "Reconfigurable" +msgstr "Reconfigurable" -#: ../app/presenters/tree_builder_policy_profile.rb:20 -msgid "All Policy Profiles" -msgstr "Tous les Profiles de Stratégie" +msgid "Reconfigure" +msgstr "Reconfigurer" -#: ../app/presenters/tree_builder_policy_simulation.rb:47 -msgid "Policy Profile:" -msgstr "Profil de stratégie :" +msgid "Reconfigure %{vm_or_template}" +msgstr "Reconfigurer le/la %{vm_or_template}" -#: ../app/presenters/tree_builder_policy_simulation.rb:56 -msgid "Items out of scope" -msgstr "Éléments hors limites" +msgid "Reconfigure CPU" +msgstr "Reconfigurer le processeur" -#: ../app/presenters/tree_builder_policy_simulation.rb:78 -#: ../app/presenters/tree_builder_policy_simulation_results.rb:61 -msgid " (Inactive)" -msgstr " (Inactive)" +msgid "Reconfigure Entry Point" +msgstr "Point d'entrée de reconfiguration" -#: ../app/presenters/tree_builder_policy_simulation.rb:84 -msgid "Policy%{caption}: " -msgstr "Stratégie %{caption}: " +msgid "Reconfigure Entry Point (NameSpace/Class/Instance)" +msgstr "Point d'entrée de reconfiguration (Espace de nommage/Classe/Instance)" -#: ../app/presenters/tree_builder_policy_simulation.rb:114 -msgid "Scope: " -msgstr "Portée : " +msgid "Reconfigure Instance" +msgstr "Reconfigurer l'instance" -#: ../app/presenters/tree_builder_policy_simulation.rb:121 -msgid "Expression: " -msgstr "Expression : " +msgid "Reconfigure Instance '%{name}'" +msgstr "Reconfigurer l'instance '%{name}'" -#: ../app/presenters/tree_builder_policy_simulation_results.rb:25 -msgid "Policy Simulation Results for Event [%{description}]" -msgstr "Résultats de la simulation de stratégie pour l'événement [%{description}]" +msgid "Reconfigure Memory" +msgstr "Reconfigurer la mémoire" -#: ../app/presenters/tree_builder_provisioning_dialogs.rb:9 -#: ../app/presenters/tree_builder_service_dialogs.rb:12 -msgid "All Dialogs" -msgstr "Tous les Dialogues" +msgid "Reconfigure Selected items" +msgstr "Reconfigurer les éléments sélectionnés" -#: ../app/presenters/tree_builder_pxe_customization_templates.rb:14 -msgid "All %{template} - %{type}" -msgstr "Tous %{template} - %{type}" +msgid "Reconfigure Service \"%{name}\"" +msgstr "" -#: ../app/presenters/tree_builder_pxe_image_types.rb:14 -msgid "All System Image Types" -msgstr "Tous les types d'images système" +msgid "Reconfigure does not apply because you selected at least one %{model}" +msgstr "Reconfiguration impossible : vous avez sélectionné au moins un(e) %{model}" -#: ../app/presenters/tree_builder_pxe_servers.rb:37 -#: ../app/presenters/tree_builder_pxe_servers.rb:39 -#: ../app/views/pxe/_pxe_server_details.html.haml:51 -msgid "PXE Images" -msgstr "Images PXE" +msgid "Reconfigure does not apply because you selected at least one un-reconfigurable VM" +msgstr "Reconfiguration impossible : vous avez sélectionné au moins une MV non reconfigurable" -#: ../app/presenters/tree_builder_pxe_servers.rb:44 -#: ../app/presenters/tree_builder_pxe_servers.rb:46 -#: ../app/views/pxe/_pxe_server_details.html.haml:98 -msgid "Windows Images" -msgstr "Images Windows" +msgid "Reconfigure of %{model} \"%{name}\" was cancelled by the user" +msgstr "La reconfiguration du/de la %{model} \"%{name}\" a été annulée par l'utilisateur" -#: ../app/presenters/tree_builder_region.rb:37 -#: ../app/presenters/tree_builder_region.rb:42 -msgid "%{tables} (Click to open)" -msgstr "%{tables} (Cliquez pour ouvrir)" +msgid "Reconfigure selected Instance" +msgstr "Reconfigurer l'instance sélectionnée" -#: ../app/presenters/tree_builder_report_dashboards.rb:28 -msgid "All Groups" -msgstr "Tous les Groupes" +msgid "Reconfigure the Memory/CPU of this Image" +msgstr "Reconfigurer la mémoire/le processeur de cette image" -#: ../app/presenters/tree_builder_report_export.rb:25 -#: ../app/views/report/_export_custom_reports.html.haml:7 -msgid "Custom Reports" -msgstr "Rapports personnalisés" +msgid "Reconfigure the Memory/CPU of this VM" +msgstr "Reconfigurer la mémoire/le processeur de cette MV" -#: ../app/presenters/tree_builder_report_export.rb:28 -#: ../app/views/report/_export_widgets.html.haml:75 -#: ../app/views/report/_report_info.html.haml:228 -msgid "Widgets" -msgstr "Composants graphiques" +msgid "Reconfigure the Memory/CPUs of selected items" +msgstr "Reconfigurer la mémoire/les processeurs des éléments sélectionnés" -#: ../app/presenters/tree_builder_report_roles.rb:21 -msgid "My %{models}" -msgstr "Mes %{models}" +msgid "Reconfigure the options of this Service" +msgstr "Reconfigurer les options de ce service" -#: ../app/presenters/tree_builder_report_schedules.rb:17 -msgid "All Schedules" -msgstr "Tous les Plannings" +msgid "Reconfigure this Image" +msgstr "Reconfigurer cette image" -#: ../app/presenters/tree_builder_service_catalog.rb:17 -#: ../app/presenters/tree_builder_services.rb:19 -msgid "All Services" -msgstr "Tous les Services" +msgid "Reconfigure this Instance" +msgstr "Reconfigurer cette instance" -#: ../app/presenters/tree_builder_tags.rb:62 -msgid "Tag: %{description}" -msgstr "Balise : %{description}" +msgid "Reconfigure this Service" +msgstr "Reconfigurer ce service" -#: ../app/presenters/tree_builder_template_filter.rb:16 -msgid "All of the Templates that I can see" -msgstr "Tous les Modèles que je peux voir" +msgid "Reconfigure this VM" +msgstr "Reconfigurer cette MV" -#: ../app/presenters/tree_builder_templates_images_filter.rb:12 -msgid "All Templates & Images" -msgstr "Tous les Modèles & Images" +msgid "Reconfiguring %{instance} \"%{name}\" from %{old_flavor} to %{new_flavor}" +msgstr "Reconfiguration de %{instance} \"%{name}\" de %{old_flavor} vers %{new_flavor}" -#: ../app/presenters/tree_builder_templates_images_filter.rb:12 -msgid "All of the Templates & Images that I can see" -msgstr "Tous les Modèles & Images que je peux voir" +msgid "Reconfiguring %{vm_or_template} \"%{name}\"" +msgstr "Reconfiguration du/de la %{vm_or_template} \"%{name}\"" -#: ../app/presenters/tree_builder_utilization.rb:23 -msgid "Enterprise" -msgstr "Enterprise" +msgid "Record is not ExtManagementSystem class" +msgstr "La classe de l'enregistrement n'est pas ExtManagementSystem" -#: ../app/presenters/tree_builder_utilization.rb:48 -msgid "Cluster / Deployment Role (Click to open)" -msgstr "Cluster / Rôle de Déploiment (Cliquez pour ouvrir)" +msgid "Record is not VmOrTemplate class" +msgstr "La classe de l'enregistrement n'est pas VmOrTemplate" -#: ../app/presenters/tree_builder_vandt.rb:15 -msgid "All VMs & Templates that I can see" -msgstr "Toutes les MV & Modèles que je peux voir" +msgid "Records were successfully imported" +msgstr "Les enregistrements ont été importés" -#: ../app/presenters/tree_builder_vms_filter.rb:15 -msgid "All of the VMs that I can see" -msgstr "Toutes les MV que je peux voir" +msgid "Red" +msgstr "Rouge" -#: ../app/presenters/tree_builder_vms_instances_filter.rb:12 -msgid "All VMs & Instances" -msgstr "Toutes les MV & Instances" +msgid "Red Background" +msgstr "Fond rouge" -#: ../app/presenters/tree_builder_vms_instances_filter.rb:12 -msgid "All of the VMs & Instances that I can see" -msgstr "Toutes les MV & Instances que je peux voir" +msgid "Red Hat Software Updates" +msgstr "Mises à jours logicielles de Red Hat" -#: ../app/presenters/tree_node_builder.rb:56 -msgid "Availability Zone: %{name}" -msgstr "Zone de disponibilité : %{name}" +msgid "Red Hat Updates" +msgstr "Mises à jour de Red Hat" -#: ../app/presenters/tree_node_builder.rb:59 -msgid "Ansible Tower Job Template: %{name}" -msgstr "Modèle de tâche Ansible Tower : %{name}" +msgid "Red Hat Virtualization Manager" +msgstr "" -#: ../app/presenters/tree_node_builder.rb:73 -msgid "Compliance Check on: " -msgstr "Vérification de la conformité sur : " +msgid "Red Text" +msgstr "Texte rouge" -#: ../app/presenters/tree_node_builder.rb:76 -msgid "Policy: " -msgstr "Stratégie : " +msgid "Reference VM Profile" +msgstr "Profil MV de référence" -#: ../app/presenters/tree_node_builder.rb:80 -msgid "Configuration Profile: %{name}" -msgstr "Profil de configuration : %{name}" +msgid "Reference VM Selection" +msgstr "Sélection de MV de référence" -#: ../app/presenters/tree_node_builder.rb:83 -msgid "Configured System: %{hostname}" -msgstr "Système configuré : %{hostname}" +msgid "Referenced by Actions" +msgstr "Référencé par des actions" -#: ../app/presenters/tree_node_builder.rb:87 -msgid "Button: %{button_description}" -msgstr "Bouton : %{button_description}" +msgid "Refresh" +msgstr "Actualiser" -#: ../app/presenters/tree_node_builder.rb:107 -msgid "Port Group: %{name}" -msgstr "Groupe de ports : %{name}" +msgid "Refresh Inventory" +msgstr "Actualiser l'inventaire" -#: ../app/presenters/tree_node_builder.rb:108 -msgid "Domain: %{domain_name}" -msgstr "Domaine : %{domain_name}" +msgid "Refresh Inventory for all Storage CIs known to the selected Storage Managers" +msgstr "Actualiser l'inventaire pour toutes les CI de stockage connues des gestionnaires de stockage" -#: ../app/presenters/tree_node_builder.rb:110 -msgid "LDAP Domain: %{ldap_domain_name}" -msgstr "Domaine LDAP : %{ldap_domain_name}" +msgid "Refresh Inventory for all Storage CIs known to the selected Storage Managers?" +msgstr "Actualiser l'inventaire pour toutes les CI de stockage connues des gestionnaires de stockage ?" -#: ../app/presenters/tree_node_builder.rb:111 -msgid "Region: %{region_name}" -msgstr "Région : %{region_name}" +msgid "Refresh Inventory for all Storage CIs known to this Storage Manager" +msgstr "Actualiser l'inventaire pour toutes les CI de stockage connues de ce gestionnaire de stockage" -#: ../app/presenters/tree_node_builder.rb:113 -msgid "LDAP Region: %{ldap_region_name}" -msgstr "Région LDAP : %{ldap_region_name}" +msgid "Refresh Inventory for all Storage CIs known to this Storage Manager?" +msgstr "Actualiser l'inventaire pour toutes les CI de stockage connues de ce gestionnaire de stockage ?" -#: ../app/presenters/tree_node_builder.rb:124 -msgid "LUN: %{name}" -msgstr "LUN: %{name}" +msgid "Refresh Items and Relationships" +msgstr "Actualiser les éléments et les relations" -#: ../app/presenters/tree_node_builder.rb:150 -msgid "Switch: %{name}" -msgstr "Commutateur : %{name}" +msgid "Refresh Items and Relationships for all Containers Providers" +msgstr "Actualiser les éléments et les relations pour tous les fournisseurs de conteneurs" -#: ../app/presenters/tree_node_builder.rb:154 -msgid "Filter: %{filter_description}" -msgstr "Filtre : %{filter_description}" +msgid "Refresh Items and Relationships for these Datawarehouse Providers" +msgstr "" -#: ../app/presenters/tree_node_builder.rb:226 -msgid "Folder: %{folder_name}" -msgstr "Dossier : %{folder_name}" +msgid "Refresh Items and Relationships for these Middleware Providers" +msgstr "Actualiser les éléments et les relations pour ces fournisseurs de middleware" -#: ../app/presenters/tree_node_builder.rb:231 -msgid "Physical NIC: %{name}" -msgstr "Carte réseau physique : %{name}" +msgid "Refresh Items and Relationships related to Containers Providers?" +msgstr "Actualiser les éléments et les relations associées aux fournisseurs de conteneurs ?" -#: ../app/presenters/tree_node_builder.rb:235 -msgid "%{type} Storage Adapter: %{name}" -msgstr "%{type} Adapteur Stockage: %{name}" +msgid "Refresh Items and Relationships related to these Datawarehouse Providers?" +msgstr "" -#: ../app/presenters/tree_node_builder.rb:241 -msgid "Category: %{description}" -msgstr "Catégorie : %{description}" +msgid "Refresh Items and Relationships related to these Middleware Providers?" +msgstr "Actualiser les éléments et les relations associées à ces fournisseurs de middleware ?" -#: ../app/presenters/tree_node_builder.rb:349 -msgid "%{button_group_name} (Group)" -msgstr "%{button_group_name} (Groupe)" +msgid "Refresh List" +msgstr "Actualiser la liste" -#: ../app/presenters/tree_node_builder.rb:355 -msgid "Button Group: %{button_group_description}" -msgstr "Groupe de boutons : %{button_group_description}" +msgid "Refresh Provider" +msgstr "Actualiser le fournisseur" -#: ../app/presenters/tree_node_builder.rb:366 -msgid "Datacenter: %{datacenter_name}" -msgstr "Datacenter : %{datacenter_name}" +msgid "Refresh Relationships" +msgstr "Actualiser les relations" -#: ../app/presenters/tree_node_builder.rb:374 -msgid "SCSI Target %{target}" -msgstr "Cible SCSI %{target}" +msgid "Refresh Relationships and Power States" +msgstr "Actualiser les relations et les états d'alimentation" -#: ../app/presenters/tree_node_builder.rb:376 -msgid "SCSI Target %{target} (%{name})" -msgstr "Cible SCSI %{target} (%{name})" +msgid "Refresh Relationships and Power states" +msgstr "Actualiser les relations et les états d'alimentation" -#: ../app/presenters/tree_node_builder.rb:378 -msgid "Target: %{text}" -msgstr "Cible : %{text}" +msgid "Refresh Relationships for selected ISO Datastores" +msgstr "Actualiser les relations pour les magasins de données ISO sélectionnés" -#: ../app/presenters/tree_node_builder.rb:383 -msgid "%{server}: %{server_name} [%{server_id}] (current)" -msgstr "%{server} : %{server_name} [%{server_id}] (en cours)" +msgid "Refresh Relationships for selected ISO Datastores?" +msgstr "Actualiser les relations pour les magasins de données ISO sélectionnés ?" -#: ../app/presenters/tree_node_builder.rb:437 -msgid " (Active)" -msgstr " (Active)" +msgid "Refresh Relationships for selected PXE Servers" +msgstr "Actualiser les relations pour les serveurs PXE sélectionnés" -#: ../app/presenters/tree_node_builder.rb:442 -msgid "%{zone}: %{zone_description} (current)" -msgstr "%{zone} : %{zone_description} (en cours)" +msgid "Refresh Relationships for selected PXE Servers?" +msgstr "Actualiser les relations pour les serveurs PXE sélectionnés ?" -#: ../app/presenters/tree_node_builder.rb:507 -msgid "Generating Report" -msgstr "Génération du rapport" +msgid "Refresh Relationships for this ISO Datastore" +msgstr "Actualiser les relations pour ce magasin de données ISO" -#: ../app/presenters/tree_node_builder.rb:509 -msgid "Generating Report for - %{report_name}" -msgstr "Génération du rapport pour - %{report_name}" +msgid "Refresh Relationships for this ISO Datastore?" +msgstr "Actualiser les relations pour ce magasin de données ISO ?" -#: ../app/presenters/tree_node_builder.rb:513 -msgid "Error Generating Report" -msgstr "Erreur lors de la génération du rapport" +msgid "Refresh Relationships for this PXE Server" +msgstr "Actualiser les relations pour ce serveur PXE" -#: ../app/presenters/tree_node_builder.rb:514 -msgid "Error Generating Report for %{report_name}" -msgstr "Erreur lors de la génération du rapport pour %{report_name}" +msgid "Refresh Relationships for this PXE Server?" +msgstr "Actualiser les relations pour ce serveur PXE ?" -#: ../app/presenters/tree_node_builder.rb:532 -msgid "primary, " -msgstr "principal, " +msgid "Refresh Status" +msgstr "Actualiser le statut" -#: ../app/presenters/tree_node_builder.rb:534 -msgid "secondary, " -msgstr "secondaire, " +msgid "Refresh Status for all Storage CIs known to the selected Storage Managers" +msgstr "Actualiser le statut pour toutes les CI de stockage connues des gestionnaires de stockage" -#: ../app/presenters/tree_node_builder.rb:541 -msgid " (%{priority}active, PID=%{number})" -msgstr " (%{priority}actif, PID=%{number})" +msgid "Refresh Status for all Storage CIs known to the selected Storage Managers?" +msgstr "Actualiser le statut pour toutes les CI de stockage connues des gestionnaires de stockage ?" -#: ../app/presenters/tree_node_builder.rb:545 -msgid " (%{priority}available, PID=%{number})" -msgstr " (%{priority}disponible, PID=%{number})" +msgid "Refresh Status for all Storage CIs known to this Storage Manager" +msgstr "Actualiser le statut pour toutes les CI de stockage connues de ce gestionnaire de stockage" -#: ../app/presenters/tree_node_builder.rb:549 -msgid " (%{priority}unavailable)" -msgstr " (%{priority}indisponible)" +msgid "Refresh Status for all Storage CIs known to this Storage Manager?" +msgstr "Actualiser le statut pour toutes les CI de stockage connues de ce gestionnaire de stockage ?" -#: ../app/presenters/tree_node_builder.rb:571 -#: ../app/presenters/tree_node_builder.rb:575 -msgid "Role: %{description} (%{status})" -msgstr "Rôle : %{description} (%{status})" +msgid "Refresh initiated for %{count} %{model} from the %{product} Database" +msgid_plural "Refresh initiated for %{count} %{models} from the %{product} Database" +msgstr[0] "Actualisation lancée pour %{count} %{model} à partir de la base de données %{product}" +msgstr[1] "Actualisation lancée pour %{count} %{models} à partir de la base de données %{product}" -#: ../app/presenters/tree_node_builder_datacenter.rb:24 -msgid " (Click to view)" -msgstr " (Cliquez pour afficher)" +msgid "Refresh items and relationships" +msgstr "Actualiser les éléments et les relations" -#: ../app/presenters/tree_node_builder_datacenter.rb:37 -msgid "VM: %{name}" -msgstr "MV : %{name}" +msgid "Refresh items and relationships related to this Containers Provider" +msgstr "Actualiser les éléments et les relations associées à ce fournisseur de conteneurs" -#: ../app/presenters/widget_presenter.rb:25 -msgid "Open the chart and full report in a new window" -msgstr "Ouvrir le graphique et le rapport complet dans une nouvelle fenêtre" +msgid "Refresh items and relationships related to this Containers Provider?" +msgstr "Actualiser les éléments et les relations associées à ce fournisseur de conteneurs ?" -#: ../app/presenters/widget_presenter.rb:26 -msgid "" -"This will show the chart and the entire report (all rows) in your browser. Do " -"you want to proceed?" +msgid "Refresh items and relationships related to this Datawarehouse Provider" msgstr "" -"Cette action affichera le graphique et le rapport complet (toutes les lignes) " -"dans votre navigateur. Voulez-vous continuer ?" -#: ../app/presenters/widget_presenter.rb:29 -msgid "Open the full report in a new window" -msgstr "Ouvrir le rapport complet dans une nouvelle fenêtre" - -#: ../app/presenters/widget_presenter.rb:30 -msgid "" -"This will show the entire report (all rows) in your browser. Do you want to pr" -"oceed?" +msgid "Refresh items and relationships related to this Datawarehouse Provider?" msgstr "" -"Cette action affichera le rapport complet (toutes les lignes) dans votre navig" -"ateur. Voulez-vous continuer ?" - -#: ../app/presenters/widget_presenter.rb:40 -msgid " Full Screen" -msgstr " Plein écran" - -#: ../app/presenters/widget_presenter.rb:52 -msgid " Remove Widget" -msgstr " Supprimer le composant d'interface" - -#: ../app/presenters/widget_presenter.rb:54 -msgid "Remove from Dashboard" -msgstr "Supprimer du tableau de bord" -#: ../app/presenters/widget_presenter.rb:57 -msgid "Are you sure you want to remove '%{title}'from the Dashboard?" -msgstr "Êtes-vous sûr de vouloir supprimer '%{title}' du Dashboard ?" +msgid "Refresh items and relationships related to this Middleware Provider" +msgstr "Actualiser les éléments et les relations associées à ce fournisseur de middleware" -#: ../app/presenters/widget_presenter.rb:65 -msgid " Maximize" -msgstr "Agrandir" +msgid "Refresh items and relationships related to this Middleware Provider?" +msgstr "Actualiser les éléments et les relations associées à ce fournisseur de middleware ?" -#: ../app/presenters/widget_presenter.rb:65 -msgid " Minimize" -msgstr "Réduire" +msgid "Refresh of recent C&U data has been initiated" +msgstr "L'actualisation des données C&U récentes a été lancée" -#: ../app/presenters/widget_presenter.rb:82 -msgid " Download PDF" -msgstr " Télécharger le PDF" +msgid "Refresh relationships and power states for all items related to the selected Block Storage Managers" +msgstr "" -#: ../app/presenters/widget_presenter.rb:85 -msgid "Download the full report (all rows) as a PDF file" +msgid "Refresh relationships and power states for all items related to the selected Block Storage Managers?" msgstr "" -"Télécharger l'intégralité du rapport (toutes les lignes) sous la forme d'un fi" -"chier PDF" -#: ../app/presenters/widget_presenter.rb:93 -msgid " Zoom in" -msgstr " Zoom avant" +msgid "Refresh relationships and power states for all items related to the selected Cloud Providers" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés aux fournisseurs de cloud sélectionnés" -#: ../app/presenters/widget_presenter.rb:96 -msgid "Zoom in on this chart" -msgstr "Zoomer sur ce graphique" +msgid "Refresh relationships and power states for all items related to the selected Cloud Providers?" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés aux fournisseurs de cloud sélectionnés ?" -#: ../app/services/git_based_domain_import_service.rb:97 -msgid "Selected branch or tag does not contain a valid domain" -msgstr "La branche ou la balise ne contient pas de domaine valide" +msgid "Refresh relationships and power states for all items related to the selected Infrastructure Providers" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés aux fournisseurs d'infrastructure sélectionnés" -#: ../app/services/user_validation_service.rb:42 -msgid "" -"Login not allowed, User's %{feature} is missing. Please contact the administra" -"tor" +msgid "Refresh relationships and power states for all items related to the selected Infrastructure Providers?" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés aux fournisseurs d'infrastructure sélectionnés ?" + +msgid "Refresh relationships and power states for all items related to the selected Network Providers" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés aux fournisseurs de réseau sélectionnés" + +msgid "Refresh relationships and power states for all items related to the selected Network Providers?" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés aux fournisseurs de réseau sélectionnés ?" + +msgid "Refresh relationships and power states for all items related to the selected Object Storage Managers" msgstr "" -"Connexion non autorisée, %{feature} de l'utilisateur manquant. Veuillez contac" -"ter l'administrateur" -#: ../app/services/user_validation_service.rb:56 -msgid "" -"The user's role is not authorized for any access, please contact the administr" -"ator!" +msgid "Refresh relationships and power states for all items related to the selected Object Storage Managers?" msgstr "" -"Le rôle de l'utilisateur n'a pas autorisation d'accès, veuillez contacter l'ad" -"ministrateur." -#: ../app/services/user_validation_service.rb:86 -msgid "" -"The %{product} Server is still starting, you have been redirected to the diagn" -"ostics page for problem determination" +msgid "Refresh relationships and power states for all items related to the selected Storage Managers" msgstr "" -"Le serveur %{product} est toujours en train de démarrer, vous avez été redirig" -"é vers la page de diagnostics pour déterminer le problème" -#: ../app/services/user_validation_service.rb:90 -msgid "" -"The %{product} Server is still starting. If this message persists, please cont" -"act your %{product} administrator." +msgid "Refresh relationships and power states for all items related to the selected Storage Managers?" msgstr "" -"Le serveur %{product} est toujours en train de démarrer. Si ce message persist" -"e, contactez votre administrateur %{product}." -#: ../app/services/user_validation_service.rb:105 -msgid "Sorry, the username or password you entered is incorrect." -msgstr "Le nom d'utilisateur ou le mot de passe introduits sont incorrects." +msgid "Refresh relationships and power states for all items related to the selected Templates" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés aux modèles sélectionnés" -#: ../app/services/user_validation_service.rb:133 -msgid "Error: Name is required" -msgstr " Erreur : le nom est obligatoire" +msgid "Refresh relationships and power states for all items related to the selected Templates?" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés aux modèles sélectionnés ?" -#: ../app/services/user_validation_service.rb:135 -msgid "Error: New password and verify password must be the same" -msgstr "" -"Erreur : le nouveau mot de passe et le mot de passe vérifiés doivent correspon" -"dre" +msgid "Refresh relationships and power states for all items related to the selected items" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés aux éléments sélectionnés" -#: ../app/services/user_validation_service.rb:138 -msgid "Error: New password can not be blank" -msgstr "Erreur : le nouveau nom ne peut rester vide." +msgid "Refresh relationships and power states for all items related to the selected items?" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés aux éléments sélectionnés ?" -#: ../app/services/user_validation_service.rb:141 -msgid "Error: New password is the same as existing password" -msgstr "Erreur : le nouveau mot de passe est le même que le mot de passe existant" +msgid "Refresh relationships and power states for all items related to this Cloud Provider" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés à ce fournisseur de cloud" -#: ../app/views/_ldap_domain_form.html.haml:10 -#: ../app/views/auth_key_pair_cloud/_form.html.haml:3 -#: ../app/views/catalog/_sandt_tree_show.html.haml:27 -#: ../app/views/catalog/_sandt_tree_show.html.haml:225 -#: ../app/views/cloud_tenant/new.html.haml:7 -#: ../app/views/cloud_volume/backup_new.html.haml:7 -#: ../app/views/cloud_volume/backup_select.html.haml:7 -#: ../app/views/cloud_volume/new.html.haml:7 -#: ../app/views/cloud_volume/snapshot_new.html.haml:7 -#: ../app/views/host_aggregate/new.html.haml:7 -#: ../app/views/miq_ae_customization/_dialog_info.html.haml:6 -#: ../app/views/miq_ae_customization/_old_dialogs_details.html.haml:11 -#: ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:8 -#: ../app/views/miq_capacity/_utilization_report.html.haml:10 -#: ../app/views/miq_policy/_action_details.html.haml:9 -#: ../app/views/miq_policy/_alert_profile_details.html.haml:15 -#: ../app/views/miq_policy/_condition_details.html.haml:12 -#: ../app/views/miq_policy/_event_details.html.haml:7 -#: ../app/views/miq_policy/_policy_details.html.haml:15 -#: ../app/views/miq_policy/_policy_details.html.haml:60 -#: ../app/views/miq_policy/_profile_details.html.haml:13 -#: ../app/views/network_router/new.html.haml:36 -#: ../app/views/ops/_ap_form.html.haml:11 -#: ../app/views/ops/_ldap_domain_form.html.haml:10 -#: ../app/views/ops/_ldap_domain_show.html.haml:7 -#: ../app/views/ops/_ldap_region_form.html.haml:10 -#: ../app/views/ops/_ldap_region_show.html.haml:9 -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:5 -#: ../app/views/ops/_settings_server_tab.html.haml:7 -#: ../app/views/pxe/_iso_datastore_details.html.haml:1 -#: ../app/views/pxe/_iso_datastore_form.html.haml:8 -#: ../app/views/pxe/_iso_img_form.html.haml:8 -#: ../app/views/pxe/_pxe_form.html.haml:8 -#: ../app/views/pxe/_pxe_image_type_details.html.haml:9 -#: ../app/views/pxe/_pxe_image_type_form.html.haml:8 -#: ../app/views/pxe/_pxe_img_form.html.haml:8 -#: ../app/views/pxe/_pxe_server_details.html.haml:11 -#: ../app/views/pxe/_pxe_server_details.html.haml:152 -#: ../app/views/pxe/_pxe_server_details.html.haml:165 -#: ../app/views/pxe/_pxe_wimg_form.html.haml:8 -#: ../app/views/pxe/_template_details.html.haml:11 -#: ../app/views/pxe/_template_form.html.haml:7 -#: ../app/views/report/_db_form.html.haml:9 -#: ../app/views/report/_db_show.html.haml:3 -#: ../app/views/report/_schedule_form.html.haml:8 -#: ../app/views/report/_widget_form.html.haml:8 -#: ../app/views/report/_widget_show.html.haml:4 -#: ../app/views/shared/buttons/_ab_list.html.haml:125 -#: ../app/views/shared/buttons/_ab_show.html.haml:6 -#: ../app/views/shared/views/ems_common/_form.html.haml:9 -#: ../app/views/storage_manager/_form.html.haml:14 -#: ../app/views/vm_common/_config.html.haml:42 -#: ../app/views/vm_common/_config.html.haml:112 -#: ../app/views/vm_common/_form.html.haml:9 -msgid "Basic Information" -msgstr "Informations de base" +msgid "Refresh relationships and power states for all items related to this Cloud Provider?" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés à ce fournisseur de cloud ?" -#: ../app/views/_ldap_domain_form.html.haml:33 -#: ../app/views/ops/_ldap_domain_form.html.haml:33 -#: ../app/views/ops/_ldap_domain_show.html.haml:33 -#: ../app/views/ops/_settings_authentication_tab.html.haml:72 -msgid "LDAP Settings" -msgstr "Paramètres LDAP" +msgid "Refresh relationships and power states for all items related to this Image" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés à cette image" -#: ../app/views/_ldap_domain_form.html.haml:39 -#: ../app/views/ops/_ldap_domain_form.html.haml:39 -#: ../app/views/ops/_ldap_domain_show.html.haml:42 -#: ../app/views/ops/_ldap_region_show.html.haml:75 -#: ../app/views/ops/_settings_authentication_tab.html.haml:130 -msgid "User Type" -msgstr "Type d'utilisateur" +msgid "Refresh relationships and power states for all items related to this Image?" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés à cette image ?" -#: ../app/views/_ldap_domain_form.html.haml:44 -#: ../app/views/ops/_ldap_domain_form.html.haml:44 -#: ../app/views/ops/_ldap_domain_show.html.haml:54 -msgid "Distinguished Name (CN=)" -msgstr "Nom unique (CN=)" +msgid "Refresh relationships and power states for all items related to this Infrastructure Provider" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés à ce fournisseur d'infrastructure" -#: ../app/views/_ldap_domain_form.html.haml:44 -#: ../app/views/ops/_ldap_domain_form.html.haml:44 -#: ../app/views/ops/_ldap_domain_show.html.haml:57 -msgid "Distinguished Name (UID=)" -msgstr "Nom unique (DN) (UID=)" +msgid "Refresh relationships and power states for all items related to this Infrastructure Provider?" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés à ce fournisseur d'infrastructure ?" -#: ../app/views/_ldap_domain_form.html.haml:44 -#: ../app/views/ops/_ldap_domain_form.html.haml:44 -#: ../app/views/ops/_ldap_domain_show.html.haml:51 -#: ../app/views/ops/_rbac_user_details.html.haml:133 -msgid "E-mail Address" -msgstr "Adresse email" +msgid "Refresh relationships and power states for all items related to this Instance" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés à cette instance" -#: ../app/views/_ldap_domain_form.html.haml:44 -#: ../app/views/ops/_ldap_domain_form.html.haml:44 -#: ../app/views/ops/_ldap_domain_show.html.haml:61 -msgid "User Principal Name" -msgstr "Nom principal de l'utilisateur" +msgid "Refresh relationships and power states for all items related to this Instance?" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés à cette instance ?" -#: ../app/views/_ldap_domain_form.html.haml:63 -#: ../app/views/ops/_ldap_domain_form.html.haml:63 -#: ../app/views/ops/_ldap_domain_show.html.haml:70 -#: ../app/views/ops/_settings_authentication_tab.html.haml:174 -msgid "User Suffix:" -msgstr "Suffixe d'utilisateur :" +msgid "Refresh relationships and power states for all items related to this Network Provider" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés à ce fournisseur de réseau" -#: ../app/views/_ldap_domain_form.html.haml:99 -#: ../app/views/ops/_ldap_domain_form.html.haml:99 -#: ../app/views/ops/_ldap_domain_show.html.haml:136 -#: ../app/views/ops/_settings_authentication_tab.html.haml:256 -#: ../app/views/ops/_settings_authentication_tab.html.haml:403 -#: ../app/views/ops/_settings_authentication_tab.html.haml:492 -msgid "Role Settings" -msgstr "Paramètres de rôle" +msgid "Refresh relationships and power states for all items related to this Network Provider?" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés à ce fournisseur de réseau ?" -#: ../app/views/_ldap_domain_form.html.haml:105 -#: ../app/views/ops/_ldap_domain_form.html.haml:105 -#: ../app/views/ops/_ldap_domain_show.html.haml:145 -#: ../app/views/ops/_settings_authentication_tab.html.haml:265 -msgid "Get User Groups from LDAP" -msgstr "Obtenir des groupes d'utilisateurs de LDAP" +msgid "Refresh relationships and power states for all items related to this Storage Manager" +msgstr "" -#: ../app/views/_ldap_domain_form.html.haml:120 -#: ../app/views/ops/_ldap_domain_form.html.haml:120 -#: ../app/views/ops/_ldap_domain_show.html.haml:161 -#: ../app/views/ops/_settings_authentication_tab.html.haml:309 -msgid "Get Roles from Home Forest" -msgstr "Obtenir des rôles de l'accueil de la forêt" +msgid "Refresh relationships and power states for all items related to this Storage Manager?" +msgstr "" -#: ../app/views/_ldap_domain_form.html.haml:135 -#: ../app/views/ops/_ldap_domain_form.html.haml:135 -#: ../app/views/ops/_ldap_domain_show.html.haml:177 -#: ../app/views/ops/_settings_authentication_tab.html.haml:324 -msgid "Follow Referrals" -msgstr "Suivre les références" +msgid "Refresh relationships and power states for all items related to this Template" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés à ce modèle" -#: ../app/views/_ldap_domain_form.html.haml:150 -#: ../app/views/ops/_ldap_domain_form.html.haml:150 -#: ../app/views/ops/_ldap_domain_show.html.haml:193 -#: ../app/views/ops/_ldap_forest_entries.html.haml:24 -#: ../app/views/ops/_ldap_region_show.html.haml:73 -#: ../app/views/ops/_settings_authentication_tab.html.haml:339 -msgid "Base DN" -msgstr "DN de base" +msgid "Refresh relationships and power states for all items related to this Template?" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés à ce modèle ?" -#: ../app/views/_ldap_domain_form.html.haml:167 -#: ../app/views/ops/_ldap_domain_form.html.haml:167 -#: ../app/views/ops/_ldap_domain_show.html.haml:209 -#: ../app/views/ops/_ldap_forest_entries.html.haml:26 -#: ../app/views/ops/_settings_authentication_tab.html.haml:356 -msgid "Bind DN" -msgstr "DN de liaison" +msgid "Refresh relationships and power states for all items related to this VM" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés à cette MV" -#: ../app/views/_ldap_domain_form.html.haml:184 -#: ../app/views/ops/_ldap_domain_form.html.haml:184 -#: ../app/views/ops/_ldap_domain_show.html.haml:225 -#: ../app/views/ops/_ldap_forest_entries.html.haml:28 -#: ../app/views/ops/_settings_authentication_tab.html.haml:373 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:81 -msgid "Bind Password" -msgstr "Mot de passe de liaison" +msgid "Refresh relationships and power states for all items related to this VM?" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés à cette MV ?" -#: ../app/views/alert/_rss_list.html.haml:12 -msgid "No RSS Feeds Found" -msgstr "Aucun flux RSS trouvé" +msgid "Refresh relationships and power states for all items related to this item" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés à cet élément" -#: ../app/views/alert/_rss_list.html.haml:24 -msgid "Admin Role Filter:" -msgstr "Filtre du Rôle Admin" +msgid "Refresh relationships and power states for all items related to this item?" +msgstr "Actualiser les relations et les états d'alimentation pour tous les éléments associés à cet élément ?" -#: ../app/views/alert/_rss_list.html.haml:39 -#: ../app/views/configuration/_timeprofile_form.html.haml:386 -#: ../app/views/report/_form.html.haml:42 -#: ../app/views/report/_report_info.html.haml:9 -#: ../app/views/report/_report_info.html.haml:243 -#: ../app/views/report/_widget_form.html.haml:19 -#: ../app/views/report/_widget_show.html.haml:14 -msgid "Title" -msgstr "Titre" +msgid "Refresh relationships for all items related to the selected items" +msgstr "Actualiser les relations pour tous les éléments associés aux éléments sélectionnés" -#: ../app/views/alert/_rss_list.html.haml:43 -msgid "Feed URL" -msgstr "URL du flux" +msgid "Refresh relationships for all items related to the selected items?" +msgstr "Actualiser les relations pour tous les éléments associés aux éléments sélectionnés ?" -#: ../app/views/alert/_rss_list.html.haml:50 -msgid "Subscribe to this feed" -msgstr "S'abonner à ce flux" +msgid "Refresh relationships for all items related to this Provider" +msgstr "Actualiser les relations pour tous les éléments associés à ce fournisseur" -#: ../app/views/auth_key_pair_cloud/_form.html.haml:50 -msgid "Public Key (optional)" -msgstr "Clé publique (optionnelle)" +msgid "Refresh relationships for all items related to this Provider?" +msgstr "Actualiser les relations pour tous les éléments associés à ce fournisseur ?" -#: ../app/views/auth_key_pair_cloud/_main.html.haml:7 -#: ../app/views/availability_zone/_main.html.haml:7 -#: ../app/views/cloud_network/_main.html.haml:12 -#: ../app/views/cloud_object_store_container/_main.html.haml:9 -#: ../app/views/cloud_object_store_object/_main.html.haml:9 -#: ../app/views/cloud_subnet/_main.html.haml:12 -#: ../app/views/cloud_tenant/_main.html.haml:7 -#: ../app/views/cloud_volume/_main.html.haml:9 -#: ../app/views/cloud_volume_backup/_main.html.haml:9 -#: ../app/views/cloud_volume_snapshot/_main.html.haml:9 -#: ../app/views/configuration_job/_main.html.haml:9 -#: ../app/views/container/_container_show.html.haml:12 -#: ../app/views/container_build/_main.html.haml:16 -#: ../app/views/container_group/_main.html.haml:24 -#: ../app/views/container_image/_main.html.haml:19 -#: ../app/views/container_image_registry/_main.html.haml:13 -#: ../app/views/container_node/_main.html.haml:21 -#: ../app/views/container_project/_main.html.haml:21 -#: ../app/views/container_replicator/_main.html.haml:18 -#: ../app/views/container_route/_main.html.haml:18 -#: ../app/views/container_service/_main.html.haml:18 -#: ../app/views/container_template/_main.html.haml:19 -#: ../app/views/ems_cluster/_main.html.haml:7 -#: ../app/views/ems_container/_main.html.haml:24 -#: ../app/views/ems_datawarehouse/_main.html.haml:15 -#: ../app/views/ems_middleware/_main.html.haml:15 -#: ../app/views/flavor/_main.html.haml:9 -#: ../app/views/floating_ip/_main.html.haml:12 -#: ../app/views/host/_main.html.haml:9 -#: ../app/views/host_aggregate/_main.html.haml:7 -#: ../app/views/infra_networking/_main.html.haml:7 -#: ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:17 -#: ../app/views/layouts/listnav/_availability_zone.html.haml:17 -#: ../app/views/layouts/listnav/_cloud_network.html.haml:19 -#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:17 -#: ../app/views/layouts/listnav/_cloud_object_store_object.html.haml:17 -#: ../app/views/layouts/listnav/_cloud_subnet.html.haml:19 -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:17 -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:17 -#: ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:17 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:17 -#: ../app/views/layouts/listnav/_configuration_job.html.haml:19 -#: ../app/views/layouts/listnav/_container_build.html.haml:17 -#: ../app/views/layouts/listnav/_container_group.html.haml:47 -#: ../app/views/layouts/listnav/_container_image.html.haml:17 -#: ../app/views/layouts/listnav/_container_image_registry.html.haml:17 -#: ../app/views/layouts/listnav/_container_node.html.haml:47 -#: ../app/views/layouts/listnav/_container_project.html.haml:46 -#: ../app/views/layouts/listnav/_container_replicator.html.haml:46 -#: ../app/views/layouts/listnav/_container_route.html.haml:17 -#: ../app/views/layouts/listnav/_container_service.html.haml:31 -#: ../app/views/layouts/listnav/_container_template.html.haml:17 -#: ../app/views/layouts/listnav/_ems_cloud.html.haml:23 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:41 -#: ../app/views/layouts/listnav/_ems_container.html.haml:45 -#: ../app/views/layouts/listnav/_ems_datawarehouse.html.haml:16 -#: ../app/views/layouts/listnav/_ems_infra.html.haml:25 -#: ../app/views/layouts/listnav/_ems_middleware.html.haml:16 -#: ../app/views/layouts/listnav/_ems_network.html.haml:23 -#: ../app/views/layouts/listnav/_ems_storage.html.haml:25 -#: ../app/views/layouts/listnav/_flavor.html.haml:19 -#: ../app/views/layouts/listnav/_floating_ip.html.haml:19 -#: ../app/views/layouts/listnav/_host.html.haml:90 -#: ../app/views/layouts/listnav/_host_aggregate.html.haml:17 -#: ../app/views/layouts/listnav/_load_balancer.html.haml:19 -#: ../app/views/layouts/listnav/_middleware_datasource.html.haml:17 -#: ../app/views/layouts/listnav/_middleware_deployment.html.haml:17 -#: ../app/views/layouts/listnav/_middleware_domain.html.haml:17 -#: ../app/views/layouts/listnav/_middleware_messaging.html.haml:17 -#: ../app/views/layouts/listnav/_middleware_server.html.haml:17 -#: ../app/views/layouts/listnav/_middleware_server_group.html.haml:17 -#: ../app/views/layouts/listnav/_network_port.html.haml:19 -#: ../app/views/layouts/listnav/_network_router.html.haml:19 -#: ../app/views/layouts/listnav/_ontap_file_share.html.haml:19 -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:20 -#: ../app/views/layouts/listnav/_ontap_storage_system.html.haml:19 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:19 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:19 -#: ../app/views/layouts/listnav/_persistent_volume.html.haml:17 -#: ../app/views/layouts/listnav/_resource_pool.html.haml:20 -#: ../app/views/layouts/listnav/_security_group.html.haml:19 -#: ../app/views/layouts/listnav/_service.html.haml:19 -#: ../app/views/layouts/listnav/_storage.html.haml:26 -#: ../app/views/layouts/listnav/_storage.html.haml:45 -#: ../app/views/load_balancer/_main.html.haml:12 -#: ../app/views/middleware_datasource/_main.html.haml:12 -#: ../app/views/middleware_deployment/_main.html.haml:12 -#: ../app/views/middleware_domain/_main.html.haml:12 -#: ../app/views/middleware_messaging/_main.html.haml:12 -#: ../app/views/middleware_server/_main.html.haml:12 -#: ../app/views/middleware_server_group/_main.html.haml:12 -#: ../app/views/network_port/_main.html.haml:12 -#: ../app/views/network_router/_main.html.haml:12 -#: ../app/views/ontap_file_share/_main.html.haml:14 -#: ../app/views/ontap_logical_disk/_main.html.haml:9 -#: ../app/views/ontap_storage_system/_main.html.haml:14 -#: ../app/views/ontap_storage_volume/_main.html.haml:14 -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:92 -#: ../app/views/orchestration_stack/_main.html.haml:11 -#: ../app/views/persistent_volume/_main.html.haml:16 -#: ../app/views/resource_pool/_main.html.haml:9 -#: ../app/views/security_group/_main.html.haml:12 -#: ../app/views/service/_svcs_show.html.haml:11 -#: ../app/views/shared/views/ems_common/_main.html.haml:17 -#: ../app/views/storage/_main.html.haml:11 -#: ../app/views/vm_cloud/_main.html.haml:12 -#: ../app/views/vm_cloud/_main.html.haml:15 -#: ../app/views/vm_common/_main.html.haml:11 -msgid "Relationships" -msgstr "Relations" +msgid "Refresh with a new branch or tag" +msgstr "Actualiser avec une nouvelle branche ou balise" -#: ../app/views/auth_key_pair_cloud/_main.html.haml:9 -#: ../app/views/cloud_network/_main.html.haml:7 -#: ../app/views/cloud_object_store_container/_main.html.haml:7 -#: ../app/views/cloud_object_store_object/_main.html.haml:7 -#: ../app/views/cloud_subnet/_main.html.haml:7 -#: ../app/views/cloud_volume/_main.html.haml:7 -#: ../app/views/cloud_volume_backup/_main.html.haml:7 -#: ../app/views/cloud_volume_snapshot/_main.html.haml:7 -#: ../app/views/configuration_job/_main.html.haml:7 -#: ../app/views/container/_container_show.html.haml:7 -#: ../app/views/container_build/_main.html.haml:7 -#: ../app/views/container_group/_main.html.haml:7 -#: ../app/views/container_image/_main.html.haml:7 -#: ../app/views/container_image_registry/_main.html.haml:7 -#: ../app/views/container_node/_main.html.haml:7 -#: ../app/views/container_project/_main.html.haml:7 -#: ../app/views/container_replicator/_main.html.haml:7 -#: ../app/views/container_route/_main.html.haml:7 -#: ../app/views/container_service/_main.html.haml:7 -#: ../app/views/container_template/_main.html.haml:7 -#: ../app/views/ems_container/_main.html.haml:7 -#: ../app/views/ems_datawarehouse/_main.html.haml:7 -#: ../app/views/ems_middleware/_main.html.haml:7 -#: ../app/views/flavor/_main.html.haml:7 -#: ../app/views/floating_ip/_main.html.haml:7 -#: ../app/views/host/_main.html.haml:7 -#: ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:7 -#: ../app/views/layouts/listnav/_availability_zone.html.haml:7 -#: ../app/views/layouts/listnav/_cloud_network.html.haml:7 -#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:7 -#: ../app/views/layouts/listnav/_cloud_object_store_object.html.haml:7 -#: ../app/views/layouts/listnav/_cloud_subnet.html.haml:7 -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:7 -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:7 -#: ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:7 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:7 -#: ../app/views/layouts/listnav/_configuration_job.html.haml:7 -#: ../app/views/layouts/listnav/_container_build.html.haml:7 -#: ../app/views/layouts/listnav/_container_group.html.haml:7 -#: ../app/views/layouts/listnav/_container_image.html.haml:7 -#: ../app/views/layouts/listnav/_container_image_registry.html.haml:7 -#: ../app/views/layouts/listnav/_container_node.html.haml:7 -#: ../app/views/layouts/listnav/_container_project.html.haml:7 -#: ../app/views/layouts/listnav/_container_replicator.html.haml:7 -#: ../app/views/layouts/listnav/_container_route.html.haml:7 -#: ../app/views/layouts/listnav/_container_service.html.haml:7 -#: ../app/views/layouts/listnav/_container_template.html.haml:7 -#: ../app/views/layouts/listnav/_ems_cloud.html.haml:7 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:8 -#: ../app/views/layouts/listnav/_ems_container.html.haml:7 -#: ../app/views/layouts/listnav/_ems_datawarehouse.html.haml:7 -#: ../app/views/layouts/listnav/_ems_infra.html.haml:9 -#: ../app/views/layouts/listnav/_ems_middleware.html.haml:7 -#: ../app/views/layouts/listnav/_ems_network.html.haml:7 -#: ../app/views/layouts/listnav/_ems_storage.html.haml:7 -#: ../app/views/layouts/listnav/_flavor.html.haml:7 -#: ../app/views/layouts/listnav/_floating_ip.html.haml:7 -#: ../app/views/layouts/listnav/_host.html.haml:31 -#: ../app/views/layouts/listnav/_host_aggregate.html.haml:7 -#: ../app/views/layouts/listnav/_load_balancer.html.haml:7 -#: ../app/views/layouts/listnav/_middleware_datasource.html.haml:7 -#: ../app/views/layouts/listnav/_middleware_deployment.html.haml:7 -#: ../app/views/layouts/listnav/_middleware_domain.html.haml:7 -#: ../app/views/layouts/listnav/_middleware_messaging.html.haml:7 -#: ../app/views/layouts/listnav/_middleware_server.html.haml:7 -#: ../app/views/layouts/listnav/_middleware_server_group.html.haml:7 -#: ../app/views/layouts/listnav/_miq_ae_class.html.haml:7 -#: ../app/views/layouts/listnav/_network_port.html.haml:7 -#: ../app/views/layouts/listnav/_network_router.html.haml:7 -#: ../app/views/layouts/listnav/_ontap_file_share.html.haml:7 -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:7 -#: ../app/views/layouts/listnav/_ontap_storage_system.html.haml:7 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:7 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:7 -#: ../app/views/layouts/listnav/_persistent_volume.html.haml:7 -#: ../app/views/layouts/listnav/_pxe_server.html.haml:7 -#: ../app/views/layouts/listnav/_resource_pool.html.haml:8 -#: ../app/views/layouts/listnav/_security_group.html.haml:7 -#: ../app/views/layouts/listnav/_service.html.haml:7 -#: ../app/views/layouts/listnav/_storage.html.haml:8 -#: ../app/views/layouts/listnav/_storage_manager.html.haml:7 -#: ../app/views/load_balancer/_main.html.haml:7 -#: ../app/views/middleware_datasource/_main.html.haml:7 -#: ../app/views/middleware_deployment/_main.html.haml:7 -#: ../app/views/middleware_domain/_main.html.haml:7 -#: ../app/views/middleware_messaging/_main.html.haml:7 -#: ../app/views/middleware_server/_main.html.haml:7 -#: ../app/views/middleware_server_group/_main.html.haml:7 -#: ../app/views/miq_ae_class/_all_tabs.html.haml:14 -#: ../app/views/miq_ae_class/_all_tabs.html.haml:55 -#: ../app/views/miq_ae_class/_class_form.html.haml:5 -#: ../app/views/miq_ae_class/_class_props.html.haml:6 -#: ../app/views/network_port/_main.html.haml:7 -#: ../app/views/network_router/_main.html.haml:7 -#: ../app/views/ontap_file_share/_main.html.haml:7 -#: ../app/views/ontap_logical_disk/_main.html.haml:7 -#: ../app/views/ontap_storage_system/_main.html.haml:7 -#: ../app/views/ontap_storage_volume/_main.html.haml:7 -#: ../app/views/ops/_db_summary.html.haml:5 -#: ../app/views/orchestration_stack/_main.html.haml:7 -#: ../app/views/persistent_volume/_main.html.haml:7 -#: ../app/views/provider_foreman/_configuration_script.html.haml:7 -#: ../app/views/provider_foreman/_main.html.haml:7 -#: ../app/views/provider_foreman/_main_configuration_profile.html.haml:7 -#: ../app/views/provider_foreman/_main_inventory_group.html.haml:7 -#: ../app/views/resource_pool/_main.html.haml:7 -#: ../app/views/security_group/_main.html.haml:7 -#: ../app/views/service/_svcs_show.html.haml:7 -#: ../app/views/shared/views/_prov_dialog.html.haml:163 -#: ../app/views/shared/views/ems_common/_main.html.haml:7 -#: ../app/views/storage/_main.html.haml:7 -#: ../app/views/storage_manager/_main.html.haml:7 -#: ../app/views/vm_cloud/_main.html.haml:7 -#: ../app/views/vm_common/_main.html.haml:7 -msgid "Properties" -msgstr "Propriétés" +msgid "Refreshing branch/tag for Git-based Domain" +msgstr "Actualisation de la branche/balise pour le domaine Git" -#: ../app/views/auth_key_pair_cloud/_main.html.haml:14 -#: ../app/views/availability_zone/_main.html.haml:14 -#: ../app/views/catalog/_ot_tree_show.html.haml:89 -#: ../app/views/cloud_network/_main.html.haml:20 -#: ../app/views/cloud_object_store_container/_main.html.haml:14 -#: ../app/views/cloud_object_store_object/_main.html.haml:14 -#: ../app/views/cloud_subnet/_main.html.haml:20 -#: ../app/views/cloud_tenant/_main.html.haml:14 -#: ../app/views/cloud_volume/_main.html.haml:14 -#: ../app/views/cloud_volume_backup/_main.html.haml:14 -#: ../app/views/cloud_volume_snapshot/_main.html.haml:14 -#: ../app/views/configuration_job/_main.html.haml:14 -#: ../app/views/container/_container_show.html.haml:15 -#: ../app/views/container_build/_main.html.haml:19 -#: ../app/views/container_group/_main.html.haml:30 -#: ../app/views/container_image/_main.html.haml:22 -#: ../app/views/container_image_registry/_main.html.haml:16 -#: ../app/views/container_node/_main.html.haml:25 -#: ../app/views/container_project/_main.html.haml:23 -#: ../app/views/container_replicator/_main.html.haml:20 -#: ../app/views/container_route/_main.html.haml:22 -#: ../app/views/container_service/_main.html.haml:20 -#: ../app/views/container_template/_main.html.haml:25 -#: ../app/views/ems_cluster/_main.html.haml:21 -#: ../app/views/ems_container/_main.html.haml:30 -#: ../app/views/ems_datawarehouse/_main.html.haml:18 -#: ../app/views/ems_middleware/_main.html.haml:21 -#: ../app/views/flavor/_main.html.haml:14 -#: ../app/views/floating_ip/_main.html.haml:20 -#: ../app/views/host/_main.html.haml:25 -#: ../app/views/host_aggregate/_main.html.haml:12 -#: ../app/views/infra_networking/_main.html.haml:12 -#: ../app/views/load_balancer/_main.html.haml:20 -#: ../app/views/middleware_datasource/_main.html.haml:14 -#: ../app/views/middleware_deployment/_main.html.haml:14 -#: ../app/views/middleware_domain/_main.html.haml:14 -#: ../app/views/middleware_messaging/_main.html.haml:14 -#: ../app/views/middleware_server/_main.html.haml:14 -#: ../app/views/middleware_server_group/_main.html.haml:14 -#: ../app/views/network_port/_main.html.haml:20 -#: ../app/views/network_router/_main.html.haml:20 -#: ../app/views/ontap_file_share/_main.html.haml:9 -#: ../app/views/ontap_logical_disk/_main.html.haml:18 -#: ../app/views/ontap_storage_system/_main.html.haml:9 -#: ../app/views/ontap_storage_volume/_main.html.haml:9 -#: ../app/views/ops/_rbac_tag_box.html.haml:1 -#: ../app/views/orchestration_stack/_main.html.haml:16 -#: ../app/views/persistent_volume/_main.html.haml:19 -#: ../app/views/provider_foreman/_main.html.haml:18 -#: ../app/views/resource_pool/_main.html.haml:16 -#: ../app/views/security_group/_main.html.haml:22 -#: ../app/views/service/_svcs_show.html.haml:20 -#: ../app/views/shared/views/ems_common/_main.html.haml:21 -#: ../app/views/storage/_main.html.haml:21 -#: ../app/views/vm_cloud/_main.html.haml:36 -#: ../app/views/vm_common/_main.html.haml:41 -msgid "Smart Management" -msgstr "Gestion Smart" +msgid "Region" +msgstr "Région" -#: ../app/views/availability_zone/_main.html.haml:12 -msgid "Totals for Availability Zone" -msgstr "Totaux pour la zone de disponibilité" +msgid "Region Information" +msgstr "Informations sur la région" -#: ../app/views/catalog/_column_lists.html.haml:7 -#: ../app/views/shared/buttons/_column_lists.html.haml:7 -msgid "Unassigned:" -msgstr "Non affecté :" +msgid "Region based nodes shown as %{dimmed} text." +msgstr "Nœuds basés sur une région affichés en texte %{dimmed}." -#: ../app/views/catalog/_column_lists.html.haml:11 -#: ../app/views/shared/buttons/_column_lists.html.haml:14 -msgid "Selected:" -msgstr "Sélectionné :" +msgid "Region description is required" +msgstr "La description de la région est obligatoire" -#: ../app/views/catalog/_column_lists.html.haml:34 -msgid "Move Selected buttons right" -msgstr "Déplacer les boutons sélectionnés vers la droite" +msgid "Region:" +msgstr "Région :" -#: ../app/views/catalog/_column_lists.html.haml:50 -msgid "Move Selected buttons left" -msgstr "Déplacer les boutons sélectionnés vers la gauche" +msgid "Region: %{region_name}" +msgstr "Région : %{region_name}" -#: ../app/views/catalog/_form.html.haml:17 -#: ../app/views/catalog/_form_request_info.html.haml:9 -#: ../app/views/catalog/_sandt_tree_show.html.haml:21 -#: ../app/views/catalog/_sandt_tree_show.html.haml:311 -msgid "Request Info" -msgstr "Informations sur la demande" +msgid "Register" +msgstr "Enregistrer" -#: ../app/views/catalog/_form_basic_info.html.haml:15 -#: ../app/views/catalog/_sandt_tree_show.html.haml:36 -msgid "Name / Description" -msgstr "Nom/Description" +msgid "Register Nodes" +msgstr "Enregistrer des nœuds" -#: ../app/views/catalog/_form_basic_info.html.haml:43 -#: ../app/views/catalog/_sandt_tree_show.html.haml:49 -msgid "Display in Catalog" -msgstr "Afficher dans le Catalogue" +msgid "Register to" +msgstr "Enregistrer dans" -#: ../app/views/catalog/_form_basic_info.html.haml:54 -#: ../app/views/catalog/_sandt_tree_show.html.haml:65 -msgid "Catalog" -msgstr "Catalogue" +msgid "Registration" +msgstr "Abonnement" -#: ../app/views/catalog/_form_basic_info.html.haml:61 -#: ../app/views/catalog/_sandt_tree_show.html.haml:70 -msgid "Unassigned" -msgstr "Non affecté" +msgid "Registries" +msgstr "Registres" -#: ../app/views/catalog/_form_basic_info.html.haml:103 -#: ../app/views/catalog/_sandt_tree_show.html.haml:92 -msgid "Subtype" -msgstr "Sous-type" +msgid "Registry" +msgstr "Registre" -#: ../app/views/catalog/_form_basic_info.html.haml:125 -#: ../app/views/catalog/_form_basic_info.html.haml:147 -#: ../app/views/catalog/_form_basic_info.html.haml:169 -#: ../app/views/catalog/_form_basic_info.html.haml:191 -#: ../app/views/catalog/_form_resources_info.html.haml:25 -#: ../app/views/catalog/_ot_add.html.haml:75 -#: ../app/views/catalog/_ot_copy.html.haml:58 -#: ../app/views/catalog/_ot_edit.html.haml:51 -#: ../app/views/catalog/_st_form.html.haml:18 -#: ../app/views/cloud_network/new.html.haml:21 -#: ../app/views/cloud_network/new.html.haml:50 -#: ../app/views/cloud_network/new.html.haml:77 -#: ../app/views/cloud_subnet/new.html.haml:21 -#: ../app/views/cloud_subnet/new.html.haml:49 -#: ../app/views/cloud_subnet/new.html.haml:118 -#: ../app/views/cloud_tenant/new.html.haml:21 -#: ../app/views/cloud_volume/attach.html.haml:21 -#: ../app/views/cloud_volume/attach.html.haml:21 -#: ../app/views/cloud_volume/backup_select.html.haml:21 -#: ../app/views/cloud_volume/detach.html.haml:21 -#: ../app/views/cloud_volume/detach.html.haml:21 -#: ../app/views/cloud_volume/new.html.haml:65 -#: ../app/views/configuration/_timeprofile_form.html.haml:56 -#: ../app/views/configuration/_timeprofile_form.html.haml:56 -#: ../app/views/ems_container/_form.html.haml:45 -#: ../app/views/ems_datawarehouse/_form.html.haml:45 -#: ../app/views/ems_datawarehouse/_form.html.haml:45 -#: ../app/views/ems_infra/_form.html.haml:45 -#: ../app/views/ems_infra/_form.html.haml:45 -#: ../app/views/ems_middleware/_form.html.haml:45 -#: ../app/views/ems_middleware/_form.html.haml:45 -#: ../app/views/host/_form.html.haml:79 ../app/views/host/_form.html.haml:79 -#: ../app/views/host_aggregate/add_host_select.html.haml:21 -#: ../app/views/host_aggregate/new.html.haml:64 -#: ../app/views/host_aggregate/remove_host_select.html.haml:21 -#: ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:90 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:148 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:148 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:161 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:161 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:171 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:171 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:632 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:632 -#: ../app/views/layouts/exp_atom/_edit_count.html.haml:7 -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:7 -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:65 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:9 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:49 -#: ../app/views/layouts/exp_atom/_edit_tag.html.haml:7 -#: ../app/views/layouts/exp_atom/_edit_tag.html.haml:57 -#: ../app/views/layouts/exp_atom/_editor.html.haml:61 -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:74 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:292 -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:114 -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:155 -#: ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:56 -#: ../app/views/miq_capacity/_planning_options.html.haml:16 -#: ../app/views/miq_policy/_action_details.html.haml:48 -#: ../app/views/miq_policy/_action_options.html.haml:192 -#: ../app/views/miq_policy/_action_options.html.haml:521 -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:15 -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:44 -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:66 -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:88 -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:293 -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:329 -#: ../app/views/miq_policy/_alert_details.html.haml:146 -#: ../app/views/miq_policy/_rsop_form.html.haml:21 -#: ../app/views/miq_policy/_rsop_form.html.haml:32 -#: ../app/views/miq_policy/_rsop_form.html.haml:47 -#: ../app/views/miq_policy/_rsop_form.html.haml:59 -#: ../app/views/miq_policy/_rsop_form.html.haml:68 -#: ../app/views/miq_policy/_rsop_form.html.haml:77 -#: ../app/views/miq_policy/_rsop_form.html.haml:86 -#: ../app/views/miq_request/_prov_field.html.haml:217 -#: ../app/views/miq_request/_prov_field.html.haml:283 -#: ../app/views/miq_request/_prov_field.html.haml:335 -#: ../app/views/miq_request/_prov_field.html.haml:454 -#: ../app/views/miq_request/_prov_field.html.haml:503 -#: ../app/views/miq_request/_prov_field.html.haml:547 -#: ../app/views/network_router/new.html.haml:21 -#: ../app/views/network_router/new.html.haml:79 -#: ../app/views/network_router/new.html.haml:100 -#: ../app/views/ontap_file_share/_create_datastore.html.haml:41 -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:30 -#: ../app/views/ops/_settings_import_tab.html.haml:25 -#: ../app/views/provider_foreman/_form.html.haml:49 -#: ../app/views/provider_foreman/_form.html.haml:49 -#: ../app/views/pxe/_iso_datastore_form.html.haml:22 -#: ../app/views/pxe/_pxe_form.html.haml:39 -#: ../app/views/pxe/_template_form.html.haml:54 -#: ../app/views/pxe/_template_form.html.haml:73 -#: ../app/views/report/_form_columns_trend.html.haml:11 -#: ../app/views/report/_form_filter_chargeback.html.haml:19 -#: ../app/views/report/_schedule_form_filter.html.haml:21 -#: ../app/views/report/_schedule_form_filter.html.haml:42 -#: ../app/views/report/_schedule_form_filter.html.haml:62 -#: ../app/views/report/_schedule_form_filter.html.haml:86 -#: ../app/views/report/_schedule_form_filter.html.haml:106 -#: ../app/views/report/_schedule_form_filter.html.haml:125 -#: ../app/views/report/_widget_form_report.html.haml:20 -#: ../app/views/report/_widget_form_report.html.haml:33 -#: ../app/views/report/_widget_form_report.html.haml:46 -#: ../app/views/shared/views/ems_common/_form.html.haml:41 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:45 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:45 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:82 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:82 -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:68 -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:92 -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:116 -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:140 -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:164 -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:188 -#: ../app/views/storage_manager/_form.html.haml:50 -#: ../app/views/vm_common/_reconfigure.html.haml:108 -#: ../app/views/vm_common/_reconfigure.html.haml:108 -#: ../app/views/vm_common/_reconfigure.html.haml:129 -#: ../app/views/vm_common/_reconfigure.html.haml:129 -msgid "Choose" -msgstr "Choisir" +msgid "Registry Entries" +msgstr "Entrées de registre" -#: ../app/views/catalog/_form_basic_info.html.haml:130 -#: ../app/views/catalog/_sandt_tree_show.html.haml:106 -msgid "Orchestration Template" -msgstr "Modèle d'orchestration" +msgid "Registry Entry" +msgstr "Entrée de registre" -#: ../app/views/catalog/_form_basic_info.html.haml:196 -#: ../app/views/catalog/_sandt_tree_show.html.haml:134 -msgid "Ansible Tower Job Template" -msgstr "Modèle de tâche Ansible Tower" +msgid "Registry Entry is required" +msgstr "L'entrée de registre est obligatoire" -#: ../app/views/catalog/_form_basic_info.html.haml:214 -msgid "Provisioning Entry Point (NameSpace/Class/Instance)" -msgstr "Point d'entrée de mise en service (Espace de nommage/Classe/Instance)" +msgid "Registry Hive" +msgstr "Ruche de registre" -#: ../app/views/catalog/_form_basic_info.html.haml:216 -msgid "Provisioning Entry Point" -msgstr "Point d'entrée de mise en service" +msgid "Registry Item" +msgid_plural "Registry Items" +msgstr[0] "Élément de registre" +msgstr[1] "Éléments de registre" -#: ../app/views/catalog/_form_basic_info.html.haml:232 -msgid "Are you sure you want to remove this Provisioning Entry Point?" -msgstr "Voulez-vous vraiment supprimer ce Point d'entrée de mise en service ?" +msgid "Registry Items" +msgstr "Éléments de registre" -#: ../app/views/catalog/_form_basic_info.html.haml:232 -msgid "Remove this Provisioning Entry Point" -msgstr "Supprimer ce point d'entrée de mise en service" +msgid "Registry Key" +msgstr "Clé de registre" -#: ../app/views/catalog/_form_basic_info.html.haml:252 -msgid "Reconfigure Entry Point (NameSpace/Class/Instance)" -msgstr "Point d'entrée de reconfiguration (Espace de nommage/Classe/Instance)" +msgid "Registry Key Value" +msgstr "Valeur de clé de registre" -#: ../app/views/catalog/_form_basic_info.html.haml:254 -msgid "Reconfigure Entry Point" -msgstr "Point d'entrée de reconfiguration" +msgid "Registry Value" +msgstr "Valeur de registre" -#: ../app/views/catalog/_form_basic_info.html.haml:271 -msgid "Are you sure you want to remove this Reconfigure Entry Point?" -msgstr "Voulez-vous vraiment supprimer ce Point d'entrée de reconfiguration ?" +msgid "Registry Value Error: %{msg}" +msgstr "Erreur de valeur de registre : %{msg}" -#: ../app/views/catalog/_form_basic_info.html.haml:271 -msgid "Remove this Reconfigure Entry Point" -msgstr "Supprimer ce point d'entrée de reconfiguration" +msgid "Regular Expression" +msgstr "Expression régulière" -#: ../app/views/catalog/_form_basic_info.html.haml:292 -msgid "Retirement Entry Point (NameSpace/Class/Instance)" -msgstr "Point d'entrée de désactivation (Espace de nommage/Classe/Instance)" +msgid "Relationships" +msgstr "Relations" -#: ../app/views/catalog/_form_basic_info.html.haml:294 -msgid "Retirement Entry Point" -msgstr "Point d'entrée de désactivation" +msgid "Reload" +msgstr "Recharger" -#: ../app/views/catalog/_form_basic_info.html.haml:310 -msgid "Are you sure you want to remove this Retirement Entry Point?" -msgstr "Voulez-vous vraiment supprimer ce Point d'entrée de déclassement ?" +msgid "Reload Current Display" +msgstr "Recharger l'affichage actuel" -#: ../app/views/catalog/_form_basic_info.html.haml:310 -msgid "Remove this Retirement Entry Point" -msgstr "Supprimer ce point d'entrée de désactivation" +msgid "Reload Server" +msgstr "Recharger le serveur" -#: ../app/views/catalog/_form_details_info.html.haml:4 -#: ../app/views/catalog/_sandt_tree_show.html.haml:234 -#: ../app/views/catalog/_svccat_tree_show.html.haml:60 -#: ../app/views/ops/_category_form.html.haml:43 -#: ../app/views/ops/_category_form.html.haml:159 -#: ../app/views/ops/_settings_co_tags_tab.html.haml:35 -msgid "Long Description" -msgstr "Description longue" +msgid "Reload Server Group" +msgstr "" -#: ../app/views/catalog/_form_request_info.html.haml:15 -#: ../app/views/miq_request/_prov_edit.html.haml:10 -msgid "Note: Fields marked with * are required." -msgstr "Remarque : le symbole * indique un champ obligatoire." +msgid "Reload Servers in this Server Group" +msgstr "" -#: ../app/views/catalog/_form_resources_info.html.haml:17 -msgid "Add a Resource" -msgstr "Ajouter une ressource" +msgid "Reload Widgets" +msgstr "Recharger les composants graphiques" -#: ../app/views/catalog/_form_resources_info.html.haml:44 -#: ../app/views/catalog/_sandt_tree_show.html.haml:16 -msgid "Selected Resources" -msgstr "Ressources sélectionnées" +msgid "Reload current display" +msgstr "Recharger l'affichage actuel" -#: ../app/views/catalog/_form_resources_info.html.haml:55 -#: ../app/views/catalog/_sandt_tree_show.html.haml:261 -#: ../app/views/catalog/_sandt_tree_show.html.haml:262 -#: ../app/views/ops/_schedule_form.html.haml:86 -#: ../app/views/ops/_schedule_show.html.haml:29 -#: ../app/views/shared/buttons/_ab_form.html.haml:27 -msgid "Action" -msgstr "Action" +msgid "Reload current workers display" +msgstr "Recharger l'affichage des workers actuel" -#: ../app/views/catalog/_form_resources_info.html.haml:55 -#: ../app/views/catalog/_sandt_tree_show.html.haml:261 -msgid "Action Order" -msgstr "Ordre des actions" +msgid "Reload selected Reports" +msgstr "Recharger les rapports sélectionnés" -#: ../app/views/catalog/_form_resources_info.html.haml:55 -#: ../app/views/catalog/_sandt_tree_show.html.haml:261 -#: ../app/views/catalog/_sandt_tree_show.html.haml:262 -msgid "Delay (mins)" -msgstr "Retard (minutes)" +msgid "Reload the %{log_type} Log Display" +msgstr "Recharger l'affichage du journal de %{log_type}" -#: ../app/views/catalog/_form_resources_info.html.haml:55 -#: ../app/views/catalog/_sandt_tree_show.html.haml:261 -msgid "Provision Order" -msgstr "Ordre de mise en service" +msgid "Reload the Audit Log Display" +msgstr "Recharger l'affichage du journal d'audit" + +msgid "Reload the EVM Log Display" +msgstr "Recharger l'affichage du journal EVM" + +msgid "Reload the charts from the most recent C&U data" +msgstr "Recharger les graphiques à partir des données C&U les plus récentes" + +msgid "Reload the current display" +msgstr "Recharger l'affichage actuel" + +msgid "Reload these Middleware Servers" +msgstr "Recharger ces serveurs de middleware" + +msgid "Reload this server" +msgstr "Recharger ce serveur" + +msgid "Remote Console plugin is not properly installed." +msgstr "L'extension de Console distante n'est pas correctement installée." + +msgid "Remote Login" +msgstr "Connexion à distance" + +msgid "Remote Login Password and Verify Password fields do not match" +msgstr "Les champs Mot de passe de connexion à distance et Vérifier le mot de passe ne correspondent pas" + +msgid "Remove" +msgstr "Supprimer" -#: ../app/views/catalog/_form_resources_info.html.haml:81 -#: ../app/views/catalog/_form_resources_info.html.haml:81 -msgid "Click to remove this Resource from the Catalog Item" -msgstr "Cliquez pour supprimer cette ressource de l'élément de catalogue" +msgid "Remove %{email}" +msgstr "Supprimer %{email}" -#: ../app/views/catalog/_form_resources_info.html.haml:119 -#: ../app/views/catalog/_form_resources_info.html.haml:120 -msgid "Do Nothing" -msgstr "Ne rien faire" +msgid "Remove Arbitration Profiles from the VMDB" +msgstr "Supprimer les profils d'arbitrage du VMDB" -#: ../app/views/catalog/_ot_add.html.haml:54 -msgid "Template Type" -msgstr "Type de modèle" +msgid "Remove Block Storage Managers" +msgstr "" -#: ../app/views/catalog/_ot_add.html.haml:100 -#: ../app/views/catalog/_ot_copy.html.haml:84 -#: ../app/views/catalog/_ot_edit.html.haml:78 -#: ../app/views/catalog/_ot_tree_show.html.haml:37 -#: ../app/views/orchestration_stack/_copy_orchestration_template.html.haml:51 -#: ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 -msgid "Draft" -msgstr "Brouillon" +msgid "Remove Catalog" +msgstr "Supprimer Catalogue" -#: ../app/views/catalog/_ot_copy.html.haml:10 -#: ../app/views/orchestration_stack/_copy_orchestration_template.html.haml:7 -msgid "New Orchestration Template Information" -msgstr "Nouvelles informations de modèle d'orchestration" +msgid "Remove Catalog Item" +msgstr "Supprimer l'élément de catalogue" -#: ../app/views/catalog/_ot_tree_show.html.haml:42 -#: ../app/views/catalog/_ot_tree_show.html.haml:55 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:188 -#: ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:37 -#: ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:40 -#: ../app/views/report/_show_schedule.html.haml:35 -msgid "False" -msgstr "False" +msgid "Remove Catalog Items" +msgstr "Supprimer les éléments de catalogue" -#: ../app/views/catalog/_ot_tree_show.html.haml:42 -#: ../app/views/catalog/_ot_tree_show.html.haml:55 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:188 -#: ../app/views/miq_policy/_alert_details.html.haml:451 -#: ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:37 -#: ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:40 -#: ../app/views/report/_show_schedule.html.haml:35 -msgid "True" -msgstr "Vrai" +msgid "Remove Catalogs" +msgstr "Supprimer Catalogues" -#: ../app/views/catalog/_ot_tree_show.html.haml:50 -#: ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 -msgid "Read Only" -msgstr "Lecture seule" +msgid "Remove Cloud Providers" +msgstr "Suppprimer les fournisseurs de cloud" -#: ../app/views/catalog/_ot_tree_show.html.haml:76 -#: ../app/views/miq_ae_customization/_dialog_info.html.haml:60 -#: ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 -#: ../app/views/report/_report_info.html.haml:96 -msgid "Updated On" -msgstr "Mis à jour le" +msgid "Remove Containers Providers" +msgstr "Supprimer les fournisseurs de conteneurs" -#: ../app/views/catalog/_sandt_tree_show.html.haml:150 -msgid "%{entry_point} Entry Point (NameSpace/Class/Instance)" -msgstr "Point d'entrée %{entry_point} (Espace de nommage/Classe/Instance)" +msgid "Remove Customization Templates" +msgstr "Supprimer les modèles de personnalisation" -#: ../app/views/catalog/_sandt_tree_show.html.haml:152 -msgid "Entry Point" -msgstr "Point d'entrée" +msgid "Remove Datastore" +msgstr "Supprimer le magasin de données" -#: ../app/views/catalog/_sandt_tree_show.html.haml:166 -msgid "Custom Image" -msgstr "Image personnalisée" +msgid "Remove Datastores" +msgstr "Supprimer les magasins de données" -#: ../app/views/catalog/_sandt_tree_show.html.haml:182 -msgid "Are you sure you want to remove this Custom Image?" -msgstr "Êtes-vous sûr de vouloir supprimer cette Image customisée ?" +msgid "Remove Datawarehouse Providers" +msgstr "" -#: ../app/views/catalog/_sandt_tree_show.html.haml:182 -msgid "Remove this Custom Image" -msgstr "Supprimer cette image personnalisée" +msgid "Remove Dialog" +msgstr "Supprimer la boîte de dialogue" -#: ../app/views/catalog/_sandt_tree_show.html.haml:198 -msgid "No custom image has been uploaded" -msgstr "Aucune image personnalisée n'a été téléchargée" +msgid "Remove Disks" +msgstr "Supprimer les disques" -#: ../app/views/catalog/_sandt_tree_show.html.haml:216 -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:89 -#: ../app/views/miq_ae_tools/_import_export.html.haml:44 -#: ../app/views/miq_policy/_export.html.haml:74 -#: ../app/views/miq_request/_prov_field.html.haml:677 -#: ../app/views/miq_request/_prov_field.html.haml:695 -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:26 -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:89 -#: ../app/views/ops/_settings_import_tab.html.haml:52 -#: ../app/views/ops/_settings_import_tags_tab.html.haml:37 -#: ../app/views/report/_export_custom_reports.html.haml:43 -#: ../app/views/report/_export_widgets.html.haml:93 -msgid "Upload" -msgstr "Télécharger" +msgid "Remove Domains" +msgstr "Supprimer les domaines" -#: ../app/views/catalog/_sandt_tree_show.html.haml:218 -msgid "* Requires image file in .png or .jpg format" -msgstr "* Nécessite un fichier image au format .png ou .jpg." +msgid "Remove Host from %{model} \"%{name}\"" +msgstr "Supprimer Hôte de %{model} \"%{name}\"" -#: ../app/views/catalog/_sandt_tree_show.html.haml:254 -msgid "No Resources found." -msgstr "Aucune ressource trouvée." +msgid "Remove Host from %{model} \"%{name}\" was cancelled by the user" +msgstr "La suppression d'un Hôte de %{model} \"%{name}\" a été annulée par l'utilisateur" -#: ../app/views/catalog/_sandt_tree_show.html.haml:286 -#: ../app/views/catalog/_stcat_tree_show.html.haml:57 -msgid "Click to this Catalog Item" -msgstr "Cliquez sur cet élément de catalogue" +msgid "Remove Host from Host Aggregate" +msgstr "Supprimer l'hôte de l'agrégat d'hôtes" -#: ../app/views/catalog/_service_dialog_from_ot.html.haml:14 -#: ../app/views/provider_foreman/_configscript_service_dialog.html.haml:14 -msgid "Service Dialog Name" -msgstr "Nom de la boîte de dialogue de service" +msgid "Remove Host from Selected Host Aggregate" +msgstr "Supprimer l'hôte de l'agrégat d'hôtes sélectionné" -#: ../app/views/catalog/_st_form.html.haml:13 -msgid "Catalog Item Type" -msgstr "Type d'élément de catalogue" +msgid "Remove Host not supported by %{model} \"%{name}\"" +msgstr "La suppression d'hôtes n'est pas prise en charge par %{model} \"%{name}\"" -#: ../app/views/catalog/_stcat_form.html.haml:65 -msgid "Assign Catalog Items" -msgstr "Assigner des Éléments du Catalogue" +msgid "Remove Host to %{model} \"%{name}\" failed: Task start failed: ID [%{id}]" +msgstr "La suppression d'hôtes de %{model} \"%{name}\" a échoué : échec de démarrage de la tâche : ID [%{id}]" -#: ../app/views/catalog/_stcat_tree_show.html.haml:38 -msgid "No Catalog Items found." -msgstr "Aucun élément de catalogue trouvé." +msgid "Remove ISO Datastores" +msgstr "Supprimer les magasins de données ISO" -#: ../app/views/chargeback/_assignments_list.html.haml:9 -#: ../app/views/chargeback/_assignments_list.html.haml:14 -msgid "Edit Compute Rate Assignments" -msgstr "Modifier les affectations de taux du calcul" +msgid "Remove Image" +msgstr "Supprimer l'image" -#: ../app/views/chargeback/_assignments_list.html.haml:22 -#: ../app/views/chargeback/_assignments_list.html.haml:27 -msgid "Edit Storage Rate Assignments" -msgstr "Modifier les affectations de taux de stockage" +msgid "Remove Infrastructure Providers" +msgstr "Supprimer les fournisseurs d'infrastructure" -#: ../app/views/chargeback/_cb_assignments.html.haml:1 -#: ../app/views/miq_policy/_alert_profile_assign.html.haml:35 -#: ../app/views/miq_policy/_alert_profile_details.html.haml:249 -msgid "Nothing" -msgstr "Rien" +msgid "Remove Instance" +msgstr "Supprimer l'instance" -#: ../app/views/chargeback/_cb_assignments.html.haml:18 -#: ../app/views/miq_policy/_alert_profile_assign.html.haml:30 -msgid "Assign To" -msgstr "Assigner à" +msgid "Remove Instances" +msgstr "Supprimer les instances" -#: ../app/views/chargeback/_cb_assignments.html.haml:40 -#: ../app/views/miq_policy/_alert_profile_assign.html.haml:51 -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:14 -#: ../app/views/report/_form_filter_chargeback.html.haml:88 -msgid "Tag Category" -msgstr "Catégorie de balise" +msgid "Remove Interface from Router" +msgstr "" -#: ../app/views/chargeback/_cb_assignments.html.haml:46 -#: ../app/views/ops/_settings_co_tags_tab.html.haml:8 -#: ../app/views/report/_form_filter_chargeback.html.haml:93 -#: ../app/views/report/_form_filter_chargeback.html.haml:224 -msgid "Choose a Category" -msgstr "Choisir une catégorie" +msgid "Remove Interface from Router \"%{name}\"" +msgstr "" -#: ../app/views/chargeback/_cb_assignments.html.haml:61 -#: ../app/views/container_image/_main.html.haml:43 -msgid "Docker Labels" +msgid "Remove Interface from selected Router" msgstr "" -#: ../app/views/chargeback/_cb_assignments.html.haml:67 -msgid "Choose a Label" +msgid "Remove Interface from this Router" msgstr "" -#: ../app/views/chargeback/_cb_assignments.html.haml:84 -#: ../app/views/miq_policy/_alert_profile_assign.html.haml:72 -msgid "Selections" -msgstr "Sélections" +msgid "Remove Interface not supported by Router \"%{name}\"" +msgstr "" -#: ../app/views/chargeback/_cb_assignments.html.haml:96 -#: ../app/views/chargeback/_cb_assignments.html.haml:157 -#: ../app/views/chargeback/_cb_assignments.html.haml:194 -#: ../app/views/chargeback/_cb_assignments.html.haml:231 -#: ../app/views/chargeback/_cb_rate_show.html.haml:44 -msgid "Rate" -msgstr "Vitesse" +msgid "Remove Interface on Subnet from Router \"%{name}\" failed: Task start failed: ID [%{id}]" +msgstr "" -#: ../app/views/chargeback/_cb_rate_currency.html.haml:3 -msgid "Rate (in %{currency})" +msgid "Remove Interface on Subnet from Router \"%{name}\" was cancelled by the user" msgstr "" -#: ../app/views/chargeback/_cb_rate_edit.html.haml:38 -msgid "Currencies" -msgstr "Devises" +msgid "Remove Jobs" +msgstr "Supprimer les tâches" -#: ../app/views/chargeback/_cb_rate_edit.html.haml:47 -msgid "Select currency: " -msgstr "Sélectionner une devise : " +msgid "Remove Methods" +msgstr "Supprimer les méthodes" -#: ../app/views/chargeback/_cb_rate_edit.html.haml:62 -#: ../app/views/chargeback/_cb_rate_show.html.haml:30 -msgid "Rate Details" -msgstr "Détails de la vitesse" +msgid "Remove Middleware Datasource" +msgstr "Supprimer la source de données de middleware" -#: ../app/views/chargeback/_cb_rate_edit.html.haml:67 -msgid "* Caution: The value Range end will not be included in the tier." -msgstr "" -"* Attention : la fin de la plage de valeurs ne sera pas incluse dans le niveau" -"." +msgid "Remove Middleware Datasources" +msgstr "Supprimer les sources de données de middleware" -#: ../app/views/chargeback/_cb_rate_edit_table.html.haml:12 -msgid "Per Time" -msgstr "Par durée" +msgid "Remove Middleware Providers" +msgstr "Supprimer les fournisseurs de middleware" -#: ../app/views/chargeback/_cb_rate_edit_table.html.haml:14 -msgid "Per Unit" -msgstr "Par unité" +msgid "Remove Namespaces" +msgstr "Supprimer les espaces de nommage" -#: ../app/views/chargeback/_cb_rate_edit_table.html.haml:16 -#: ../app/views/chargeback/_cb_rate_show.html.haml:42 -#: ../app/views/layouts/_perf_options.html.haml:73 -msgid "Range" -msgstr "Plage" +msgid "Remove Network Providers" +msgstr "Supprimer les fournisseurs de réseau" -#: ../app/views/chargeback/_cb_rate_edit_table.html.haml:27 -#: ../app/views/chargeback/_cb_rate_show.html.haml:53 -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:123 -msgid "Finish" -msgstr "Terminer" +msgid "Remove Object Storage Container" +msgstr "" -#: ../app/views/chargeback/_cb_rate_edit_table.html.haml:85 -#: ../app/views/chargeback/_tier_first_row.haml:46 -msgid "Add a new tier" -msgstr "Ajouter un nouveau niveau" +msgid "Remove Object Storage Containers" +msgstr "" -#: ../app/views/chargeback/_cb_rate_edit_table.html.haml:100 -#: ../app/views/chargeback/_tier_row.haml:12 -msgid "Remove the tier" -msgstr "Supprimer le niveau" +msgid "Remove Object Storage Managers" +msgstr "" -#: ../app/views/chargeback/_cb_rate_show.html.haml:46 -#: ../app/views/ops/_tenant_quota_form.html.haml:37 -msgid "Units" -msgstr "Unités" +msgid "Remove Object Storage Object" +msgstr "" -#: ../app/views/chargeback/_cb_tier_edit_values.html.haml:5 -#: ../app/views/chargeback/_cb_tier_edit_values.html.haml:12 -msgid "Infinity" -msgstr "Infinité" +msgid "Remove Object Storage Objects" +msgstr "" -#: ../app/views/chargeback/_rates_list.html.haml:9 -#: ../app/views/chargeback/_rates_list.html.haml:14 -msgid "View Compute Rates" -msgstr "Afficher les taux de calcul" +msgid "Remove Orchestration Stacks" +msgstr "Supprimer les piles d'orchestration" -#: ../app/views/chargeback/_rates_list.html.haml:22 -#: ../app/views/chargeback/_rates_list.html.haml:27 -msgid "View Storage Rates" -msgstr "Afficher les taux de stockage" +msgid "Remove PXE Servers" +msgstr "Supprimer les serveurs PXE" -#: ../app/views/chargeback/_reports_list.html.haml:15 -#: ../app/views/chargeback/_reports_list.html.haml:39 -#: ../app/views/chargeback/_reports_list.html.haml:93 -#: ../app/views/report/_report_list.html.haml:32 -#: ../app/views/report/_savedreports_list.html.haml:11 -msgid "No Reports available." -msgstr "Aucun rapport disponible." +msgid "Remove Resource Pool" +msgstr "Supprimer le pool de ressources" -#: ../app/views/chargeback/_reports_list.html.haml:21 -msgid "View this Report" -msgstr "Afficher ce rapport" +msgid "Remove Resource Pools" +msgstr "Supprimer les pools de ressources" -#: ../app/views/chargeback/_reports_list.html.haml:50 -msgid "Run On" -msgstr "Exécuter le" +msgid "Remove Roles" +msgstr "Supprimer les rôles" -#: ../app/views/chargeback/_reports_list.html.haml:54 -#: ../app/views/miq_capacity/_planning_options.html.haml:124 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:7 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:18 -#: ../app/views/security_group/_main.html.haml:20 -msgid "Source" -msgstr "Source" +msgid "Remove Selected items" +msgstr "Supprimer les éléments sélectionnés" -#: ../app/views/chargeback/_reports_list.html.haml:63 -msgid "Click to view saved report" -msgstr "Cliquez pour afficher le rapport enregistré" +msgid "Remove Service" +msgstr "Supprimer le service" -#: ../app/views/chargeback/_reports_list.html.haml:67 -msgid "Saved Report: %{report_name}" -msgstr "Rapport enregistré : %{report_name}" +msgid "Remove Services" +msgstr "Supprimer les services" -#: ../app/views/cloud_network/_common_new_edit.html.haml:3 -msgid "Network Information" -msgstr "Informations réseau" +msgid "Remove Storage Managers" +msgstr "Supprimer les gestionnaires de stockage" -#: ../app/views/cloud_network/_common_new_edit.html.haml:12 -msgid "Network Name" -msgstr "Nom du réseau" +msgid "Remove System Image Types" +msgstr "Supprimer les types d'images système" -#: ../app/views/cloud_network/_common_new_edit.html.haml:30 -msgid "External Router" -msgstr "Routeur externe" +msgid "Remove Tags" +msgstr "Supprimer les balises" -#: ../app/views/cloud_network/_common_new_edit.html.haml:36 -#: ../app/views/cloud_network/_common_new_edit.html.haml:74 -#: ../app/views/cloud_subnet/_common_new_edit.haml:49 -#: ../app/views/configuration/_ui_1.html.haml:41 -#: ../app/views/configuration/_ui_2.html.haml:120 -#: ../app/views/middleware_server/_deploy.html.haml:69 -#: ../app/views/middleware_server/_deploy.html.haml:104 -#: ../app/views/miq_policy/_alert_details.html.haml:57 -#: ../app/views/miq_policy/_policy_details.html.haml:70 -#: ../app/views/ops/_category_form.html.haml:78 -#: ../app/views/ops/_category_form.html.haml:97 -#: ../app/views/ops/_category_form.html.haml:182 -#: ../app/views/ops/_category_form.html.haml:200 -#: ../app/views/ops/_category_form.html.haml:219 -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:30 -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:89 -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:150 -#: ../app/views/ops/_settings_server_tab.html.haml:442 -#: ../app/views/report/_form_sort.html.haml:78 -#: ../app/views/report/_report_list.html.haml:161 -msgid "Yes" -msgstr "Oui" +msgid "Remove Tags Settings" +msgstr "Supprimer les paramètres des balises" -#: ../app/views/cloud_network/_common_new_edit.html.haml:49 -msgid "Administrative State" -msgstr "État administratif" +msgid "Remove Template" +msgstr "Supprimer le modèle" -#: ../app/views/cloud_network/_common_new_edit.html.haml:55 -msgid "Down" -msgstr "" +msgid "Remove Templates" +msgstr "Supprimer les modèles" -#: ../app/views/cloud_network/_common_new_edit.html.haml:55 -msgid "Up" -msgstr "" +msgid "Remove VM(s)" +msgstr "Supprimer la ou les MV" -#: ../app/views/cloud_network/_common_new_edit.html.haml:68 -msgid "Shared" -msgstr "Partagé" +msgid "Remove Virtual Machine" +msgstr "Supprimer la machine virtuelle" -#: ../app/views/cloud_network/edit.html.haml:10 -#: ../app/views/cloud_network/new.html.haml:36 -msgid "Network Provider Information" -msgstr "Informations Fournisseur réseau" +msgid "Remove Volumes" +msgstr "Supprimer les volumes" -#: ../app/views/cloud_network/edit.html.haml:19 -#: ../app/views/cloud_network/new.html.haml:45 -msgid "Provider Network Type" -msgstr "Fournir Type de réseau" +msgid "Remove all Actions from this Event" +msgstr "Supprimer toutes les actions de cet événement" -#: ../app/views/cloud_network/edit.html.haml:37 -#: ../app/views/cloud_network/new.html.haml:63 -#: ../app/views/cloud_subnet/new.html.haml:104 -#: ../app/views/cloud_volume/new.html.haml:51 -#: ../app/views/network_router/new.html.haml:86 -#: ../app/views/shared/views/_prov_dialog.html.haml:91 -msgid "Placement" -msgstr "Placement" +msgid "Remove all Alerts from this Profile" +msgstr "Supprimer toutes les alertes de ce profil" -#: ../app/views/cloud_network/new.html.haml:7 -msgid "Network Management Provider" -msgstr "Fournisseur Gestion réseau" +msgid "Remove all Conditions from this Policy" +msgstr "Supprimer toutes les conditions de cette stratégie" -#: ../app/views/cloud_network/new.html.haml:16 -#: ../app/views/cloud_subnet/new.html.haml:16 -#: ../app/views/network_router/new.html.haml:16 -msgid "Network Manager" -msgstr "Gestionnaire réseau" +msgid "Remove all Policies from this Profile" +msgstr "Supprimer toutes les stratégies de ce profil" + +msgid "Remove from Dashboard" +msgstr "Supprimer du tableau de bord" + +msgid "Remove from the VMDB" +msgstr "Supprimer du VMDB" -#: ../app/views/cloud_subnet/_common_new_edit.haml:7 -msgid "Subnet Name" -msgstr "Nom du sous-réseau" +msgid "Remove item" +msgstr "Supprimer l'élément" -#: ../app/views/cloud_subnet/_common_new_edit.haml:25 -msgid "Gateway" -msgstr "Passerelle" +msgid "Remove items" +msgstr "Supprimer les éléments" -#: ../app/views/cloud_subnet/_common_new_edit.haml:43 -msgid "Enable DHCP" +msgid "Remove resources?" msgstr "" -#: ../app/views/cloud_subnet/edit.html.haml:16 -#: ../app/views/cloud_subnet/new.html.haml:67 -msgid "IP Version" -msgstr "Version IP" +msgid "Remove selected Actions from this Event" +msgstr "Supprimer les actions sélectionnées de cet événement" -#: ../app/views/cloud_subnet/edit.html.haml:35 -msgid "CIDR" -msgstr "CIDR " +msgid "Remove selected Alerts from this Action" +msgstr "Supprimer les actions sélectionnées de cette action" -#: ../app/views/cloud_subnet/new.html.haml:7 -#: ../app/views/network_router/new.html.haml:7 -msgid "Network Provider" -msgstr "Fournisseur réseau" +msgid "Remove selected Alerts from this Profile" +msgstr "Supprimer les alertes sélectionnées de ce profil" -#: ../app/views/cloud_subnet/new.html.haml:35 -msgid "Cloud Subnet details" -msgstr "" +msgid "Remove selected Arbitration Profiles from the VMDB" +msgstr "Supprimer les profils d'arbitrage sélectionnés du VMDB" -#: ../app/views/cloud_subnet/new.html.haml:86 -msgid "Subnet CIDR" -msgstr "CIDR sous-réseau" +msgid "Remove selected Block Storage Managers" +msgstr "" -#: ../app/views/cloud_tenant/_main.html.haml:9 -msgid "Quotas" -msgstr "Quotas" +msgid "Remove selected Catalog Items" +msgstr "Supprimer les éléments de catalogue sélectionnés" -#: ../app/views/cloud_tenant/edit.html.haml:16 -#: ../app/views/cloud_tenant/new.html.haml:38 -msgid "Tenant Name" -msgstr "Nom locataire" +msgid "Remove selected Catalogs" +msgstr "Supprimer Catalogues sélectionnés" -#: ../app/views/cloud_tenant/new.html.haml:16 -#: ../app/views/host_aggregate/new.html.haml:50 -msgid "Cloud Provider" -msgstr "Fournisseur Cloud" +msgid "Remove selected Chargeback Rates from the VMDB" +msgstr "Supprimer les taux de rétro-facturation sélectionnés du VMDB" -#: ../app/views/cloud_topology/show.html.haml:90 -#: ../app/views/infra_topology/show.html.haml:71 -#: ../app/views/miq_ae_class/_git_domain_refresh.html.haml:47 -#: ../app/views/miq_ae_tools/_import_export.html.haml:214 -#: ../app/views/network_topology/show.html.haml:166 -#: ../app/views/ops/_all_tabs.html.haml:82 -#: ../app/views/ops/_rbac_group_details.html.haml:276 -#: ../app/views/ops/_rbac_tag_box.html.haml:11 -msgid "Tags" -msgstr "balises" +msgid "Remove selected Cloud Providers" +msgstr "Supprimer les fournisseurs de cloud sélectionnés" -#: ../app/views/cloud_topology/show.html.haml:108 -#: ../app/views/container_topology/show.html.haml:176 -#: ../app/views/infra_topology/show.html.haml:89 -#: ../app/views/network_topology/show.html.haml:203 -msgid "" -"Click on the legend to show/hide entities, and double click/right click the en" -"tities in the graph to navigate to their summary pages." -msgstr "" -"Cliquez sur la légende pour afficher/masquer les entités, et double-cliquez/cl" -"iquez à l'aide du bouton droit sur les entités du graphique pour accéder à leu" -"rs pages de synthèse." +msgid "Remove selected Conditions from this Policy" +msgstr "Supprimer les conditions sélectionnées de cette stratégie" -#: ../app/views/cloud_volume/attach.html.haml:7 -#: ../app/views/vm_common/_attach.html.haml:7 -msgid "Attach Volume" -msgstr "Associer le volume" +msgid "Remove selected Containers Providers" +msgstr "Supprimer les fournisseurs de conteneurs sélectionnés" -#: ../app/views/cloud_volume/attach.html.haml:34 -#: ../app/views/vm_common/_attach.html.haml:34 -msgid "Device Mountpoint (optional)" -msgstr "Point de montage du périphérique (facultatif)" +msgid "Remove selected Customization Templates" +msgstr "Supprimer les modèles de personnalisation sélectionnés" -#: ../app/views/cloud_volume/attach.html.haml:58 -msgid "Attach" -msgstr "Associer" +msgid "Remove selected Datastores" +msgstr "Supprimer les magasins de données sélectionnés" -#: ../app/views/cloud_volume/backup_new.html.haml:16 -msgid "Backup Name" -msgstr "Nom de sauvegarde" +msgid "Remove selected Datawarehouse Providers" +msgstr "" -#: ../app/views/cloud_volume/backup_new.html.haml:34 -msgid "Incremental?" -msgstr "Incrémentiel ?" +msgid "Remove selected Dialogs" +msgstr "Suppprimer les boîtes de dialogue sélectionnées" -#: ../app/views/cloud_volume/backup_select.html.haml:16 -msgid "Cloud Volume Backup" -msgstr "Sauvegarde du Volume Cloud" +msgid "Remove selected Domains" +msgstr "Supprimer les domaines sélectionnés" -#: ../app/views/cloud_volume/detach.html.haml:7 -#: ../app/views/vm_common/_detach.html.haml:7 -msgid "Detach Volume" -msgstr "Dissocier le volume" +msgid "Remove selected ISO Datastores" +msgstr "Supprimer les magasins de données ISO sélectionnés" -#: ../app/views/cloud_volume/detach.html.haml:40 -msgid "Detach" -msgstr "Dissocier" +msgid "Remove selected Infrastructure Providers" +msgstr "Supprimer les fournisseurs d'infrastructure sélectionnés" -#: ../app/views/cloud_volume/edit.html.haml:7 -msgid "Edit Volume" -msgstr "Modifier le volume" +msgid "Remove selected Instances" +msgstr "Supprimer les instances sélectionnées" -#: ../app/views/cloud_volume/edit.html.haml:16 -#: ../app/views/cloud_volume/new.html.haml:16 -msgid "Volume Name" -msgstr "Nom du volume" +msgid "Remove selected Items" +msgstr "Supprimer les éléments sélectionnés" -#: ../app/views/cloud_volume/new.html.haml:34 -msgid "Size (in gigabytes)" -msgstr "Taille (giga-octets)" +msgid "Remove selected Jobs" +msgstr "Supprimer les tâches sélectionnées" -#: ../app/views/cloud_volume/snapshot_new.html.haml:16 -#: ../app/views/miq_policy/_action_options.html.haml:161 -msgid "Snapshot Name" -msgstr "Nom du cliché" +msgid "Remove selected Key Pairs" +msgstr "Supprimer les paires de clés sélectionnées" -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:11 -#: ../app/views/configuration/_timeprofile_form.html.haml:76 -#: ../app/views/configuration/_ui_4.html.haml:16 -#: ../app/views/layouts/_tl_options.html.haml:116 -msgid "Days" -msgstr "Jours" +msgid "Remove selected Methods" +msgstr "Supprimer les méthodes sélectionnées" -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:68 -msgid "(All)" -msgstr "(Tous)" +msgid "Remove selected Middleware Providers" +msgstr "Supprimer les fournisseurs de middleware sélectionnés" -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:58 -#: ../app/views/configuration/_timeprofile_form.html.haml:154 -#: ../app/views/configuration/_ui_4.html.haml:16 -msgid "Hours" -msgstr "Heures" +msgid "Remove selected Namespaces" +msgstr "Supprimer les espaces de nommage sélectionnés" -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:72 -msgid "AM:" -msgstr "AM:" +msgid "Remove selected Network Providers" +msgstr "Supprimer les fournisseurs de réseau sélectionnés" -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:111 -msgid "PM:" -msgstr "PM:" +msgid "Remove selected Object Storage Containers" +msgstr "" -#: ../app/views/configuration/_timeprofile_form.html.haml:3 -msgid "Time Profile Information" -msgstr "Informations sur le profil de temps" +msgid "Remove selected Object Storage Managers" +msgstr "" -#: ../app/views/configuration/_timeprofile_form.html.haml:51 -#: ../app/views/miq_policy/_condition_details.html.haml:45 -#: ../app/views/miq_policy/_policy_details.html.haml:113 -#: ../app/views/miq_policy/_policy_details.html.haml:256 -msgid "Scope" -msgstr "Portée" +msgid "Remove selected Object Storage Objects" +msgstr "" -#: ../app/views/configuration/_timeprofile_form.html.haml:56 -#: ../app/views/miq_task/_tasks_options.html.haml:44 -msgid "All Users" -msgstr "Tous les utilisateurs" +msgid "Remove selected Orchestration Stacks" +msgstr "Supprimer les piles d'orchestration sélectionnées" -#: ../app/views/configuration/_timeprofile_form.html.haml:56 -msgid "Current User" -msgstr "Utilisateur actuel" +msgid "Remove selected Orchestration Templates" +msgstr "Supprimer les modèles d'orchestration sélectionnés" -#: ../app/views/configuration/_timeprofile_form.html.haml:81 -#: ../app/views/configuration/_timeprofile_form.html.haml:159 -#: ../app/views/layouts/gtl/_list.html.haml:85 -#: ../app/views/miq_capacity/_planning_options.html.haml:301 -#: ../app/views/miq_request/_prov_options.html.haml:24 -#: ../app/views/miq_request/_prov_options.html.haml:68 -#: ../app/views/miq_task/_tasks_options.html.haml:143 -#: ../app/views/report/_form_sort.html.haml:206 -#: ../app/views/report/_form_sort.html.haml:218 -msgid "All" -msgstr "Tout" +msgid "Remove selected Orchestration Templates?" +msgstr "Supprimer les modèles d'orchestration sélectionnés ?" -#: ../app/views/configuration/_timeprofile_form.html.haml:144 -msgid "At least one day needs to be selected" -msgstr "Au moins un Jour doit être sélectionné" +msgid "Remove selected PXE Servers" +msgstr "Supprimer les serveurs PXE sélectionnés" -#: ../app/views/configuration/_timeprofile_form.html.haml:180 -msgid "AM" -msgstr "AM" +msgid "Remove selected Policies from this Profile" +msgstr "Supprimer les stratégies sélectionnées de ce profil" -#: ../app/views/configuration/_timeprofile_form.html.haml:239 -msgid "PM" -msgstr "PM" +msgid "Remove selected Resource Pools" +msgstr "Supprimer les pools de ressources sélectionnés" -#: ../app/views/configuration/_timeprofile_form.html.haml:312 -msgid "At least one hour needs to be selected" -msgstr "Au moins une Heure doit être sélectionnée" +msgid "Remove selected Services" +msgstr "Supprimer les services sélectionnés" -#: ../app/views/configuration/_timeprofile_form.html.haml:322 -#: ../app/views/configuration/_ui_4.html.haml:16 -#: ../app/views/ops/_diagnostics_cu_repair_tab.html.haml:23 -msgid "Timezone" -msgstr "Fuseau horaire" +msgid "Remove selected Storage Managers" +msgstr "Supprimer les gestionnaires de stockage sélectionnés" -#: ../app/views/configuration/_timeprofile_form.html.haml:327 -msgid "Determine at Run Time" -msgstr "Déterminer lors de l'exécution" +msgid "Remove selected System Image Types" +msgstr "Supprimer les types d'images système sélectionnés" -#: ../app/views/configuration/_timeprofile_form.html.haml:343 -msgid "Roll Up Daily Performance" -msgstr "Performances quotidiennes de roll-up" +msgid "Remove selected Templates" +msgstr "Supprimer les modèles sélectionnés" -#: ../app/views/configuration/_timeprofile_form.html.haml:374 -msgid "Reports Currently Using This Time Profile" -msgstr "Rapports utilisant actuellement ce profil de temps" +msgid "Remove selected Volumes" +msgstr "Supprimer les volumes sélectionnés" -#: ../app/views/configuration/_ui_1.html.haml:20 -msgid "Grid/Tile Icons" -msgstr "Icônes de grille/titre" +msgid "Remove selected items" +msgstr "Supprimer les éléments sélectionnés" -#: ../app/views/configuration/_ui_1.html.haml:25 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:40 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:117 -msgid "Template" -msgstr "Modèle" +msgid "Remove the current filter" +msgstr "Supprimer le filtre actuel" -#: ../app/views/configuration/_ui_1.html.haml:25 -msgid "VM" -msgstr "MV" +msgid "Remove the tier" +msgstr "Supprimer le niveau" -#: ../app/views/configuration/_ui_1.html.haml:36 -msgid "Show %{title} Quadrants" -msgstr "Afficher les quadrants de %{title}" +msgid "Remove this %{title} from the comparison" +msgstr "Supprimer ce(tte) %{title} de la comparaison" -#: ../app/views/configuration/_ui_1.html.haml:55 -msgid "Truncate Long Text" -msgstr "Tronquer le texte long" +msgid "Remove this %{type}" +msgstr "Supprimer ce(tte) %{type}" -#: ../app/views/configuration/_ui_1.html.haml:60 -msgid "Back (ABCD...)" -msgstr "Retour (ABCD...)" +msgid "Remove this Button" +msgstr "Supprimer ce bouton" -#: ../app/views/configuration/_ui_1.html.haml:60 -msgid "Front (...1234)" -msgstr "Avant (...1234)" +msgid "Remove this Button Group" +msgstr "Supprimer ce groupe de boutons" -#: ../app/views/configuration/_ui_1.html.haml:60 -msgid "Middle (AB...34)" -msgstr "Intermédiaire (AB...34)" +msgid "Remove this Catalog" +msgstr "Supprimer ce catalogue" -#: ../app/views/configuration/_ui_1.html.haml:79 -msgid "Start Page" -msgstr "Page de début" +msgid "Remove this Catalog Item" +msgstr "Supprimer cet élément de catalogue" -#: ../app/views/configuration/_ui_1.html.haml:86 -msgid "Show at Login" -msgstr "Afficher à la connexion" +msgid "Remove this Chargeback Rate from the VMDB" +msgstr "Supprimer ce taux de rétrofacturation du VMDB" -#: ../app/views/configuration/_ui_1.html.haml:111 -msgid "Default Items Per Page" -msgstr "Éléments par défaut par page" +msgid "Remove this Class" +msgstr "Supprimer cette classe" -#: ../app/views/configuration/_ui_1.html.haml:143 -msgid "Display Settings" -msgstr "Paramètres d'affichage" +msgid "Remove this Cloud Provider" +msgstr "Suppprimer ce fournisseur de cloud" -#: ../app/views/configuration/_ui_1.html.haml:146 -msgid "Chart Theme" -msgstr "Thème du graphique" +msgid "Remove this Condition from Policy [%{condition_policy_description}]" +msgstr "Supprimer cette condition de la stratégie [%{condition_policy_description}]" -#: ../app/views/configuration/_ui_1.html.haml:146 -msgid "Global Default" -msgstr "Valeur par défaut globale" +msgid "Remove this Containers Provider" +msgstr "Supprimer ce fournisseur de conteneurs" -#: ../app/views/configuration/_ui_1.html.haml:146 -msgid "Locale" -msgstr "Paramètres régionaux" +msgid "Remove this Custom Image" +msgstr "Supprimer cette image personnalisée" -#: ../app/views/configuration/_ui_1.html.haml:146 -#: ../app/views/miq_capacity/_bottlenecks_options.html.haml:54 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:128 -#: ../app/views/ops/_schedule_form_timer.html.haml:43 -#: ../app/views/report/_form_filter_chargeback.html.haml:314 -#: ../app/views/report/_schedule_form_timer.html.haml:86 -msgid "Time Zone" -msgstr "Fuseau horaire" +msgid "Remove this Customization Template" +msgstr "Supprimer ce modèle de personnalisation" -#: ../app/views/configuration/_ui_2.html.haml:19 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:5 -msgid "General" -msgstr "Général" +msgid "Remove this Datastore" +msgstr "Supprimer ce magasin de données" -#: ../app/views/configuration/_ui_2.html.haml:22 -msgid "Compare" -msgstr "Comparer" +msgid "Remove this Datawarehouse Provider" +msgstr "" -#: ../app/views/configuration/_ui_2.html.haml:22 -msgid "Compare Mode" -msgstr "Mode de comparaison" +msgid "Remove this Dialog" +msgstr "Supprimer cette boîte de dialogue" -#: ../app/views/configuration/_ui_2.html.haml:22 -msgid "Drift" -msgstr "Dérive" +msgid "Remove this Domain" +msgstr "Supprimer ce domaine" -#: ../app/views/configuration/_ui_2.html.haml:22 -msgid "Drift Mode" -msgstr "Mode de dérive" +msgid "Remove this ISO Datastore" +msgstr "Supprimer ce magasin de données ISO" -#: ../app/views/configuration/_ui_2.html.haml:108 -msgid "VM Visibility" -msgstr "Visibilité MV" +msgid "Remove this Image" +msgstr "Supprimer cette image" -#: ../app/views/configuration/_ui_2.html.haml:115 -msgid "Show VMs in Explorer tree." -msgstr "Afficher les MV dans l'arborescence d'Explorer" +msgid "Remove this Infrastructure Provider" +msgstr "Supprimer ce fournisseur d'infrastructure" -#: ../app/views/configuration/_ui_2.html.haml:127 -msgid "" -"Warning: Enabling this option may cause performance issues in large environmen" -"ts (i.e. thousands of VMs)" -msgstr "" -"Avertissement : activer cette option risque de créer des problèmes de performa" -"nce à grande échelle (c-a-d dans des milliers de MV)" +msgid "Remove this Instance" +msgstr "Supprimer cette instance" -#: ../app/views/configuration/_ui_2.html.haml:146 -msgid "Middleware Messaging" -msgstr "Messagerie de middleware" +msgid "Remove this Job" +msgstr "Supprimer cette tâche" -#: ../app/views/configuration/_ui_2.html.haml:146 -msgid "Middleware Providers" -msgstr "Fournisseurs de middleware" +msgid "Remove this Key Pair" +msgstr "Supprimer cette paire de clés" -#: ../app/views/configuration/_ui_2.html.haml:175 -msgid "Cloud Providers" -msgstr "Fournisseurs Cloud" +msgid "Remove this Method" +msgstr "Supprimer cette méthode" -#: ../app/views/configuration/_ui_2.html.haml:175 -msgid "Object Store" -msgstr "Support de sauvegarde des objets" +msgid "Remove this Middleware Provider" +msgstr "Supprimer ce fournisseur de middleware" -#: ../app/views/configuration/_ui_2.html.haml:210 -msgid "Configuration Management Configured Systems" -msgstr "Gestion de la configuration - Systèmes configurés" +msgid "Remove this Namespace" +msgstr "Supprimer cet espace de nommage" -#: ../app/views/configuration/_ui_2.html.haml:210 -msgid "Configuration Management Providers" -msgstr "Fournisseurs de gestion de configuration" +msgid "Remove this Network Provider" +msgstr "Supprimer ce fournisseur de réseau" -#: ../app/views/configuration/_ui_2.html.haml:210 -msgid "Infrastructure Providers" -msgstr "Fournisseurs d'infrastructure" +msgid "Remove this Orchestration Stack" +msgstr "Supprimer cette pile d'orchestration" -#: ../app/views/configuration/_ui_3.html.haml:13 -msgid "(Checked default filters will be visible.)" -msgstr "(Les filtres par défaut validés seront visibles)" +msgid "Remove this Orchestration Template" +msgstr "Supprimer ce modèle d'orchestration" -#: ../app/views/configuration/_ui_4.html.haml:9 -#: ../app/views/layouts/_compare.html.haml:4 -#: ../app/views/layouts/_gtl.html.haml:18 -#: ../app/views/layouts/_x_gtl.html.haml:19 -#: ../app/views/miq_request/_ae_prov_show.html.haml:7 -#: ../app/views/ops/_diagnostics_savedreports.html.haml:7 -#: ../app/views/ops/_ldap_domain_show.html.haml:246 -#: ../app/views/ops/_ldap_region_show.html.haml:62 -msgid "No Records Found." -msgstr "Aucun enregistrement trouvé." +msgid "Remove this Orchestration Template?" +msgstr "Supprimer ce modèle d'orchestration ?" -#: ../app/views/configuration/_ui_4.html.haml:16 -msgid "Roll Up Performance" -msgstr "Performances de roll-up" +msgid "Remove this PXE Server" +msgstr "Supprimer ce serveur PXE" -#: ../app/views/configuration/_ui_4.html.haml:16 -#: ../app/views/dashboard/login.html.haml:83 -#: ../app/views/dashboard/login.html.haml:87 -#: ../app/views/layouts/_auth_credentials.html.haml:9 -#: ../app/views/layouts/_auth_credentials_keypair.html.haml:7 -#: ../app/views/layouts/_discover_credentials.html.haml:13 -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:4 -#: ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:4 -#: ../app/views/layouts/angular/_auth_credentials_angular.html.haml:3 -#: ../app/views/ops/_diagnostics_database_tab.html.haml:67 -#: ../app/views/ops/_diagnostics_savedreports.html.haml:18 -#: ../app/views/ops/_rbac_group_details.html.haml:210 -#: ../app/views/ops/_rbac_user_details.html.haml:55 -#: ../app/views/ops/_settings_replication_tab.html.haml:140 -#: ../app/views/ops/_zone_form.html.haml:133 -#: ../app/views/report/_report_info.html.haml:155 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:20 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:69 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:25 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:33 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:33 -#: ../app/views/storage_manager/_form.html.haml:156 -msgid "Username" -msgstr "Nom d'utilisateur" +msgid "Remove this Policy Profile" +msgstr "Supprimer ce profil de stratégie" -#: ../app/views/configuration/_ui_4.html.haml:31 -msgid "Click to view Time Profile" -msgstr "Cliquez pour afficher le profil temporel" +msgid "Remove this Provider" +msgstr "Supprimer ce fournisseur" -#: ../app/views/configuration/_ui_4.html.haml:31 -msgid "Click to view/edit Time Profile" -msgstr "Cliquez pour afficher/modifier le profil temporel" +msgid "Remove this Provisioning Entry Point" +msgstr "Supprimer ce point d'entrée de mise en service" -#: ../app/views/consumption/show.html.haml:3 -msgid "Consumption Tab is coming" -msgstr "" +msgid "Remove this Reconfigure Entry Point" +msgstr "Supprimer ce point d'entrée de reconfiguration" -#: ../app/views/container/_container_show.html.haml:24 -#: ../app/views/container_image/_main.html.haml:37 -msgid "Environment variables" -msgstr "Variables d'environnement" +msgid "Remove this Resource Pool" +msgstr "Supprimer ce pool de ressources" -#: ../app/views/container_build/_main.html.haml:10 -#: ../app/views/container_group/_main.html.haml:9 -#: ../app/views/container_image/_main.html.haml:10 -#: ../app/views/container_node/_main.html.haml:9 -#: ../app/views/container_project/_main.html.haml:15 -#: ../app/views/container_replicator/_main.html.haml:9 -#: ../app/views/container_route/_main.html.haml:11 -#: ../app/views/container_service/_main.html.haml:11 -#: ../app/views/container_template/_main.html.haml:22 -msgid "Labels" -msgstr "Libellés" +msgid "Remove this Retirement Entry Point" +msgstr "Supprimer ce point d'entrée de désactivation" -#: ../app/views/container_build/_main.html.haml:28 -msgid "Build Instances" -msgstr "Instances de compilation" +msgid "Remove this Service" +msgstr "Supprimer ce service" -#: ../app/views/container_group/_main.html.haml:12 -msgid "Node Selector" -msgstr "Sélecteur de nœud" +msgid "Remove this Shortcut" +msgstr "Supprimer ce raccourci" -#: ../app/views/container_group/_main.html.haml:18 -#: ../app/views/container_image/_main.html.haml:13 -#: ../app/views/container_node/_main.html.haml:12 -#: ../app/views/container_replicator/_main.html.haml:13 -#: ../app/views/host/_main.html.haml:17 -#: ../app/views/vm_cloud/_main.html.haml:26 -#: ../app/views/vm_common/_main.html.haml:27 -msgid "Compliance" -msgstr "Conformité" +msgid "Remove this Storage Manager" +msgstr "Supprimer ce gestionnaire de stockage" -#: ../app/views/container_group/_main.html.haml:33 -msgid "Container Statuses Summary" -msgstr "Résumé des états de conteneur" +msgid "Remove this System Image Type" +msgstr "Supprimer ce type d'image système" -#: ../app/views/container_image/_main.html.haml:28 -msgid "OpenSCAP Failed Rules Summary" -msgstr "Résumé des règles OpenSCAP ayant échoué" +msgid "Remove this Template" +msgstr "Supprimer ce modèle" -#: ../app/views/container_node/_main.html.haml:15 -#: ../app/views/ems_container/_main.html.haml:18 -#: ../app/views/host/_main.html.haml:27 -#: ../app/views/service/_svcs_show.html.haml:13 -#: ../app/views/vm_cloud/_main.html.haml:19 -#: ../app/views/vm_common/_main.html.haml:20 -msgid "Custom Attributes" -msgstr "Attributs personnalisés" +msgid "Remove this Virtual machine" +msgstr "Supprimer cette machine virtuelle" -#: ../app/views/container_project/_main.html.haml:9 -msgid "Resource Quota" -msgstr "Quota de ressources" +msgid "Remove this Volume" +msgstr "Supprimer ce volume" -#: ../app/views/container_project/_main.html.haml:12 -msgid "Limit Ranges" -msgstr "Limiter les plages" +msgid "Remove this expression element" +msgstr "Supprimer cet élément d'expression" -#: ../app/views/container_replicator/_main.html.haml:11 -#: ../app/views/container_service/_main.html.haml:13 -msgid "Selector" -msgstr "Sélecteur" +msgid "Remove this item" +msgstr "Supprimer cet élément" -#: ../app/views/container_service/_main.html.haml:9 -msgid "Port Configurations" -msgstr "Configurations de ports" +msgid "Remove this widget" +msgstr "Supprimer ce composant d'interface" -#: ../app/views/container_template/_main.html.haml:10 -msgid "Objects" -msgstr "Objets" +msgid "Reorder" +msgstr "Réorganiser" -#: ../app/views/container_topology/show.html.haml:25 -msgid "Replicators" -msgstr "Réplicateurs" +msgid "Reorder Buttons Groups" +msgstr "Réorganiser les groupes de boutons" -#: ../app/views/dashboard/_login_more.html.haml:8 -msgid "New Password" -msgstr "Nouveau mot de passe" +msgid "Reorder Buttons and Groups" +msgstr "Réorganiser les boutons et les groupes" -#: ../app/views/dashboard/_login_more.html.haml:24 -#: ../app/views/layouts/_discover_credentials.html.haml:47 -#: ../app/views/ops/_zone_form.html.haml:167 -msgid "Verify Password" -msgstr "Vérifier le mot de passe" +msgid "Replace items if they already exist?" +msgstr "Remplacer les éléments s'ils existent déjà ?" -#: ../app/views/dashboard/_widget_blank.html.haml:9 -msgid "No data found." -msgstr "Aucune donnée trouvée." +msgid "Replace me." +msgstr "Remplacez-moi." -#: ../app/views/dashboard/_widget_blank.html.haml:11 -msgid "" -"If this widget is new or has just been added to your dashboard, the data is be" -"ing generated and should be available soon." -msgstr "" -"Si ce composant d'interface est nouveau ou vient d'être ajouté à votre tableau" -" de bord, les données sont en cours de génération et devraient bientôt être di" -"sponibles." +msgid "Replication" +msgstr "Réplication" -#: ../app/views/dashboard/_widget_chart.html.haml:11 -msgid "No chart data found" -msgstr "Aucune donnée de graphique trouvée" +msgid "Replication configuration save was successful" +msgstr "L'enregistrement de la configuration de réplication a réussi" -#: ../app/views/dashboard/_widget_chart.html.haml:27 -msgid "Invalid chart data. Try regenerating the widgets." -msgstr "" -"Données de graphique non valides. Essayez de régénérer les composants d'interf" -"ace." +msgid "Replication will be disabled for this region" +msgstr "La réplication sera désactivée pour cette région" -#: ../app/views/dashboard/_widget_footer.html.haml:6 -msgid "Updated" -msgstr "Mis à jour" +msgid "Replicator Compliance Policies" +msgstr "Stratégies de conformité des réplicateurs" -#: ../app/views/dashboard/_widget_footer.html.haml:17 -#: ../app/views/layouts/_pagingcontrols.html.haml:153 -#: ../app/views/layouts/_pagingcontrols.html.haml:154 -#: ../app/views/layouts/_pagingcontrols.html.haml:172 -#: ../app/views/layouts/_pagingcontrols.html.haml:173 -#: ../app/views/layouts/_pagingcontrols.html.haml:189 -#: ../app/views/layouts/_pagingcontrols.html.haml:190 -#: ../app/views/layouts/_saved_report_paging_bar.html.haml:72 -#: ../app/views/layouts/_saved_report_paging_bar.html.haml:73 -#: ../app/views/layouts/_x_pagingcontrols.html.haml:111 -#: ../app/views/layouts/_x_pagingcontrols.html.haml:112 -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:96 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:131 -#: ../app/views/middleware_server/_choose_datasource.html.haml:50 -msgid "Next" -msgstr "Suivant" +msgid "Replicator Conditions" +msgstr "Conditions du réplicateur" -#: ../app/views/dashboard/_widget_menu.html.haml:21 -msgid "Click to go to this location" -msgstr "Cliquez pour accéder à cet emplacement" +msgid "Replicator Control Policies" +msgstr "Stratégies de contrôle des réplicateurs" -#: ../app/views/dashboard/_widget_menu.html.haml:26 -msgid "No shortcuts are authorized for this user, contact your Administrator" -msgstr "Aucun raccourci autorisé pour cet utilisateur. Contactez votre administrateur." +msgid "Replicators" +msgstr "Réplicateurs" -#: ../app/views/dashboard/_widget_report.html.haml:10 -msgid "No Report data found" -msgstr "Aucune donnée de rapport trouvée" +msgid "Report" +msgstr "Rapport" -#: ../app/views/dashboard/_widget_rss.html.haml:7 -msgid "No RSS Feed data found" -msgstr "Aucune donnée de flux RSS trouvée" +msgid "Report \"%{report_name}\"" +msgstr "Rapport \"%{report_name}\"" -#: ../app/views/dashboard/_widgets_menu.html.haml:4 -msgid "No Widgets available to add" -msgstr "Aucun widget disponible à ajouter" +msgid "Report Creation Timeout" +msgstr "Expiration du délai d'attente pour la création du rapport" -#: ../app/views/dashboard/_widgets_menu.html.haml:14 -msgid "Cannot add a Widget, this Dashboard has been locked by the Administrator" -msgstr "" -"Impossible d'ajouter un composant d'interface. Ce tableau de bord a été verrou" -"illé par l'administrateur." +msgid "Report Filter" +msgstr "Filtre de rapports" -#: ../app/views/dashboard/_widgets_menu.html.haml:17 -msgid "Add a widget" -msgstr "Ajouter un widget" +msgid "Report Info" +msgstr "Informations sur le rapport" -#: ../app/views/dashboard/_widgets_menu.html.haml:44 -msgid "Reset Dashboard Widgets to the defaults" -msgstr "Rétablir les valeurs par défaut des composants graphiques du tableau de bord" +msgid "Report Menu for role \"%{role}\" was saved" +msgstr "Le menu de rapports pour le rôle \"%{role}\" a été enregistré" -#: ../app/views/dashboard/auth_error.html.haml:5 -msgid "Authorization Error" -msgstr "Erreur d'autorisation" +msgid "Report Menu set to default" +msgstr "Le menu de rapports a été défini comme menu par défaut" -#: ../app/views/dashboard/login.html.haml:38 -msgid "Invalid Single Sign-On credentials" -msgstr "Informations d'identification SSO (authentification unique) non valides" +msgid "Report Options" +msgstr "Options de rapport" -#: ../app/views/dashboard/login.html.haml:53 -#: ../app/views/dashboard/login.html.haml:151 -#: ../app/views/dashboard/login.html.haml:151 -#: ../app/views/dashboard/login.html.haml:151 -#: ../app/views/layouts/_auth_credentials2.html.haml:10 -msgid "Login" -msgstr "Connexion" +msgid "Report Preview (up to 50 rows)" +msgstr "Aperçu du rapport (jusqu'à 50 lignes)" -#: ../app/views/dashboard/login.html.haml:53 -#: ../app/views/dashboard/login.html.haml:53 -msgid "Login to Corporate System" -msgstr "Connexion au système d'entreprise" +msgid "Report Results by User" +msgstr "Résultats de rapport par utilisateur" -#: ../app/views/dashboard/login.html.haml:71 -msgid "Or" -msgstr "Ou" +msgid "Report Selection" +msgstr "Sélection du rapport" -#: ../app/views/dashboard/login.html.haml:99 -#: ../app/views/dashboard/login.html.haml:103 -#: ../app/views/layouts/_auth_credentials.html.haml:10 -#: ../app/views/layouts/_discover_credentials.html.haml:30 -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:5 -#: ../app/views/layouts/angular/_auth_credentials_angular.html.haml:4 -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:74 -#: ../app/views/ops/_rbac_group_details.html.haml:229 -#: ../app/views/ops/_rbac_user_details.html.haml:82 -#: ../app/views/ops/_settings_replication_tab.html.haml:142 -#: ../app/views/ops/_settings_server_tab.html.haml:514 -#: ../app/views/ops/_zone_form.html.haml:150 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:31 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:32 -#: ../app/views/storage_manager/_form.html.haml:173 -msgid "Password" -msgstr "Mot de passe" +msgid "Report can not be saved unless sort field has been configured for Charts" +msgstr "Le rapport ne peut pas être enregistré si le champ de tri n'a pas été configuré pour les graphiques" -#: ../app/views/dashboard/login.html.haml:103 -msgid "Password or Password+One-Time-Password" -msgstr "Mot de passe ou Mot de passe+Mot de passe-une-seule-utilisation" +msgid "Report cannot be deleted if it's being used by one or more Widgets" +msgstr "Le rapport ne peut pas être supprimé s'il est utilisé par un ou plusieurs composants graphiques" -#: ../app/views/dashboard/login.html.haml:128 -#: ../app/views/dashboard/login.html.haml:128 -#: ../app/views/layouts/_x_edit_buttons.html.haml:185 -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:88 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:123 -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:115 -#: ../app/views/miq_ae_tools/_import_export.html.haml:312 -#: ../app/views/vm_common/_right_size.html.haml:445 -msgid "Back" -msgstr "Retour" +msgid "Report doesn't belong to Widgets." +msgstr "Le rapport ne concerne pas les composants graphiques." -#: ../app/views/dashboard/login.html.haml:137 -msgid "Update Password" -msgstr "Mettre à jour le mot de passe" +msgid "Report generation returned: Status [%{status}] Message [%{message}]" +msgstr "La génération du rapport a renvoyé : Statut [%{status}] Message [%{message}]" -#: ../app/views/dashboard/login.html.haml:137 -msgid "Update password" -msgstr "Mettre à jour le mot de passe" +msgid "Report has been successfully queued to run" +msgstr "Le rapport a été mis en file d'attente en vue de son exécution" -#: ../app/views/dashboard/login.html.haml:159 -#: ../app/views/dashboard/login.html.haml:159 -#: ../app/views/dashboard/login.html.haml:159 -msgid "SSO Login" -msgstr "Identifiant SSO" +msgid "Report is not Scheduled." +msgstr "Le rapport n'est pas planifié." -#: ../app/views/dashboard/login.html.haml:177 -msgid "Region:" -msgstr "Région :" +msgid "Report is not authorized for the logged in user" +msgstr "Le rapport n'est pas autorisé pour l'utilisateur connecté" -#: ../app/views/dashboard/login.html.haml:187 -msgid "Zone:" -msgstr "Zone:" +msgid "Report no longer exists" +msgstr "Le rapport n'existe plus" -#: ../app/views/dashboard/login.html.haml:197 -msgid "Appliance:" -msgstr "Appliance:" +msgid "Report not found." +msgstr "Rapport introuvable." -#: ../app/views/ems_cloud/discover.html.haml:12 -msgid "Discover Type" -msgstr "Détecter le type" +msgid "Report preview generation returned: Status [%{status}] Message [%{message}]" +msgstr "La génération de l'aperçu du rapport a renvoyé : Statut [%{status}] Message [%{message}]" -#: ../app/views/ems_cloud/discover.html.haml:34 -#: ../app/views/ems_cloud/discover.html.haml:41 -#: ../app/views/ems_infra/_form.html.haml:168 -#: ../app/views/layouts/_container_auth.html.haml:2 -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:42 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:74 -#: ../app/views/provider_foreman/_form.html.haml:157 -#: ../app/views/shared/views/_prov_dialog.html.haml:365 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:401 -#: ../app/views/storage_manager/_form.html.haml:147 -msgid "Credentials" -msgstr "Informations d'identification" +msgid "Report: %{name}" +msgstr "Rapport : %{name}" -#: ../app/views/ems_cloud/discover.html.haml:54 -#: ../app/views/layouts/_discover.html.haml:103 -msgid "Start the %{host} Discovery" -msgstr "Lancer la découverte du/de la %{host}" +msgid "Reporting Workers" +msgstr "Workers de rapport" -#: ../app/views/ems_cluster/_main.html.haml:10 -#: ../app/views/host/_main.html.haml:15 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:94 -#: ../app/views/layouts/listnav/_host.html.haml:152 -#: ../app/views/storage/_main.html.haml:17 -#: ../app/views/vm_common/_main.html.haml:14 -msgid "Storage Relationships" -msgstr "Relations de stockage" +msgid "Reports" +msgstr "Rapports" -#: ../app/views/ems_cluster/_main.html.haml:15 -msgid "Totals for %{hosts}" -msgstr "Totaux pour les %{hosts}" +msgid "Reports Currently Using This Time Profile" +msgstr "Rapports utilisant actuellement ce profil de temps" -#: ../app/views/ems_cluster/_main.html.haml:17 -msgid "Totals for VMs" -msgstr "Totaux pour les MV" +msgid "Repositories" +msgstr "" -#: ../app/views/ems_cluster/_main.html.haml:23 -msgid "OpenStack Status" -msgstr "Statut OpenStack" +msgid "Repository" +msgstr "" -#: ../app/views/ems_container/_deploy.html.haml:16 -msgid "Deployment Details" -msgstr "Détails du déploiement" +msgid "Repository Name" +msgstr "Nom du référentiel" -#: ../app/views/ems_container/_deploy.html.haml:37 -msgid "Review" -msgstr "Vérification" +msgid "Repository Name(s)" +msgstr "Nom(s) de référentiel" -#: ../app/views/ems_container/_form.html.haml:45 -msgid "Choose>" -msgstr "Choisir>" +msgid "Repository Name(s):" +msgstr "Nom(s) de référentiel :" -#: ../app/views/ems_container/_form_fields.html.haml:6 -#: ../app/views/ems_datawarehouse/_form_fields.html.haml:6 -#: ../app/views/ems_infra/_form_fields.html.haml:6 -#: ../app/views/ems_middleware/_form_fields.html.haml:6 -msgid "Hostname or IP address" -msgstr "Nom d'hôte ou adresse IP" +msgid "Request" +msgstr "Demande" -#: ../app/views/ems_container/_form_fields.html.haml:11 -#: ../app/views/ems_datawarehouse/_form_fields.html.haml:11 -#: ../app/views/ems_infra/_form_fields.html.haml:11 -#: ../app/views/ems_middleware/_form_fields.html.haml:11 -msgid "Hostname or IPv4/IPv6 address" -msgstr "Nom d'hôte ou adresse IPv4/IPv6" +msgid "Request \"%{name}\" was %{task}" +msgstr "La demande \"%{name}\" a été %{task}" -#: ../app/views/ems_container/_main.html.haml:10 -#: ../app/views/layouts/_multi_auth_credentials.html.haml:3 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:2 -msgid "Endpoints" -msgstr "Points d'accès" +msgid "Request Approval" +msgstr "Approbation de la demande" -#: ../app/views/ems_container/_show_ad_hoc_metrics.html.haml:17 -#: ../app/views/layouts/_adv_search_footer.html.haml:22 -#: ../app/views/layouts/_adv_search_footer.html.haml:25 -#: ../app/views/layouts/_ae_tree_select.html.haml:57 -#: ../app/views/layouts/_ae_tree_select.html.haml:78 -#: ../app/views/layouts/_tl_options.html.haml:145 -#: ../app/views/layouts/_user_input_filter.html.haml:105 -#: ../app/views/layouts/_x_edit_buttons.html.haml:54 -#: ../app/views/layouts/_x_edit_buttons.html.haml:145 -#: ../app/views/layouts/listnav/_compare_sections.html.haml:163 -#: ../app/views/miq_request/_prov_options.html.haml:125 -#: ../app/views/miq_request/_prov_options.html.haml:143 -#: ../app/views/miq_task/_tasks_options.html.haml:158 -#: ../app/views/miq_task/_tasks_options.html.haml:175 -msgid "Apply" -msgstr "Appliquer" +msgid "Request Date:" +msgstr "Date de la demande :" -#: ../app/views/ems_container/_show_ad_hoc_metrics.html.haml:24 -msgid "View Graph" -msgstr "" +msgid "Request Denial" +msgstr "Rejet de la demande" -#: ../app/views/ems_container/_show_ad_hoc_metrics.html.haml:56 -msgid "Most Recent" -msgstr "" +msgid "Request Details" +msgstr "Détails de la demande" -#: ../app/views/ems_container/_show_ad_hoc_metrics.html.haml:140 -#: ../app/views/ops/_db_info.html.haml:34 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:87 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:165 -msgid "Metrics" -msgstr "Métriques" +msgid "Request Header" +msgstr "En-tête de la demande" -#: ../app/views/ems_container/_show_ad_hoc_metrics.html.haml:145 -msgid "Loading available tags" -msgstr "" +msgid "Request ID" +msgstr "ID de la demande" -#: ../app/views/ems_container/_show_ad_hoc_metrics.html.haml:150 -msgid "Add tags and click the Apply button to view available metrics" -msgstr "" +msgid "Request Info" +msgstr "Informations sur la demande" -#: ../app/views/ems_container/_show_ad_hoc_metrics.html.haml:168 -msgid "Change Metrics" -msgstr "" +msgid "Request Information" +msgstr "Informations sur la demande" -#: ../app/views/ems_infra/_form.html.haml:74 -#: ../app/views/shared/views/ems_common/_form.html.haml:79 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:182 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:201 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:258 -msgid "API Version" -msgstr "Version de l''API" +msgid "Request State" +msgstr "État de la demande" -#: ../app/views/ems_infra/_form.html.haml:123 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:346 -msgid "Host Default VNC Start Port" -msgstr "Port VNC de début par défaut de l'hôte" +msgid "Request Type" +msgstr "Type de demande" -#: ../app/views/ems_infra/_form.html.haml:142 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:370 -msgid "Host Default VNC End Port" -msgstr "Port VNC de fin par défaut de l'hôte" +msgid "Request approval was cancelled by the user" +msgstr "L'approbation de la demande a été annulée par l'utilisateur" -#: ../app/views/ems_infra/_form.html.haml:171 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:404 -msgid "Cancel client key change" -msgstr "Annuler le changement de clé du client" +msgid "Request denial was cancelled by the user" +msgstr "Le rejet de la demande a été annulé par l'utilisateur" -#: ../app/views/ems_infra/_form.html.haml:171 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:404 -msgid "Change stored client key" -msgstr "Modifier la clé de client stockée" +msgid "Request is required" +msgstr "La demande est obligatoire" -#: ../app/views/ems_infra/_form.html.haml:171 -#: ../app/views/layouts/_discover_azure_credentials.html.haml:13 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:404 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:184 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:221 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:245 -msgid "Client ID" -msgstr "ID du client" +msgid "Request to Provision" +msgstr "Demande de mise en service" -#: ../app/views/ems_infra/_form.html.haml:171 -#: ../app/views/layouts/_discover_azure_credentials.html.haml:30 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:404 -msgid "Client Key" -msgstr "Clé du client" +msgid "Request to Provision Instances" +msgstr "Demande de mise en service d'instances" -#: ../app/views/ems_infra/_form.html.haml:171 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:404 -msgid "Client Keys do not match" -msgstr "Les clés du client ne correspondent pas" +msgid "Request to Provision VMs" +msgstr "Demande de mise en service de MV" -#: ../app/views/ems_infra/_form.html.haml:171 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:404 -msgid "Confirm Client Key" -msgstr "Confirmez la Clé Client" +msgid "Request to Provision items" +msgstr "Demande de mise en service d'éléments" -#: ../app/views/ems_infra/_form.html.haml:171 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:404 -msgid "" -"Tenant ID, Client ID and matching Client Key fields are needed to perform veri" -"fication of credentials" -msgstr "" -"Les champs ID du locataire, ID du client et les champs Clé du client correspon" -"dants sont nécessaires pour effectuer une vérification des informations d'auth" -"entification" +msgid "Requested by" +msgstr "Demandé par" -#: ../app/views/ems_infra/_form_fields.html.haml:25 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:142 -msgid "Security Protocol" -msgstr "Protocole de sécurité" +msgid "Requested feed is invalid" +msgstr "Le fil demandé n'est pas valide" -#: ../app/views/ems_infra/register_nodes.html.haml:19 -#: ../app/views/ops/rhn/_server_table.html.haml:51 -msgid "Register" -msgstr "Enregistrer" +msgid "Requested pods" +msgstr "Pods demandés" -#: ../app/views/ems_infra/scaledown.html.haml:14 -#: ../app/views/ems_infra/scaling.html.haml:14 -msgid "Orchestration Stack" -msgstr "Pile d'orchestration" +msgid "Requester" +msgstr "Demandeur" -#: ../app/views/ems_infra/scaledown.html.haml:27 -msgid "Number of Compute Hosts" -msgstr "Nombre d'hôtes de calcul" +msgid "Requester:" +msgstr "Demandeur :" -#: ../app/views/ems_infra/scaledown.html.haml:48 -msgid "Maintenance" -msgstr "Maintenance" +msgid "Requests" +msgstr "Demandes" -#: ../app/views/ems_infra/scaledown.html.haml:89 -msgid "Scale Down" -msgstr "Réduire" +msgid "Required" +msgstr "Obligatoire" -#: ../app/views/ems_infra/scaling.html.haml:27 -msgid "Number of Hosts" -msgstr "Nombre d'hôtes" +msgid "Required if SSH login is disabled for the Default account." +msgstr "Obligatoire si la connexion SSH est désactivée pour le compte par défaut." -#: ../app/views/ems_infra/scaling.html.haml:59 -msgid "Scale" -msgstr "Moduler" +msgid "Required. Should have privileged access, such as root or administrator." +msgstr "Obligatoire. Accès privilégié nécessaire, par exemple root ou administrateur." -#: ../app/views/generic_mailer/policy_action_email.html.haml:15 -#: ../app/views/generic_mailer/policy_action_email.text.haml:3 -#: ../app/views/miq_policy/_rsop_form.html.haml:28 -msgid "Event:" -msgstr "Événement :" +msgid "Required. Used to gather Utilization data." +msgstr "Obligatoire. Utilisé pouir collecter des données d'utilisation." -#: ../app/views/generic_mailer/policy_action_email.html.haml:25 -#: ../app/views/generic_mailer/policy_action_email.text.haml:5 -msgid "Entity:" -msgstr "Entité :" +msgid "Reservation" +msgstr "Réservation" -#: ../app/views/host/_form.html.haml:50 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:12 -msgid "Hostname (or IPv4 or IPv6 address)" -msgstr "Nom d'hôte (ou adresse IPv4 ou IPv6)" +msgid "Reset" +msgstr "Réinitialiser" -#: ../app/views/host/_form.html.haml:74 -msgid "Host platform" -msgstr "Plateforme hôte" +msgid "Reset All menus to %{product} defaults" +msgstr "Réinitialiser tous les menus aux valeurs par défaut de %{product}" -#: ../app/views/host/_form.html.haml:168 -msgid "Selected" -msgstr "Sélectionné" +msgid "Reset All menus to defaults" +msgstr "Réinitialiser tous les menus aux valeurs par défaut" -#: ../app/views/host/_form.html.haml:171 -msgid "Click on a Host to fetch its settings" -msgstr "Cliquez sur un hôte pour récupérer ses paramètres" +msgid "Reset Changes" +msgstr "Réinitialiser les modifications" -#: ../app/views/host/_main.html.haml:19 -#: ../app/views/layouts/listnav/_host.html.haml:182 -#: ../app/views/ops/_settings_server_tab.html.haml:603 -#: ../app/views/vm_cloud/_main.html.haml:30 -#: ../app/views/vm_common/_main.html.haml:31 -msgid "Security" -msgstr "Sécurité" +msgid "Reset Dashboard Widgets to the defaults" +msgstr "Rétablir les valeurs par défaut des composants graphiques du tableau de bord" -#: ../app/views/host/_main.html.haml:29 -#: ../app/views/vm_cloud/_main.html.haml:21 -#: ../app/views/vm_common/_main.html.haml:22 -msgid "VC Custom Attributes" -msgstr "Attributs personnalisés VC" +msgid "Reset Lockout Counter" +msgstr "Réinitaliser le compteur de cadenassage" -#: ../app/views/host/_main.html.haml:31 -msgid "Authentication Status" -msgstr "État de l'authentification" +msgid "Reset all Planning options" +msgstr "Réinitialiser toutes les options de planning" -#: ../app/views/host/_main.html.haml:35 -msgid "Openstack Hardware" -msgstr "Matériel Openstack" +msgid "Reset all Policy Simulation options" +msgstr "Réinitialiser toutes les options de simulation de stratégie" -#: ../app/views/host/_main.html.haml:37 -msgid "OpenStack Service Status" -msgstr "Statut du service OpenStack " +msgid "Reset all components in the following domains: %{domains}" +msgstr "Réinitialiser tous les composants dans les domaines suivants : %{domains}" -#: ../app/views/host_aggregate/edit.html.haml:16 -#: ../app/views/host_aggregate/new.html.haml:16 -msgid "Host Aggregate Name" -msgstr "Nom d'agrégat de machines" +msgid "Reset all options" +msgstr "Réinitialiser toutes les options" -#: ../app/views/host_aggregate/new.html.haml:34 -msgid "Availability Zone Name" -msgstr "Nom de la Zone de disponibilité" +msgid "Reset filter changes" +msgstr "Réinitialiser les modifications du filtre" -#: ../app/views/layouts/_about_modal.html.haml:26 -msgid "Browser" -msgstr "Navigateur" +msgid "Reset the filter" +msgstr "Réinitialiser le filtre" -#: ../app/views/layouts/_about_modal.html.haml:26 -msgid "Browser OS" -msgstr "SE du Navigateur" +msgid "Reset the selected items" +msgstr "Réinitialiser les éléments sélectionnés" -#: ../app/views/layouts/_about_modal.html.haml:26 -msgid "Browser Version" -msgstr "Version du Navigateur" +msgid "Reset the selected items?" +msgstr "Réinitialiser les éléments sélectionnés ?" -#: ../app/views/layouts/_about_modal.html.haml:26 -msgid "Server Name" -msgstr "Nom du serveur" +msgid "Reset this Shortcut's text" +msgstr "Réinitialiser le texte de ce raccourci" -#: ../app/views/layouts/_about_modal.html.haml:26 -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:47 -#: ../app/views/ops/_settings_server_tab.html.haml:496 -msgid "User Name" -msgstr "Nom d'utilisateur" +msgid "Reset this VM" +msgstr "Réinitialiser cette MV" -#: ../app/views/layouts/_about_modal.html.haml:26 -msgid "User Role" -msgstr "Rôle de l'utilisateur" +msgid "Reset this VM?" +msgstr "Réinitialiser cette MV ?" -#: ../app/views/layouts/_adv_search.html.haml:36 -#: ../app/views/layouts/_searchbar.html.haml:55 -#: ../app/views/layouts/_x_adv_searchbox.html.haml:53 -msgid "Advanced Search" -msgstr "Recherché avancée" +msgid "Reset this item" +msgstr "Réinitialiser cet élément" -#: ../app/views/layouts/_adv_search_body.html.haml:26 -msgid "Search Expression Preview" -msgstr "Aperçu de l'expression de recherche" +msgid "Reset this item?" +msgstr "Réinitialiser cet élément ?" -#: ../app/views/layouts/_adv_search_body.html.haml:48 -msgid "Choose a saved %{model} filter:" -msgstr "Choisir un filtre %{model} enregistré :" +msgid "Reset to Default" +msgstr "Rétablir les valeurs par défaut" -#: ../app/views/layouts/_adv_search_body.html.haml:54 -#: ../app/views/layouts/_edit_to_email.html.haml:59 -#: ../app/views/ops/_diagnostics_database_tab.html.haml:114 -#: ../app/views/ops/_ldap_region_form.html.haml:60 -msgid "" -msgstr "" +msgid "Reset/synchronization process successfully initiated" +msgstr "Réinitialisation/synchronization correctement lancée" -#: ../app/views/layouts/_adv_search_body.html.haml:72 -msgid "-- OR --" -msgstr "-- OU --" +msgid "Resides on VM" +msgstr "Réside sur une MV" -#: ../app/views/layouts/_adv_search_body.html.haml:83 -msgid "Choose a %{model} report filter" -msgstr "Choisir un filtre de rapport %{model}" +msgid "Resolve" +msgstr "Résoudre" -#: ../app/views/layouts/_adv_search_body.html.haml:99 -msgid "Search Expression" -msgstr "Expression de recherche" +msgid "Resolve conflicts to import the file" +msgstr "Résoudre les conflits pour importer le fichier" -#: ../app/views/layouts/_adv_search_body.html.haml:123 -msgid "Save this %{model} search as:" -msgstr "Enregistrer cette recherche %{model} sous :" +msgid "Resource" +msgid_plural "Resources" +msgstr[0] "Ressource" +msgstr[1] "Ressources" -#: ../app/views/layouts/_adv_search_body.html.haml:145 -msgid "Global search:" -msgstr "Recherche globale :" +msgid "Resource Entity" +msgstr "" -#: ../app/views/layouts/_adv_search_footer.html.haml:9 -#: ../app/views/layouts/_adv_search_footer.html.haml:15 -msgid "Load..." -msgstr "Charger..." +msgid "Resource Label" +msgstr "" -#: ../app/views/layouts/_adv_search_footer.html.haml:9 -msgid "No saved filters or report filters are available to load" -msgstr "Aucun filtre ou filtre de rapport enregistré disponible à charger" +msgid "Resource Pool" +msgstr "Pool de ressources" -#: ../app/views/layouts/_adv_search_footer.html.haml:15 -msgid "Load a filter" -msgstr "Charger un filtre" +msgid "Resource Pool: %{name}" +msgstr "Pool de ressources : %{name}" -#: ../app/views/layouts/_adv_search_footer.html.haml:25 -msgid "Apply the current filter" -msgstr "Appliquer le filtre actuel" +msgid "Resource Pools" +msgstr "Pools de ressources" -#: ../app/views/layouts/_adv_search_footer.html.haml:33 -msgid "Delete the %{model} filter named %{filter}?" -msgstr "Supprimer le filtre %{model} nommé %{filter} ?" +msgid "Resource Quota" +msgstr "Quota de ressources" + +msgid "Resource entity and label" +msgstr "" -#: ../app/views/layouts/_adv_search_footer.html.haml:36 -msgid "Delete the filter named %{filter_name}" -msgstr "Supprimer le filtre nommé %{filter_name}" +msgid "Resource must be selected" +msgstr "La ressource doit être sélectionnée" -#: ../app/views/layouts/_adv_search_footer.html.haml:44 -#: ../app/views/layouts/_adv_search_footer.html.haml:47 -msgid "Save..." -msgstr "Enregistrer..." +msgid "Resources" +msgstr "Ressources" -#: ../app/views/layouts/_adv_search_footer.html.haml:47 -msgid "Save the current filter" -msgstr "Enregistrer le filtre actuel" +msgid "Restart" +msgstr "Redémarrer" -#: ../app/views/layouts/_adv_search_footer.html.haml:57 -msgid "Reset the filter" -msgstr "Réinitialiser le filtre" +msgid "Restart Guest" +msgstr "Redémarrer un invité" -#: ../app/views/layouts/_adv_search_footer.html.haml:65 -msgid "Choose a saved filter or report filter to load" -msgstr "Choisir un filtre enregistré ou un filtre de rapport à charger" +msgid "Restart Server" +msgstr "Redémarrer un serveur" -#: ../app/views/layouts/_adv_search_footer.html.haml:65 -#: ../app/views/layouts/_adv_search_footer.html.haml:71 -msgid "Load" -msgstr "Charger" +msgid "Restart Server Group" +msgstr "" -#: ../app/views/layouts/_adv_search_footer.html.haml:71 -msgid "Load the filter shown above" -msgstr "Charger le filtre affiché ci-dessus" +msgid "Restart Servers in this Server Group" +msgstr "" -#: ../app/views/layouts/_adv_search_footer.html.haml:77 -msgid "Cancel the load" -msgstr "Annuler le chargement" +msgid "Restart initiated for selected deployment(s)" +msgstr "Redémarrage lancé pour le(s) déploiement(s) sélectionné(s)" -#: ../app/views/layouts/_adv_search_footer.html.haml:84 -msgid "Save the current search" -msgstr "Enregistrer la recherche actuelle" +msgid "Restart selected worker" +msgstr "Redémarrer le worker sélectionné" -#: ../app/views/layouts/_adv_search_footer.html.haml:90 -msgid "Cancel the save" -msgstr "Annuler l'enregistrement" +msgid "Restart server" +msgstr "Redémarrer un serveur" -#: ../app/views/layouts/_ae_resolve_options.html.haml:12 -#: ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:5 -#: ../app/views/miq_policy/_action_details.html.haml:123 -#: ../app/views/ops/_schedule_show.html.haml:87 -#: ../app/views/shared/buttons/_ab_show.html.haml:89 -msgid "Object Details" -msgstr "Détails de l'objet" +msgid "Restart the Guest OS on the selected items" +msgstr "Redémarrer le SE invité sur les éléments sélectionnés" -#: ../app/views/layouts/_ae_resolve_options.html.haml:19 -#: ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:11 -#: ../app/views/ops/_schedule_show.html.haml:91 -msgid "System/Process" -msgstr "Système/Processus" +msgid "Restart the Guest OS on the selected items?" +msgstr "Redémarrer le SE invité sur les éléments sélectionnés ?" -#: ../app/views/layouts/_ae_resolve_options.html.haml:63 -#: ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:47 -#: ../app/views/miq_policy/_action_details.html.haml:145 -#: ../app/views/ops/_schedule_show.html.haml:114 -#: ../app/views/shared/buttons/_ab_show.html.haml:124 -msgid "Request" -msgstr "Demande" +msgid "Restart the Guest OS on this VM" +msgstr "Redémarrer le SE invité sur cette MV" -#: ../app/views/layouts/_ae_resolve_options.html.haml:83 -#: ../app/views/layouts/_ae_resolve_options.html.haml:107 -#: ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:70 -#: ../app/views/ops/_schedule_show.html.haml:129 -#: ../app/views/shared/buttons/_ab_show.html.haml:139 -msgid "Object Attribute" -msgstr "Attribut d'objet" +msgid "Restart the Guest OS on this VM?" +msgstr "Redémarrer le SE invité sur cette MV ?" -#: ../app/views/layouts/_ae_resolve_options.html.haml:140 -#: ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:100 -#: ../app/views/shared/buttons/_ab_show.html.haml:162 -msgid "Selection" -msgstr "Sélection" +msgid "Restart the selected items" +msgstr "Redémarrer les éléments sélectionnés" -#: ../app/views/layouts/_ae_resolve_options.html.haml:164 -msgid "Simulation Parameters" -msgstr "Paramètres de simulation" +msgid "Restart the selected items?" +msgstr "Redémarrer les éléments sélectionnés ?" -#: ../app/views/layouts/_ae_resolve_options.html.haml:173 -msgid "Execute Methods" -msgstr "Méthodes d'exécution" +msgid "Restart these Middleware Deployments" +msgstr "Redémarrer ces déploiements de middleware" -#: ../app/views/layouts/_ae_resolve_options.html.haml:190 -#: ../app/views/layouts/angular-bootstrap/_ae_resolve_options.html.haml:126 -#: ../app/views/miq_policy/_action_details.html.haml:160 -#: ../app/views/ops/_schedule_show.html.haml:162 -#: ../app/views/shared/buttons/_ab_show.html.haml:177 -msgid "Attribute/Value Pairs" -msgstr "Paires d'attributs/valeurs" +msgid "Restart this Middleware Deployment" +msgstr "Redémarrer ce déploiement de middleware" -#: ../app/views/layouts/_ae_tree_select.html.haml:34 -msgid "Select Entry Point %{entry_point}" -msgstr "Sélectionner le point d'entrée %{entry_point}" +msgid "Restart this item" +msgstr "Redémarrer cet élément" -#: ../app/views/layouts/_ae_tree_select.html.haml:52 -msgid "Include Domain prefix in the path" -msgstr "Inclure le préfixe du domaine dans le chemin d'accès" +msgid "Restart this item?" +msgstr "Redémarrer cet élément ?" -#: ../app/views/layouts/_auth_bearer_token.html.haml:8 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:136 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:155 -msgid "Token" -msgstr "Jeton" +msgid "Restart this server" +msgstr "Redémarrer ce serveur" -#: ../app/views/layouts/_auth_credentials.html.haml:11 -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:14 -#: ../app/views/ops/_rbac_user_details.html.haml:1 -#: ../app/views/storage_manager/_form.html.haml:3 -msgid "Change stored password" -msgstr "Modifier le mot de passe stocké" +msgid "Restore %{model} \"%{name}\" from a Backup" +msgstr "Restaurer %{model} \"%{name}\" à partir d'une sauvegarde" -#: ../app/views/layouts/_auth_credentials.html.haml:12 -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:15 -#: ../app/views/ops/_rbac_user_details.html.haml:2 -#: ../app/views/storage_manager/_form.html.haml:4 -msgid "Cancel password change" -msgstr "Annuler la modification du mot de passe" +msgid "Restore from a Backup of this Cloud Volume" +msgstr "Restaurer à partir d'une sauvegarde de ce volume cloud" -#: ../app/views/layouts/_auth_credentials.html.haml:66 -msgid "Confirm %{password}" -msgstr "Confirmer %{password}" +msgid "Restore of %{model} \"%{name}\" was cancelled by the user" +msgstr "La restauration de %{model} \"%{name}\" a été annulée par l'utilisateur" -#: ../app/views/layouts/_auth_credentials2.html.haml:10 -msgid "Change Password / Confirm Password" -msgstr "Modifier le mot de passe / Confirmer le mot de passe" +msgid "Restoring %{model} \"%{name}\" from backup" +msgstr "Restaurer %{model} \"%{name}\" à partir de la sauvegarde" -#: ../app/views/layouts/_auth_credentials2.html.haml:10 -msgid "Validate the credentials" -msgstr "Valider les informations d'authentification" +msgid "Results" +msgstr "" -#: ../app/views/layouts/_auth_credentials2.html.haml:64 -#: ../app/views/layouts/_form_buttons_verify.html.haml:19 -#: ../app/views/layouts/_form_buttons_verify.html.haml:28 -#: ../app/views/layouts/_form_buttons_verify.html.haml:46 -#: ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:13 -#: ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:20 -#: ../app/views/ops/_amazon_verify_button.html.haml:2 -#: ../app/views/ops/_amazon_verify_button.html.haml:16 -#: ../app/views/ops/_ldap_server_entry.html.haml:135 -#: ../app/views/ops/_ldap_verify_button.html.haml:4 -#: ../app/views/ops/_ldap_verify_button.html.haml:18 -#: ../app/views/ops/_settings_replication_tab.html.haml:229 -#: ../app/views/ops/_settings_replication_tab.html.haml:237 -#: ../app/views/ops/_settings_replication_tab.html.haml:385 -#: ../app/views/ops/_settings_replication_tab.html.haml:441 -#: ../app/views/ops/_settings_replication_tab.html.haml:449 -msgid "Validate" -msgstr "Valider" +msgid "Resume" +msgstr "Reprendre" -#: ../app/views/layouts/_auth_credentials_keypair.html.haml:8 -#: ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:5 -msgid "Private Key" -msgstr "Clé privée" +msgid "Resume Server" +msgstr "Reprendre un serveur" -#: ../app/views/layouts/_classify_table.html.haml:11 -#: ../app/views/layouts/_tag_edit_assignments.html.haml:13 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:287 -#: ../app/views/ops/_ap_form.html.haml:80 -#: ../app/views/ops/_label_tag_mapping_form.html.haml:63 -#: ../app/views/ops/_settings_co_tags_tab.html.haml:15 -msgid "Category" -msgstr "Catégorie" +msgid "Resume Server Group" +msgstr "" -#: ../app/views/layouts/_classify_table.html.haml:13 -#: ../app/views/layouts/_tag_edit_assignments.html.haml:18 -msgid "Assigned Value" -msgstr "Valeur Assignée" +msgid "Resume Servers in this Server Group" +msgstr "" -#: ../app/views/layouts/_classify_table.html.haml:24 -#: ../app/views/layouts/_tag_edit_assignments.html.haml:31 -msgid "No %{tenant_name} Tags are assigned" -msgstr "Aucune balise %{tenant_name} attribuée" +msgid "Resume the selected items" +msgstr "Reprendre les éléments sélectionnés" -#: ../app/views/layouts/_classify_table.html.haml:27 -#: ../app/views/layouts/_tag_edit_assignments.html.haml:34 -msgid "No %{tenant_name} Tags are common to all of the items below" -msgstr "Aucune balise %{tenant_name} n'est commune à tous les éléments ci-dessous" +msgid "Resume the selected items?" +msgstr "Reprendre les éléments sélectionnés ?" -#: ../app/views/layouts/_classify_table.html.haml:38 -msgid "" -"Are you sure you want to remove the '%{a_parent}[%{a}]' assignment from all of" -" the items below?" -msgstr "" -"Voulez-vous vraiment supprimer l'assignation '%{a_parent}[%{a}]' de tous les é" -"léments sous-jacents ?" +msgid "Resume this Instance" +msgstr "Reprendre cette instance" -#: ../app/views/layouts/_classify_table.html.haml:39 -#: ../app/views/layouts/_tag_edit_assignments.html.haml:45 -msgid "Click to remove this assignment" -msgstr "Cliquez pour supprimer cette affectation" +msgid "Resume this Instance?" +msgstr "Reprendre cette instance ?" -#: ../app/views/layouts/_content.html.haml:60 -msgid "Remove the current filter" -msgstr "Supprimer le filtre actuel" +msgid "Resume this server" +msgstr "Reprendre ce serveur" -#: ../app/views/layouts/_content.html.haml:60 -msgid "clear" -msgstr "effacer" +msgid "Retire %{name}" +msgstr "Désactiver %{name}" -#: ../app/views/layouts/_discover.html.haml:10 -msgid "Discover" -msgstr "Détecter" +msgid "Retire Orchestration Stack" +msgstr "Désactiver une pile d'orchestration" -#: ../app/views/layouts/_discover.html.haml:46 -msgid "IPMI Credentials" -msgstr "Informations d'identification IPMI" +msgid "Retire Service" +msgstr "Désactiver un service" -#: ../app/views/layouts/_discover.html.haml:52 -msgid "Subnet Range" -msgstr "Plage du sous-réseau" +msgid "Retire VM or Instance" +msgstr "Désactiver une MV ou une instance" -#: ../app/views/layouts/_discover.html.haml:59 -msgid "From Address" -msgstr "Depuis l'adresse" +msgid "Retire does not apply to selected %{model}" +msgstr "Désactivation impossible pour le/la %{model} sélectionné(e)" -#: ../app/views/layouts/_discover.html.haml:79 -msgid "To Address" -msgstr "Adresse de destination" +msgid "Retire selected Orchestration Stacks" +msgstr "Désactiver les piles d'orchestration sélectionnées" -#: ../app/views/layouts/_discover_azure_credentials.html.haml:47 -msgid "Azure Tenant ID" -msgstr "ID de locataire Azure" +msgid "Retire selected items" +msgstr "Désactiver les éléments sélectionnés" -#: ../app/views/layouts/_discover_azure_credentials.html.haml:64 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:156 -msgid "Subscription ID" -msgstr "ID d'abonnement" +msgid "Retire the selected Orchestration Stacks?" +msgstr "Désactiver les piles d'orchestration sélectionnées ?" -#: ../app/views/layouts/_drift_history.html.haml:13 -msgid "" -"No drift history found, an Analysis or Virtual Black Box Synchronization for t" -"his VM may need to be run." -msgstr "" -"Aucun historique de dérive trouvé. L'exécution d'une analyse ou d'une synchron" -"isation de Black Box virtuelle pour cette MV peut être nécessaire." +msgid "Retire the selected items" +msgstr "Désactiver les éléments sélectionnés" -#: ../app/views/layouts/_drift_history.html.haml:30 -msgid "Timestamp" -msgstr "Horodatage" +msgid "Retire the selected items?" +msgstr "Désactiver les éléments sélectionnés ?" -#: ../app/views/layouts/_edit_buttons.html.haml:61 -#: ../app/views/ops/_email_verify_button.html.haml:3 -#: ../app/views/ops/_email_verify_button.html.haml:19 -msgid "Verify" -msgstr "Vérifier" +msgid "Retire this Instance" +msgstr "Désactiver cette instance" -#: ../app/views/layouts/_edit_email.html.haml:1 -msgid "E-mail" -msgstr "Email :" +msgid "Retire this Instance?" +msgstr "Désactiver cette instance ?" -#: ../app/views/layouts/_edit_email.html.haml:18 -msgid "Send an E-mail" -msgstr "Envoyer un email" +msgid "Retire this Orchestration Stack" +msgstr "Désactiver cette pile d'orchestration" -#: ../app/views/layouts/_edit_email.html.haml:35 -#: ../app/views/miq_policy/_alert_details.html.haml:300 -msgid "From" -msgstr "De" +msgid "Retire this Service" +msgstr "Désactiver ce service" -#: ../app/views/layouts/_edit_email.html.haml:39 -#: ../app/views/miq_policy/_action_options.html.haml:23 -msgid "(leave blank for default)" -msgstr "(laisser vide pour valeur par défaut)" +msgid "Retire this Service?" +msgstr "Désactiver ce service ?" -#: ../app/views/layouts/_edit_email.html.haml:50 -#: ../app/views/miq_policy/_action_options.html.haml:34 -#: ../app/views/miq_policy/_alert_details.html.haml:308 -#: ../app/views/report/_show_schedule.html.haml:51 -msgid "(Default: %{email_from})" -msgstr "(Par défaut : %{email_from})" +msgid "Retire this VM" +msgstr "Désactiver cette MV" -#: ../app/views/layouts/_edit_form_buttons.html.haml:36 -#: ../app/views/layouts/_edit_form_buttons.html.haml:36 -#: ../app/views/layouts/_edit_form_buttons.html.haml:66 -#: ../app/views/layouts/_edit_form_buttons.html.haml:145 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:32 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:65 -#: ../app/views/layouts/_x_edit_buttons.html.haml:78 -#: ../app/views/layouts/_x_edit_buttons.html.haml:151 -#: ../app/views/miq_request/_prov_form_buttons.html.haml:21 -#: ../app/views/miq_request/_prov_form_buttons.html.haml:39 -msgid "Continue" -msgstr "Continuer" +msgid "Retire this VM?" +msgstr "Désactiver cette MV ?" -#: ../app/views/layouts/_edit_form_buttons.html.haml:94 -#: ../app/views/layouts/_edit_form_buttons.html.haml:154 -msgid "Reset All menus to defaults" -msgstr "Réinitialiser tous les menus aux valeurs par défaut" +msgid "Retired Services" +msgstr "" -#: ../app/views/layouts/_edit_log_depot_settings.html.haml:10 -#: ../app/views/ops/_diagnostics_database_tab.html.haml:134 -msgid "Database Backup Settings" -msgstr "Paramètres de sauvegarde de base de données" +msgid "Retirement" +msgstr "Désactivation" -#: ../app/views/layouts/_edit_log_depot_settings.html.haml:13 -#: ../app/views/ops/_log_collection.html.haml:16 -msgid "Editing Log Depot Settings for %{class}: %{display}" -msgstr "Modification des paramètres du dépôt de journaux pour %{class} : %{display}" +msgid "Retirement Date" +msgstr "Date de désactivation" -#: ../app/views/layouts/_edit_log_depot_settings.html.haml:25 -#: ../app/views/ops/_diagnostics_database_tab.html.haml:146 -#: ../app/views/ops/_log_collection.html.haml:31 -msgid "" -msgstr "" +msgid "Retirement Entry Point" +msgstr "Point d'entrée de désactivation" -#: ../app/views/layouts/_edit_log_depot_settings.html.haml:42 -#: ../app/views/layouts/angular-bootstrap/_edit_log_depot_settings_angular_bootstrap.html.haml:8 -#: ../app/views/layouts/angular/_edit_log_depot_settings_angular.html.haml:6 -msgid "Depot Name" -msgstr "Nom du dépôt" +msgid "Retirement Entry Point (NameSpace/Class/Instance)" +msgstr "Point d'entrée de désactivation (Espace de nommage/Classe/Instance)" -#: ../app/views/layouts/_edit_to_email.html.haml:12 -#: ../app/views/miq_policy/_alert_details.html.haml:320 -msgid "To" -msgstr "À" +msgid "Retirement Info" +msgstr "" -#: ../app/views/layouts/_edit_to_email.html.haml:16 -msgid "(Click to remove)" -msgstr "(Cliquez pour ôter)" +msgid "Retirement State" +msgstr "État de désactivation" -#: ../app/views/layouts/_edit_to_email.html.haml:34 -msgid "Remove %{email}" -msgstr "Supprimer %{email}" +msgid "Retirement Warning" +msgstr "Alerte de désactivation" -#: ../app/views/layouts/_edit_to_email.html.haml:50 -msgid "Add a User" -msgstr "Ajouter un Utilisateur" +msgid "Retirement date removed" +msgstr "Date de désactivation supprimée" -#: ../app/views/layouts/_edit_to_email.html.haml:56 -msgid "None Available or All Selected" -msgstr "Aucun(e) disponible ou tou(te)s sélectionné(e)s" +msgid "Retirement date set to %{date}" +msgstr "Date de désactivation définie à %{date}" -#: ../app/views/layouts/_edit_to_email.html.haml:76 -msgid "Add (enter manually)" -msgstr "Ajouter (entrée manuelle)" +msgid "Retirement dates removed" +msgstr "Dates de désactivation supprimées" -#: ../app/views/layouts/_exception_contents.html.haml:5 -msgid "Unexpected error encountered" -msgstr "Une erreur inattendue s'est produite" +msgid "Retirement dates set to %{date}" +msgstr "Dates de désactivation définies à %{date}" -#: ../app/views/layouts/_exception_contents.html.haml:12 -msgid "Errors in Management Engine can be caused by:" -msgstr "Les erreurs au niveau du moteur de gestion peuvent être causées par :" +msgid "Retry" +msgstr "Réessayer" -#: ../app/views/layouts/_exception_contents.html.haml:21 -msgid "" -"Accessing Management Engine from multiple tabs or windows of the same browser " -"on a single machine." -msgstr "" -"Accès au moteur de gestion à partir de plusieurs onglets ou fenêtres du même n" -"avigateur sur une seule machine." +msgid "Retry state machine simulation, with preserved attributes" +msgstr "Réessayer la simulation en conservant les attributs" -#: ../app/views/layouts/_exception_contents.html.haml:23 -#: ../app/views/layouts/_exception_contents.html.haml:37 -msgid "Close any duplicate browser sessions, then select an option from the menu." +msgid "Return to list view" msgstr "" -"Fermez toute session de navigateur en double, puis sélectionnez une option dan" -"s le menu." -#: ../app/views/layouts/_exception_contents.html.haml:31 -msgid "Pressing the back button during a session." -msgstr "Enfoncement de la touche Retour arrière pendant une session." +msgid "Revert to selected snapshot" +msgstr "Revenir au cliché sélectionné" -#: ../app/views/layouts/_exception_contents.html.haml:45 -msgid "An internal system error." -msgstr "Une erreur système interne." +msgid "Review" +msgstr "Vérification" -#: ../app/views/layouts/_exception_contents.html.haml:51 -msgid "Please contact your administrator for assistance." -msgstr "Contactez votre administrateur pour obtenir de l'aide." +msgid "Right Size Recommendation for %{vm_or_template} \"%{name}\"" +msgstr "Recommandation de calibrage pour le/la %{vm_or_template} \"%{name}\"" -#: ../app/views/layouts/_exception_contents.html.haml:60 -msgid "Error text:" -msgstr "Texte d'erreur :" +msgid "Right Size VM '%{name}''" +msgstr "Calibrer la MV '%{name}''" -#: ../app/views/layouts/_exp_editor.html.haml:20 -#: ../app/views/layouts/_exp_editor.html.haml:20 -msgid "Undo the last change" -msgstr "Annuler la dernière modification" +msgid "Right-Size Recommendations" +msgstr "Recommandations de calibrage" -#: ../app/views/layouts/_exp_editor.html.haml:41 -#: ../app/views/layouts/_exp_editor.html.haml:41 -msgid "Re-apply the previous change" -msgstr "Réappliquer la modification précédente" +msgid "Right-Size Recommendations does not apply to selected %{model}" +msgstr "Les recommandations de calibrage ne s'appliquent pas au/à la %{model} sélectionné(e)" -#: ../app/views/layouts/_exp_editor.html.haml:68 -#: ../app/views/layouts/_exp_editor.html.haml:94 -msgid "AND with a new expression element" -msgstr "ET avec un nouvel élément d'expression" +msgid "Right-Sizing (Aggressive - derived from Average NORM)" +msgstr "Calibrage (Aggressif - dérivé de la NORME moyenne)" -#: ../app/views/layouts/_exp_editor.html.haml:68 -#: ../app/views/layouts/_exp_editor.html.haml:94 -msgid "OR with a new expression element" -msgstr "OU avec un nouvel élément d'expression" +msgid "Right-Sizing (Conservative - derived from Absolute Maximum)" +msgstr "Calibrage (Prudent - dérivé du maximum absolu)" -#: ../app/views/layouts/_exp_editor.html.haml:68 -#: ../app/views/layouts/_exp_editor.html.haml:94 -msgid "Remove this expression element" -msgstr "Supprimer cet élément d'expression" +msgid "Right-Sizing (Moderate - derived from High NORM)" +msgstr "Calibrage (Modéré - dérivé de la NORME haute)" -#: ../app/views/layouts/_exp_editor.html.haml:94 -msgid "Wrap this expression element with a NOT" -msgstr "Encapsulez cet élément d'expression avec un NOT" +msgid "Role" +msgstr "Rôle" -#: ../app/views/layouts/_form_buttons_verify.html.haml:12 -msgid "Validate the credentials by logging into the selected %{host}" -msgstr "" -"Valider les informations d'authentification en se connectant à l'%{host} sélec" -"tionné" +msgid "Role Information" +msgstr "Informations sur le rôle" -#: ../app/views/layouts/_form_buttons_verify.html.haml:14 -#: ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:5 -msgid "Validate the credentials by logging into the Server" -msgstr "Valider les informations d'authentification en se connectant au serveur" +msgid "Role Settings" +msgstr "Paramètres de rôle" -#: ../app/views/layouts/_header.html.haml:11 -msgid "Toggle navigation" -msgstr "Basculer la navigation" +msgid "Role no longer exists" +msgstr "Le rôle n'existe plus" -#: ../app/views/layouts/_header.html.haml:21 -msgid "Go to my start page" -msgstr "" +msgid "Role: %{description} (%{status})" +msgstr "Rôle : %{description} (%{status})" -#: ../app/views/layouts/_header.html.haml:51 -msgid "Help" -msgstr "" +msgid "Roles" +msgstr "Rôles" -#: ../app/views/layouts/_header.html.haml:78 -msgid "About" -msgstr "À propos" +msgid "Roles (%{roles_count})" +msgstr "Rôles (%{roles_count})" -#: ../app/views/layouts/_item.html.haml:127 -msgid "Contents" -msgstr "Contenu" +msgid "Roles by Servers" +msgstr "Rôles par serveur" -#: ../app/views/layouts/_item.html.haml:142 -msgid "Cannot display binary content" -msgstr "Impossible d'afficher le contenu binaire" +msgid "Roll Up Daily Performance" +msgstr "Performances quotidiennes de roll-up" -#: ../app/views/layouts/_lightbox_panel.html.haml:5 -msgid "Replace me." -msgstr "Remplacez-moi." +msgid "Roll Up Performance" +msgstr "Performances de roll-up" -#: ../app/views/layouts/_log_viewer.html.haml:1 -msgid "Last 1000 lines from server %{server_name} [%{server_id}] in zone %{zone_name}" -msgstr "" -"Les 1 000 dernières lignes du serveur %{server_name} [%{server_id}] dans la zo" -"ne %{zone_name}" +msgid "Root Device Type" +msgstr "Type de périphérique racine" -#: ../app/views/layouts/_multi_auth_credentials.html.haml:29 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:32 -msgid "RSA key pair" -msgstr "Paire de clés RSA" +msgid "Router" +msgstr "Routeur" -#: ../app/views/layouts/_multi_auth_credentials.html.haml:44 -#: ../app/views/layouts/_multi_auth_credentials.html.haml:66 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 -msgid "Access Key ID" -msgstr "ID de la Clé d''Accès" +msgid "Router Name" +msgstr "Nom du routeur" -#: ../app/views/layouts/_multi_auth_credentials.html.haml:44 -#: ../app/views/layouts/_multi_auth_credentials.html.haml:66 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 -msgid "Secret Access Key" -msgstr "Clé d'accès secrète" +msgid "Router no longer exists." +msgstr "Le routeur n'existe plus." -#: ../app/views/layouts/_multi_auth_credentials.html.haml:59 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:199 -#: ../app/views/provider_foreman/_form.html.haml:174 -msgid "Required. Should have privileged access, such as root or administrator." -msgstr "Obligatoire. Accès privilégié nécessaire, par exemple root ou administrateur." +msgid "Router update failed: Task start failed: ID [%{id}]" +msgstr "La mise à jour du routeur a échoué : échec de démarrage de la tâche : ID [%{id}]" -#: ../app/views/layouts/_multi_auth_credentials.html.haml:81 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:248 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:430 -msgid "Used to gather Capacity & Utilization metrics." -msgstr "Utilisé pour recueillir les mesures de capacité et d'utilisation." +msgid "Routers" +msgstr "Routeurs" -#: ../app/views/layouts/_multi_auth_credentials.html.haml:100 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:330 -msgid "" -"Used to authenticate with OpenStack AMQP Messaging Bus for event handling. Con" -"figure AMQP if eventing is not enabled on Ceilometer." -msgstr "" -"Utilisé pour l'authentification auprès du bus de messages OpenStack AMQP pour " -"l'interception d'événements. Configurez AMQP si la gestion des événements n'es" -"t pas activée sur le service Ceilometer." +msgid "Routes" +msgstr "Routes" -#: ../app/views/layouts/_multi_auth_credentials.html.haml:118 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:388 -msgid "Used for SSH connection to all %{hosts} in this provider." -msgstr "Utilisé pour la connexion SSH vers tous les %{hosts} de ce fournisseur." +msgid "Row Count" +msgstr "Nombre de lignes" -#: ../app/views/layouts/_multi_auth_credentials.html.haml:138 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:457 -msgid "Required if SSH login is disabled for the Default account." -msgstr "Obligatoire si la connexion SSH est désactivée pour le compte par défaut." +msgid "Rows" +msgstr "Lignes" -#: ../app/views/layouts/_multi_auth_credentials.html.haml:157 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:483 -msgid "Used for access to Web Services." -msgstr "Utilisé pour l'accès aux services Web." +msgid "Ruby Script" +msgstr "Script Ruby" -#: ../app/views/layouts/_multi_auth_credentials.html.haml:176 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:510 -msgid "Used for access to IPMI." -msgstr "Utilisé pour l'accès à IPMI." +msgid "Ruby scripts are no longer supported in expressions, please change or remove them." +msgstr "Les scripts Ruby ne sont plus pris en charge dans les expressions, veuillez les changer ou les supprimer." -#: ../app/views/layouts/_multi_auth_credentials.html.haml:189 -msgid "Select %{host} to validate against" -msgstr "Sélectionner le/la %{host} à utiliser pour la validation" +msgid "Run" +msgstr "Exécuter" -#: ../app/views/layouts/_notifications_drawer.html.haml:6 -msgid "Notifications" -msgstr "Notifications" +msgid "Run As Non Root" +msgstr "Exécuter comme non-root" -#: ../app/views/layouts/_pagingcontrols.html.haml:15 -#: ../app/views/vm_common/_vmtree.html.haml:7 -msgid "(Check All)" -msgstr "(Controler tout)" +msgid "Run As User" +msgstr "Exécuter comme utilisateur" -#: ../app/views/layouts/_pagingcontrols.html.haml:22 -#: ../app/views/layouts/_x_pagingcontrols.html.haml:25 -msgid "Asc" -msgstr "" +msgid "Run At" +msgstr "Exécuter à" -#: ../app/views/layouts/_pagingcontrols.html.haml:22 -#: ../app/views/layouts/_x_pagingcontrols.html.haml:25 -msgid "Desc" -msgstr "" +msgid "Run Database Garbage Collection Now" +msgstr "Procéder au nettoyage de la mémoire de la base de données maintenant" -#: ../app/views/layouts/_pagingcontrols.html.haml:73 -#: ../app/views/layouts/_pagingcontrols.html.haml:74 -#: ../app/views/layouts/_pagingcontrols.html.haml:92 -#: ../app/views/layouts/_pagingcontrols.html.haml:93 -#: ../app/views/layouts/_pagingcontrols.html.haml:109 -#: ../app/views/layouts/_pagingcontrols.html.haml:110 -#: ../app/views/layouts/_saved_report_paging_bar.html.haml:28 -#: ../app/views/layouts/_saved_report_paging_bar.html.haml:29 -#: ../app/views/layouts/_x_pagingcontrols.html.haml:67 -#: ../app/views/layouts/_x_pagingcontrols.html.haml:68 -#: ../app/views/report/_form_tl_settings.html.haml:52 -msgid "First" -msgstr "Premier" +msgid "Run On" +msgstr "Exécuter le" -#: ../app/views/layouts/_pagingcontrols.html.haml:83 -#: ../app/views/layouts/_pagingcontrols.html.haml:84 -#: ../app/views/layouts/_pagingcontrols.html.haml:100 -#: ../app/views/layouts/_pagingcontrols.html.haml:101 -#: ../app/views/layouts/_pagingcontrols.html.haml:117 -#: ../app/views/layouts/_pagingcontrols.html.haml:118 -#: ../app/views/layouts/_saved_report_paging_bar.html.haml:38 -#: ../app/views/layouts/_saved_report_paging_bar.html.haml:39 -#: ../app/views/layouts/_x_pagingcontrols.html.haml:77 -#: ../app/views/layouts/_x_pagingcontrols.html.haml:78 -msgid "Previous" -msgstr "Précédent" +msgid "Run a Database Backup Now" +msgstr "Effectuer une sauvegarde de la base de données maintenant" -#: ../app/views/layouts/_pagingcontrols.html.haml:132 -#: ../app/views/layouts/_x_pagingcontrols.html.haml:92 -msgid "%{start_number} of %{total_items}" +msgid "Run a Database backup now" +msgstr "Effectuer une sauvegarde de la base de données maintenant" + +msgid "Run an Ansible Playbook" msgstr "" -#: ../app/views/layouts/_pagingcontrols.html.haml:136 -msgid "%{start_number}-%{total_items} of %{total_items}" +msgid "Run on localhost" msgstr "" -#: ../app/views/layouts/_pagingcontrols.html.haml:163 -#: ../app/views/layouts/_pagingcontrols.html.haml:164 -#: ../app/views/layouts/_pagingcontrols.html.haml:180 -#: ../app/views/layouts/_pagingcontrols.html.haml:181 -#: ../app/views/layouts/_pagingcontrols.html.haml:197 -#: ../app/views/layouts/_pagingcontrols.html.haml:198 -#: ../app/views/layouts/_saved_report_paging_bar.html.haml:83 -#: ../app/views/layouts/_saved_report_paging_bar.html.haml:84 -#: ../app/views/layouts/_x_pagingcontrols.html.haml:122 -#: ../app/views/layouts/_x_pagingcontrols.html.haml:123 -#: ../app/views/report/_form_tl_settings.html.haml:52 -msgid "Last" -msgstr "Dernier" +msgid "Run on the target machine of the alert" +msgstr "" -#: ../app/views/layouts/_perf_charts.html.haml:32 -#: ../app/views/layouts/_perf_charts.html.haml:105 -#: ../app/views/layouts/_perf_charts.html.haml:131 -#: ../app/views/layouts/_perf_charts.html.haml:166 -msgid "No Capacity & Utilization data available." -msgstr "Aucune donnée de capacité et d'utilisation disponible." +msgid "Running" +msgstr "Exécution" -#: ../app/views/layouts/_perf_charts.html.haml:77 -msgid "VM \"%{name}\"" -msgstr "MV \"%{name}\"" +msgid "Running (%{number})" +msgstr "Exécution (%{number})" -#: ../app/views/layouts/_perf_options.html.haml:5 -msgid "Options %{model}" -msgstr "Options %{model}" +msgid "Running Process" +msgid_plural "Running Processes" +msgstr[0] "Processus en cours d'exécution" +msgstr[1] "Processus en cours d'exécution" -#: ../app/views/layouts/_perf_options.html.haml:11 -#: ../app/views/report/_report_info.html.haml:139 -msgid "Interval" -msgstr "Intervalle" +msgid "Running Processes" +msgstr "Processus en cours d'exécution" -#: ../app/views/layouts/_perf_options.html.haml:25 -#: ../app/views/layouts/_perf_options.html.haml:30 -#: ../app/views/layouts/_perf_options.html.haml:40 -#: ../app/views/report/_form_columns_performance.html.haml:12 -#: ../app/views/report/_form_columns_performance.html.haml:15 -#: ../app/views/report/_schedule_form_timer.html.haml:20 -msgid "Daily" -msgstr "Quotidien" +msgid "Running system services of %{name}" +msgstr "Exécution des services système de %{name}" -#: ../app/views/layouts/_perf_options.html.haml:25 -#: ../app/views/layouts/_perf_options.html.haml:30 -#: ../app/views/layouts/_perf_options.html.haml:40 -#: ../app/views/report/_form_columns_performance.html.haml:15 -#: ../app/views/report/_schedule_form_timer.html.haml:20 -msgid "Hourly" -msgstr "Horaire" +msgid "Runtime Name" +msgstr "Nom runtime" -#: ../app/views/layouts/_perf_options.html.haml:30 -msgid "Most Recent Hour" -msgstr "" +msgid "SCSI Target %{target}" +msgstr "Cible SCSI %{target}" -#: ../app/views/layouts/_perf_options.html.haml:53 -#: ../app/views/layouts/_perf_options.html.haml:98 -#: ../app/views/layouts/_role_visibility.html.haml:17 -#: ../app/views/miq_capacity/_planning_options.html.haml:273 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:58 -#: ../app/views/report/_widget_show.html.haml:328 -#: ../app/views/shared/buttons/_ab_show.html.haml:219 -msgid "Show" -msgstr "Afficher" +msgid "SCSI Target %{target} (%{name})" +msgstr "Cible SCSI %{target} (%{name})" -#: ../app/views/layouts/_perf_options.html.haml:68 -#: ../app/views/layouts/_perf_options.html.haml:113 -msgid "back" -msgstr "retour" +msgid "SELinux Level" +msgstr "Niveau SELinux" -#: ../app/views/layouts/_perf_options.html.haml:121 -#: ../app/views/report/_form_filter_chargeback.html.haml:195 -msgid "Group by" -msgstr "Grouper par" +msgid "SELinux Role" +msgstr "Rôle SELinux" -#: ../app/views/layouts/_perf_options.html.haml:141 -msgid "Show VM Types" -msgstr "Afficher les types de MV" +msgid "SELinux Type" +msgstr "Type SELinux" -#: ../app/views/layouts/_perf_options.html.haml:167 -#: ../app/views/miq_capacity/_planning_options.html.haml:453 -#: ../app/views/miq_capacity/_utilization_options.html.haml:71 -#: ../app/views/report/_form_filter_performance.html.haml:56 -msgid "No Time Profiles found" -msgstr "Aucun profil temporel trouvé" +msgid "SELinux User" +msgstr "Utilisateur SELinux" -#: ../app/views/layouts/_perf_options.html.haml:192 -msgid "Compare To" -msgstr "Comparer à" +msgid "SKU" +msgstr "SKU" -#: ../app/views/layouts/_perf_options.html.haml:214 -msgid "Show VM" -msgstr "Afficher une MV" +msgid "SKU:" +msgstr "SKU :" -#: ../app/views/layouts/_perf_options.html.haml:233 -msgid "" -"* Daily charts only include days for which all 24 hours of data has been colle" -"cted." -msgstr "" -"* Les diagrammes journaliers n'incluent que les jours pour lesquels la totalit" -"é des données pour les 24h00 associées ont été collectées." +msgid "SMTP E-mail Server settings and Test E-mail Address are needed to send test email" +msgstr "Les paramètres de serveur email et l'adresse email de test sont requises pour envoyer le message de test" -#: ../app/views/layouts/_policy_sim.html.haml:11 -msgid "Choose Policies" -msgstr "Choisir des stratégies" +msgid "SNMP Trap" +msgstr "Trap SNMP" -#: ../app/views/layouts/_policy_sim.html.haml:23 -msgid "Select a Policy Profile to add:" -msgstr "Sélectionner un profil de stratégie à ajouter :" +msgid "SNMP Trap Settings" +msgstr "Paramètres de trap SNMP" -#: ../app/views/layouts/_policy_sim.html.haml:42 -msgid "Policy Profiles in Effect" -msgstr "Profils de stratégie en vigueur" +msgid "SSH Key Pair" +msgstr "Paire de clés SSH" -#: ../app/views/layouts/_policy_sim.html.haml:55 -msgid "No policies have been chosen yet" -msgstr "Aucune stratégie n'a été sélectionnée pour le moment" +msgid "SSH Root" +msgstr "Root SSH" -#: ../app/views/layouts/_policy_sim.html.haml:66 -msgid "Click to remove this policy" -msgstr "Cliquez pour supprimer cette stratégie" +msgid "SSL" +msgstr "SSL" -#: ../app/views/layouts/_policy_sim.html.haml:82 -msgid "Policy Simulation for %{amount} Item" -msgid_plural "Policy Simulation for %{amount} Items" -msgstr[0] "Simulation de stratégie pour %{amount} élément" -msgstr[1] "Simulation de stratégie pour %{amount} éléments" +msgid "SSL Verify Mode" +msgstr "Mode de vérification SSL" -#: ../app/views/layouts/_protect.html.haml:5 -msgid "Select Policy Profiles" -msgstr "Sélectionner les profils de stratégies" +msgid "SSL trusting custom CA" +msgstr "" -#: ../app/views/layouts/_protect.html.haml:8 -msgid "No Policy Profiles available." -msgstr "Aucun profil de stratégie disponible." +msgid "SSL without validation" +msgstr "SSL sans validation" -#: ../app/views/layouts/_protect.html.haml:19 -msgid "* Policy Profile is only applied to some of the items below." -msgstr "* Le Profil de Stratégie a été appliqué uniquement sur les items ci-dessous." +msgid "SSO Login" +msgstr "Identifiant SSO" -#: ../app/views/layouts/_protect.html.haml:29 -msgid "Policy changes will affect %{amount} %{item}" -msgid_plural "Policy changes will affect %{amount} %{items}" -msgstr[0] "Les changements de stratégie affecteront %{amount} %{item}" -msgstr[1] "Les changements de stratégie affecteront %{amount} %{items}" +msgid "Same as Master configuration" +msgstr "Comme la configuration maîtresse" + +msgid "Same as previous" +msgstr "Comme précédent" -#: ../app/views/layouts/_role_visibility.html.haml:8 -#: ../app/views/report/_widget_show.html.haml:322 -#: ../app/views/shared/buttons/_ab_show.html.haml:209 -msgid "Visibility" -msgstr "Visibilité" +msgid "Sample" +msgstr "Exemple" -#: ../app/views/layouts/_role_visibility.html.haml:38 -#: ../app/views/shared/buttons/_ab_show.html.haml:233 -msgid "User Roles" -msgstr "Rôles de l'utilisateur" +msgid "Sample %{model} \"%{name}\" can not be edited" +msgstr "Impossible de modifier l'exemple de %{model} \"%{name}\"" -#: ../app/views/layouts/_saved_report_paging_bar.html.haml:53 -msgid "Showing %{start_number} of %{total_items} items" -msgstr "Affichage de %{start_number} éléments sur %{total_items}" +msgid "Sample Analysis Profile cannot be deleted" +msgstr "Impossible de supprimer l'exemple de profil d'analyse" -#: ../app/views/layouts/_saved_report_paging_bar.html.haml:57 -#: ../app/views/layouts/_saved_report_paging_bar.html.haml:60 -msgid "Showing %{start_number}-%{end_number} of %{total_items} items" -msgstr "Affichage de %{start_number}-%{end_number} sur %{total_items} éléments" +msgid "Sample Analysis Profile cannot be edited" +msgstr "Impossible de modifier l'exemple de profil d'analyse" -#: ../app/views/layouts/_saved_report_paging_bar.html.haml:98 -msgid "Items per page:" -msgstr "Éléments par page :" +msgid "Sample Dashboard" +msgstr "Exemple de tableau de bord" -#: ../app/views/layouts/_searchbar.html.haml:23 -#: ../app/views/layouts/_x_adv_searchbox.html.haml:24 -#: ../app/views/shared/_topology_header.html.haml:31 -#: ../app/views/shared/_topology_header_toolbar.html.haml:29 -#: ../app/views/shared/_topology_header_toolbar.html.haml:32 -msgid "Search" -msgstr "Rechercher" +msgid "Sample Timeline" +msgstr "Exemple de ligne du temps" -#: ../app/views/layouts/_searchbar.html.haml:23 -#: ../app/views/layouts/_searchbar.html.haml:23 -#: ../app/views/layouts/_x_adv_searchbox.html.haml:24 -msgid "Search by Name within results" -msgstr "Rechercher par nom dans les résultats" +msgid "Saturday" +msgstr "Samedi" -#: ../app/views/layouts/_show_report.html.haml:2 -msgid "Report not found." -msgstr "Rapport introuvable." +msgid "Save" +msgstr "Enregistrer" -#: ../app/views/layouts/_spinner.html.haml:10 -msgid "The server is initializing; access is being retried every 10 seconds . . ." -msgstr "" -"Le serveur est en cours d'initialisation ; nouvelle tentative d'accès toutes l" -"es 10 secondes . . ." +msgid "Save Changes" +msgstr "Enregistrer les modifications" -#: ../app/views/layouts/_tag_edit.html.haml:5 -msgid "Tag Assignment (Tags common to all selected items)" -msgstr "Affectation de balises (balises communes à tous les éléments sélectionnés)" +msgid "Save the current filter" +msgstr "Enregistrer le filtre actuel" -#: ../app/views/layouts/_tag_edit.html.haml:19 -msgid "Select a customer tag to assign:" -msgstr "Sélectionner une balise client à affecter :" +msgid "Save the current search" +msgstr "Enregistrer la recherche actuelle" -#: ../app/views/layouts/_tag_edit.html.haml:51 -msgid "* Only a single value can be assigned from these categories" -msgstr "* Seule une valeur peut être assignée depuis ces Catégories" +msgid "Save this %{model} search as:" +msgstr "Enregistrer cette recherche %{model} sous :" -#: ../app/views/layouts/_tag_edit_cat_tags.html.haml:4 -msgid "" -msgstr "" +msgid "Saved Chargeback Report \"%{last_run_on}\"" +msgstr "Rapport de rétrofacturation enregistré \"%{last_run_on}\"" -#: ../app/views/layouts/_tag_edit_cat_tags.html.haml:4 -msgid "" +msgid "Saved Chargeback Report [%{name}]" +msgstr "Rapport de rétrofacturation enregistré [%{name}]" -#: ../app/views/layouts/_tag_edit_items.html.haml:5 -msgid "%{amount} %{object} Being Tagged" -msgid_plural "%{amount} %{objects} Being Tagged" -msgstr[0] "%{amount} %{object} en cours de balisage" -msgstr[1] "%{amount} %{objects} en cours de balisage" +msgid "Saved Chargeback Reports" +msgstr "Rapports de rétrofacturation enregistrés" -#: ../app/views/layouts/_tl_detail.html.haml:20 -msgid "Timeline View" -msgstr "Vue chronologie" +msgid "Saved Chargeback Reports \"%{report_name}\"" +msgstr "Rapports de rétrofacturation enregistrés \"%{report_name}\"" -#: ../app/views/layouts/_tl_detail.html.haml:25 -msgid "Select your desired settings and click the apply button to view timeline data." +msgid "Saved Report \"%{name} - %{timestamp}\"" msgstr "" -"Sélectionner les paramètres voulus et cliquer sur le bouton Appliquer pour voi" -"r les données de la chronologie." -#: ../app/views/layouts/_tl_options.html.haml:13 -msgid "Options %{model}: %{name}" -msgstr "Options %{model}: %{name}" +msgid "Saved Report \"%{name}\"" +msgstr "Rapport enregistré \"%{name}\"" -#: ../app/views/layouts/_tl_options.html.haml:68 -msgid "Show Detailed Events" -msgstr "Afficher des événements détaillés" +msgid "Saved Report \"%{time}\" not found, Schedule may have failed" +msgstr "Le rapport enregistré \"%{time}\" est introuvable, le planning a peut-être échoué" -#: ../app/views/layouts/_tl_options.html.haml:78 -msgid "Successful Events" -msgstr "Événements réussis" +msgid "Saved Report no longer exists" +msgstr "Le rapport enregistré n'existe plus" -#: ../app/views/layouts/_tl_options.html.haml:85 -msgid "Failed Events" -msgstr "Événements ayant échoué" +msgid "Saved Report: %{report_name}" +msgstr "Rapport enregistré : %{report_name}" -#: ../app/views/layouts/_tl_options.html.haml:92 -msgid "Both" -msgstr "Les deux" +msgid "Saved Reports" +msgstr "Rapports enregistrés" -#: ../app/views/layouts/_tl_options.html.haml:116 -msgid "Months" -msgstr "Mois" +msgid "Savings" +msgstr "Économies" -#: ../app/views/layouts/_tl_options.html.haml:116 -msgid "Weeks" -msgstr "Semaines" +msgid "Scale" +msgstr "Moduler" -#: ../app/views/layouts/_tl_options.html.haml:124 -msgid "centered" -msgstr "centré" +msgid "Scale Down" +msgstr "Réduire" -#: ../app/views/layouts/_tl_options.html.haml:124 -msgid "ending" -msgstr "fin" +msgid "Scale Infrastructure Provider" +msgstr "Moduler le fournisseur d'infrastructure" -#: ../app/views/layouts/_tl_show.html.haml:15 -msgid "* Dates/Times on this page are based on time zone: %{time_zone}." -msgstr "" -"* Les dates/heures de cette page sont basées sur le fuseau horaire : %{time_zo" -"ne}." +msgid "Scale Infrastructure Provider Down" +msgstr "Réduire le fournisseur d'infrastructure" -#: ../app/views/layouts/_user_input_filter.html.haml:110 -msgid "Apply the current filter (Enter)" -msgstr "Appliquer le filtre actuel (Entrée)" +msgid "Scale this Infrastructure Provider" +msgstr "Moduler ce fournisseur d'infrastructure" -#: ../app/views/layouts/_user_input_filter.html.haml:123 -msgid "Cancel (Esc)" -msgstr "Annuler (Échap)" +msgid "Scale this Infrastructure Provider down" +msgstr "Réduire ce fournisseur d'infrastructure" -#: ../app/views/layouts/_user_options.html.haml:22 -msgid "Server: %{appliance_name}" -msgstr "Serveur : %{appliance_name}" +msgid "Scaling" +msgstr "Modulation" -#: ../app/views/layouts/_user_options.html.haml:32 -msgid "Change Group" -msgstr "Modifier le groupe" +msgid "Scan History" +msgid_plural "Scan History" +msgstr[0] "Historique de scan" +msgstr[1] "Historique de scan" -#: ../app/views/layouts/_user_options.html.haml:40 -msgid "Currently Selected Group" -msgstr "Groupe actuellement sélectionné" +msgid "Scanning" +msgstr "Scanning" -#: ../app/views/layouts/_user_options.html.haml:45 -msgid "Current Group" -msgstr "Groupe actuel" +msgid "Schedule Info" +msgstr "Informations sur le planning" -#: ../app/views/layouts/_user_options.html.haml:52 -msgid "Change to this Group" -msgstr "Modification apportée à ce groupe" +msgid "Schedules" +msgstr "Plannings" -#: ../app/views/layouts/_user_options.html.haml:83 -msgid "Click to Logout" -msgstr "Cliquez pour vous déconnecter" +msgid "Schema" +msgstr "Schéma" -#: ../app/views/layouts/_user_options.html.haml:85 -msgid "Logout" -msgstr "Déconnexion" +msgid "Schema for %{model} \"%{name}\" was saved" +msgstr "Le schéma pour %{model} \"%{name}\" a été enregistré" -#: ../app/views/layouts/_user_options.html.haml:93 -msgid "Logging into" -msgstr "Connexion à" +msgid "Scope" +msgstr "Portée" -#: ../app/views/layouts/_x_edit_buttons.html.haml:62 -#: ../app/views/layouts/_x_edit_buttons.html.haml:201 -msgid "Download Report to YAML" -msgstr "Télécharger un Rapport vers YAML" +msgid "Scope (Choose an element of the Policy scope to edit)" +msgstr "Portée (choisissez un élément faisant partie de la stratégie à modifier)" -#: ../app/views/layouts/_x_edit_buttons.html.haml:63 -#: ../app/views/layouts/_x_edit_buttons.html.haml:201 -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:100 -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:106 -#: ../app/views/miq_ae_tools/_import_export.html.haml:138 -#: ../app/views/miq_policy/_export.html.haml:84 -#: ../app/views/miq_policy/_export.html.haml:149 -#: ../app/views/report/_export_custom_reports.html.haml:63 -#: ../app/views/report/_export_widgets.html.haml:112 -#: ../app/views/report/_export_widgets.html.haml:139 -msgid "Export" -msgstr "Exporter" +msgid "Scope (Choose an element of the scope to edit)" +msgstr "Portée (choisissez un élément de la portée à modifier)" -#: ../app/views/layouts/_x_edit_buttons.html.haml:85 -#: ../app/views/vm_common/_snap.html.haml:63 -msgid "Create" -msgstr "Créer" +msgid "Scope (Press the \"Edit\" button to edit the scope)" +msgstr "Portée (appuyez sur le bouton \"Modifier\" pour modifier la portée)" -#: ../app/views/layouts/_x_edit_buttons.html.haml:123 -#: ../app/views/layouts/_x_edit_buttons.html.haml:165 -msgid "Reset All menus to %{product} defaults" -msgstr "Réinitialiser tous les menus aux valeurs par défaut de %{product}" +msgid "Scopes / Expressions" +msgstr "Portées / Expressions" -#: ../app/views/layouts/_x_pagingcontrols.html.haml:18 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:151 -#: ../app/views/miq_ae_class/_class_instances.html.haml:14 -#: ../app/views/miq_ae_class/_class_methods.html.haml:14 -#: ../app/views/miq_ae_class/_ns_details.html.haml:13 -#: ../app/views/miq_ae_class/_ns_list.html.haml:15 -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:59 -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:112 -msgid "Check All" -msgstr "Vérifier tout" +msgid "Script" +msgstr "Script" -#: ../app/views/layouts/_x_pagingcontrols.html.haml:96 -#: ../app/views/layouts/_x_pagingcontrols.html.haml:99 -msgid "%{start_number}-%{end_number} of %{total_items}" -msgstr "" +msgid "Search" +msgstr "Rechercher" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:6 -#: ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:6 -msgid "New " -msgstr "Nouveau " +msgid "Search Expression" +msgstr "Expression de recherche" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:7 -#: ../app/views/ops/_rbac_user_details.html.haml:116 -#: ../app/views/storage_manager/_form.html.haml:205 -msgid "Confirm Password" -msgstr "Confirmez le Mot De Passe" +msgid "Search Expression Preview" +msgstr "Aperçu de l'expression de recherche" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:13 -#: ../app/views/layouts/angular/_auth_credentials_angular.html.haml:83 -msgid "Passwords do not match" -msgstr "Les mots de passe ne correspondent pas" +msgid "Search Name is required" +msgstr " Le nom de la recherche est obligatoire" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:16 -#: ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:6 -msgid "" -"Server information, Username and matching password fields are needed to perfor" -"m verification of credentials" -msgstr "" -"Les informations du serveur, le nom d'utilisateur et les champs de mot de pass" -"e correspondants sont nécessaires pour effectuer la vérification des informati" -"ons d'identification" - -#: -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:54 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:36 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:88 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:124 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:212 -#: ../app/views/layouts/angular/_auth_service_account_angular.html.haml:33 -#: ../app/views/provider_foreman/_form.html.haml:130 -msgid "Spaces are prohibited" -msgstr "Les espaces ne sont pas autorisés" +msgid "Search by Name within results" +msgstr "Rechercher par nom dans les résultats" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:59 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:146 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:172 -msgid "Invalid input format, please enter a GUID" -msgstr "Format d'entrée non valide. Veuillez saisir un GUID." +msgid "Second" +msgstr "Seconde" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:11 -msgid "Change stored private key" -msgstr "Modifier la clé privée stockée" +msgid "Secondary (Display) Filter" +msgstr "Filtre (d'affichage) secondaire" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:12 -msgid "Cancel private key change" -msgstr "Annuler le changement de clé privée" +msgid "Secondary (Display) Filter - Filters the rows based on child table fields" +msgstr "Filtre (d'affichage) secondaire - Filtre les lignes selon les champs de la table fille" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:13 -msgid "" -"Server information, username and private key fields are needed to perform veri" -"fication of credentials" -msgstr "" -"Les informations du serveur, le nom d'utilisateur et les champs de clé privée " -"sont nécessaires pour effectuer la vérification des informations d'identificat" -"ion" +msgid "Secret Access Key" +msgstr "Clé d'accès secrète" -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:78 -msgid "Must be a number (greater than 0)" -msgstr "Doit être un nombre (supérieur à 0)" +msgid "Secret Access Keys do not match" +msgstr "Les clés d'accès secrètes ne correspondent pas" -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:102 -#: ../app/views/ops/_diagnostics_database_tab.html.haml:51 -msgid "Database Name" -msgstr "Nom de base de données" +msgid "Secret Key" +msgstr "Clé secrète" -#: ../app/views/layouts/angular/_auth_credentials_angular.html.haml:55 -msgid "Verify %{password_label}" -msgstr "Vérifier le %{password_label}" +msgid "Secret Name" +msgstr "Nom secret" -#: ../app/views/layouts/angular/_auth_service_account_angular.html.haml:13 -msgid "Service Account JSON" -msgstr "JSON compte de service" +msgid "Section" +msgstr "Section" -#: ../app/views/layouts/angular/_form_button_submit_angular.html.haml:1 -msgid "Run a Database backup now" -msgstr "Effectuer une sauvegarde de la base de données maintenant" +msgid "Security" +msgstr "Sécurité" -#: ../app/views/layouts/angular/_form_button_submit_angular.html.haml:2 -msgid "Username and matching password fields are needed to run a database backup" -msgstr "" -"Le nom d'utilisateur et des champs de mot de passe correspondants sont requis " -"pour effectuer une sauvegarde de la base de données" +msgid "Security Domain" +msgstr "Domaine de sécurité" -#: ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:2 -msgid "Validate the credentials by logging into the selected %{title_for_host}" +msgid "Security Group \"%{name}\" created" msgstr "" -"Valider les informations d'authentification en se connectant au %{title_for_ho" -"st} sélectionné" -#: ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:3 -msgid "" -"%{host} to validate against, Username and matching password fields are needed " -"to perform verification of credentials" +msgid "Security Group \"%{name}\" updated" msgstr "" -"%{host} à utiliser pour la validation, le nom d'utilisateur et les champs de m" -"ot de passe correspondants sont nécessaires pour effectuer la vérification des" -" informations d'identification" - -#: ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:44 -msgid "Validation Required" -msgstr "Validation requise" - -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:38 -msgid "Hawkular" -msgstr "Hawkular" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 -msgid "" -"Access Key ID and matching Secret Access Key fields are needed to perform veri" -"fication of credentials" +msgid "Security Group Description" msgstr "" -"Les champs ID de Clé d''Accès et Clé d''Accès Secrète sont nécessaires pour ex" -"écuter la verification des données d'identification" - -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 -msgid "Cancel secret access key change" -msgstr "Annuler le changement de clé d'accès secrète" - -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 -msgid "Change stored secret access key" -msgstr "Modifier la clé d'accès secrète stockée" - -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 -msgid "Confirm Secret Access Key" -msgstr "Confirmez la Clé d'Accès Secrète" - -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 -msgid "Secret Access Keys do not match" -msgstr "Les clés d'accès secrètes ne correspondent pas" - -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:136 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:155 -msgid "Cancel stored token" -msgstr "Annuler le token stocké" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:136 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:155 -msgid "Change stored token" -msgstr "Modifier le token stocké" +msgid "Security Group Information" +msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:136 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:155 -msgid "Confirm Token" -msgstr "Confirmer le Token" +msgid "Security Group Name" +msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:136 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:155 -msgid "Tokens do not match" -msgstr "Les jetons ne correspondent pas" +msgid "Security Group creation: Task start failed: ID [%{id}]" +msgstr "" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:180 -msgid "Copy and paste the contents of your Service Account JSON file above." +msgid "Security Group no longer exists." msgstr "" -"Copiez et collez le contenu du fichier JSON de votre compte de service ci-dess" -"us." -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:191 -msgid "Used to authenticate as a service account against your provider." +msgid "Security Group update failed: Task start failed: ID [%{id}]" msgstr "" -"Utilisé pour l'authentification comme compte de service auprès de votre fourni" -"sseur." -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:207 -msgid "Required. Used to gather Utilization data." -msgstr "Obligatoire. Utilisé pouir collecter des données d'utilisation." +msgid "Security Groups" +msgstr "Groupes de sécurité" + +msgid "Security Protocol" +msgstr "Protocole de sécurité" + +msgid "Select" +msgstr "Sélectionner" + +msgid "Select %{host} to validate against" +msgstr "Sélectionner le/la %{host} à utiliser pour la validation" + +msgid "Select Alerts to be Evaluated" +msgstr "Sélectionner les alertes à évaluer" + +msgid "Select All" +msgstr "Tout sélectionner" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:335 msgid "Select Ceilometer if eventing is not enabled on AMQP." msgstr "Sélectionner Célomètre si la gestion d'événements n'est pas activée sur AMQP." -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:346 -msgid "" -"Enable event monitoring. Used to automatically resync state when changes are p" -"erformed on VMware vCloud Director directly." -msgstr "" -"Activer la surveillance d'événements. Avait pour habitude de resync les états " -"automatiquement suite à des modifications de VMware vCloud Director directemen" -"t." +msgid "Select Classes to copy" +msgstr "Sélectionner les classes à copier" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:351 -msgid "Disable event monitoring." -msgstr "Désactiver la surveillance d'événements" +msgid "Select Destination Host" +msgstr "Sélectionner l'hôte de destination" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:413 -msgid "hawkular URL and API port fields are needed to perform validation." -msgstr "" -"les champs de port URL et API Hawkular sont requis pour effectuer une validati" -"on." +msgid "Select Dialogs to import" +msgstr "Sélectionner les boîtes de dialogue à importer" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:493 -msgid "" -"IPMI IP Address, Username and matching password fields are needed to perform v" -"erification of credentials" -msgstr "" -"L'adresse IP IPMI, le nom d'utilisateur et les champs de mot de passe correspo" -"ndants sont nécessaires pour effectuer la vérification des informations d'iden" -"tification" +msgid "Select Entry Point %{entry_point}" +msgstr "Sélectionner le point d'entrée %{entry_point}" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:627 msgid "Select Host to validate against" msgstr "Sélectionner l'hôte à utiliser pour la validation" -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:19 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:19 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:27 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:27 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:35 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:35 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:43 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:43 -#: ../app/views/ops/_settings_replication_tab.html.haml:500 -#: ../app/views/ops/_settings_replication_tab.html.haml:506 -#: ../app/views/static/buttons.html.haml:41 -#: ../app/views/static/buttons.html.haml:42 -#: ../app/views/vm_common/_reconfigure.html.haml:413 -#: ../app/views/vm_common/_reconfigure.html.haml:413 -msgid "Reset changes" -msgstr "Réinitialiser les modifications" +msgid "Select Instances to copy" +msgstr "Sélectionner les instances à copier" -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:19 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:19 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:27 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:27 -#: ../app/views/static/buttons.html.haml:22 -#: ../app/views/static/buttons.html.haml:23 -#: ../app/views/static/buttons.html.haml:32 -#: ../app/views/static/buttons.html.haml:33 -msgid "Save changes" -msgstr "Enregistrer les modifications" +msgid "Select Methods to copy" +msgstr "Sélectionner les méthodes à copier" -#: ../app/views/layouts/exp_atom/_edit_count.html.haml:24 -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:31 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:27 -#: ../app/views/layouts/exp_atom/_edit_tag.html.haml:34 -msgid "Use Alias" -msgstr "Utiliser l'alias" +msgid "Select Policy Profiles" +msgstr "Sélectionner les profils de stratégies" -#: ../app/views/layouts/exp_atom/_edit_count.html.haml:46 -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:157 -#: ../app/views/layouts/exp_atom/_edit_tag.html.haml:54 -msgid "user input" -msgstr "saisie utilisateur" +msgid "Select Server:" +msgstr "Sélectionner le serveur :" -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:63 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:48 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:178 -#: ../app/views/miq_request/_pre_prov.html.haml:81 -#: ../app/views/miq_request/_prov_vm_grid.html.haml:91 -#: ../app/views/miq_request/_prov_vm_grid.html.haml:161 -#: ../app/views/report/_form_styling.html.haml:79 -msgid "false" -msgstr "faux" +msgid "Select Start date and End date to Collect C & U Data" +msgstr "Sélectionner la date de début et la date de fin pour la collecte des données C&U" -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:63 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:48 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:178 -#: ../app/views/miq_request/_pre_prov.html.haml:81 -#: ../app/views/miq_request/_prov_vm_grid.html.haml:91 -#: ../app/views/miq_request/_prov_vm_grid.html.haml:161 -#: ../app/views/report/_form_styling.html.haml:79 -msgid "true" -msgstr "vrai" +msgid "Select Tags to apply" +msgstr "Sélectionner les balises à appliquer" -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:103 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:216 -msgid "THROUGH" -msgstr "VIA" +msgid "Select a Group:" +msgstr "Sélectionner un groupe :" -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:134 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:115 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:247 -msgid "Click to change to a relative Date/Time format" -msgstr "Cliquez pour basculer vers un format Date/Heure associé" +msgid "Select a Policy Profile to add:" +msgstr "Sélectionner un profil de stratégie à ajouter :" -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:144 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:125 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:257 -msgid "Click to change to a specific Date/Time format" -msgstr "Cliquez pour basculer vers un format Date/Heure spécifique" +msgid "Select a Tag to Apply" +msgstr "Sélectionner une balise à appliquer" -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:151 -msgid "Check Any" -msgstr "Vérifier n'importe lequel" +msgid "Select a VM to Submit the Simulation Options" +msgstr "Sélectionner une MV pour envoyer les options de simulation" -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:151 -msgid "Check Count" -msgstr "Vérifier le nombre" +msgid "Select a customer tag to assign:" +msgstr "Sélectionner une balise client à affecter :" -#: ../app/views/layouts/exp_atom/_edit_regkey.html.haml:6 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review.html.haml:9 -msgid "Key:" -msgstr "Clé :" +msgid "Select a filter to set it as my default" +msgstr "Sélectionner un filtre à définir comme filtre par défaut" -#: ../app/views/layouts/exp_atom/_edit_regkey.html.haml:14 -msgid "Value:" -msgstr "Valeur :" +msgid "Select a node on the left to view Bottlenecks report." +msgstr "Sélectionner un nœud à gauche pour voir le rapport de goulot d'étranglements." -#: ../app/views/layouts/exp_atom/_edit_regkey.html.haml:30 -msgid "Data:" -msgstr "Données :" +msgid "Select a node on the left to view Bottlenecks timeline." +msgstr "Sélectionner un nœud à gauche pour voir la chronologie des goulots détranglements." -#: ../app/views/layouts/exp_atom/_editor.html.haml:29 -#: ../app/views/report/_menu_form1.html.haml:79 -msgid "Commit expression element changes" -msgstr "Valider les modifications de l'élément d'expression" +msgid "Select a node on the left to view Utilization information." +msgstr "Sélectionner un nœud à gauche pour voir les données d'utilisation." -#: ../app/views/layouts/exp_atom/_editor.html.haml:41 -#: ../app/views/report/_menu_form1.html.haml:92 -msgid "Discard expression element changes" -msgstr "Ignorer les modifications de l'élément d'expression" +msgid "Select a node on the left to view Utilization report." +msgstr "Sélectionner un nœud à gauche pour voir le rapport d'utilisation." -#: ../app/views/layouts/exp_atom/_editor.html.haml:57 -msgid "NOT" -msgstr "PAS" +msgid "Select a reference VM or Manual Input source to Submit the Planning Options" +msgstr "Sélectionner une MV de référence ou une source d'entrée manuelle pour envoyer les options de planning" -#: ../app/views/layouts/exp_atom/_editor.html.haml:94 -msgid "User will input the value" -msgstr "La valeur sera saisie par l'utilisateur" +msgid "Select a single Arbitration Profile to edit" +msgstr "Sélectionner un profil d'arbitrage à modifier" -#: ../app/views/layouts/gtl/_list.html.haml:117 -#: ../app/views/layouts/gtl/_list.html.haml:196 -#: ../app/views/ops/_settings_server_tab.html.haml:56 -msgid "Click to view this VM" -msgstr "Cliquez pour afficher cette machine virtuelle" +msgid "Select a single Cloud Provider to edit" +msgstr "Sélectionner un fournisseur de cloud à modifier" -#: ../app/views/layouts/gtl/_list.html.haml:202 -#: ../app/views/layouts/gtl/_list.html.haml:313 -msgid "%{agent} record no longer exists" -msgstr "L'entrée %{agent} n'existe plus" +msgid "Select a single Cloud Tenant to edit" +msgstr "Sélectionner un fournisseur de cloud à modifier" -#: ../app/views/layouts/gtl/_list.html.haml:206 -msgid "Click to view %{record}" -msgstr "Cliquez pour afficher %{record}" +msgid "Select a single Containers Provider to edit" +msgstr "Sélectionner un fournisseur de conteneurs à modifier" -#: ../app/views/layouts/gtl/_list.html.haml:209 -msgid "No task target captured" -msgstr "Aucune cible de tâche capturée" +msgid "Select a single Customization Templates to copy" +msgstr "Sélectionner un modèle de personnalisation à copier" -#: ../app/views/layouts/gtl/_list.html.haml:214 -msgid "Click to view target %{model}" -msgstr "Cliquez pour afficher la cible %{model}" +msgid "Select a single Customization Templates to edit" +msgstr "Sélectionner un modèle de personnalisation à modifier" -#: ../app/views/layouts/gtl/_list.html.haml:216 -msgid "%{number} bytes" -msgstr "%{number} octets" +msgid "Select a single Datawarehouse Providers to edit" +msgstr "" -#: ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:12 -#: ../app/views/layouts/listnav/_availability_zone.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_network.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_object_store_object.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_subnet.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:12 -#: ../app/views/layouts/listnav/_configuration_job.html.haml:12 -#: ../app/views/layouts/listnav/_container_build.html.haml:12 -#: ../app/views/layouts/listnav/_container_group.html.haml:12 -#: ../app/views/layouts/listnav/_container_image.html.haml:12 -#: ../app/views/layouts/listnav/_container_image_registry.html.haml:12 -#: ../app/views/layouts/listnav/_container_node.html.haml:12 -#: ../app/views/layouts/listnav/_container_project.html.haml:12 -#: ../app/views/layouts/listnav/_container_replicator.html.haml:12 -#: ../app/views/layouts/listnav/_container_route.html.haml:12 -#: ../app/views/layouts/listnav/_container_service.html.haml:12 -#: ../app/views/layouts/listnav/_container_template.html.haml:12 -#: ../app/views/layouts/listnav/_ems_cloud.html.haml:12 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:13 -#: ../app/views/layouts/listnav/_ems_container.html.haml:12 -#: ../app/views/layouts/listnav/_ems_datawarehouse.html.haml:10 -#: ../app/views/layouts/listnav/_ems_infra.html.haml:14 -#: ../app/views/layouts/listnav/_ems_middleware.html.haml:10 -#: ../app/views/layouts/listnav/_ems_network.html.haml:10 -#: ../app/views/layouts/listnav/_ems_storage.html.haml:10 -#: ../app/views/layouts/listnav/_flavor.html.haml:12 -#: ../app/views/layouts/listnav/_floating_ip.html.haml:12 -#: ../app/views/layouts/listnav/_host.html.haml:36 -#: ../app/views/layouts/listnav/_host_aggregate.html.haml:12 -#: ../app/views/layouts/listnav/_load_balancer.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_datasource.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_deployment.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_domain.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_messaging.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_server.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_server_group.html.haml:12 -#: ../app/views/layouts/listnav/_miq_ae_class.html.haml:12 -#: ../app/views/layouts/listnav/_network_port.html.haml:12 -#: ../app/views/layouts/listnav/_network_router.html.haml:12 -#: ../app/views/layouts/listnav/_ontap_file_share.html.haml:12 -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:13 -#: ../app/views/layouts/listnav/_ontap_storage_system.html.haml:12 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:12 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:12 -#: ../app/views/layouts/listnav/_persistent_volume.html.haml:12 -#: ../app/views/layouts/listnav/_pxe_server.html.haml:12 -#: ../app/views/layouts/listnav/_resource_pool.html.haml:13 -#: ../app/views/layouts/listnav/_security_group.html.haml:12 -#: ../app/views/layouts/listnav/_service.html.haml:12 -#: ../app/views/layouts/listnav/_storage.html.haml:13 -#: ../app/views/layouts/listnav/_storage_manager.html.haml:12 -msgid "Show Summary" -msgstr "Afficher la synthèse" +msgid "Select a single Domains to edit" +msgstr "Sélectionner un domaine à modifier" -#: ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:23 -#: ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:29 -#: ../app/views/layouts/listnav/_miq_ae_class.html.haml:19 -msgid "Instances (%{count})" -msgstr "Instances (%{count})" +msgid "Select a single Group to edit" +msgstr "Sélectionner un groupe à modifier" -#: ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:29 -#: ../app/views/layouts/listnav/_availability_zone.html.haml:28 -#: ../app/views/layouts/listnav/_cloud_network.html.haml:25 -#: ../app/views/layouts/listnav/_cloud_subnet.html.haml:25 -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:35 -#: ../app/views/layouts/listnav/_flavor.html.haml:31 -#: ../app/views/layouts/listnav/_host_aggregate.html.haml:28 -#: ../app/views/layouts/listnav/_load_balancer.html.haml:25 -#: ../app/views/layouts/listnav/_network_router.html.haml:25 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:38 -#: ../app/views/layouts/listnav/_security_group.html.haml:25 -msgid "Show all Instances" -msgstr "Afficher toutes les instances" +msgid "Select a single Host Aggregate to Add Host" +msgstr "Sélectionner un agrégat de machines auquel ajouter l'hôte" -#: ../app/views/layouts/listnav/_availability_zone.html.haml:22 -msgid "Show this Availability Zone's parent Cloud Provider" -msgstr "Afficher le fournisseur de cloud parent de cette zone de disponibilité" +msgid "Select a single Host Aggregate to Remove Host" +msgstr "Sélectionner un agrégat de machines dans lequel supprimer l'hôte" -#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:28 -#: ../app/views/layouts/listnav/_cloud_object_store_object.html.haml:28 -msgid "%{table}: %{name}" -msgstr "%{table}: %{name}" +msgid "Select a single Host Aggregate to edit" +msgstr "Sélectionner un agrégat de machines à modifier" -#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:37 -#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:44 -msgid "%{table} (%{count})" -msgstr "%{table} (%{count})" +msgid "Select a single Image to Provision Instances" +msgstr "Sélectionner une image pour la mise en service des instances" -#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:44 -msgid "Show this Cloud Object Store's child %{children}'" -msgstr "Afficher les %{children} enfants de ce magasin d'objets cloud" +msgid "Select a single Infrastructure Provider to edit" +msgstr "Sélectionner un fournisseur d'infrastructure à modifier" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:22 -msgid "Show this Cloud Tenant's parent Cloud Provider" -msgstr "Afficher le fournisseur de cloud parent de ce locataire du cloud" +msgid "Select a single Instance to edit" +msgstr "Sélectionner une instance à modifier" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:28 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:46 -msgid "Show all Security Groups" -msgstr "Afficher tous les groupes de sécurité" +msgid "Select a single Item to edit" +msgstr "Sélectionner un élément à modifier" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:42 -msgid "Show all Images" -msgstr "Afficher toutes les images" +msgid "Select a single LDAP Region to edit" +msgstr "Sélectionner une région LDAP à modifier" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:49 -msgid "Show all Volumes" -msgstr "Afficher tous les volumes" +msgid "Select a single Method to edit" +msgstr "Sélectionner une méthode à modifier" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:56 -msgid "Show all Volume Snapshots" -msgstr "Afficher tous les clichés de volumes" +msgid "Select a single Middleware Providers to edit" +msgstr "Sélectionner un fournisseur de middleware à modifier" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:63 -msgid "Cloud Object Stores" -msgstr "Supports de sauvegarde des objets cloud" +msgid "Select a single Namespace to edit" +msgstr "Sélectionner un espace de nommage à modifier" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:63 -msgid "Show all Cloud Object Stores" -msgstr "Afficher tous les magasins d'objets cloud" +msgid "Select a single Network Provider to edit" +msgstr "Sélectionner un fournisseur de réseau à modifier" -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:28 -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:36 -msgid "Show this Cloud Volume's parent %{parent}" -msgstr "Afficher le/la %{parent} parent de ce volume cloud" +msgid "Select a single PXE Servers to edit" +msgstr "Sélectionner un serveur PXE à modifier" -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:45 -msgid "%{children} (0)" -msgstr "%{children} (0)" +msgid "Select a single Role to copy" +msgstr "Sélectionner un rôle à copier" -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:51 -msgid "%{children} (%{count})" -msgstr "%{children} (%{count})" +msgid "Select a single Role to edit" +msgstr "Sélectionner un rôle à modifier" -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:51 -msgid "Show all %{children}" -msgstr "Afficher tou(te)s les %{children}" +msgid "Select a single Storage Manager to edit" +msgstr "Sélectionner un gestionnaire de stockage à modifier" -#: ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:22 -#: ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:30 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:22 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:30 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:53 -msgid "%{model}: %{name}" -msgstr "%{model}: %{name}" +msgid "Select a single System Image Type to edit" +msgstr "Sélectionner un type d'image système à modifier" -#: ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:22 -#: ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:30 -msgid "Show this Backup's parent %{parent}" -msgstr "Afficher le %{parent} du parent de cette sauvegarde" +msgid "Select a single Template to Provision VMs" +msgstr "Sélectionner un modèle pour la mise en service des MV" -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:22 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:30 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:53 -msgid "Show this Snapshot's parent %{parent}" -msgstr "Afficher le %{parent} parent de ce cliché" +msgid "Select a single Template to edit" +msgstr "Sélectionner un modèle à modifier" -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:39 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:45 -msgid "Cloud Volumes based on Snapshot (%{count})" -msgstr "Volumes cloud basés sur un cliché (%{count})" +msgid "Select a single Time Profile to copy" +msgstr "Sélectionner un profil de temps à copier" -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:45 -msgid "Show all Cloud Volumes based on this Snapshot" -msgstr "Afficher tous les volumes cloud basés sur ce cliché" +msgid "Select a single Time Profile to edit" +msgstr "Sélectionner un profil de temps à modifier" -#: ../app/views/layouts/listnav/_compare_sections.html.haml:153 -msgid "Comparison Sections" -msgstr "Sections de comparaison" +msgid "Select a single User to copy" +msgstr "Sélectionner un utilisateur à copier" -#: ../app/views/layouts/listnav/_compare_sections.html.haml:153 -msgid "Drift Sections" -msgstr "Sections de dérive" +msgid "Select a single User to edit" +msgstr "Sélectionner un utilisateur à modifier" -#: ../app/views/layouts/listnav/_compare_sections.html.haml:163 -#: ../app/views/layouts/listnav/_compare_sections.html.haml:163 -msgid "Apply sections" -msgstr "Appliquer les sections" +msgid "Select a single Volume to edit" +msgstr "Sélectionner un volume à modifier" -#: ../app/views/layouts/listnav/_configuration_job.html.haml:24 -msgid "Show parent %s for this Job" -msgstr "Afficher le/la %s parent(e) pour cette tâche" +msgid "Select a single item to edit" +msgstr "Sélectionner un élément à modifier" -#: ../app/views/layouts/listnav/_configuration_job.html.haml:32 -msgid "Show service %s for this Job" -msgstr "Afficher le/la %s de service pour cette tâche" +msgid "Select a single item to manage quotas" +msgstr "Sélectionner un élément pour la gestion des quotas" -#: ../app/views/layouts/listnav/_configuration_job.html.haml:37 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:58 -msgid "Show all Parameters" -msgstr "Afficher tous les paramètres" +msgid "Select a single service to edit" +msgstr "Sélectionner un service à modifier" -#: ../app/views/layouts/listnav/_container_group.html.haml:19 -#: ../app/views/layouts/listnav/_container_group.html.haml:27 -#: ../app/views/layouts/listnav/_container_node.html.haml:19 -#: ../app/views/layouts/listnav/_container_node.html.haml:27 -#: ../app/views/layouts/listnav/_container_project.html.haml:19 -#: ../app/views/layouts/listnav/_container_project.html.haml:27 -#: ../app/views/layouts/listnav/_container_replicator.html.haml:19 -#: ../app/views/layouts/listnav/_container_replicator.html.haml:27 -#: ../app/views/layouts/listnav/_container_service.html.haml:19 -#: ../app/views/layouts/listnav/_container_service.html.haml:27 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:26 -#: ../app/views/layouts/listnav/_ems_container.html.haml:19 -#: ../app/views/layouts/listnav/_ems_container.html.haml:27 -#: ../app/views/layouts/listnav/_host.html.haml:71 -#: ../app/views/layouts/listnav/_storage.html.haml:18 -msgid "Capacity & Utilization" -msgstr "Capacité et utilisation" +msgid "Select a worker to restart" +msgstr "Sélectionner un worker à relancer" + +msgid "Select an Owner:" +msgstr "Sélectionner un propriétaire :" + +msgid "Select an expression element type" +msgstr "Sélectionner un type d'élément d'expression" + +msgid "Select authenticaton type" +msgstr "Sélectionner un type d'authentification" -#: ../app/views/layouts/listnav/_container_group.html.haml:19 -#: ../app/views/layouts/listnav/_container_node.html.haml:19 -#: ../app/views/layouts/listnav/_container_project.html.haml:19 -#: ../app/views/layouts/listnav/_container_replicator.html.haml:19 -#: ../app/views/layouts/listnav/_container_service.html.haml:19 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:26 -#: ../app/views/layouts/listnav/_ems_container.html.haml:19 -#: ../app/views/layouts/listnav/_host.html.haml:71 -#: ../app/views/layouts/listnav/_storage.html.haml:18 -msgid "Show Capacity & Utilization" -msgstr "Afficher la capacité et l'utilisation" +msgid "Select currency: " +msgstr "Sélectionner une devise : " -#: ../app/views/layouts/listnav/_container_group.html.haml:34 -#: ../app/views/layouts/listnav/_container_node.html.haml:34 -#: ../app/views/layouts/listnav/_container_project.html.haml:34 -#: ../app/views/layouts/listnav/_container_replicator.html.haml:34 -#: ../app/views/layouts/listnav/_ems_cloud.html.haml:14 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:32 -#: ../app/views/layouts/listnav/_ems_container.html.haml:34 -#: ../app/views/layouts/listnav/_ems_infra.html.haml:17 -#: ../app/views/layouts/listnav/_ems_network.html.haml:15 -#: ../app/views/layouts/listnav/_ems_storage.html.haml:16 -#: ../app/views/layouts/listnav/_host.html.haml:77 -msgid "Show Timelines" -msgstr "Afficher les chronologies" +msgid "Select domain you wish to import from:" +msgstr "Sélectionner le domaine source de l'importation :" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:19 -msgid "Show configuration" -msgstr "Afficher une configuration" +msgid "Select existing domain to import into:" +msgstr "Sélectionner le domaine existant où importer les données :" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:44 -msgid "Show %{host_title}" -msgstr "Afficher %{host_title}" +msgid "Select items to configure" +msgstr "Sélectionner les éléments à configurer" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:51 -msgid "Show VMs in this %{cluster_title}, but not in Resource Pools below" -msgstr "" -"Afficher les MV dans ce %{cluster_title}, mais pas dans les pools de ressource" -"s ci-dessous" +msgid "Select namespaces you wish to import:" +msgstr "Sélectionner les espaces de nommage à importer :" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:58 -msgid "Show all VMs in this %{cluster_title}" -msgstr "Afficher toutes les MV dans ce(tte) %{cluster_title}" +msgid "Select one or more Groups to delete" +msgstr "Sélectionner un ou plusieurs groupes à supprimer" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:65 -msgid "Show all Templates in this %{cluster_title}" -msgstr "Afficher tous les modèles dans ce(tte) %{cluster_title}" +msgid "Select one or more LDAP Regions to delete" +msgstr "Sélectionner une ou plusieurs régions LDAP à supprimer" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:72 -msgid "Show tree of all VMs by Resource Pool in this %{cluster_title}" -msgstr "" -"Afficher l'arborescence de toutes les MV par pool de ressources dans ce %{clus" -"ter_title}" +msgid "Select one or more Users to delete" +msgstr "Sélectionner un ou plusieurs utilisateurs à supprimer" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:79 -#: ../app/views/layouts/listnav/_host.html.haml:120 -msgid "Show Resource Pools" -msgstr "Afficher les pools de ressources" +msgid "Select one or more consecutive groups to move up or down." +msgstr "Sélectionner un ou plusieurs groupes consécutifs à déplacer vers le haut/bas." -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:86 -msgid "Show %{cluster_title} drift history" -msgstr "Afficher l'historique de dérive de %{cluster_title}" +msgid "Select one or more items to delete" +msgstr "Sélectionner un ou plusieurs éléments à supprimer" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:97 -msgid "Show all %{ontap_storage_system}" -msgstr "Afficher tou(te)s les %{ontap_storage_system}" +msgid "Select only one or consecutive %{member} to move down" +msgstr "Sélectionner un %{member} unique ou plusieurs consécutifs à déplacer vers le bas" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:113 -msgid "Show all %{ontap_file_share}" -msgstr "Afficher tou(te)s les %{ontap_file_share}" +msgid "Select only one or consecutive %{member} to move up" +msgstr "Sélectionner un %{member} unique ou plusieurs consécutifs à déplacer vers le haut" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:121 -msgid "Show all %{base_storage_extent}" -msgstr "Afficher tou(te)s les %{base_storage_extent}" +msgid "Select only one or consecutive %{name} to move down" +msgstr "Sélectionner un %{name} unique ou plusieurs consécutifs à déplacer vers le bas" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:28 -msgid "%{hosts} & %{clusters}" -msgstr "%{hosts} & %{clusters}" +msgid "Select only one or consecutive %{name} to move up" +msgstr "Sélectionner un %{name} unique ou plusieurs consécutifs à déplacer vers le haut" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:28 -msgid "Show %{hosts} & %{clusters}" -msgstr "Afficher %{hosts} et %{clusters}" +msgid "Select only one or consecutive fields to move down" +msgstr "Sélectionner un seul champ ou des champs consécutifs à déplacer vers le bas" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:34 -msgid "Show VMs & Templates" -msgstr "Afficher des MV et modèles" +msgid "Select only one or consecutive fields to move to the bottom" +msgstr "Sélectionner un seul champ ou des champs consécutifs à déplacer à la fin" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:42 -msgid "Show all managed %{cluster}" -msgstr "Afficher tous les %{cluster} gérés" +msgid "Select only one or consecutive fields to move to the top" +msgstr "Sélectionner un seul champ ou des champs consécutifs à déplacer au début" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:49 -msgid "Show all managed %{hosts}" -msgstr "Afficher tous les %{hosts} gérés" +msgid "Select only one or consecutive fields to move up" +msgstr "Sélectionner un seul champ ou des champs consécutifs à déplacer vers le haut" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:56 -msgid "Show all managed %{storages}" -msgstr "Afficher tous les %{storages} gérés" +msgid "Select the file to deploy" +msgstr "Sélectionner le fichier à déployer" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:63 -#: ../app/views/layouts/listnav/_host.html.haml:128 -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:61 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:40 -msgid "Show all VMs" -msgstr "Afficher toutes les MV" +msgid "Select this Host Aggregate" +msgstr "Sélectionner cet agrégat de machines" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:70 -#: ../app/views/layouts/listnav/_host.html.haml:136 -msgid "Show all Templates" -msgstr "Afficher tous les modèles" +msgid "Select two or more Templates to compare" +msgstr "Sélectionner plusieurs modèles à comparer" -#: ../app/views/layouts/listnav/_flavor.html.haml:24 -msgid "Show this Flavor's parent Cloud Provider" -msgstr "Afficher le fournisseur de cloud parent de ce gabarit" +msgid "Select two or more items to compare" +msgstr "Sélectionner plusieurs éléments à comparer" -#: ../app/views/layouts/listnav/_host.html.haml:41 -msgid "Show %{host} devices" -msgstr "Afficher les périphériques de %{host}" +msgid "Select up to 10 timestamps for Drift Analysis" +msgstr "Sélectionner jusqu'à dix horodatages pour l'analyse de la dérive" -#: ../app/views/layouts/listnav/_host.html.haml:47 -msgid "Show %{host} network" -msgstr "Afficher le réseau de %{host}" +msgid "Select your desired settings and click the apply button to view timeline data." +msgstr "Sélectionner les paramètres voulus et cliquer sur le bouton Appliquer pour voir les données de la chronologie." -#: ../app/views/layouts/listnav/_host.html.haml:53 -msgid "Show %{host} storage adapters" -msgstr "Afficher les adaptateurs de stockage de %{host}" +msgid "Selected" +msgstr "Sélectionné" -#: ../app/views/layouts/listnav/_host.html.haml:59 -msgid "Show %{host} OS information" -msgstr "Afficher les informations de SE de %{host}" +msgid "Selected %{model_name} no longer exists" +msgstr "Le %{model_name} sélectionné n'existe plus" -#: ../app/views/layouts/listnav/_host.html.haml:65 -msgid "Show VMM information" -msgstr "Afficher les informations VMM" +msgid "Selected Chargeback Report no longer exists" +msgstr "Le rapport de rétrofacturation sélectionné n'existe plus" -#: ../app/views/layouts/listnav/_host.html.haml:84 -msgid "Show esx logs on this VM" -msgstr "Afficher les journaux ESX sur cette MV" +msgid "Selected Cluster / Deployment Roles" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:95 -msgid "Show this parent %{provider} for this %{host}" -msgstr "Afficher ce %{provider} pour cette %{host}" +msgid "Selected Containers Providers" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:105 -msgid "Show parent %{cluster} for this %{host}" -msgstr "Afficher le/la %{cluster} parent(e) pour ce(tte) %{host}" +msgid "Selected Custom Button Group cannot be deleted" +msgstr "Le groupe de boutons personnalisés sélectionné ne peut pas être supprimé" -#: ../app/views/layouts/listnav/_host.html.haml:144 -msgid "Show %{host} drift history" -msgstr "Afficher l'historique de dérive de %{host}" +msgid "Selected Custom Button Group cannot be edited" +msgstr "Le groupe de boutons personnalisés sélectionné ne peut pas être modifié" -#: ../app/views/layouts/listnav/_host.html.haml:185 -msgid "Show the users defined on this %{host}" -msgstr "Afficher les utilisateurs définis sur cette %{host}" +msgid "Selected Datastores" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:192 -msgid "Show the groups defined on this %{host}" -msgstr "Afficher les groupes définis sur cette %{host}" +msgid "Selected Day" +msgstr "Jour sélectionné" -#: ../app/views/layouts/listnav/_host.html.haml:200 -msgid "Show the patches installed on this %{host}" -msgstr "Afficher les correctifs installés sur cette %{host}" +msgid "Selected Fields:" +msgstr "Champs sélectionnés :" -#: ../app/views/layouts/listnav/_host.html.haml:207 -msgid "Show the firewall rules on this %{host}" -msgstr "Afficher les règles de pare-feu sur cette %{host}" +msgid "Selected Folders" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:218 -msgid "Show the packages installed on this %{host}" -msgstr "Afficher les packages installés sur cette %{host}" +msgid "Selected Host / Nodes" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:224 -msgid "Show the services installed on this %{host}" -msgstr "Afficher les services installés sur cette %{host}" +msgid "Selected Item" +msgstr "Élément sélectionné" -#: ../app/views/layouts/listnav/_host.html.haml:230 -msgid "Show the files on this %{host}" -msgstr "Afficher les fichiers sur cette %{host}" +msgid "Selected Middleware Servers" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:236 -msgid "Show the advanced settings on this %{host}" -msgstr "Afficher les paramètres avancés sur cette %{host}" +msgid "Selected Providers" +msgstr "" -#: ../app/views/layouts/listnav/_host_aggregate.html.haml:22 -msgid "Show this Host Aggregate's parent Cloud Provider" -msgstr "Afficher le fournisseur de cloud parent de cet agrégat d'hôtes" +msgid "Selected Reports:" +msgstr "Rapports sélectionnés :" -#: ../app/views/layouts/listnav/_miq_ae_class.html.haml:19 -msgid "View Instances" -msgstr "Afficher les instances" +msgid "Selected Resource Pools" +msgstr "" -#: ../app/views/layouts/listnav/_ontap_file_share.html.haml:53 -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:58 -#: ../app/views/layouts/listnav/_ontap_storage_system.html.haml:56 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:37 -#: ../app/views/ontap_file_share/_main.html.haml:16 -#: ../app/views/ontap_logical_disk/_main.html.haml:11 -#: ../app/views/ontap_storage_system/_main.html.haml:16 -#: ../app/views/ontap_storage_volume/_main.html.haml:16 -msgid "Infrastructure Relationships" -msgstr "Relations d'infrastructure" - -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:32 -msgid "Show all File Shares" -msgstr "Afficher tous les partages de fichiers" - -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:50 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:30 -#: ../app/views/layouts/listnav/_storage.html.haml:75 -msgid "Show all Base Extents" -msgstr "Afficher toutes les extensions de base" - -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:70 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:48 -msgid "Show all Hosts" -msgstr "Afficher tous les hôtes" - -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:79 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:56 -msgid "Show all Datastores" -msgstr "Afficher tous les magasins de données" - -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:22 -msgid "Show Filer" -msgstr "Afficher l'organiseur de fichiers" - -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:24 -msgid "Show parent Cloud Provider for this Stack" -msgstr "Afficher le fournisseur de cloud parent pour cette pile" +msgid "Selected Resources" +msgstr "Ressources sélectionnées" -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:52 -msgid "Show all Cloud Networks" -msgstr "Afficher tous les réseaux cloud" +msgid "Selected Saved Chargeback Report no longer exists" +msgstr "Le rapport de rétrofacturation enregistré sélectionné n'existe plus" -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:64 -msgid "Show all Outputs" -msgstr "Afficher toutes les sorties" +msgid "Selected Servers" +msgstr "" -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:70 -msgid "Show all Resources" -msgstr "Afficher toutes les ressources" +msgid "Selected Template Contents" +msgstr "Contenu de modèle sélectionné" -#: ../app/views/layouts/listnav/_persistent_volume.html.haml:22 -msgid "Show this container volume's parent Containers Provider" -msgstr "Afficher le fournisseur de conteneurs parent de ce volume conteneur" +msgid "Selected VM" +msgstr "MV sélectionnée" -#: ../app/views/layouts/listnav/_resource_pool.html.haml:23 -#: ../app/views/layouts/listnav/_resource_pool.html.haml:33 -msgid "Parent %{title}: %{name}" -msgstr "%{title} parent(r) : %{name}" +msgid "Selected branch or tag does not contain a valid domain" +msgstr "La branche ou la balise ne contient pas de domaine valide" -#: ../app/views/layouts/listnav/_resource_pool.html.haml:23 -msgid "Show VMs" -msgstr "Afficher des MV" +msgid "Selected:" +msgstr "Sélectionné :" -#: ../app/views/layouts/listnav/_resource_pool.html.haml:33 -msgid "Show Parent %{host}" -msgstr "Afficher le %{host} parent" +msgid "Selection" +msgstr "Sélection" -#: ../app/views/layouts/listnav/_security_group.html.haml:34 -msgid "Show parent Orchestration Stack for this Security Group" -msgstr "Afficher la pile d'orchestration parente pour ce groupe de sécurité" +msgid "Selections" +msgstr "Sélections" -#: ../app/views/layouts/listnav/_service.html.haml:24 -#: ../app/views/layouts/listnav/_service.html.haml:30 -msgid "Member VMs (%{count})" -msgstr "MV membres (%{count})" +msgid "Send CTRL+ALT+DEL" +msgstr "" -#: ../app/views/layouts/listnav/_service.html.haml:30 -msgid "Show member VMs" -msgstr "Afficher les MV membres" +msgid "Send E-mail" +msgstr "Envoyer un email" -#: ../app/views/layouts/listnav/_show_list.html.haml:4 -msgid "No filters defined." -msgstr "Aucun filtre défini." +msgid "Send Management Event" +msgstr "Envoyer un événement de gestion" -#: ../app/views/layouts/listnav/_show_list.html.haml:26 -#: ../app/views/layouts/listnav/_show_list.html.haml:52 -msgid "Apply this filter" -msgstr "Appliquer ce filtre" +msgid "Send SNMP Trap" +msgstr "Envoyer un trap SNMP" -#: ../app/views/layouts/listnav/_show_list.html.haml:63 -msgid "Set the current filter as my default" -msgstr "Définir le filtre actuel comme mon filtre par défaut" +msgid "Send a Management Event" +msgstr "Envoyer un événement de gestion" -#: ../app/views/layouts/listnav/_show_list.html.haml:64 -#: ../app/views/layouts/listnav/_show_list.html.haml:75 -msgid "Set Default" -msgstr "Définir Par défaut" +msgid "Send an E-mail" +msgstr "Envoyer un email" -#: ../app/views/layouts/listnav/_show_list.html.haml:75 -msgid "Select a filter to set it as my default" -msgstr "Sélectionner un filtre à définir comme filtre par défaut" +msgid "Send an SNMP Trap" +msgstr "Envoyer un trap SNMP" -#: ../app/views/layouts/listnav/_storage.html.haml:29 -msgid "Show all registered %{hosts}" -msgstr "Afficher tous les %{hosts} enregistrés" +msgid "Send if Report is Empty" +msgstr "Envoyer si le rapport est vide" -#: ../app/views/layouts/listnav/_storage.html.haml:37 -msgid "Show registered VMs" -msgstr "Afficher les MV enregistrées" +msgid "Send test email" +msgstr "Envoyer un email de test" -#: ../app/views/layouts/listnav/_storage.html.haml:48 -msgid "Show all Filers" -msgstr "Afficher tous les organiseurs de fichiers" +msgid "Server" +msgstr "Serveur" -#: ../app/views/layouts/listnav/_storage.html.haml:60 -msgid "Show File Shares" -msgstr "Afficher les partages de fichiers" +msgid "Server %{server_name} [%{server_id}] can only be deleted if it is stopped or has not responded for a while" +msgstr "Le serveur %{server_name} [%{server_id}] ne peut être supprimé que s'il est arrêté ou s'il ne répond plus depuis un bon moment" -#: ../app/views/layouts/listnav/_storage.html.haml:67 -msgid "Show all LUNs" -msgstr "Afficher tous les LUN" +msgid "Server '%{name}' restarted" +msgstr "Serveur '%{name}' relancé" -#: ../app/views/layouts/listnav/_storage.html.haml:83 -#: ../app/views/miq_ae_customization/_old_dialogs_details.html.haml:53 -#: ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:77 -#: ../app/views/storage/_main.html.haml:19 -msgid "Content" -msgstr "Contenu" +msgid "Server Address" +msgstr "Adresse du serveur" -#: ../app/views/layouts/listnav/_storage.html.haml:86 -msgid "Show all files on this Datastore" -msgstr "Afficher tous les fichiers dans ce magasin de données" +msgid "Server Control" +msgstr "Contrôle du serveur" -#: ../app/views/layouts/listnav/_storage.html.haml:94 -msgid "Show VM Provisioned Disk Files on this Datastore" -msgstr "Afficher les fichiers disque configurés de MV sur ce magasin de données" +msgid "Server Groups" +msgstr "Groupes de serveurs" -#: ../app/views/layouts/listnav/_storage.html.haml:102 -msgid "Show VM snapshot files on this Datastore" -msgstr "Afficher les fichiers de cliché de MV sur ce magasin de données" +msgid "Server License" +msgstr "Licence de serveur" -#: ../app/views/layouts/listnav/_storage.html.haml:110 -msgid "Show VM memory files on this Datastore" -msgstr "Afficher les fichiers de mémoire de MV sur ce magasin de données" +msgid "Server Name" +msgstr "Nom du serveur" -#: ../app/views/layouts/listnav/_storage.html.haml:118 -msgid "Show Other VM files on this Datastore" -msgstr "Afficher les autres fichiers MV sur ce magasin de données" +msgid "Server Roles" +msgstr "Rôles du serveur" -#: ../app/views/layouts/listnav/_storage.html.haml:126 -msgid "Show non-VM files on this Datastore" -msgstr "Afficher les fichiers non MV sur ce magasin de données" +msgid "Server State" +msgstr "État du serveur" -#: ../app/views/middleware_server/_add_datasource.html.haml:35 -msgid "Create Datasource" -msgstr "Créer une source de données" +msgid "Server information, Username and matching password fields are needed to perform verification of credentials" +msgstr "Les informations du serveur, le nom d'utilisateur et les champs de mot de passe correspondants sont nécessaires pour effectuer la vérification des informations d'identification" -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:5 -msgid "Step 1/3: Datasource Attributes" -msgstr "Étape 1/3 : Attributs de source de données" +msgid "Server information, username and private key fields are needed to perform verification of credentials" +msgstr "Les informations du serveur, le nom d'utilisateur et les champs de clé privée sont nécessaires pour effectuer la vérification des informations d'identification" + +msgid "Server:" +msgstr "Serveur :" -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:22 -msgid "Enter Datasource name" -msgstr "Saisir le nom de la source de données" +msgid "Server: %{appliance_name}" +msgstr "Serveur : %{appliance_name}" -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:38 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:37 -msgid "Maximum length is 100" -msgstr "La longueur maximale est 100" +msgid "Servers" +msgstr "Serveurs" -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:55 -msgid "Enter JNDI name" -msgstr "Saisir le nom JNDI" +msgid "Servers by Roles" +msgstr "Serveurs par rôle" -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:71 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:71 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:105 -msgid "Maximum length is 256" -msgstr "La longueur maximale est 256" +msgid "Service" +msgstr "Service" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:5 -msgid "Step 2/3: JDBC Driver" -msgstr "Étape 2/3 : Pilote JDBC" +msgid "Service \"%{name}\" was saved" +msgstr "Le service \"%{name}\" a été enregistré" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:24 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:72 -msgid "Enter JDBC Driver name" -msgstr "Saisir le nom du pilote JDBC" +msgid "Service Account JSON" +msgstr "JSON compte de service" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:48 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:92 -msgid "Module Name" -msgstr "Nom du module" +msgid "Service Catalogs" +msgstr "Catalogues de services" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:57 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:101 -msgid "Enter JDBC Module name" -msgstr "Saisir le nom du module JDBC" +msgid "Service Dialog \"%{name}\" was successfully created" +msgstr "La boîte de dialogue de service \"%{name}\" a été créée" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:82 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:122 -msgid "Driver Class" -msgstr "Classe de pilote" +msgid "Service Dialog Import / Export" +msgstr "Importation/Exportation de boîtes de dialogue de service" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:91 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:131 -msgid "Enter JDBC Driver Class" -msgstr "Saisir la classe de pilote JDBC" +msgid "Service Dialog Import/Export" +msgstr "Importation/Exportation de boîtes de dialogue de service" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:5 -msgid "Step 3/3: Connection Settings" -msgstr "Étape 3/3 : Paramètres de connexion" +msgid "Service Dialog Name" +msgstr "Nom de la boîte de dialogue de service" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:37 -msgid "Must start with 'jdbc:'" -msgstr "Doit commencer par « jdbc »" +msgid "Service Dialogs" +msgstr "Boîtes de dialogue de service" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:55 -msgid "Enter Username" -msgstr "Saisir le nom d'utilisateur" +msgid "Service Pack" +msgstr "Service Pack" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:81 -msgid "Enter Password" -msgstr "Saisir le mot de passe" +msgid "Service Selection" +msgstr "Sélection du service" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:92 -msgid "Security Domain" -msgstr "Domaine de sécurité" +msgid "Service dialog import cancelled" +msgstr "L'importation de boîtes de dialogue de service a été annulée" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:98 -msgid "Enter Security Domain" -msgstr "Saisir le domaine de sécurité" +msgid "Service dialogs imported successfully" +msgstr "Boîtes de dialogue de service correctement importées" -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:48 -#: ../app/views/middleware_server/_deploy.html.haml:48 -msgid "Select the file to deploy" -msgstr "Sélectionner le fichier à déployer" +msgid "Service is already retired" +msgstr "Le service est déjà désactivé" -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:152 -msgid "Major Version" -msgstr "Version majeure" +msgid "Services" +msgstr "Services" -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:160 -msgid "Enter Major Version" -msgstr "Saisir la version majeure" +msgid "Session Timeout" +msgstr "Expiration du délai d'attente de la session" -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:170 -msgid "Minor Version" -msgstr "Version mineure" +msgid "Session was timed out due to inactivity. Please log in again." +msgstr "La session a expiré pour cause d'inactivité. Reconnectez-vous." -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:178 -msgid "Enter Minor Version" -msgstr "Saisir la version mineure" +msgid "Set Custom Attribute Settings" +msgstr "Définir les paramètres d'attributs personnalisés" -#: ../app/views/middleware_server/_choose_datasource.html.haml:5 -msgid "Choose Datasource:" -msgstr "Choisir la source de données :" +msgid "Set Default" +msgstr "Définir Par défaut" -#: ../app/views/middleware_server/_choose_datasource.html.haml:15 -msgid "Datasource:" -msgstr "Source de données :" +msgid "Set Node to Manageable" +msgstr " Définir Nœud à Gérable" -#: ../app/views/middleware_server/_deploy.html.haml:36 -msgid "Add Middleware Deployment" -msgstr "Ajouter un déploiement de middleware" +msgid "Set Nodes to Manageable" +msgstr " Définir Nœuds à Gérable" -#: ../app/views/middleware_server/_deploy.html.haml:62 -msgid "Enable Deployment" -msgstr "Activer le déploiement" +msgid "Set Ownership" +msgstr "Définir la propriété" -#: ../app/views/middleware_server/_deploy.html.haml:81 -msgid "Runtime Name" -msgstr "Nom runtime" +msgid "Set Ownership for %{vms_or_templates}" +msgstr "Définir la propriété %{vms_or_templates}" -#: ../app/views/middleware_server/_deploy.html.haml:87 -#: ../app/views/shared/_file_chooser.html.haml:8 -msgid "No file chosen" -msgstr "Aucun fichier sélectionné." +msgid "Set Ownership for Service" +msgstr "" -#: ../app/views/middleware_server/_deploy.html.haml:97 -msgid "Overwrite (if exists)" -msgstr "Remplacer (s'il existe)" +msgid "Set Ownership for the selected Services" +msgstr "Définir la propriété des services sélectionnés" -#: ../app/views/middleware_server/_ops_params.html.haml:49 -msgid "Timeout" -msgstr "Délai d'attente" +msgid "Set Ownership for the selected Templates" +msgstr "Définir la propriété des modèles sélectionnés" -#: ../app/views/middleware_server/_ops_params.html.haml:64 -msgid "seconds" -msgstr "secondes" +msgid "Set Ownership for the selected items" +msgstr "Définir la propriété des éléments sélectionnés" -#: ../app/views/middleware_server/_ops_params.html.haml:74 -msgid "Timeout is required" -msgstr "Le délai d'attente est obligatoire" +msgid "Set Ownership for this Image" +msgstr "Définir la propriété de cette image" -#: ../app/views/middleware_server/_ops_params.html.haml:79 -msgid "Timeout min is 0" -msgstr "Le délai d'attente minimum est 0" +msgid "Set Ownership for this Instance" +msgstr "Définir la propriété de cette instance" -#: ../app/views/middleware_server/_ops_params.html.haml:84 -msgid "Timeout max is 60" -msgstr "Le délai d'attente maximum est 60" +msgid "Set Ownership for this Service" +msgstr "Définir la propriété de ce service" -#: ../app/views/middleware_topology/show.html.haml:89 -msgid "Messaging" -msgstr "Messagerie" +msgid "Set Ownership for this Template" +msgstr "Définir la propriété de ce modèle" -#: ../app/views/middleware_topology/show.html.haml:144 -msgid "Server Groups" -msgstr "Groupes de serveurs" +msgid "Set Ownership for this VM" +msgstr "Définir la propriété de cette MV" -#: ../app/views/middleware_topology/show.html.haml:162 -msgid "" -"Click on the legend to show/hide entities, and double click on the entities in" -" the graph to navigate to their summary pages." -msgstr "" -"Cliquez sur la légende pour afficher/masquer les entités, et double-cliquez su" -"r les entités du graphique pour accéder à leurs pages de synthèse." +msgid "Set Ownership was cancelled by the user" +msgstr "La définition de la propriété a été annulée par l'utilisateur" -#: ../app/views/miq_ae_class/_all_tabs.html.haml:11 -#: ../app/views/miq_ae_class/_class_methods.html.haml:5 -msgid "Methods" -msgstr "Méthodes" +msgid "Set Retirement Date" +msgstr "Définir une date de désactivation" -#: ../app/views/miq_ae_class/_all_tabs.html.haml:17 -#: ../app/views/miq_ae_class/_class_fields.html.haml:8 -#: ../app/views/miq_ae_class/_class_fields.html.haml:69 -msgid "Schema" -msgstr "Schéma" +msgid "Set Retirement Date does not apply to selected %{model}" +msgstr "Impossible de définir une date de désactivation pour le/la %{model} sélectionné(e)" -#: ../app/views/miq_ae_class/_all_tabs.html.haml:44 -msgid "Method Inputs" -msgstr "Entrées de méthode" +msgid "Set Retirement Date for this Service" +msgstr "" -#: ../app/views/miq_ae_class/_all_tabs.html.haml:64 -msgid "Namespace Details" -msgstr "Détails de l'espace de nommage" +msgid "Set Retirement Dates" +msgstr "Définir des dates de désactivation" -#: ../app/views/miq_ae_class/_all_tabs.html.haml:78 -msgid "Namespaces" -msgstr "Espaces de nommage" +msgid "Set Retirement Dates for the selected Orchestration Stacks" +msgstr "Définir des dates de désactivation pour les piles d'orchestration sélectionnées" -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_inputs.html.haml:16 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:130 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:36 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:204 -msgid "Default Value" -msgstr "Valeur Par défaut" +msgid "Set Retirement Dates for the selected items" +msgstr "Définir des dates de désactivation pour les éléments sélectionnés" -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:27 -msgid "Max Retries" -msgstr "Nb max. de tentatives" +msgid "Set Retirement Dates for this Instance" +msgstr "Définir des dates de désactivation pour cette instance" -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:29 -msgid "Max Time" -msgstr "Durée max." +msgid "Set Retirement Dates for this Orchestration Stack" +msgstr "Définir des dates de désactivation pour cette pile d'orchestration" -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:19 -#: ../app/views/miq_ae_class/_instance_form.html.haml:91 -msgid "On Entry" -msgstr "En entrée" +msgid "Set Retirement Dates for this VM" +msgstr "Définir des dates de désactivation pour cette MV" -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:23 -#: ../app/views/miq_ae_class/_instance_form.html.haml:95 -msgid "On Error" -msgstr "En cas d'erreur" +msgid "Set Retirement this Service?" +msgstr "" -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:21 -#: ../app/views/miq_ae_class/_instance_form.html.haml:93 -msgid "On Exit" -msgstr "En sortie" +msgid "Set Tenant" +msgstr "" -#: ../app/views/miq_ae_class/_class_fields.html.haml:30 -#: ../app/views/miq_ae_class/_instance_form.html.haml:109 -#: ../app/views/miq_policy/_rsop_form.html.haml:17 -#: ../app/views/miq_request/_prov_options.html.haml:62 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general-review.html.haml:19 -msgid "Type:" -msgstr "Type :" +msgid "Set filters to default" +msgstr "Définir les filtres par défaut" -#: ../app/views/miq_ae_class/_class_fields.html.haml:35 -#: ../app/views/miq_ae_class/_instance_form.html.haml:114 -msgid "Data Type:" -msgstr "Type de données :" +msgid "Set selected Actions to Asynchronous" +msgstr "Définir les actions sélectionnées comme asynchrones" -#: ../app/views/miq_ae_class/_class_fields.html.haml:39 -#: ../app/views/miq_ae_class/_instance_form.html.haml:119 -msgid "Substitution:" -msgstr "Substitution :" +msgid "Set selected Actions to Synchronous" +msgstr "Définir les actions sélectionnées comme synchrones" -#: ../app/views/miq_ae_class/_class_fields.html.haml:56 -msgid "No schema found" -msgstr "Aucun schéma trouvé" +msgid "Set selected items to manageable state." +msgstr "Définir les éléments sélectionnés à l'état gérable." -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_inputs.html.haml:18 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:132 -msgid "Data Type" -msgstr "Type de données" +msgid "Set selected items to manageable state?" +msgstr "Définir les éléments sélectionnés à l'état gérable ?" -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_class_form.html.haml:45 -#: ../app/views/miq_ae_class/_class_props.html.haml:42 -#: ../app/views/miq_ae_class/_instance_form.html.haml:46 -#: ../app/views/miq_ae_class/_method_form.html.haml:48 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:48 -msgid "Display Name" -msgstr "Nom d'affichage" +msgid "Set the current filter as my default" +msgstr "Définir le filtre actuel comme mon filtre par défaut" -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -msgid "Sub" -msgstr "Secondaire" +msgid "Set this item to manageable state" +msgstr "Définir cet élément à l'état gérable" -#: ../app/views/miq_ae_class/_class_fields.html.haml:93 -msgid "Are you sure you want to delete field from schema?" -msgstr "Voulez-vous vraiment supprimer le champ du schéma ?" +msgid "Set this item to manageable?" +msgstr "Définir cet élément à gérable ?" -#: ../app/views/miq_ae_class/_class_fields.html.haml:93 -msgid "Click to delete this field from schema" -msgstr "Cliquez pour supprimer ce champ du schéma" +msgid "Set to blank" +msgstr "Définir comme vide" -#: ../app/views/miq_ae_class/_class_fields.html.haml:150 -msgid "New Field" -msgstr "Nouveau champ" +msgid "Set/Remove Retirement Date" +msgstr "Définir/annuler une date de désactivation" -#: ../app/views/miq_ae_class/_class_fields.html.haml:160 -#: ../app/views/miq_ae_class/_inputs.html.haml:98 -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:7 -#: ../app/views/ops/_ap_form_file.html.haml:55 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:99 -#: ../app/views/ops/_ap_form_registry.html.haml:74 -#: ../app/views/ops/_classification_entry.html.haml:18 -#: ../app/views/ops/_ldap_forest_entries.html.haml:63 -#: ../app/views/ops/_ldap_forest_entries.html.haml:63 -msgid "Add this entry" -msgstr "Ajouter cette entrée" +msgid "Set/Remove retirement date for %{vm_or_template}" +msgstr "Définir/annuler une date de désactivation pour %{vm_or_template}" -#: ../app/views/miq_ae_class/_class_instances.html.haml:50 -msgid "No instances found" -msgstr "Aucune instance trouvée" +msgid "Set/Remove retirement date for Service" +msgstr "" -#: ../app/views/miq_ae_class/_class_methods.html.haml:50 -msgid "No methods found" -msgstr "Aucune méthode trouvée" +msgid "Set/remove retirement date was cancelled by the user" +msgstr "La définition/l'annulation de la date de désactivation a été annulée par l'utilisateur" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:18 -msgid "From Domain" -msgstr "Depuis le domaine" +msgid "Setting priority is not allowed for the selected item" +msgstr "La définition d'une priorité n'est pas autorisée pour l'élément sélectionné" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:34 -msgid "To Domain" -msgstr "Domaine de destination" +msgid "Setting tracing to true may cause excessive log lines to be written" +msgstr "Activer le traçage peut provoquer l'écriture de lignes de journal excessives" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:62 -msgid "New Name" -msgstr "Nouveau nom" +msgid "Settings" +msgstr "Paramètres" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:78 -msgid "Copy to same path" -msgstr "Copier vers le même chemin" +msgid "Settings %{model}" +msgstr "Paramètres %{model}" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:96 -msgid "Replace items if they already exist?" -msgstr "Remplacer les éléments s'ils existent déjà ?" +msgid "Settings %{model} \"%{name}\"" +msgstr "Paramètres %{model} \"%{name}\"" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:114 -msgid "Namespace" -msgstr "Espace de nommage" +msgid "Settings %{model} \"%{name}\" (current)" +msgstr "Paramètres %{model} \"%{name}\" (en cours)" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:132 -msgid "selected to copy" -msgstr "sélectionné pour copier" +msgid "Settings %{text}" +msgstr "Paramètres %{text}" -#: ../app/views/miq_ae_class/_domain_overrides.html.haml:2 -msgid "Domain Overrides (by priority)" -msgstr "Remplacements de domaine (par priorité)" +msgid "Severity" +msgstr "" -#: ../app/views/miq_ae_class/_domain_overrides.html.haml:13 -msgid "Click to view this %{model} in the \"%{domain_name}\" Domain" -msgstr "Cliquez pour afficher ce %{model} dans le domaine \"%{domain_name}\"" +msgid "Shared" +msgstr "Partagé" -#: ../app/views/miq_ae_class/_domains_priority_form.html.haml:9 -msgid "Domains:" -msgstr "Domaines :" +msgid "Shelve" +msgstr "Classer" -#: ../app/views/miq_ae_class/_domains_priority_form.html.haml:25 -#: ../app/views/miq_ae_class/_fields_seq_form.html.haml:27 -#: ../app/views/ops/_ldap_seq_form.html.haml:46 -#: ../app/views/ops/_ldap_seq_form.html.haml:46 -#: ../app/views/report/_db_seq_form.html.haml:35 -#: ../app/views/shared/buttons/_column_lists.html.haml:99 -#: ../app/views/shared/buttons/_group_order_form.html.haml:41 -msgid "Move selected fields up" -msgstr "Déplacer les champs sélectionnés vers le haut" +msgid "Shelve Offload" +msgstr "Classer hors charge" -#: ../app/views/miq_ae_class/_domains_priority_form.html.haml:32 -#: ../app/views/miq_ae_class/_fields_seq_form.html.haml:39 -#: ../app/views/ops/_ldap_seq_form.html.haml:57 -#: ../app/views/ops/_ldap_seq_form.html.haml:57 -#: ../app/views/report/_db_seq_form.html.haml:47 -#: ../app/views/shared/buttons/_column_lists.html.haml:115 -#: ../app/views/shared/buttons/_group_order_form.html.haml:57 -msgid "Move selected fields down" -msgstr "Déplacer les champs sélectionnés vers le bas" +msgid "Shelve Offload the selected items" +msgstr "Classer hors charge les éléments sélectionnés" -#: ../app/views/miq_ae_class/_domains_priority_form.html.haml:42 -#: ../app/views/report/_db_seq_form.html.haml:59 -#: ../app/views/shared/buttons/_group_order_form.html.haml:73 -msgid "* Select one or more consecutive groups to move up or down." -msgstr "* Sélectionner un ou plusieurs groupes pour les déplacer en haut ou en bas." +msgid "Shelve Offload the selected items?" +msgstr "Classer hors charge les éléments sélectionnés ?" -#: ../app/views/miq_ae_class/_fields_seq_form.html.haml:11 -msgid "Class Schema Sequencing:" -msgstr "Séquençage du schéma de classe :" +msgid "Shelve Offload this Instance" +msgstr "Classer cette instance hors charge" -#: ../app/views/miq_ae_class/_fields_seq_form.html.haml:54 -msgid "* Select one or more consecutive fields to move up or down." -msgstr "" -"* Selectionner un ou plusieurs champs contigus pour les déplacer en haut ou en" -" bas." +msgid "Shelve Offload this Instance?" +msgstr "Classer cette instance hors charge ?" -#: ../app/views/miq_ae_class/_git_domain_refresh.html.haml:17 -#: ../app/views/miq_ae_tools/_import_export.html.haml:186 -msgid "Branch/Tag" -msgstr "Branche/Balise" +msgid "Shelve the selected items" +msgstr "Classer les éléments sélectionnés" -#: ../app/views/miq_ae_class/_git_domain_refresh.html.haml:33 -#: ../app/views/miq_ae_tools/_import_export.html.haml:201 -msgid "Branches" -msgstr "Branches" +msgid "Shelve the selected items?" +msgstr "Classer les éléments sélectionnés ?" -#: ../app/views/miq_ae_class/_inputs.html.haml:30 -msgid "Are you sure you want to delete input field from method?" -msgstr "Voulez-vous vraiment supprimer le champ d'entrée de la méthode ?" +msgid "Shelve this Instance" +msgstr "Classer cette instance" -#: ../app/views/miq_ae_class/_inputs.html.haml:30 -#: ../app/views/miq_ae_class/_inputs.html.haml:30 -msgid "Click to delete this input field from method" -msgstr "Cliquez pour supprimer ce champ d'entrée de la méthode" +msgid "Shelve this Instance?" +msgstr "Classer cette instance ?" -#: ../app/views/miq_ae_class/_inputs.html.haml:69 -msgid "Click to add a new parameter" -msgstr "Cliquez pour ajouter un nouveau paramètre" +msgid "Shortcut description is required" +msgstr "La description du raccourci est obligatoire" -#: ../app/views/miq_ae_class/_inputs.html.haml:79 -msgid "New Parameter" -msgstr "Nouveau paramètre" +msgid "Shortcuts" +msgstr "Raccourcis" -#: ../app/views/miq_ae_class/_instance_fields.html.haml:42 -msgid "Type: %{automation_type}" -msgstr "Type : %{automation_type}" +msgid "Show" +msgstr "Afficher" -#: ../app/views/miq_ae_class/_instance_fields.html.haml:45 -msgid "Data type: %{data_type}" -msgstr "Type de données : %{data_type}" +msgid "Show %{cluster_title} drift history" +msgstr "Afficher l'historique de dérive de %{cluster_title}" -#: ../app/views/miq_ae_class/_instance_fields.html.haml:47 -msgid "Substitute: %{substitute}" -msgstr "Substituer : %{substitute}" +msgid "Show %{host_title}" +msgstr "Afficher %{host_title}" -#: ../app/views/miq_ae_class/_instance_form.html.haml:5 -#: ../app/views/miq_ae_class/_method_form.html.haml:6 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:7 -msgid "Main Info" -msgstr "Informations principales" +msgid "Show %{hosts} & %{clusters}" +msgstr "Afficher %{hosts} et %{clusters}" -#: ../app/views/miq_ae_class/_method_data.html.haml:18 -msgid "Optional, if not specified, method name is used." -msgstr "" -"Facultatif, si ce paramètre n'est pas spécifié, le nom de la méthode est utili" -"sé." +msgid "Show %{host} OS information" +msgstr "Afficher les informations de SE de %{host}" -#: ../app/views/miq_ae_class/_method_form.html.haml:65 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:64 -msgid "Location" -msgstr "Emplacement" +msgid "Show %{host} devices" +msgstr "Afficher les périphériques de %{host}" -#: ../app/views/miq_ae_class/_method_form.html.haml:100 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:95 -msgid "Builtin name" -msgstr "Nom intégré" +msgid "Show %{host} drift history" +msgstr "Afficher l'historique de dérive de %{host}" -#: ../app/views/miq_ae_class/_method_form.html.haml:100 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:95 -msgid "Data" -msgstr "Données" +msgid "Show %{host} network" +msgstr "Afficher le réseau de %{host}" -#: ../app/views/miq_ae_class/_method_form.html.haml:106 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:120 -msgid "Input Parameters" -msgstr "Paramètres d'entrée" +msgid "Show %{host} storage adapters" +msgstr "Afficher les adaptateurs de stockage de %{host}" -#: ../app/views/miq_ae_class/_method_form.html.haml:118 -msgid "Hide Input Parameters" -msgstr "Masquer les paramètres d'entrée" +msgid "Show %{label}" +msgstr "Afficher %{label}" -#: ../app/views/miq_ae_class/_method_form.html.haml:118 -msgid "Show Input Parameters" -msgstr "Afficher les paramètres d'entrée" +msgid "Show %{label} '%{value}'" +msgstr "Afficher %{label} '%{value}'" -#: ../app/views/miq_ae_class/_method_inputs.html.haml:128 -msgid "Input Name" -msgstr "Nom de l'entrée" +msgid "Show %{name}" +msgstr "Afficher %{name}" -#: ../app/views/miq_ae_class/_ns_list.html.haml:81 -#: ../app/views/miq_policy/_alert_details.html.haml:13 -#: ../app/views/ops/_ap_show.html.haml:7 -#: ../app/views/resource_pool/_config.html.haml:11 -msgid "Info" -msgstr "Infos" +msgid "Show %{object_name} Summary" +msgstr "Afficher la synthèse de %{object_name}" -#: ../app/views/miq_ae_customization/_dialog_details.html.haml:15 -#: ../app/views/report/_form_styling.html.haml:126 -msgid "Sample" -msgstr "Exemple" +msgid "Show %{plural_linked_name}" +msgstr "Afficher %{plural_linked_name}" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:6 -msgid "Element Information" -msgstr "Informations sur l'élément" +msgid "Show %{title} Network" +msgstr "Afficher le réseau de %{title}" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:15 -#: ../app/views/miq_ae_customization/_dialog_group_form.html.haml:13 -#: ../app/views/miq_ae_customization/_dialog_info.html.haml:15 -#: ../app/views/miq_ae_customization/_dialog_info_form.html.haml:14 -#: ../app/views/miq_ae_customization/_dialog_tab_form.html.haml:13 -#: ../app/views/ops/_label_tag_mapping_form.html.haml:43 -msgid "Label" -msgstr "Libellé" +msgid "Show %{title} Quadrants" +msgstr "Afficher les quadrants de %{title}" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:88 -msgid "Only 1 Date or Date/Time element can be present in a Dialog" -msgstr "Une boîte de dialogue ne peut contenir qu'un seul élément Date ou Date/Heure" +msgid "Show %{title} Storage Adapters" +msgstr "Afficher les adaptateurs de stockage de %{title}" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:96 -msgid "Dynamic" -msgstr "Dynamique" +msgid "Show %{title} devices" +msgstr "Afficher les périphériques de %{title}" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:126 -msgid "Auto Refresh other fields when modified" -msgstr "Rafraichissement automatique des autres champs quand modifié" +msgid "Show %{title} drift history" +msgstr "Afficher l'historique de dérive de %{title}" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:149 -#: ../app/views/ops/_all_tabs.html.haml:37 -msgid "Advanced" -msgstr "Avancé" +msgid "Show Ad hoc Metrics for this Provider" +msgstr "" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:158 -msgid "Reconfigurable" -msgstr "Reconfigurable" +msgid "Show Capacity & Utilization" +msgstr "Afficher la capacité et l'utilisation" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_dynamic_options.html.haml:5 -msgid "Entry Point (NS/Cls/Inst)" -msgstr "Point d'entrée (NS/Cls/Inst)" +msgid "Show Capacity & Utilization data for this Availability Zone" +msgstr "Afficher les données de capacité et d'utilisation de cette zone de disponibilité" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_dynamic_options.html.haml:21 -msgid "Show Refresh Button" -msgstr "Afficher le bouton Actualiser" +msgid "Show Capacity & Utilization data for this Container" +msgstr "Afficher les données de capacité et d'utilisation de ce conteneur" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_dynamic_options.html.haml:37 -msgid "Load Values on Init" -msgstr "Charger les valeurs lors de l'initialisation" +msgid "Show Capacity & Utilization data for this Datasource" +msgstr "Afficher les données de capacité et d'utilisation de cette source de données" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_dynamic_options.html.haml:52 -msgid "Auto refresh" -msgstr "Rafraîchissement automatique" +msgid "Show Capacity & Utilization data for this Datastore" +msgstr "Afficher les données de capacité et d'utilisation de ce magasin de données" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:5 -msgid "Read only" -msgstr "Lecture seule" +msgid "Show Capacity & Utilization data for this Group" +msgstr "Afficher les données de capacité et d'utilisation de ce groupe" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:19 -msgid "Visible" -msgstr "Visible" +msgid "Show Capacity & Utilization data for this Instance" +msgstr "Afficher les données de capacité et d'utilisation de cette instance" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:71 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:226 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:324 -msgid "Value Type" -msgstr "Type de valeur" +msgid "Show Capacity & Utilization data for this Middleware messaging" +msgstr "Afficher les données de capacité et d'utilisation de cette messagerie middleware" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:76 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:231 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:329 -msgid "String" -msgstr "Chaîne" +msgid "Show Capacity & Utilization data for this Node" +msgstr "Afficher les données de capacité et d'utilisation de ce nœud" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:92 -msgid "Protected" -msgstr "Protégé" +msgid "Show Capacity & Utilization data for this Project" +msgstr "Afficher les données de capacité et d'utilisation de ce projet" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:121 -msgid "Validator Type" -msgstr "Type de validateur" +msgid "Show Capacity & Utilization data for this Provider" +msgstr "Afficher les données de capacité et d'utilisation de ce fournisseur" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:126 -msgid "Regular Expression" -msgstr "Expression régulière" +msgid "Show Capacity & Utilization data for this Replicator" +msgstr "Afficher les données de capacité et d'utilisation de ce réplicateur" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:142 -msgid "Validator Rule" -msgstr "Règle de validateur" +msgid "Show Capacity & Utilization data for this Server" +msgstr "Afficher les données de capacité et d'utilisation de ce serveur" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:166 -msgid "Show Past Dates" -msgstr "Afficher les dates passées" +msgid "Show Capacity & Utilization data for this Service" +msgstr "Afficher les données de capacité et d'utilisation de ce service" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:247 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:345 -#: ../app/views/report/_report_info.html.haml:45 -#: ../app/views/report/_report_list.html.haml:127 -msgid "Sort By" -msgstr "Trier par" +msgid "Show Capacity & Utilization data for this Template" +msgstr "Afficher les données de capacité et d'utilisation de ce modèle" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:267 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:365 -#: ../app/views/report/_form_sort.html.haml:51 -msgid "Sort Order" -msgstr "Ordre de tri" +msgid "Show Capacity & Utilization data for this VM" +msgstr "Afficher les données de capacité et d'utilisation de cette MV" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:272 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:370 -#: ../app/views/report/_form_sort.html.haml:56 -msgid "Ascending" -msgstr "Croissant" +msgid "Show Capacity & Utilization data for this item" +msgstr "Afficher les données de capacité et d'utilisation de cet élément" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:272 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:370 -#: ../app/views/report/_form_sort.html.haml:56 -msgid "Descending" -msgstr "Décroissant" +msgid "Show Chargeback preview" +msgstr "" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:308 -msgid "Single Select" -msgstr "Sélection simple" +msgid "Show Compliance History of this %{model} (Last 10 Checks)" +msgstr "Afficher l'historique de conformité de %{model} (10 derniers contrôles)" -#: ../app/views/miq_ae_customization/_dialog_group_form.html.haml:4 -msgid "Box Information" -msgstr "Boîte d'Information" +msgid "Show Compliance History of this %{title} (Last 10 Checks)" +msgstr "Afficher l'historique de conformité de ce %{title} (10 derniers contrôles)" -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:7 -msgid "Import Service Dialogs" -msgstr "Importer des boîtes de dialogue de service" +msgid "Show Compliance History of this Container Image (Last 10 Checks)" +msgstr "Afficher l'historique de conformité de cette image de conteneur (10 derniers contrôles)" -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:24 -msgid "Dialog name" -msgstr "Nom de la boîte de dialogue" +msgid "Show Compliance History of this Node (Last 10 Checks)" +msgstr "Afficher l'historique de conformité de ce nœud (10 derniers contrôles)" -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:65 -#: ../app/views/report/_export_widgets.html.haml:66 -msgid "Commit Changes" -msgstr "Valider les modifications" +msgid "Show Compliance History of this Replicator (Last 10 Checks)" +msgstr "Afficher l'historique de conformité de ce réplicateur (10 derniers contrôles)" -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:74 -#: ../app/views/miq_policy/_export.html.haml:8 -#: ../app/views/ops/_ldap_server_entry.html.haml:7 -#: ../app/views/ops/_ldap_server_entry.html.haml:44 -#: ../app/views/report/_export_custom_reports.html.haml:12 -#: ../app/views/report/_export_widgets.html.haml:80 -msgid "Import" -msgstr "Importer" +msgid "Show Compliance History of this VM (Last 10 Checks)" +msgstr "Afficher l'historique de conformité de cette MV (10 derniers contrôles)" -#: ../app/views/miq_ae_customization/_dialog_info_form.html.haml:5 -msgid "Dialog Information" -msgstr "Informations sur la boîte de dialogue" +msgid "Show Costs by" +msgstr "Afficher les coûts par" -#: ../app/views/miq_ae_customization/_dialog_res_remove.html.haml:4 -msgid "Remove this %{type}" -msgstr "Supprimer ce(tte) %{type}" +msgid "Show Costs by must be selected" +msgstr "L'option Afficher Coûts Par doit être sélectionnée" -#: ../app/views/miq_ae_customization/_dialog_resource.html.haml:5 -msgid "Drag this Tab to a new location" -msgstr "Glissez cet Onglet vers un nouvel emplacement" +msgid "Show Credential" +msgstr "" -#: ../app/views/miq_ae_customization/_dialog_resources.html.haml:24 -msgid "No %{types} found." -msgstr "Aucun %{types} trouvé." +msgid "Show Detailed Events" +msgstr "Afficher des événements détaillés" -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:65 -msgid "at" -msgstr "à" +msgid "Show Details of Compliance Check on %{date}" +msgstr "Afficher les détails du contrôle de conformité le %{date}" -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:88 -msgid "Option 1" -msgstr "Option 1" +msgid "Show Event Log on this VM" +msgid_plural "Show Event Logs on this VM" +msgstr[0] "Afficher le journal d'événements de cette MV" +msgstr[1] "Afficher les journaux d'événements de cette MV" -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:88 -msgid "Option 2" -msgstr "Option 2" +msgid "Show Event Logs on this VM" +msgstr "Afficher les journaux d'événements de cette MV" -#: ../app/views/miq_ae_customization/_dialog_tab_form.html.haml:4 -msgid "Tab Information" -msgstr "Informations sur l'onglet" +msgid "Show Host Events" +msgstr "Afficher les événements de l'hôte" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:28 -#: ../app/views/ops/_ap_form_file.html.haml:112 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:166 -#: ../app/views/ops/_ap_form_registry.html.haml:121 -#: ../app/views/ops/_classification_entry.html.haml:51 -#: ../app/views/ops/_ldap_forest_entries.html.haml:108 -#: ../app/views/ops/_ldap_forest_entries.html.haml:108 -msgid "Update this entry" -msgstr "Mettre à jour cette entrée" +msgid "Show Input Parameters" +msgstr "Afficher les paramètres d'entrée" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:48 -#: ../app/views/ops/_ap_form_file.html.haml:23 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:29 -#: ../app/views/ops/_ap_form_registry.html.haml:25 -#: ../app/views/ops/_classification_entry.html.haml:65 -#: ../app/views/ops/_ldap_server_entry.html.haml:84 -msgid "Click to add a new entry" -msgstr "Cliquez pour ajouter une nouvelle entrée" +msgid "Show Non-VM Files installed on this %{storage}" +msgstr "Afficher les fichiers non MV installés sur ce %{storage}" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:58 -msgid "New Entry" -msgstr "Nouvelle entrée" +msgid "Show OS container information" +msgstr "Afficher les informations du conteneur du SE" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:61 -msgid "Click on this row to create a new entry" -msgstr "Cliquez sur cette ligne pour créer une entrée" +msgid "Show Other VM Files installed on this %{storage}" +msgstr "Afficher les autres fichiers MV installés sur ce %{storage}" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:74 -msgid "Move selected field up" -msgstr "Déplacer le champ sélectionné vers le haut" +msgid "Show Other VM files on this Datastore" +msgstr "Afficher les autres fichiers MV sur ce magasin de données" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:89 -msgid "Move selected field down" -msgstr "Déplacer le champ sélectionné vers le bas" +msgid "Show Parent %{host}" +msgstr "Afficher le %{host} parent" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:99 -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:114 -#: ../app/views/ops/_ap_form_file.html.haml:82 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:216 -#: ../app/views/ops/_ap_form_registry.html.haml:166 -#: ../app/views/ops/_classification_entry.html.haml:101 -msgid "Click to delete this entry" -msgstr "Cliquez pour supprimer cette entrée" +msgid "Show Parent %{title} %{name}" +msgstr "Afficher le %{title} %{name} parent" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:120 -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:126 -#: ../app/views/ops/_ap_form_file.html.haml:71 -#: ../app/views/ops/_ap_form_file.html.haml:76 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:185 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:190 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:195 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:201 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:206 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:211 -#: ../app/views/ops/_ap_form_registry.html.haml:149 -#: ../app/views/ops/_ap_form_registry.html.haml:154 -#: ../app/views/ops/_ap_form_registry.html.haml:159 -#: ../app/views/ops/_classification_entry.html.haml:86 -#: ../app/views/ops/_classification_entry.html.haml:91 -msgid "Click to update this entry" -msgstr "Cliquez pour mettre à jour cette entrée" +msgid "Show Parent %{title} '%{name}'" +msgstr "Afficher le %{title} '%{name}' parent" -#: ../app/views/miq_ae_customization/_field_values.html.haml:6 -msgid "Entries" -msgstr "Entrées" +msgid "Show Past Dates" +msgstr "Afficher les dates passées" -#: ../app/views/miq_ae_customization/_old_dialogs_folders.html.haml:9 -msgid "View %{name} Folder" -msgstr "Afficher le dossier %{name}" +msgid "Show Refresh Button" +msgstr "Afficher le bouton Actualiser" -#: ../app/views/miq_ae_customization/_tag_field_values.html.haml:3 -msgid "Category Tag Entries" -msgstr "Entrées de balise de la catégorie" +msgid "Show Repository" +msgstr "" -#: ../app/views/miq_ae_tools/_import_export.html.haml:26 -msgid "Import Datastore classes (*.zip)" -msgstr "Importer des classes de magasin de données (*.zip)" +msgid "Show Resource Pools" +msgstr "Afficher les pools de ressources" -#: ../app/views/miq_ae_tools/_import_export.html.haml:55 -msgid "Import Datastore via git" -msgstr "Importer le magasin de données via Git" +msgid "Show Running Processes on this VM" +msgstr "Afficher les processus en cours sur cette MV" -#: ../app/views/miq_ae_tools/_import_export.html.haml:68 -msgid "Git URL:" -msgstr "URL Git :" +msgid "Show Sort Breaks" +msgstr "Afficher les ruptures de tri" -#: ../app/views/miq_ae_tools/_import_export.html.haml:81 -msgid "Username (optional):" -msgstr "Nom d'utilisateur (optionnel) :" +msgid "Show Summary" +msgstr "Afficher la synthèse" -#: ../app/views/miq_ae_tools/_import_export.html.haml:94 -msgid "Password (optional):" -msgstr "Mot de passe (optionnel) :" +msgid "Show Timelines" +msgstr "Afficher les chronologies" -#: ../app/views/miq_ae_tools/_import_export.html.haml:107 -#: ../app/views/provider_foreman/_form.html.haml:139 -msgid "Verify Peer Certificate" -msgstr "Vérifier le certificat pair" +msgid "Show Timelines for this Availability Zone" +msgstr "Afficher les chronologies pour cette zone de disponibilité" -#: ../app/views/miq_ae_tools/_import_export.html.haml:143 -msgid "Export all classes and instances" -msgstr "Exporter toutes les classes et instances" +msgid "Show Timelines for this Cloud Provider" +msgstr "Afficher les chronologies pour ce fournisseur de cloud" -#: ../app/views/miq_ae_tools/_import_export.html.haml:147 -msgid "Export all classes and instances to a file" -msgstr "Exporter toutes les classes et instances dans un fichier" +msgid "Show Timelines for this Container" +msgstr "Afficher les chronologies pour ce conteneur" -#: ../app/views/miq_ae_tools/_import_export.html.haml:155 -msgid "Reset all components in the following domains: %{domains}" -msgstr "Réinitialiser tous les composants dans les domaines suivants : %{domains}" +msgid "Show Timelines for this Containers Provider" +msgstr "Afficher les chronologies pour ce fournisseur de conteneurs" -#: ../app/views/miq_ae_tools/_import_export.html.haml:158 -msgid "" -"All Datastore customizations will be lost. Are you sure you want to reset all " -"classes and instances to default?" +msgid "Show Timelines for this Datawarehouse Provider" msgstr "" -"Toutes les personnalisations de magasin de données seront perdues. Voulez-vous" -" vraiment rétablir toutes les classes et instances par défaut ?" - -#: ../app/views/miq_ae_tools/_import_export.html.haml:173 -msgid "Choose the branch or tag you would like to import" -msgstr "Choisir la branche ou la balise à importer" -#: ../app/views/miq_ae_tools/_import_export.html.haml:248 -msgid "Import Datastore classes" -msgstr "Importer des classes de magasin de données" +msgid "Show Timelines for this Group" +msgstr "Afficher les chronologies pour ce groupe" -#: ../app/views/miq_ae_tools/_import_export.html.haml:257 -msgid "Select existing domain to import into:" -msgstr "Sélectionner le domaine existant où importer les données :" +msgid "Show Timelines for this Infrastructure Provider" +msgstr "Afficher les chronologies pour ce fournisseur d'infrastructure" -#: ../app/views/miq_ae_tools/_import_export.html.haml:273 -msgid "Select domain you wish to import from:" -msgstr "Sélectionner le domaine source de l'importation :" +msgid "Show Timelines for this Instance" +msgstr "Afficher les chronologies pour cette instance" -#: ../app/views/miq_ae_tools/_import_export.html.haml:286 -msgid "Select namespaces you wish to import:" -msgstr "Sélectionner les espaces de nommage à importer :" +msgid "Show Timelines for this Middleware Provider" +msgstr "Afficher les chronologies pour ce fournisseur de middleware" -#: ../app/views/miq_ae_tools/_import_export.html.haml:293 -msgid "Toggle All/None" -msgstr "Basculer Tous/Aucun" +msgid "Show Timelines for this Network Provider" +msgstr "Afficher les chronologies pour ce fournisseur de réseaux" -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:5 -msgid "Submit Automation Simulation with the specified options" -msgstr "Envoyer la simulation d'automatisation avec les options spécifiées" +msgid "Show Timelines for this Node" +msgstr "Afficher les chronologies pour ce nœud" -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:16 -msgid "Retry state machine simulation, with preserved attributes" -msgstr "Réessayer la simulation en conservant les attributs" +msgid "Show Timelines for this Physical Infrastructure Provider" +msgstr "" -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:17 -msgid "Retry" -msgstr "Réessayer" +msgid "Show Timelines for this Project" +msgstr "Afficher les chronologies pour ce projet" -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:25 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:51 -msgid "Reset all options" -msgstr "Réinitialiser toutes les options" +msgid "Show Timelines for this Replicator" +msgstr "Afficher les chronologies pour ce réplicateur" -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:36 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:62 -msgid "Cancel Simulation to go back to Button details" -msgstr "Annuler la simulation pour revenir aux détails du bouton" +msgid "Show Timelines for this Storage Manager" +msgstr "" -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:47 -msgid "Starting process must be specified" -msgstr "Le processus de début doit être spécifié" +msgid "Show Timelines for this Template" +msgstr "Afficher les chronologies pour ce modèle" -#: ../app/views/miq_ae_tools/_results_tabs.html.haml:4 -msgid "Tree View" -msgstr "Vue Arborescence" +msgid "Show Timelines for this VM" +msgstr "Afficher les chronologies pour cette MV" -#: ../app/views/miq_ae_tools/_results_tabs.html.haml:7 -msgid "XML View" -msgstr "Vue XML" +msgid "Show Timelines for this item" +msgstr "Afficher les chronologies pour cet élément" -#: ../app/views/miq_ae_tools/_results_tabs.html.haml:10 -msgid "Object" -msgstr "Objet" +msgid "Show VM Memory Files installed on this %{storage}" +msgstr "Afficher les fichiers de mémoire de MV installés sur ce %{storage}" -#: ../app/views/miq_ae_tools/_results_tree.html.haml:10 -#: ../app/views/miq_ae_tools/_results_uri.html.haml:53 -#: ../app/views/miq_ae_tools/_results_xml.html.haml:10 -msgid "Enter Automation Simulation options on the left and press Submit." -msgstr "" -"Indiquez les options Simulation d'automatisation sur la gauche et appuyez sur " -"Envoyer." +msgid "Show VM Provisioned Disk Files installed on this %{table}" +msgstr "Afficher les fichiers disque configurés de MV installés sur ce(tte) %{table}" -#: ../app/views/miq_ae_tools/_results_uri.html.haml:7 -msgid "Object Info" -msgstr "Informations sur l'objet" +msgid "Show VM Provisioned Disk Files on this Datastore" +msgstr "Afficher les fichiers disque configurés de MV sur ce magasin de données" -#: ../app/views/miq_ae_tools/_results_uri.html.haml:30 -msgid "Object Attribute Name" -msgstr "Nom de l'attribut d'objet" +msgid "Show VM Snapshot Files installed on this %{storage}" +msgstr "Afficher les fichiers de cliché de MV installés sur ce(tte) %{storage}" -#: ../app/views/miq_ae_tools/_results_uri.html.haml:43 -msgid "Object Attribute Type" -msgstr "Type d'attribut d'objet" +msgid "Show VM Types" +msgstr "Afficher les types de MV" -#: ../app/views/miq_capacity/_bottlenecks_options.html.haml:15 -msgid "Event Groups" -msgstr "Groupes d'événements" +msgid "Show VM memory files on this Datastore" +msgstr "Afficher les fichiers de mémoire de MV sur ce magasin de données" -#: ../app/views/miq_capacity/_bottlenecks_options.html.haml:38 -msgid "Show Host Events" -msgstr "Afficher les événements de l'hôte" +msgid "Show VM snapshot files on this Datastore" +msgstr "Afficher les fichiers de cliché de MV sur ce magasin de données" -#: ../app/views/miq_capacity/_bottlenecks_report.html.haml:3 -msgid "Select a node on the left to view Bottlenecks report." -msgstr "Sélectionner un nœud à gauche pour voir le rapport de goulot d'étranglements." +msgid "Show VMM container information" +msgstr "Afficher les informations du conteneur VMM" -#: ../app/views/miq_capacity/_bottlenecks_report.html.haml:13 -msgid "Bottleneck Event Details" -msgstr "Détails de l'événement de goulot d'étranglement" +msgid "Show VMM information" +msgstr "Afficher les informations VMM" -#: ../app/views/miq_capacity/_bottlenecks_summary.html.haml:3 -msgid "Select a node on the left to view Bottlenecks timeline." -msgstr "" -"Sélectionner un nœud à gauche pour voir la chronologie des goulots détrangleme" -"nts." +msgid "Show VMs" +msgstr "Afficher des MV" -#: ../app/views/miq_capacity/_bottlenecks_tl_detail.html.haml:14 -msgid "No events available for this timeline." -msgstr "Aucun événement disponible pour cette chronologie." +msgid "Show VMs & Templates" +msgstr "Afficher des MV et modèles" -#: ../app/views/miq_capacity/_bottlenecks_tl_detail.html.haml:18 -msgid "No Timeline data available." -msgstr "Aucune donnée de chronologie disponible." +msgid "Show VMs devices" +msgstr "Afficher des périphériques MV" -#: ../app/views/miq_capacity/_planning_instructions.html.haml:3 -msgid "Plan for VM placement on %{hosts} or %{clusters}" -msgstr "Plan de placement de MV sur %{hosts} ou %{clusters}" +msgid "Show VMs in Explorer tree." +msgstr "Afficher les MV dans l'arborescence d'Explorer" -#: ../app/views/miq_capacity/_planning_instructions.html.haml:12 -msgid "1 - Select a Reference VM." -msgstr "1 - Selectionnez une MV de référence." +msgid "Show VMs in this %{cluster_title}, but not in Resource Pools below" +msgstr "Afficher les MV dans ce %{cluster_title}, mais pas dans les pools de ressources ci-dessous" -#: ../app/views/miq_capacity/_planning_instructions.html.haml:22 -msgid "" -"2 - Specify the VM Options to define the source of the values used for the pla" -"n calculations." -msgstr "" -"2 - Renseignez les options de mémoire virtuelle afin de définir la source des " -"valeurs utilisées pour les calculs du plan." +msgid "Show VMs in this %{title}, but not in Resource Pools below" +msgstr "Afficher les MV dans ce(tte) %{title}, mais pas dans les pools de ressources ci-dessous" -#: ../app/views/miq_capacity/_planning_instructions.html.haml:32 -msgid "3 - Specify Target Options to qualify target %{hosts} or %{clusters}." -msgstr "" -"3 - Renseignez les options Cible pour qualifier les %{hosts} ou %{clusters} ci" -"bles." +msgid "Show VMs in this Resource Pool, but not in Resource Pools below" +msgstr "Afficher les MV dans ce pool de ressources, mais pas dans les pools de ressources ci-dessous" -#: ../app/views/miq_capacity/_planning_instructions.html.haml:42 -msgid "4 - Change the Trend Options used to calculate the daily trends, if desired." -msgstr "" -"4 - Si souhaité, changer les options de tendance utiliser pour calculer les te" -"ndances journalière." +msgid "Show Virtual Machines & Templates" +msgstr "Afficher les machines et modèles virtuels" -#: ../app/views/miq_capacity/_planning_instructions.html.haml:52 -msgid "5 - Press the Submit button." -msgstr "5 -Presser le bouton soumettre." +msgid "Show all %{children}" +msgstr "Afficher tou(te)s les %{children}" -#: ../app/views/miq_capacity/_planning_options.html.haml:9 -msgid "Reference VM Selection" -msgstr "Sélection de MV de référence" +msgid "Show all %{label}" +msgstr "Afficher tou(te)s les %{label}" -#: ../app/views/miq_capacity/_planning_options.html.haml:16 -msgid "All VMs/Instances" -msgstr "Toutes les machines virtuelles/instances" +msgid "Show all %{models}" +msgstr "Afficher tou(te)s les %{models}" -#: ../app/views/miq_capacity/_planning_options.html.haml:16 -msgid "By Clusters / Deployment Roles" -msgstr "Par clusters/rôles de déploiement" +msgid "Show all %{names}" +msgstr "Afficher tou(te)s les %{names}" -#: ../app/views/miq_capacity/_planning_options.html.haml:16 -msgid "By Filter" -msgstr "Par Filtre" +msgid "Show all %{title}" +msgstr "Afficher tou(te)s les %{title}" -#: ../app/views/miq_capacity/_planning_options.html.haml:16 -msgid "By Host" -msgstr "Par Hôte" +msgid "Show all %{volumes} based on this Snapshot." +msgstr "Afficher tou(te)s les %{volumes} basé(e)s sur cet cliché." -#: ../app/views/miq_capacity/_planning_options.html.haml:16 -msgid "By Providers" -msgstr "Par Fournisseurs" +msgid "Show all Cloud Networks" +msgstr "Afficher tous les réseaux cloud" -#: ../app/views/miq_capacity/_planning_options.html.haml:39 -msgid "Choose a %{host}" -msgstr "Choisir un %{host}" +msgid "Show all Cloud Object Stores" +msgstr "Afficher tous les magasins d'objets cloud" -#: ../app/views/miq_capacity/_planning_options.html.haml:51 -msgid "Choose a %{cluster}" -msgstr "Choisir un %{cluster}" +msgid "Show all Cloud Volumes attached to this VM." +msgstr "Afficher tous les volumes cloud associés à cette MV." -#: ../app/views/miq_capacity/_planning_options.html.haml:62 -msgid "Choose a %{provider}" -msgstr "Choisir un %{provider}" +msgid "Show all Cloud Volumes based on this Snapshot" +msgstr "Afficher tous les volumes cloud basés sur ce cliché" -#: ../app/views/miq_capacity/_planning_options.html.haml:73 -msgid "Choose a Filter" -msgstr "Choisir un filtre" +msgid "Show all Images" +msgstr "Afficher toutes les images" -#: ../app/views/miq_capacity/_planning_options.html.haml:91 -msgid "No VMs found" -msgstr "Aucune MV trouvée" +msgid "Show all Instances" +msgstr "Afficher toutes les instances" -#: ../app/views/miq_capacity/_planning_options.html.haml:94 -msgid "Choose a VM" -msgstr "Choisir une machine virtuelle" +msgid "Show all Outputs" +msgstr "Afficher toutes les sorties" -#: ../app/views/miq_capacity/_planning_options.html.haml:115 -msgid "VM Options" -msgstr "Options de MV" +msgid "Show all Parameters" +msgstr "Afficher tous les paramètres" -#: ../app/views/miq_capacity/_planning_options.html.haml:177 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:25 -msgid "vCPU Count" -msgstr "Nombre de vCPU" +msgid "Show all Playbooks" +msgstr "" -#: ../app/views/miq_capacity/_planning_options.html.haml:202 -#: ../app/views/miq_capacity/_planning_options.html.haml:368 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:34 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:85 -#: ../app/views/miq_policy/_action_details.html.haml:294 -#: ../app/views/miq_policy/_action_options.html.haml:217 -#: ../app/views/ops/_selected_by_roles.html.haml:150 -#: ../app/views/ops/_selected_by_servers.html.haml:102 -#: ../app/views/ops/_server_desc.html.haml:63 -msgid "Memory Size" -msgstr "Taille de mémoire" +msgid "Show all Repositories" +msgstr "" -#: ../app/views/miq_capacity/_planning_options.html.haml:222 -msgid "MB" -msgstr "Mo" +msgid "Show all Resource Pools" +msgstr "" -#: ../app/views/miq_capacity/_planning_options.html.haml:231 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:43 -msgid "Disk Space" -msgstr "Espace disque" +msgid "Show all Resource Pools in this Resource Pool" +msgstr "" -#: ../app/views/miq_capacity/_planning_options.html.haml:255 -msgid "* Disk space not supported for OpenStack providers" -msgstr "* Espace disque non pris en charge pour les fournisseurs OpenStack" +msgid "Show all Resources" +msgstr "Afficher toutes les ressources" -#: ../app/views/miq_capacity/_planning_options.html.haml:264 -msgid "Target Options / Limits" -msgstr "Options/Limites cibles" +msgid "Show all Security Groups" +msgstr "Afficher tous les groupes de sécurité" -#: ../app/views/miq_capacity/_planning_options.html.haml:344 -msgid "vCPUs per Core" -msgstr "vCPUs par Core" +msgid "Show all Templates" +msgstr "Afficher tous les modèles" -#: ../app/views/miq_capacity/_planning_options.html.haml:392 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:94 -msgid "Datastore Space" -msgstr "Espace du magasin de données" +msgid "Show all Templates in this %{cluster_title}" +msgstr "Afficher tous les modèles dans ce(tte) %{cluster_title}" -#: ../app/views/miq_capacity/_planning_options.html.haml:416 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:105 -msgid "Trend Options" -msgstr "Options de tendance" +msgid "Show all Templates in this %{title}" +msgstr "Afficher tous les modèles dans ce(tte) %{title}" -#: ../app/views/miq_capacity/_planning_options.html.haml:425 -#: ../app/views/miq_capacity/_utilization_options.html.haml:16 -msgid "Trends for past" -msgstr "Tendances pour le passé" +msgid "Show all VMs" +msgstr "Afficher toutes les MV" -#: ../app/views/miq_capacity/_planning_report.html.haml:8 -msgid "VM Counts per %{model}" -msgstr "Nombres de MV par %{model}" +msgid "Show all VMs in this %{cluster_title}" +msgstr "Afficher toutes les MV dans ce(tte) %{cluster_title}" -#: ../app/views/miq_capacity/_planning_report.html.haml:14 -msgid "Total number of VMs that can fit on all of the above %{models}: %{count}" -msgstr "Nombre total de MV pouvant tenir sur tous les %{models} ci-dessus : %{count}" +msgid "Show all VMs in this %{title}" +msgstr "Afficher toutes les MV dans ce(tte) %{title}" -#: ../app/views/miq_capacity/_planning_report.html.haml:20 -#: ../app/views/miq_capacity/_planning_summary.html.haml:75 -msgid "* Information shown is based on available trend data going back %{weeks}." -msgstr "" -"* Les informations affichées sont basées sur les tendances remontant à %{weeks" -"}." +msgid "Show all VMs in this Resource Pool" +msgstr "Afficher toutes les MV dans ce pool de ressources" -#: ../app/views/miq_capacity/_planning_summary.html.haml:7 -#: ../app/views/miq_policy/_rsop_results.html.haml:10 -msgid "Display Options" -msgstr "Options d'affichage" +msgid "Show all Volume Snapshots" +msgstr "Afficher tous les clichés de volumes" -#: ../app/views/miq_capacity/_planning_summary.html.haml:11 -msgid "Limit Chart to" -msgstr "Limiter le graphique à" +msgid "Show all Volumes" +msgstr "Afficher tous les volumes" -#: ../app/views/miq_capacity/_planning_summary.html.haml:34 -msgid "No planning data is available for the selected item." -msgstr "Aucune donnée de planning disponible pour l'élément sélectionné." +msgid "Show all attached %{models}" +msgstr "Afficher tou(te)s les %{models} associé(e)s" -#: ../app/views/miq_capacity/_planning_summary.html.haml:39 -msgid "Eligible %{type} " -msgstr "%{type} admissible " +msgid "Show all files installed on this %{table}" +msgstr "Afficher tous les fichiers installés sur ce(tte) %{table}" -#: ../app/views/miq_capacity/_planning_summary.html.haml:47 -msgid "Rank" -msgstr "Rang" +msgid "Show all files on this Datastore" +msgstr "Afficher tous les fichiers dans ce magasin de données" -#: ../app/views/miq_capacity/_planning_summary.html.haml:51 -msgid "Max VMs" -msgstr "Nb max. de MV" +msgid "Show all managed %{cluster}" +msgstr "Afficher tous les %{cluster} gérés" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:3 -msgid "Reference VM Profile" -msgstr "Profil MV de référence" +msgid "Show all managed %{hosts}" +msgstr "Afficher tous les %{hosts} gérés" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:54 -msgid "Target Options/Limits" -msgstr "Options/Limites cibles" +msgid "Show all managed %{storages}" +msgstr "Afficher tous les %{storages} gérés" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:76 -msgid "vCPU per Core" -msgstr "vCPU par Core" +msgid "Show all outputs" +msgstr "Afficher toutes les sorties" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:109 -msgid "Trend for Past" -msgstr "Tendance pour le passé" +msgid "Show all parameters" +msgstr "Afficher tous les paramètres" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:121 -msgid "No Time Profile Selected" -msgstr "Aucun profil temporel sélectionné" +msgid "Show all registered %{hosts}" +msgstr "Afficher tous les %{hosts} enregistrés" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:137 -msgid "* Set in Time Profile" -msgstr "* Initialisé des les profils de temps." +msgid "Show all resources" +msgstr "Afficher toutes les ressources" -#: ../app/views/miq_capacity/_utilization_details.html.haml:16 -#: ../app/views/miq_capacity/_utilization_summary.html.haml:51 -msgid "Select a node on the left to view Utilization information." -msgstr "Sélectionner un nœud à gauche pour voir les données d'utilisation." +msgid "Show at Login" +msgstr "Afficher à la connexion" -#: ../app/views/miq_capacity/_utilization_details.html.haml:18 -#: ../app/views/miq_capacity/_utilization_report.html.haml:29 -#: ../app/views/miq_capacity/_utilization_summary.html.haml:53 -msgid "No performance data is available for the selected item." -msgstr "Aucune donnée de performance disponible pour l'élément sélectionné." +msgid "Show configuration" +msgstr "Afficher une configuration" -#: ../app/views/miq_capacity/_utilization_details.html.haml:26 -#: ../app/views/miq_capacity/_utilization_report.html.haml:69 -#: ../app/views/miq_capacity/_utilization_summary.html.haml:59 -msgid "" -"* Information shown is based on available trend data from %{start_time} to %{e" -"nd_time} in the %{timezone} time zone." -msgstr "" -"* Les informations affichées sont basées sur les tendances disponibles du %{st" -"art_time} au %{end_time} dans le fuseau horaire %{timezone}." +msgid "Show daily data from" +msgstr "Afficher les données quotidiennes de" -#: ../app/views/miq_capacity/_utilization_options.html.haml:40 -msgid "Classification" -msgstr "Classification" +msgid "Show disk on this VM" +msgid_plural "Show disks on this VM" +msgstr[0] "Afficher un disque sur cette MV" +msgstr[1] "Afficher des disques sur cette MV" -#: ../app/views/miq_capacity/_utilization_options.html.haml:94 -msgid "Selected Day" -msgstr "Jour sélectionné" +msgid "Show esx logs on this VM" +msgstr "Afficher les journaux ESX sur cette MV" -#: ../app/views/miq_capacity/_utilization_report.html.haml:27 -msgid "Select a node on the left to view Utilization report." -msgstr "Sélectionner un nœud à gauche pour voir le rapport d'utilisation." +msgid "Show full screen Report" +msgstr "Afficher un rapport plein écran" -#: ../app/views/miq_capacity/planning.html.haml:9 -msgid "Submit Planning options" -msgstr "Envoyer les options de planning" +msgid "Show full screen report" +msgstr "Afficher un rapport plein écran" -#: ../app/views/miq_capacity/planning.html.haml:19 -#: ../app/views/miq_capacity/planning.html.haml:36 -msgid "Reset all Planning options" -msgstr "Réinitialiser toutes les options de planning" +msgid "Show hourly data from" +msgstr "Afficher les données horaires de" -#: ../app/views/miq_capacity/planning.html.haml:32 -msgid "Select a reference VM or Manual Input source to Submit the Planning Options" -msgstr "" -"Sélectionner une MV de référence ou une source d'entrée manuelle pour envoyer " -"les options de planning" +msgid "Show in Console" +msgstr "Afficher sur la console" -#: ../app/views/miq_policy/_action_details.html.haml:42 -msgid "Action Type" -msgstr "Type d''Action" +msgid "Show list of all %{name}" +msgstr "Afficher la liste de tou(te)s les %{name}" -#: ../app/views/miq_policy/_action_details.html.haml:69 -#: ../app/views/miq_policy/_action_options.html.haml:152 -msgid "Snapshot Settings" -msgstr "Paramètres de cliché" +msgid "Show list of configuration files of %{name}" +msgstr "Afficher la liste des fichiers de configuration de %{name}" -#: ../app/views/miq_policy/_action_details.html.haml:89 -#: ../app/views/miq_policy/_action_options.html.haml:178 -msgid "Snapshot Age Settings" -msgstr "Paramètres d'âge des clichés" +msgid "Show list of failed %{name}" +msgstr "Afficher la liste des %{name} en échec" -#: ../app/views/miq_policy/_action_details.html.haml:95 -msgid "Delete if older than" -msgstr "Supprimer si plus vieux que" +msgid "Show list of hosts with %{name}" +msgstr "Afficher la liste des hôtes avec %{name}" -#: ../app/views/miq_policy/_action_details.html.haml:110 -#: ../app/views/miq_policy/_action_options.html.haml:267 -msgid "Custom Automation" -msgstr "Automatisation personnalisée" +msgid "Show list of hosts with failed %{name}" +msgstr "Afficher la liste des hôtes avec %{name} en échec" -#: ../app/views/miq_policy/_action_details.html.haml:132 -msgid "Starting Message" -msgstr "Message de démarrage" +msgid "Show list of hosts with running %{name}" +msgstr "Afficher la liste des hôtes avec %{name} en cours d'exécution" -#: ../app/views/miq_policy/_action_details.html.haml:181 -msgid "No Attribute/Value Pairs found" -msgstr "Aucun(e) attribut/paire de valeurs trouvé(e)" +msgid "Show list of running %{name}" +msgstr "Afficher la liste des %{name} en cours d'exécution" -#: ../app/views/miq_policy/_action_details.html.haml:187 -#: ../app/views/miq_policy/_action_options.html.haml:10 -msgid "E-mail Settings" -msgstr "Paramètres de messagerie" +msgid "Show member VMs" +msgstr "Afficher les MV membres" -#: ../app/views/miq_policy/_action_details.html.haml:196 -#: ../app/views/miq_policy/_action_options.html.haml:19 -#: ../app/views/ops/_settings_server_tab.html.haml:532 -msgid "From E-mail Address" -msgstr "Depuis l'adresse e-mail" +msgid "Show non-VM files on this Datastore" +msgstr "Afficher les fichiers non MV sur ce magasin de données" -#: ../app/views/miq_policy/_action_details.html.haml:209 -#: ../app/views/miq_policy/_action_options.html.haml:42 -msgid "To E-mail Address" -msgstr "Adresse e-mail de destination" +msgid "Show on Timeline" +msgstr "Afficher sur la chronologie" -#: ../app/views/miq_policy/_action_details.html.haml:224 -msgid "Set Custom Attribute Settings" -msgstr "Définir les paramètres d'attributs personnalisés" +msgid "Show out of scope items:" +msgstr "Afficher les éléments hors portée :" -#: ../app/views/miq_policy/_action_details.html.haml:233 -#: ../app/views/miq_policy/_action_options.html.haml:68 -msgid "Attribute Name" -msgstr "Nom d'attribut" +msgid "Show parent %s for this Job" +msgstr "Afficher le/la %s parent(e) pour cette tâche" -#: ../app/views/miq_policy/_action_details.html.haml:246 -#: ../app/views/miq_policy/_action_options.html.haml:85 -msgid "Value to Set" -msgstr "Valeur à définir" +msgid "Show parent %{cluster} for this %{host}" +msgstr "Afficher le/la %{cluster} parent(e) pour ce(tte) %{host}" -#: ../app/views/miq_policy/_action_details.html.haml:261 -#: ../app/views/miq_policy/_action_options.html.haml:236 -msgid "Reconfigure CPU" -msgstr "Reconfigurer le processeur" +msgid "Show parent Cloud Provider for this Stack" +msgstr "Afficher le fournisseur de cloud parent pour cette pile" -#: ../app/views/miq_policy/_action_details.html.haml:270 -#: ../app/views/miq_policy/_action_options.html.haml:245 -msgid "Number of CPU's" -msgstr "Nombre de processeurs" +msgid "Show parent Orchestration Stack for this Security Group" +msgstr "Afficher la pile d'orchestration parente pour ce groupe de sécurité" -#: ../app/views/miq_policy/_action_details.html.haml:285 -#: ../app/views/miq_policy/_action_options.html.haml:208 -msgid "Reconfigure Memory" -msgstr "Reconfigurer la mémoire" +msgid "Show parent and child VMs" +msgstr "Afficher les MV mères et filles" -#: ../app/views/miq_policy/_action_details.html.haml:309 -#: ../app/views/miq_policy/_action_options.html.haml:102 -msgid "Applied Tag" -msgstr "Balise appliquée" +msgid "Show policies:" +msgstr "Afficher les stratégies :" -#: ../app/views/miq_policy/_action_details.html.haml:333 -#: ../app/views/miq_policy/_alert_snmp.html.haml:9 -msgid "SNMP Trap" -msgstr "Trap SNMP" +msgid "Show policy details for %{item_name}" +msgstr "" -#: ../app/views/miq_policy/_action_details.html.haml:364 -#: ../app/views/miq_policy/_action_options.html.haml:413 -#: ../app/views/miq_policy/_alert_details.html.haml:379 -#: ../app/views/miq_policy/_alert_snmp.html.haml:80 -msgid "Trap Number" -msgstr "Numéro de trap" +msgid "Show policy details for %{name}" +msgstr "Afficher les détails de stratégie pour %{name}" -#: ../app/views/miq_policy/_action_details.html.haml:364 -#: ../app/views/miq_policy/_action_options.html.haml:413 -#: ../app/views/miq_policy/_alert_details.html.haml:379 -#: ../app/views/miq_policy/_alert_snmp.html.haml:80 -msgid "Trap Object ID" -msgstr "ID d'objet de trap" +msgid "Show registered VMs" +msgstr "Afficher les MV enregistrées" -#: ../app/views/miq_policy/_action_details.html.haml:387 -msgid "No variables configured." -msgstr "Aucune variable configurée." +msgid "Show resources of this VM" +msgstr "Afficher les ressources de cette MV" -#: ../app/views/miq_policy/_action_details.html.haml:396 -#: ../app/views/miq_policy/_action_options.html.haml:445 -msgid "Object ID" -msgstr "ID de l'objet" +msgid "Show service %s for this Job" +msgstr "Afficher le/la %s de service pour cette tâche" -#: ../app/views/miq_policy/_action_details.html.haml:430 -msgid "Analysis Profile" -msgstr "Profil d'analyse" +msgid "Show the %{label} installed on this VM" +msgstr "Afficher le/la %{label} installé(e) sur cette MV" -#: ../app/views/miq_policy/_action_details.html.haml:439 -msgid "Assigned Analysis Profile" -msgstr "Profil d'Analyse assigné" +msgid "Show the Advanced Setting installed on this %{title}" +msgid_plural "Show the Advanced Settings installed on this %{title}" +msgstr[0] "Afficher le paramètre avancé installé sur ce(tte) %{title}" +msgstr[1] "Afficher les paramètres avancés installés sur ce(tte) %{title}" -#: ../app/views/miq_policy/_action_details.html.haml:454 -msgid "Alerts to Evaluate" -msgstr "Alertes à Evaluer" +msgid "Show the File System Driver installed on this VM" +msgid_plural "Show the File System Drivers installed on this VM" +msgstr[0] "Afficher le pilote du système de fichiers installé sur cette MV" +msgstr[1] "Afficher les pilotes du système de fichiers installés sur cette MV" -#: ../app/views/miq_policy/_action_details.html.haml:458 -msgid "No Alerts have been selected." -msgstr "Aucune alerte n'est sélectionnée." +msgid "Show the File installed on this %{title}" +msgid_plural "Show the Files installed on this %{title}" +msgstr[0] "Afficher le fichier installé sur ce(tte) %{title}" +msgstr[1] "Afficher les fichiers installés sur ce(tte) %{title}" -#: ../app/views/miq_policy/_action_details.html.haml:465 -msgid "View This Alert" -msgstr "Afficher cette alerte" +msgid "Show the File installed on this VM" +msgid_plural "Show the Files installed on this VM" +msgstr[0] "Afficher le fichier installé sur cette MV" +msgstr[1] "Afficher les fichiers installés sur cette MV" -#: ../app/views/miq_policy/_action_details.html.haml:480 -msgid "Inherit Tags" -msgstr "Hériter des balises" +msgid "Show the Firewall Rule defined on this %{title}" +msgid_plural "Show the Firewall Rules defined on this %{title}" +msgstr[0] "Afficher la règle de pare-feu définie sur ce(tte) %{title}" +msgstr[1] "Afficher les règles de pare-feu définies sur ce(tte) %{title}" -#: ../app/views/miq_policy/_action_details.html.haml:489 -#: ../app/views/miq_policy/_action_options.html.haml:547 -msgid "Parent Type" -msgstr "Type de parent" +msgid "Show the Group defined on this %{title}" +msgid_plural "Show the Groups defined on this %{title}" +msgstr[0] "Afficher le groupe défini sur ce(tte) %{title}" +msgstr[1] "Afficher les groupes définis sur ce(tte) %{title}" -#: ../app/views/miq_policy/_action_details.html.haml:502 -#: ../app/views/miq_policy/_action_details.html.haml:526 -#: ../app/views/miq_policy/_action_options.html.haml:568 -#: ../app/views/miq_policy/_action_options.html.haml:598 -#: ../app/views/ops/_all_tabs.html.haml:77 -#: ../app/views/ops/_ap_show.html.haml:67 -msgid "Categories" -msgstr "Catégories" +msgid "Show the Group defined on this VM" +msgid_plural "Show the Groups defined on this VM" +msgstr[0] "Afficher the le groupe défini sur cette MV" +msgstr[1] "Afficher les groupes définis sur cette MV" -#: ../app/views/miq_policy/_action_details.html.haml:517 -msgid "Remove Tags" -msgstr "Supprimer les balises" +msgid "Show the Init Process installed on this VM" +msgid_plural "Show the Init Processes installed on this VM" +msgstr[0] "Afficher le processus Init installés sur cette MV" +msgstr[1] "Afficher les processus Init installés sur cette MV" -#: ../app/views/miq_policy/_action_details.html.haml:540 -#: ../app/views/miq_policy/_condition_details.html.haml:123 -#: ../app/views/miq_policy/_event_details.html.haml:52 -msgid "Assigned to Policies" -msgstr "Assigné aux Stratégies" +msgid "Show the Kernel Driver installed on this VM" +msgid_plural "Show the Kernel Drivers installed on this VM" +msgstr[0] "Afficher le pilote de noyau installés sur cette MV" +msgstr[1] "Afficher les pilotes de noyau installés sur cette MV" -#: ../app/views/miq_policy/_action_details.html.haml:543 -msgid "This Action is not assigned to any Policies." -msgstr "Cette action n'est affectée à aucune stratégie." +msgid "Show the Package installed on this %{title}" +msgid_plural "Show the Packages installed on this %{title}" +msgstr[0] "Afficher le package installé sur ce(tte) %{title}" +msgstr[1] "Afficher les packages installés sur ce(tte) %{title}" -#: ../app/views/miq_policy/_action_details.html.haml:550 -#: ../app/views/miq_policy/_condition_details.html.haml:133 -#: ../app/views/miq_policy/_event_details.html.haml:62 -msgid "Click to view Policy" -msgstr "Cliquez pour afficher la stratégie" +msgid "Show the Patch defined on this %{title}" +msgid_plural "Show the Patches defined on this %{title}" +msgstr[0] "Afficher le correctif défini sur ce(tte) %{title}" +msgstr[1] "Afficher les correctifs définis sur ce(tte) %{title}" -#: ../app/views/miq_policy/_action_list.html.haml:4 -msgid "No Actions are defined" -msgstr "Aucune action n'est définie" +msgid "Show the Patch defined on this VM" +msgid_plural "Show the Patches defined on this VM" +msgstr[0] "Afficher le correctif défini sur cette MV" +msgstr[1] "Afficher les correctifs définis sur cette MV" -#: ../app/views/miq_policy/_action_list.html.haml:6 -msgid "No Actions are defined that match the entered search string '%s'" -msgstr "Aucune action définie ne correspond à la chaîne de recherche saisie '%s'" +msgid "Show the Registry Item installed on this VM" +msgid_plural "Show the Registry Items installed on this VM" +msgstr[0] "Afficher l'élément de registre installés sur cette MV" +msgstr[1] "Afficher les éléments de registre installés sur cette MV" -#: ../app/views/miq_policy/_action_options.html.haml:59 -msgid "Custom Attribute Settings" -msgstr "Paramètres d'attributs personnalisés" +msgid "Show the Service installed on this %{title}" +msgid_plural "Show the Services installed on this %{title}" +msgstr[0] "Afficher le service installé sur ce(tte) %{title}" +msgstr[1] "Afficher les services installés sur ce(tte) %{title}" -#: ../app/views/miq_policy/_action_options.html.haml:111 -msgid "Tag to Apply" -msgstr "Balise à appliquer" +msgid "Show the User defined on this VM" +msgid_plural "Show the Users defined on this VM" +msgstr[0] "Afficher l'utilisateur défini sur cette MV" +msgstr[1] "Afficher les utilisateurs définis sur cette MV" -#: ../app/views/miq_policy/_action_options.html.haml:128 -msgid "Select a Tag to Apply" -msgstr "Sélectionner une balise à appliquer" +msgid "Show the Win32 Service installed on this VM" +msgid_plural "Show the Win32 Services installed on this VM" +msgstr[0] "Afficher le service Win32 installé sur cette MV" +msgstr[1] "Afficher les services Win32 installés sur cette MV" -#: ../app/views/miq_policy/_action_options.html.haml:187 -msgid "Delete if Older than" -msgstr "Supprimer si Plus vieux que" +msgid "Show the advanced settings on this %{host}" +msgstr "Afficher les paramètres avancés sur cette %{host}" -#: ../app/views/miq_policy/_action_options.html.haml:228 -msgid "(Enter the value between 4 - 65636 MB)" -msgstr "(Entrez la valeur de 4 à 65636 MO)" +msgid "Show the advanced settings on this VM" +msgstr "Afficher les paramètres avancés sur cette MV" -#: ../app/views/miq_policy/_action_options.html.haml:287 -msgid "Select Alerts to be Evaluated" -msgstr "Sélectionner les alertes à évaluer" +msgid "Show the files on this %{host}" +msgstr "Afficher les fichiers sur cette %{host}" -#: ../app/views/miq_policy/_action_options.html.haml:300 -msgid "Available Alerts:" -msgstr "Alertes Disponibles:" +msgid "Show the firewall rules on this %{host}" +msgstr "Afficher les règles de pare-feu sur cette %{host}" -#: ../app/views/miq_policy/_action_options.html.haml:304 -msgid " Selected Alerts:" -msgstr "Alertes sélectionnées:" +msgid "Show the groups defined on this %{host}" +msgstr "Afficher les groupes définis sur cette %{host}" -#: ../app/views/miq_policy/_action_options.html.haml:325 -msgid "Move selected Alerts into this Action" -msgstr "Déplacer les actions sélectionnées vers cette action" +msgid "Show the packages installed on this %{host}" +msgstr "Afficher les packages installés sur cette %{host}" -#: ../app/views/miq_policy/_action_options.html.haml:336 -msgid "Remove selected Alerts from this Action" -msgstr "Supprimer les actions sélectionnées de cette action" +msgid "Show the patches installed on this %{host}" +msgstr "Afficher les correctifs installés sur cette %{host}" -#: ../app/views/miq_policy/_action_options.html.haml:369 -msgid "SNMP Trap Settings" -msgstr "Paramètres de trap SNMP" +msgid "Show the services installed on this %{host}" +msgstr "Afficher les services installés sur cette %{host}" -#: ../app/views/miq_policy/_action_options.html.haml:538 -msgid "Inherit Tags Settings" -msgstr "Hériter des paramètres des balises" +msgid "Show the snapshot info for this VM" +msgstr "Afficher les informations de cliché pour cette MV" -#: ../app/views/miq_policy/_action_options.html.haml:589 -msgid "Remove Tags Settings" -msgstr "Supprimer les paramètres des balises" +msgid "Show the users defined on this %{host}" +msgstr "Afficher les utilisateurs définis sur cette %{host}" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:29 -msgid "No type set" -msgstr "Aucun type défini" +msgid "Show this %{entity_name}'s parent %{linked_entity_name}" +msgstr "Afficher le/la %{linked_entity_name} parent de ce(tte) %{entity_name} " -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:173 -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:183 -msgid "Per Minute" -msgstr "Par minute" +msgid "Show this %{host_title}'s %{cluster_title}" +msgstr "Afficher le/la %{cluster_title} de ce(tte) %{host_title}" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:207 -msgid "Caution:" -msgstr "Attention :" +msgid "Show this %{title}'s %{label}" +msgstr "Afficher le/la %{label} de ce(tte) %{title}" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:210 -msgid "Setting tracing to true may cause excessive log lines to be written" -msgstr "Activer le traçage peut provoquer l'écriture de lignes de journal excessives" +msgid "Show this Availability Zone's parent Cloud Provider" +msgstr "Afficher le fournisseur de cloud parent de cette zone de disponibilité" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:220 -msgid "Message Filter" -msgstr "Filtre de message" +msgid "Show this Backup's %{parent}" +msgstr "Afficher le %{parent} de cette sauvegarde" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:248 -msgid "Hardware Attribute" -msgstr "Attribut matériel" +msgid "Show this Backup's parent %{parent}" +msgstr "Afficher le %{parent} du parent de cette sauvegarde" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:287 -msgid "No %{types} found" -msgstr "Aucun %{types} trouvé" +msgid "Show this Cloud Object Store's child %{children}" +msgstr "Afficher les %{children} enfants de ce magasin d'objets cloud" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:307 -msgid "Provider no longer exists, this alert must be reconfigured" -msgstr "Le fournisseur n'existe plus, cette alerte doit être reconfigurée" +msgid "Show this Cloud Object Store's child %{children}'" +msgstr "Afficher les %{children} enfants de ce magasin d'objets cloud" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:326 -msgid "No alarms found for the selected Provider" -msgstr "Aucune alarme trouvée pour le fournisseur sélectionné" +msgid "Show this Cloud Object Store's parent %{parent}" +msgstr "Afficher le/la %{parent} parent de ce magasin d'objets cloud" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:340 -msgid "Choose a %{provider} first" -msgstr "Choisir d'abord un %{provider}" +msgid "Show this Cloud Object's parent %{parent}" +msgstr "Afficher le/la %{parent} parent de cet objet cloud" -#: ../app/views/miq_policy/_alert_details.html.haml:67 -#: ../app/views/miq_policy/_alert_profile_assign.html.haml:17 -#: ../app/views/report/_report_info.html.haml:66 -msgid "Based On" -msgstr "Basé sur" +msgid "Show this Cloud Tenant's parent Cloud Provider" +msgstr "Afficher le fournisseur de cloud parent de ce locataire du cloud" -#: ../app/views/miq_policy/_alert_details.html.haml:87 -msgid "* Cannot be changed while this Alert belongs to an Alert Profile." -msgstr "* Ne peut être changé tant que cette alerte est liée à un profil d'alerte." +msgid "Show this Cloud Volume's parent %{parent}" +msgstr "Afficher le/la %{parent} parent de ce volume cloud" -#: ../app/views/miq_policy/_alert_details.html.haml:104 -msgid "What to Evaluate" -msgstr "Qu'évaluer ?" +msgid "Show this Flavor's parent Cloud Provider" +msgstr "Afficher le fournisseur de cloud parent de ce gabarit" -#: ../app/views/miq_policy/_alert_details.html.haml:110 -#: ../app/views/miq_policy/_alert_details.html.haml:113 -msgid "Expression (Custom)" -msgstr "Expression (personnalisée)" +msgid "Show this Host Aggregate's parent Cloud Provider" +msgstr "Afficher le fournisseur de cloud parent de cet agrégat d'hôtes" -#: ../app/views/miq_policy/_alert_details.html.haml:128 -#: ../app/views/miq_policy/_alert_details.html.haml:239 -#: ../app/views/miq_policy/_condition_details.html.haml:70 -#: ../app/views/miq_policy/_policy_details.html.haml:268 -msgid "Expression" -msgstr "Expression" +msgid "Show this Image's parent" +msgstr "Afficher le parent de cette image" -#: ../app/views/miq_policy/_alert_details.html.haml:141 -#: ../app/views/miq_policy/_alert_details.html.haml:164 -msgid "Driving Event" -msgstr "Événement déclencheur" +msgid "Show this Orchestration Template" +msgstr "Afficher ce modèle d'orchestration" -#: ../app/views/miq_policy/_alert_details.html.haml:181 -msgid "Notification Frequency" -msgstr "Fréquence de notification" +msgid "Show this Parent Provider" +msgstr "Afficher ce fournisseur parent" -#: ../app/views/miq_policy/_alert_details.html.haml:215 -#: ../app/views/miq_policy/_form_expression.html.haml:3 -msgid "Expression (Choose an element of the expression to edit)" -msgstr "Expression (sélectionnez un élément de l'expression à modifier)" +msgid "Show this Service" +msgstr "Afficher ce service" -#: ../app/views/miq_policy/_alert_details.html.haml:257 -msgid "An alert must contain a valid expression." -msgstr "Une alerte doit contenir une expression valide." +msgid "Show this Service's Job" +msgstr "Afficher la tâche de ce service" -#: ../app/views/miq_policy/_alert_details.html.haml:291 -msgid "Send E-mail" -msgstr "Envoyer un email" +msgid "Show this Service's Parent Service" +msgstr "Afficher le service parent de ce service" -#: ../app/views/miq_policy/_alert_details.html.haml:335 -msgid "Send SNMP Trap" -msgstr "Envoyer un trap SNMP" +msgid "Show this Service's Parent Service Catalog" +msgstr "Afficher le catalogue de services parent de ce service" -#: ../app/views/miq_policy/_alert_details.html.haml:401 -#: ../app/views/miq_policy/_alert_snmp.html.haml:106 -msgid "Variable Object ID" -msgstr "ID d'objet de variable" +msgid "Show this Snapshot's %{parent}" +msgstr "Afficher le %{parent} de ce cliché" -#: ../app/views/miq_policy/_alert_details.html.haml:435 -#: ../app/views/miq_policy/_alert_evm_event.html.haml:5 -msgid "Timeline Event" -msgstr "Mettre en chronologie un événement" +msgid "Show this Snapshot's parent %{parent}" +msgstr "Afficher le %{parent} parent de ce cliché" -#: ../app/views/miq_policy/_alert_details.html.haml:444 -#: ../app/views/miq_policy/_alert_evm_event.html.haml:16 -msgid "Show on Timeline" -msgstr "Afficher sur la chronologie" +msgid "Show this VM's %{label}" +msgstr "Afficher le %{label} de cette MV" -#: ../app/views/miq_policy/_alert_details.html.haml:462 -msgid "Send Management Event" -msgstr "Envoyer un événement de gestion" +msgid "Show this VM's %{label} '%{name}'" +msgstr "Afficher le %{label} de cette MV '%{name}'" -#: ../app/views/miq_policy/_alert_details.html.haml:471 -#: ../app/views/miq_policy/_alert_mgmt_event.html.haml:33 -msgid "Event Name" -msgstr "Nom d'événement" +msgid "Show this VM's %{title}" +msgstr "Afficher le/la %{title} de cette MV" -#: ../app/views/miq_policy/_alert_details.html.haml:493 -msgid "Belongs to Alert Profiles" -msgstr "Appartient aux Profils d'alerte" +msgid "Show this VM's Resource Pool" +msgstr "Afficher le pool de ressources de cette MV" -#: ../app/views/miq_policy/_alert_details.html.haml:496 -msgid "This Alert is not assigned to any Alert Profiles." -msgstr "Cette alerte n'est affectée à aucun profil d'alerte." +msgid "Show this Volume's %{availability_zone}" +msgstr "Afficher la %{availability_zone} de ce volume" -#: ../app/views/miq_policy/_alert_details.html.haml:503 -#: ../app/views/miq_policy/_alert_profile_list.html.haml:16 -msgid "View this Alert Profile" -msgstr "Afficher ce profil d'alerte" +msgid "Show this Volume's %{cloud_tenant}" +msgstr "Afficher le %{cloud_tenant} de ce volume" -#: ../app/views/miq_policy/_alert_details.html.haml:524 -msgid "Referenced by Actions" -msgstr "Référencé par des actions" +msgid "Show this Volume's %{parent}" +msgstr "Afficher le %{parent} de ce volume" -#: ../app/views/miq_policy/_alert_details.html.haml:527 -msgid "This Alert is not referenced by any Actions." -msgstr "Cette alerte n'est référencée par aucune action." +msgid "Show this container volume's parent Containers Provider" +msgstr "Afficher le fournisseur de conteneurs parent de ce volume conteneur" -#: ../app/views/miq_policy/_alert_details.html.haml:534 -msgid "View this Action" -msgstr "Afficher cette action" +msgid "Show this parent %{provider} for this %{host}" +msgstr "Afficher ce %{provider} pour cette %{host}" -#: ../app/views/miq_policy/_alert_list.html.haml:4 -msgid "No Alerts are defined" -msgstr "Aucune alerte n'est définie" +msgid "Show topology" +msgstr "Afficher la topologie" -#: ../app/views/miq_policy/_alert_list.html.haml:6 -msgid "No Alerts are defined that match the entered search string '%s'" -msgstr "Aucune alerte définie ne correspond à la chaîne de recherche saisie '%s'" +msgid "Show tree of all VMs by Resource Pool in this %{cluster_title}" +msgstr "Afficher l'arborescence de toutes les MV par pool de ressources dans ce %{cluster_title}" -#: ../app/views/miq_policy/_alert_mgmt_event.html.haml:5 -msgid "Management Event" -msgstr "Événement de gestion" +msgid "Show tree of all VMs by Resource Pool in this %{title}" +msgstr "Afficher l'arborescence de toutes les MV par pool de ressources dans ce %{title}" -#: ../app/views/miq_policy/_alert_mgmt_event.html.haml:16 -msgid "Send a Management Event" -msgstr "Envoyer un événement de gestion" +msgid "Show tree of all VMs in this Resource Pool" +msgstr "Afficher l'arborescence de toutes les MV dans ce pool de ressources" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:42 -msgid "No Alerts are defined." -msgstr "Aucune alerte n'est définie." +msgid "Show virtual machine analysis history" +msgstr "Afficher l'historique d'analyse de la machine virtuelle" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:48 -msgid "View this Alert" -msgstr "Afficher cette alerte" +msgid "Show virtual machine drift history" +msgstr "Afficher l'historique de dérive de la machine virtuelle" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:64 -msgid "Alert Selection" -msgstr "Sélection d''Alerte" +msgid "Show virtual machine genealogy" +msgstr "Afficher la généalogie de la machine virtuelle" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:70 -msgid "Available %{model} Alerts:" -msgstr "Alertes %{model} disponibles :" +msgid "Showing first" +msgstr "" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:74 -msgid "Profile Alerts:" -msgstr "Alertes de profil :" +msgid "Shutdown" +msgstr "Arrêter" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:93 -msgid "Move selected Alerts into this Profile" -msgstr "Déplacer les alertes sélectionnées vers ce profil" +msgid "Shutdown Guest" +msgstr "Arrêter l'invité" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:105 -msgid "Remove all Alerts from this Profile" -msgstr "Supprimer toutes les alertes de ce profil" +msgid "Shutdown the Guest OS on the selected items" +msgstr "Arrêter le SE invité sur les éléments sélectionnés" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:116 -msgid "Remove selected Alerts from this Profile" -msgstr "Supprimer les alertes sélectionnées de ce profil" +msgid "Shutdown the Guest OS on the selected items?" +msgstr "Arrêter le SE invité sur les éléments sélectionnés ?" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:178 -#: ../app/views/miq_policy/_condition_details.html.haml:115 -#: ../app/views/miq_policy/_policy_details.html.haml:405 -#: ../app/views/miq_policy/_profile_details.html.haml:183 -msgid "No notes have been entered." -msgstr "Aucune remarque saisie." +msgid "Shutdown the Guest OS on this VM" +msgstr "Arrêter le SE invité sur cette MV" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:187 -msgid "Assigned To" -msgstr "Assigné à" +msgid "Shutdown the Guest OS on this VM?" +msgstr "Arrêter le SE invité sur cette MV ?" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:238 -msgid "%{alert_profiles} with %{type} Tags" -msgstr "%{alert_profiles} avec %{type} Balises" +msgid "Shutdown the selected items" +msgstr "Arrêter les éléments sélectionnés" -#: ../app/views/miq_policy/_alert_profile_folders.html.haml:10 -#: ../app/views/miq_policy/_policy_folders.html.haml:33 -msgid "Open Folder" -msgstr "Ouvrir le dossier" +msgid "Shutdown the selected items to Standby Mode" +msgstr "Mettre en veille les éléments sélectionnés" -#: ../app/views/miq_policy/_alert_profile_list.html.haml:7 -msgid "No %{alert_profile_type} Alert Profiles are defined." -msgstr "Aucun profil d'alerte %{alert_profile_type} n'est défini." +msgid "Shutdown the selected items to Standy Mode?" +msgstr "Mettre en veille les éléments sélectionnés ?" -#: ../app/views/miq_policy/_alert_profile_list.html.haml:9 -msgid "" -"No %{alert_profile_type} Alert Profiles are defined that match the entered sea" -"rch string." -msgstr "" -"Aucun profil d'alerte %{alert_profile_type} défini ne correspond à la chaîne d" -"e recherche saisie." +msgid "Shutdown the selected items?" +msgstr "Arrêter les éléments sélectionnés ?" -#: ../app/views/miq_policy/_alert_snmp.html.haml:19 -msgid "Send an SNMP Trap" -msgstr "Envoyer un trap SNMP" +msgid "Shutdown this item" +msgstr "Arrêter cet élément" -#: ../app/views/miq_policy/_condition_details.html.haml:62 -#: ../app/views/miq_policy/_form_scope.html.haml:25 -msgid "No scope defined, the scope of this condition includes all elements." -msgstr "Aucune étendue définie. L'étendue de cette condition inclut tous les éléments." +msgid "Shutdown this item to Standby Mode" +msgstr "Mettre en veille cet élément" -#: ../app/views/miq_policy/_condition_details.html.haml:87 -msgid "A condition must contain a valid expression." -msgstr "Une condition doit contenir une expression valide" +msgid "Shutdown this item to Standby Mode?" +msgstr "Mettre en veille cet élément ?" -#: ../app/views/miq_policy/_condition_details.html.haml:126 -msgid "This Condition is not assigned to any Policies." -msgstr "Cette condition n'est affectée à aucune stratégie." +msgid "Shutdown this item?" +msgstr "Arrêter cet élément ?" -#: ../app/views/miq_policy/_condition_folders.html.haml:10 -msgid "View Condition" -msgstr "Afficher la condition" +msgid "Shutdown to Standby Mode" +msgstr "Mettre en veille" -#: ../app/views/miq_policy/_condition_folders.html.haml:20 -msgid "%{object} Conditions" -msgstr "Conditions de %{object}" +msgid "Signal" +msgstr "Signal" -#: ../app/views/miq_policy/_condition_list.html.haml:10 -msgid "No %{model} Conditions are defined." -msgstr "Aucune condition %{model} n'est définie." +msgid "Simulate" +msgstr "Simuler" -#: ../app/views/miq_policy/_condition_list.html.haml:12 -msgid "No %{model} Conditions are defined that match the entered search string." -msgstr "" -"Aucune condition %{model} définie ne correspond à la chaîne de recherche saisi" -"e." +msgid "Simulate using Button details" +msgstr "Simuler en utilisant les infos bouton" -#: ../app/views/miq_policy/_condition_list.html.haml:19 -#: ../app/views/miq_policy/_policy_details.html.haml:234 -msgid "View this Condition" -msgstr "Afficher cette condition" +msgid "Simulation" +msgstr "Simulation" -#: ../app/views/miq_policy/_event_details.html.haml:30 -msgid "Event Group" -msgstr "Groupe d'événements" +msgid "Simulation Parameters" +msgstr "Paramètres de simulation" -#: ../app/views/miq_policy/_event_details.html.haml:41 -msgid "Attached to Policy" -msgstr "Associé à une stratégie" +msgid "Simulation unavailable: Required Class \"System/Process\" is missing" +msgstr "Simulation non disponible : la classe obligatoire \"System/Process\" est manquante" -#: ../app/views/miq_policy/_event_details.html.haml:55 -msgid "This Event is not assigned to any Policies." -msgstr "Cet événement n'est affecté à aucune stratégie." +msgid "Single Select" +msgstr "Sélection simple" -#: ../app/views/miq_policy/_event_details.html.haml:78 -msgid "Order of Actions if ALL Conditions are True" -msgstr "Ordre des actions si TOUTES les conditions sont vérifiées" +msgid "Single VM/Instance" +msgstr "" -#: ../app/views/miq_policy/_event_details.html.haml:85 -#: ../app/views/miq_policy/_event_details.html.haml:261 -msgid "Available Actions:" -msgstr "Actions Disponibles" +msgid "Single Value" +msgstr "Valeur unique" -#: ../app/views/miq_policy/_event_details.html.haml:89 -#: ../app/views/miq_policy/_event_details.html.haml:265 -msgid " Selected Actions:" -msgstr "Actions sélectionnées:" +msgid "Size" +msgstr "Taille" -#: ../app/views/miq_policy/_event_details.html.haml:111 -msgid "Move selected Actions into this Event" -msgstr "Déplacer les actions sélectionnées vers cet événement" +msgid "Size (in gigabytes)" +msgstr "Taille (giga-octets)" -#: ../app/views/miq_policy/_event_details.html.haml:121 -msgid "Remove all Actions from this Event" -msgstr "Supprimer toutes les actions de cet événement" +msgid "Small Trees" +msgstr "Petits arbres" -#: ../app/views/miq_policy/_event_details.html.haml:130 -msgid "Remove selected Actions from this Event" -msgstr "Supprimer les actions sélectionnées de cet événement" +msgid "Smart Management" +msgstr "Gestion Smart" -#: ../app/views/miq_policy/_event_details.html.haml:156 -msgid "Move selected Action up" -msgstr "Déplacer l'action sélectionnée vers le haut" +msgid "SmartProxy Affinity" +msgstr "Affinité des SmartProxys" -#: ../app/views/miq_policy/_event_details.html.haml:166 -msgid "Move selected Action down" -msgstr "Déplacer l'action sélectionnée vers le bas" +msgid "SmartProxy Server IP" +msgstr "IP du serveur SmartProxy" -#: ../app/views/miq_policy/_event_details.html.haml:176 -msgid "Set selected Actions to Synchronous" -msgstr "Définir les actions sélectionnées comme synchrones" +msgid "SmartState Analysis cannot be performed when there is no active Host" +msgstr "" -#: ../app/views/miq_policy/_event_details.html.haml:186 -msgid "Set selected Actions to Asynchronous" -msgstr "Définir les actions sélectionnées comme asynchrones" +msgid "Smartstate Analysis" +msgstr "Analyse SmartState" -#: ../app/views/miq_policy/_event_details.html.haml:203 -msgid "This Event has no true Actions." -msgstr "Cet événement n'a aucune action True." +msgid "Snapshot" +msgid_plural "Snapshots" +msgstr[0] "Cliché" +msgstr[1] "Clichés" -#: ../app/views/miq_policy/_event_details.html.haml:216 -#: ../app/views/miq_policy/_event_details.html.haml:396 -msgid "Synchronous" -msgstr "Synchrone" +msgid "Snapshot Age Settings" +msgstr "Paramètres d'âge des clichés" -#: ../app/views/miq_policy/_event_details.html.haml:228 -#: ../app/views/miq_policy/_event_details.html.haml:408 -#: ../app/views/miq_policy/_policy_details.html.haml:352 -#: ../app/views/miq_policy/_policy_details.html.haml:367 -msgid "View this Event Action" -msgstr "Afficher cette action d'événement" +msgid "Snapshot Age must be selected" +msgstr "L'âge du cliché doit être sélectionné" -#: ../app/views/miq_policy/_event_details.html.haml:254 -msgid "Order of Actions if ANY Conditions are False" -msgstr "Ordre des actions si au moins UNE condition n'est pas vérifiée" +msgid "Snapshot Create" +msgstr "Création d'un cliché" -#: ../app/views/miq_policy/_event_details.html.haml:383 -msgid "This Event has no false Actions." -msgstr "Cet événement n'a aucune action False." +msgid "Snapshot Delete" +msgstr "Suppression d'un cliché" -#: ../app/views/miq_policy/_event_list.html.haml:5 -msgid "No Events are defined" -msgstr "Aucun événement n'est défini" +msgid "Snapshot Information" +msgstr "Informations sur le cliché" -#: ../app/views/miq_policy/_event_list.html.haml:7 -msgid "No Events are defined that match the entered search string '%s'" -msgstr "Aucun événement défini ne correspond à la chaîne de recherche saisie '%s'" +msgid "Snapshot Name" +msgstr "Nom du cliché" -#: ../app/views/miq_policy/_event_list.html.haml:14 -msgid "View this Event" -msgstr "Afficher cet événement" +msgid "Snapshot Settings" +msgstr "Paramètres de cliché" -#: ../app/views/miq_policy/_export.html.haml:17 -#: ../app/views/miq_policy/import.html.haml:54 -#: ../app/views/miq_policy/import.html.haml:54 -msgid "Resolve conflicts to import the file" -msgstr "Résoudre les conflits pour importer le fichier" +msgid "Snapshot VM '%{name}'" +msgstr "Prendre un cliché de la MV '%{name}'" -#: ../app/views/miq_policy/_export.html.haml:23 -#: ../app/views/miq_policy/import.html.haml:60 -#: ../app/views/miq_policy/import.html.haml:60 -msgid "Commit Import" -msgstr "Valider l'importation" +msgid "Snapshot VM '%{name}''" +msgstr "Prendre un cliché de la MV '%{name}'" -#: ../app/views/miq_policy/_export.html.haml:33 -#: ../app/views/miq_policy/import.html.haml:73 -msgid "Cancel Import" -msgstr "Annuler l'importation" +msgid "Snapshot VM memory" +msgstr "Prendre un cliché de la mémoire MV" -#: ../app/views/miq_policy/_export.html.haml:102 -msgid "Export:" -msgstr "Exporter :" +msgid "Snapshot for Cloud Volume \"%{name}\" created" +msgstr "Cliché du volume cloud \"%{name}\" créé" -#: ../app/views/miq_policy/_export.html.haml:122 -msgid "Available %{title}:" -msgstr "%{title} disponible:" +msgid "Snapshot of Cloud Volume \"%{name}\" was cancelled by the user" +msgstr "Le cliché du volume cloud %{name} a été annulé par l'utilisateur" -#: ../app/views/miq_policy/_export.html.haml:148 -msgid "Export Selected %{title}" -msgstr "Exporter le %{title} sélectionné" +msgid "Snapshot of VM %{name} was cancelled by the user" +msgstr "Le cliché de la MV %{name} a été annulé par l'utilisateur" -#: ../app/views/miq_policy/_form_expression.html.haml:8 -msgid "Expression (Press the \"Edit\" button to edit the expression)" -msgstr "Expression (appuyez sur le bouton \"Modifier\" pour modifier l'expression)" +msgid "Snapshots" +msgstr "Clichés" -#: ../app/views/miq_policy/_form_expression.html.haml:10 -#: ../app/views/report/_form_filter.html.haml:22 -#: ../app/views/report/_form_filter.html.haml:62 -msgid "Edit this Expression" -msgstr "Modifier cette expression" +msgid "Sockets" +msgstr "Sockets" -#: ../app/views/miq_policy/_form_expression.html.haml:21 -msgid "No expression defined, a condition must contain a valid expression." -msgstr "Aucune expression définie. Une condition doit contenir une expression valide." +msgid "Soft Reboot" +msgstr "Redémarrage logiciel" -#: ../app/views/miq_policy/_form_scope.html.haml:3 -msgid "Scope (Choose an element of the scope to edit)" -msgstr "Portée (choisissez un élément de la portée à modifier)" +msgid "Soft Reboot the selected items" +msgstr "Effectuer un redémarrage logiciel des éléments sélectionnés" -#: ../app/views/miq_policy/_form_scope.html.haml:10 -msgid "Scope (Press the \"Edit\" button to edit the scope)" -msgstr "Portée (appuyez sur le bouton \"Modifier\" pour modifier la portée)" +msgid "Soft Reboot the selected items?" +msgstr "Effectuer un redémarrage logiciel des éléments sélectionnés ?" -#: ../app/views/miq_policy/_form_scope.html.haml:12 -msgid "Edit this Scope" -msgstr "Modifier cette étendue" +msgid "Soft Reboot this Instance" +msgstr "Effectuer un redémarrage logiciel de cette instance" -#: ../app/views/miq_policy/_policy_details.html.haml:82 -msgid "By Username %{username} %{created_on}" -msgstr "Par nom d'utilisateur %{username} %{created_on}" +msgid "Soft Reboot this Instance?" +msgstr "Effectuer un redémarrage logiciel de cette instance ?" -#: ../app/views/miq_policy/_policy_details.html.haml:97 -msgid "By Username %{username} %{updated_on}" -msgstr "Par nom d'utilisateur %{username} %{updated_on}" +msgid "Software" +msgstr "Logiciel" -#: ../app/views/miq_policy/_policy_details.html.haml:107 -msgid "Scope (Choose an element of the Policy scope to edit)" -msgstr "Portée (choisissez un élément faisant partie de la stratégie à modifier)" +msgid "Software updates have not yet been configured. Select Edit Registration to register appliances in this region with Red Hat to receive software updates and other benefits." +msgstr "Les mises à jour logicielles n'ont pas encore été configurées. Sélectionnez Modifier l'enregistrement pour enregistrer des appareils auprès de Red Hat dans cette région afin de recevoir des mises à jour logicielles et d'autres avantages." -#: ../app/views/miq_policy/_policy_details.html.haml:130 -msgid "No Policy scope defined, the scope of this policy includes all elements." +msgid "Something is wrong, try reloading the page" msgstr "" -"Aucune étendue de stratégie définie. L'étendue de la stratégie inclut tous les" -" éléments." -#: ../app/views/miq_policy/_policy_details.html.haml:138 -msgid "Condition Selection" -msgstr "Sélection de la condition" +msgid "Sorry, the username or password you entered is incorrect." +msgstr "Le nom d'utilisateur ou le mot de passe introduits sont incorrects." -#: ../app/views/miq_policy/_policy_details.html.haml:144 -msgid "Available %{model} Conditions:" -msgstr "Conditions %{model} disponibles :" +msgid "Sort By" +msgstr "Trier par" -#: ../app/views/miq_policy/_policy_details.html.haml:148 -msgid "Policy Conditions:" -msgstr "Conditions de stratégie :" +msgid "Sort Criteria" +msgstr "Critères de tri" -#: ../app/views/miq_policy/_policy_details.html.haml:172 -msgid "Move selected Conditions into this Policy" -msgstr "Déplacer les conditions sélectionnées vers cette stratégie" +msgid "Sort Order" +msgstr "Ordre de tri" -#: ../app/views/miq_policy/_policy_details.html.haml:172 -msgid "Remove all Conditions from this Policy" -msgstr "Supprimer toutes les conditions de cette stratégie" +msgid "Sort the Report By" +msgstr "Trier le rapport par" + +msgid "Source" +msgstr "Source" -#: ../app/views/miq_policy/_policy_details.html.haml:172 -msgid "Remove selected Conditions from this Policy" -msgstr "Supprimer les conditions sélectionnées de cette stratégie" +msgid "Spaces are prohibited" +msgstr "Les espaces ne sont pas autorisés" -#: ../app/views/miq_policy/_policy_details.html.haml:207 -msgid "" -"* If all Conditions are removed from a Policy, it will be unconditional and al" -"ways evaluate to true." +msgid "Specific Hosts" msgstr "" -"*Si toutes les conditions sont supprimées d'une politique, elle sera toujours " -"évaluée positivement" -#: ../app/views/miq_policy/_policy_details.html.haml:214 -msgid "" -"No conditions defined. This policy is unconditional and will ALWAYS return tru" -"e." -msgstr "" -"Aucune condition définie. Cette stratégie est inconditionnelle et sera TOUJOUR" -"S vraie." +msgid "Specified NTP settings applied here will override Zone NTP settings." +msgstr "Les paramètres NTP spécifiés appliqués ici remplaceront les paramètres NTP de la zone." -#: ../app/views/miq_policy/_policy_details.html.haml:227 -msgid "Scopes / Expressions" -msgstr "Portées / Expressions" +msgid "Specify CDN configuration" +msgstr "Spécifier une configuration CDN" -#: ../app/views/miq_policy/_policy_details.html.haml:286 -#: ../app/views/miq_policy/_rsop_form.html.haml:15 -msgid "Event Selection" -msgstr "Sélection d'événement" +msgid "Specify Calculations for Summary Rows" +msgstr "Spécifier les calculs pour les lignes de synthèse" -#: ../app/views/miq_policy/_policy_details.html.haml:306 -msgid "This policy does not currently respond to any Events." -msgstr "Cette stratégie ne répond actuellement à aucun événement." +msgid "Specify Calculations of Numeric Values for Grouped Records" +msgstr "Spécifier les calculs des valeurs numériques pour des enregistrements regroupés" -#: ../app/views/miq_policy/_policy_details.html.haml:328 -#: ../app/views/miq_policy/_policy_details.html.haml:334 -msgid "View this Policy Event" -msgstr "Afficher cet événement de stratégie" +msgid "Specify Column Headers and Formats" +msgstr "Spécifier les en-têtes et formats de colonne" -#: ../app/views/miq_policy/_policy_details.html.haml:345 -msgid "* No Actions are configured for this Event." -msgstr "* Aucune Action n'est configurée pour cet Evénement" +msgid "Specify Column Styles" +msgstr "Spécifier les styles de colonnes" -#: ../app/views/miq_policy/_policy_details.html.haml:414 -msgid "Belongs to Profiles" -msgstr "Appartient aux Profils" +msgid "Specify Driver" +msgstr "" -#: ../app/views/miq_policy/_policy_details.html.haml:417 -msgid "This Policy is not assigned to any Profiles." -msgstr "Cette stratégie n'est affectée à aucun profil." +msgid "Specify a list of machines to deploy on (No existing provider)" +msgstr "Spécifier une liste des machines où effectuer le déploiement (aucun fournisseur existant)" -#: ../app/views/miq_policy/_policy_details.html.haml:424 -#: ../app/views/miq_policy/_profile_list.html.haml:16 -#: ../app/views/report/_role_list.html.haml:31 -msgid "View this Profile" -msgstr "Afficher ce profil" +msgid "Specify role(s) for this host" +msgstr "Spécifier un ou des rôles pour cet hôte" -#: ../app/views/miq_policy/_policy_list.html.haml:8 -msgid "No %{model} %{mode} Policies are defined." -msgstr "Aucune stratégie %{mode} %{model} n'est définie." +msgid "Stack" +msgstr "Pile" -#: ../app/views/miq_policy/_policy_list.html.haml:10 -msgid "No %{model} %{mode} Policies are defined that match the entered search string." -msgstr "" -"Aucune stratégie %{mode} %{model} définie ne correspond à la chaîne de recherc" -"he saisie." +msgid "Stacks" +msgstr "Piles" -#: ../app/views/miq_policy/_profile_details.html.haml:45 -msgid "Policy Selection" -msgstr "Sélection de la stratégie" +msgid "Standard NFS Server" +msgstr "Serveur NFS standard" -#: ../app/views/miq_policy/_profile_details.html.haml:51 -msgid "Available Policies:" -msgstr "Stratégies Disponibles:" +msgid "Start" +msgstr "Lancer" -#: ../app/views/miq_policy/_profile_details.html.haml:55 -msgid "Profile Policies:" -msgstr "Stratégies de profil :" +msgid "Start Date" +msgstr "Date de début" -#: ../app/views/miq_policy/_profile_details.html.haml:77 -msgid "Move selected Policies into this Profile" -msgstr "Déplacer les stratégies sélectionnées vers ce profil" +msgid "Start Page" +msgstr "Page de début" -#: ../app/views/miq_policy/_profile_details.html.haml:87 -msgid "Remove all Policies from this Profile" -msgstr "Supprimer toutes les stratégies de ce profil" +msgid "Start Role" +msgstr "Lance le rôle" -#: ../app/views/miq_policy/_profile_details.html.haml:96 -msgid "Remove selected Policies from this Profile" -msgstr "Supprimer les stratégies sélectionnées de ce profil" +msgid "Start Server" +msgstr "Démarrer le serveur" -#: ../app/views/miq_policy/_profile_details.html.haml:128 -msgid "No Policies are defined." -msgstr "Aucune stratégie n'est définie." +msgid "Start Server Group" +msgstr "" -#: ../app/views/miq_policy/_profile_details.html.haml:134 -msgid "View this %{model} Policy" -msgstr "Afficher cette stratégie de %{model}" +msgid "Start Servers in this Server Group" +msgstr "" -#: ../app/views/miq_policy/_profile_list.html.haml:7 -msgid "No %{mode} Policy Profiles are defined." -msgstr "Aucun profil de stratégie %{mode} n'est défini." +msgid "Start TLS Automatically" +msgstr "Démarrer TLS automatiquement" -#: ../app/views/miq_policy/_profile_list.html.haml:9 -msgid "No %{mode} Policy Profiles are defined that match the entered search string." -msgstr "" -"Aucun profil de stratégie %{mode} défini ne correspond à la chaîne de recherch" -"e saisie." +msgid "Start Timestamp" +msgstr "Horodatage de début" -#: ../app/views/miq_policy/_rsop_form.html.haml:47 -msgid "By %{clusters}" -msgstr "Par %{clusters}" +msgid "Start is not allowed for the selected item" +msgstr "Le démarrage n'est pas autorisé pour l'élément sélectionné" -#: ../app/views/miq_policy/_rsop_form.html.haml:47 -msgid "By %{hosts}" -msgstr "Par %{hosts}" +msgid "Start successfully initiated" +msgstr "Démarrage commencé" -#: ../app/views/miq_policy/_rsop_form.html.haml:47 -msgid "By Cloud/Infrastructure Providers" -msgstr "Par fournisseurs d'infrastructure/de cloud" +msgid "Start the %{host} Discovery" +msgstr "Lancer la découverte du/de la %{host}" -#: ../app/views/miq_policy/_rsop_form.html.haml:47 -msgid "Single VM" -msgstr "MV unique" +msgid "Start the %{server_role_description} Role on Server %{server_name} [%{server_id}]" +msgstr "Lancer le rôle %{server_role_description} sur le serveur %{server_name} [%{server_id}]" -#: ../app/views/miq_policy/_rsop_options.html.haml:11 -msgid "Submit Policy Simulation for the selected VMs" -msgstr "Envoyer la simulation de stratégie pour les MV sélectionnées" +msgid "Start the %{server_role_description} Role on Server %{server_name} [%{server_id}]?" +msgstr "Lancer le rôle %{server_role_description} sur le serveur %{server_name} [%{server_id}] ?" -#: ../app/views/miq_policy/_rsop_options.html.haml:21 -#: ../app/views/miq_policy/_rsop_options.html.haml:39 -msgid "Reset all Policy Simulation options" -msgstr "Réinitialiser toutes les options de simulation de stratégie" +msgid "Start the selected items" +msgstr "Lancer les éléments sélectionnés" -#: ../app/views/miq_policy/_rsop_options.html.haml:35 -msgid "Select a VM to Submit the Simulation Options" -msgstr "Sélectionner une MV pour envoyer les options de simulation" +msgid "Start the selected items?" +msgstr "Lancer les éléments sélectionnés ?" -#: ../app/views/miq_policy/_rsop_results.html.haml:18 -#: ../app/views/vm_common/_policy_options.html.haml:16 -msgid "Show out of scope items:" -msgstr "Afficher les éléments hors portée :" +msgid "Start this Instance" +msgstr "Lancer cette instance" -#: ../app/views/miq_policy/_rsop_results.html.haml:34 -#: ../app/views/vm_common/_policy_options.html.haml:32 -msgid "Show policies:" -msgstr "Afficher les stratégies :" +msgid "Start this Instance?" +msgstr "Lancer cette instance ?" -#: ../app/views/miq_policy/_rsop_results.html.haml:46 -msgid "Passed" -msgstr "Réussi" +msgid "Start this server" +msgstr "Démarrer ce serveur" -#: ../app/views/miq_policy/_rsop_results.html.haml:57 -#: ../app/views/vm_common/_policy_options.html.haml:54 -msgid "Failed" -msgstr "Échec" +msgid "Started" +msgstr "" -#: ../app/views/miq_policy/_rsop_results.html.haml:65 -msgid "Policy Simulation Results" -msgstr "Résultats de la simulation de stratégie" +msgid "Started At" +msgstr "Lancé à" -#: ../app/views/miq_policy/_rsop_results.html.haml:71 -msgid "* Items in" -msgstr "* Items dans" +msgid "Started On" +msgstr "Lancé le" -#: ../app/views/miq_policy/_rsop_results.html.haml:77 -msgid "red italics" -msgstr "italique rouge" +msgid "Started:" +msgstr "Lancé :" -#: ../app/views/miq_policy/_rsop_results.html.haml:81 -msgid "do not change the outcome of the scope or expression" -msgstr "ne pas changer le résultat de la portée ou de l'expression" +msgid "Starting Class must be selected" +msgstr "La classe de début doit être sélectionnée" -#: ../app/views/miq_policy/_rsop_results.html.haml:101 -msgid "* Enter Policy Simulation options on the left and press Submit" -msgstr "* Entrez les options de simulation de politique à gauche et cliquez soumettre" +msgid "Starting Date" +msgstr "Date de début" -#: ../app/views/miq_request/_ae_prov_show.html.haml:3 -msgid "Automations Tasks" -msgstr "Tâches d'automatisation" +msgid "Starting Message" +msgstr "Message de démarrage" -#: ../app/views/miq_request/_pre_prov.html.haml:8 -msgid "Provision %{what} based on the selected %{type}" -msgstr "Mettre en service %{what} d'après %{type} sélectionné(e)" +msgid "Starting Process is required" +msgstr "Le processus de début est obligatoire" -#: ../app/views/miq_request/_pre_prov.html.haml:18 -msgid "Hide deprecated" -msgstr "" +msgid "Starting Time" +msgstr "Heure de début" -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:11 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:11 -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:11 -#: ../app/views/shared/views/_prov_dialog.html.haml:10 -msgid "Request Information" -msgstr "Informations sur la demande" +msgid "Starting process must be specified" +msgstr "Le processus de début doit être spécifié" -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:18 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:18 -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:19 -#: ../app/views/shared/views/_prov_dialog.html.haml:19 -msgid "Manager" -msgstr "Gestionnaire" +msgid "Starting values" +msgstr "Valeurs de départ" -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:26 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:26 -#: ../app/views/shared/views/_prov_dialog.html.haml:28 -msgid "Select Tags to apply" -msgstr "Sélectionner les balises à appliquer" +msgid "State" +msgstr "État" -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:50 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:82 -#: ../app/views/shared/views/_prov_dialog.html.haml:339 -#: ../app/views/shared/views/_prov_dialog.html.haml:373 -msgid "IP Address Information" -msgstr "Informations sur l'adresse IP" +msgid "State Changed On" +msgstr "État modifié le" -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:60 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:117 -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:82 -#: ../app/views/report/_show_schedule.html.haml:3 -#: ../app/views/shared/views/_prov_dialog.html.haml:408 -msgid "Schedule Info" -msgstr "Informations sur le planning" +msgid "States of Root Orchestration Stacks" +msgstr "État des piles d'orchestration racines" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:11 -msgid "(MB) memory" -msgstr "(MO) mémoire" +msgid "Status" +msgstr "Statut" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:11 -msgid "instances" -msgstr "instances" +msgid "Status = %{row}" +msgstr "Statut = %{row}" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:11 -msgid "vcpus" -msgstr "vcpus" +msgid "Status = Queued" +msgstr "" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:18 -msgid "Cloud Quota" -msgstr "Quota de Cloud" +msgid "Status = Running" +msgstr "" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:22 -msgid "Cloud Tenant:" -msgstr "Locataire cloud :" +msgid "Status of Regional Roles for Servers in %{kind} %{description}" +msgstr "Statut des rôles régionaux pour les serveurs en %{kind} %{description}" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:30 -msgid "Please select a Cloud Tenant from the Environment Tab" -msgstr "Sélectionnez un locataire cloud dans l'onglet Environnement" +msgid "Status of Roles for Servers in %{kind} %{description}" +msgstr "Statut des rôles pour les serveurs en %{kind} %{description}" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:34 -msgid "Instance Type:" -msgstr "Type d'instance :" +msgid "Status: " +msgstr "Statut : " -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:45 -#: ../app/views/ops/_selected_by_servers.html.haml:186 -msgid "available" -msgstr "disponible" +msgid "Step 1/3: Datasource Attributes" +msgstr "Étape 1/3 : Attributs de source de données" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:50 -msgid "Please select an Instance Type from above" -msgstr "Sélectionnez un type d'instance ci-dessus" +msgid "Step 2/3: JDBC Driver" +msgstr "Étape 2/3 : Pilote JDBC" -#: ../app/views/miq_request/_prov_field.html.haml:161 -#: ../app/views/miq_request/_prov_field.html.haml:166 -msgid "Lookup" -msgstr "Rechercher" +msgid "Step 3/3: Connection Settings" +msgstr "Étape 3/3 : Paramètres de connexion" -#: ../app/views/miq_request/_prov_field.html.haml:166 -#: ../app/views/ops/_rbac_group_details.html.haml:172 -#: ../app/views/ops/_rbac_group_details.html.haml:244 -msgid "LDAP Group Lookup" -msgstr "Recherche de groupe LDAP" +msgid "Stop" +msgstr "Arrêter" -#: ../app/views/miq_request/_prov_field.html.haml:185 -#: ../app/views/miq_request/_prov_field.html.haml:194 -msgid "VM Number" -msgstr "Numéro de MV" +msgid "Stop Server" +msgstr "Arrêter le serveur" -#: ../app/views/miq_request/_prov_field.html.haml:212 -#: ../app/views/miq_request/_prov_field.html.haml:277 -#: ../app/views/miq_request/_prov_field.html.haml:329 -#: ../app/views/miq_request/_prov_field.html.haml:448 -#: ../app/views/miq_request/_prov_field.html.haml:498 -#: ../app/views/miq_request/_prov_field.html.haml:541 -msgid "No Choices Available" -msgstr "Aucun choix disponible" +msgid "Stop Server Group" +msgstr "" -#: ../app/views/miq_request/_prov_field.html.haml:397 -msgid "* Only a single value can be assigned from these Tag Categories" -msgstr "* Seule une valeur peut être assignée depuis ces Catégories de balises" +msgid "Stop Servers in this Server Group" +msgstr "" -#: ../app/views/miq_request/_prov_form_buttons.html.haml:16 -#: ../app/views/miq_request/_prov_form_buttons.html.haml:46 -msgid "Cancel this provisioning request" -msgstr "Annuler cette demande de mise en service" +msgid "Stop the selected items" +msgstr "Arrêter les éléments sélectionnés" -#: ../app/views/miq_request/_prov_form_buttons.html.haml:19 -msgid "Submit this provisioning request" -msgstr "Envoyer cette demande de mise en service" +msgid "Stop the selected items?" +msgstr "Arrêter les éléments sélectionnés ?" -#: ../app/views/miq_request/_prov_form_buttons.html.haml:22 -msgid "Continue this provisioning request" -msgstr "Poursuivre cette demande de mise en service" +msgid "Stop this Instance" +msgstr "Arrêter cette instance" -#: ../app/views/miq_request/_prov_host_dialog.html.haml:90 -#: ../app/views/shared/views/_prov_dialog.html.haml:347 -#: ../app/views/shared/views/_prov_dialog.html.haml:381 -#: ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:35 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:101 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:230 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:323 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:388 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:49 -msgid "DNS" -msgstr "DNS" +msgid "Stop this Instance?" +msgstr "Arrêter cette instance ?" -#: ../app/views/miq_request/_prov_host_dialog.html.haml:98 -#: ../app/views/shared/views/_prov_dialog.html.haml:389 -msgid "Customize Template" -msgstr "Personnaliser le Modèle" +msgid "Stop this Middleware Server" +msgstr "Arrêter ce serveur de middleware" -#: ../app/views/miq_request/_prov_host_dialog.html.haml:107 -#: ../app/views/shared/views/_prov_dialog.html.haml:398 -msgid "Selected Template Contents" -msgstr "Contenu de modèle sélectionné" +msgid "Stop this server" +msgstr "Arrêter ce serveur" -#: ../app/views/miq_request/_prov_options.html.haml:8 -#: ../app/views/miq_task/_tasks_options.html.haml:6 -msgid "Filter By" -msgstr "Filtrer par" +msgid "Stopped On" +msgstr "Arrêté le" + +msgid "Storage" +msgstr "Stockage" + +msgid "Storage Adapters" +msgstr "Adaptateurs de stockage" -#: ../app/views/miq_request/_prov_options.html.haml:18 -msgid "Requester:" -msgstr "Demandeur :" +msgid "Storage Chargeback Rate \"%{name}\"" +msgstr "" -#: ../app/views/miq_request/_prov_options.html.haml:34 -#: ../app/views/ops/_settings_server_tab.html.haml:222 -msgid "None Available" -msgstr "Aucun(e) disponible" +msgid "Storage Chargeback Rates" +msgstr "Taux de rétrofacturation de stockage" -#: ../app/views/miq_request/_prov_options.html.haml:42 -msgid "Approval State:" -msgstr "Statut d'approbation :" +msgid "Storage Clusters" +msgstr "Clusters de stockage" -#: ../app/views/miq_request/_prov_options.html.haml:86 -msgid "Request Date:" -msgstr "Date de la demande :" +msgid "Storage Manager" +msgstr "" -#: ../app/views/miq_request/_prov_options.html.haml:106 -msgid "Reason:" -msgstr "Motif :" +msgid "Storage Managers" +msgstr "Gestionnaires de stockage" -#: ../app/views/miq_request/_prov_options.html.haml:129 -#: ../app/views/miq_request/_prov_options.html.haml:163 -#: ../app/views/miq_task/_tasks_options.html.haml:162 -#: ../app/views/miq_task/_tasks_options.html.haml:195 -msgid "Set filters to default" -msgstr "Définir les filtres par défaut" +msgid "Storage Medium Type" +msgstr "Type de support de stockage" -#: ../app/views/miq_request/_prov_options.html.haml:143 -#: ../app/views/miq_task/_tasks_options.html.haml:175 -msgid "Apply the selected filters" -msgstr "Appliquer les filtres sélectionnés" +msgid "Storage Profile" +msgstr "Profil de stockage" -#: ../app/views/miq_request/_prov_options.html.haml:153 -#: ../app/views/miq_task/_tasks_options.html.haml:185 -msgid "Reset filter changes" -msgstr "Réinitialiser les modifications du filtre" +msgid "Storage Rate Assignments" +msgstr "Affectations de taux de stockage" -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:73 -msgid "VM Hardware" -msgstr "Matériel de MV" +msgid "String" +msgstr "Chaîne" -#: ../app/views/miq_request/_reconfigure_show.html.haml:35 -msgid "Processor Sockets" -msgstr "Sockets de processeur" +msgid "String List" +msgstr "Liste de chaînes" -#: ../app/views/miq_request/_reconfigure_show.html.haml:49 -msgid "Processor Cores_Per_Socket" -msgstr "Cœurs de processeur par socket" +msgid "Style" +msgstr "Style" -#: ../app/views/miq_request/_reconfigure_show.html.haml:63 -#: ../app/views/vm_common/_reconfigure.html.haml:147 -msgid "Total Processors" -msgstr "Total des processeurs" +msgid "Styling" +msgstr "Styling" -#: ../app/views/miq_request/_reconfigure_show.html.haml:77 -msgid "Add Disks" -msgstr "Ajouter des Disques" +msgid "Styling for '%{item}', first value is in error: %{message}" +msgstr "Styling pour '%{item}', première valeur erronée : %{message}" -#: ../app/views/miq_request/_reconfigure_show.html.haml:93 -msgid "Remove Disks" -msgstr "Supprimer les disques" +msgid "Styling for '%{item}', second value is in error: %{message}" +msgstr "Styling pour '%{item}', deuxième valeur erronée : %{message}" -#: ../app/views/miq_request/_reconfigure_show.html.haml:111 -#: ../app/views/vm_common/_reconfigure.html.haml:387 -msgid "Affected VMs" -msgstr "VM impactées" +msgid "Styling for '%{item}', third value is in error: %{message}" +msgstr "Styling pour '%{item}', troisième valeur erronée : %{message}" -#: ../app/views/miq_request/_request.html.haml:7 -#: ../app/views/miq_request/_request_details.html.haml:8 -msgid "Request Details" -msgstr "Détails de la demande" +msgid "Styling tab is not available until at least 1 field has been selected" +msgstr "L'onglet Styling n'est pas disponible tant qu'au moins 1 champ n'a pas été sélectionné" -#: ../app/views/miq_request/_request.html.haml:18 -msgid "Request ID" -msgstr "ID de la demande" +msgid "Sub" +msgstr "Secondaire" -#: ../app/views/miq_request/_request.html.haml:44 -msgid "Request State" -msgstr "État de la demande" +msgid "Sub-claim" +msgstr "Réclamation secondaire" -#: ../app/views/miq_request/_request.html.haml:58 -msgid "Requester" -msgstr "Demandeur" +msgid "Sub-claim:" +msgstr "Réclamation secondaire :" -#: ../app/views/miq_request/_request.html.haml:71 -msgid "Request Type" -msgstr "Type de demande" +msgid "Submit" +msgstr "Envoyer" -#: ../app/views/miq_request/_request.html.haml:100 -#: ../app/views/miq_request/_request_details.html.haml:108 -#: ../app/views/ops/_logs_selected.html.haml:35 -#: ../app/views/ops/rhn/_server_table.html.haml:101 -msgid "Last Message" -msgstr "Dernier message" +msgid "Submit Automation Simulation with the specified options" +msgstr "Envoyer la simulation d'automatisation avec les options spécifiées" -#: ../app/views/miq_request/_request.html.haml:126 -#: ../app/views/miq_request/_request_details.html.haml:31 -msgid "Last Update" -msgstr "Dernière mise à jour" +msgid "Submit Changes" +msgstr "Envoyer les modifications" -#: ../app/views/miq_request/_request.html.haml:140 -msgid "Completed" -msgstr "Complété" +msgid "Submit Planning options" +msgstr "Envoyer les options de planning" -#: ../app/views/miq_request/_request.html.haml:159 -msgid "Approval State" -msgstr "Statut d'approbation" +msgid "Submit Policy Simulation for the selected VMs" +msgstr "Envoyer la simulation de stratégie pour les MV sélectionnées" -#: ../app/views/miq_request/_request.html.haml:173 -#: ../app/views/miq_request/_request_details.html.haml:58 -msgid "Approved/Denied by" -msgstr "Approuvée/refusée par" +msgid "Submit this provisioning request" +msgstr "Envoyer cette demande de mise en service" -#: ../app/views/miq_request/_request.html.haml:186 -msgid "Approved/Denied on" -msgstr "Approuvée/refusée le" +msgid "Subnet" +msgstr "" -#: ../app/views/miq_request/_request.html.haml:224 -msgid "Provisioned VMs" -msgstr "MV mises en service" +msgid "Subnet \"%{subnetname}\" added to Router \"%{name}\"" +msgstr "" -#: ../app/views/miq_request/_request.html.haml:228 -#: ../app/views/miq_request/_request.html.haml:242 -#: ../app/views/ops/_ldap_region_show.html.haml:83 -#: ../app/views/report/_report_list.html.haml:53 -#: ../app/views/report/_report_list.html.haml:86 -#: ../app/views/report/_report_list.html.haml:147 -#: ../app/views/shared/buttons/_ab_list.html.haml:19 -#: ../app/views/shared/buttons/_ab_list.html.haml:64 -#: ../app/views/shared/buttons/_ab_list.html.haml:93 -#: ../app/views/shared/buttons/_ab_list.html.haml:207 -msgid "Click to view details" -msgstr "Cliquez pour afficher les détails" +msgid "Subnet \"%{subnetname}\" removed from Router \"%{name}\"" +msgstr "" -#: ../app/views/miq_request/_request.html.haml:239 -msgid "Provisioned Hosts" -msgstr "Hôtes mis en services" +msgid "Subnet CIDR" +msgstr "CIDR sous-réseau" -#: ../app/views/miq_request/_request.html.haml:255 -msgid "* Enter a reason for this approval and press Submit" -msgstr "* Entrez le motif de cette approbation et cliquez soumettre" +msgid "Subnet Mask" +msgstr "Masque de sous-réseau" -#: ../app/views/miq_request/_request.html.haml:258 -msgid "* Enter a reason for this denial and press Submit" -msgstr "* Entrez le motif de ce rejet et cliquez soumettre" +msgid "Subnet Name" +msgstr "Nom du sous-réseau" -#: ../app/views/miq_request/_request_details.html.haml:18 -msgid "Requested by" -msgstr "Demandé par" +msgid "Subnet Range" +msgstr "Plage du sous-réseau" -#: ../app/views/miq_request/_request_details.html.haml:71 -msgid "Date Approved/Denied" -msgstr "Date d'approbation/refus" +msgid "Subnets" +msgstr "Sous-réseaux" -#: ../app/views/miq_request/_service_reconfigure_show.html.haml:12 -#: ../app/views/miq_request/_st_prov_show.html.haml:11 -msgid "Dialog Options" -msgstr "Options de la boîte de dialogue" +msgid "Subscribe to this feed" +msgstr "S'abonner à ce flux" -#: ../app/views/miq_task/_tasks_options.html.haml:22 -msgid "All Zones" -msgstr "Toutes les Zones" +msgid "Subscription Credentials validated successfully" +msgstr "Informations d'identification d'abonnement validées" -#: ../app/views/miq_task/_tasks_options.html.haml:59 -msgid "24 Hour Time Period" -msgstr "Période Horaire de 24 Heures" +msgid "Subscription ID" +msgstr "ID d'abonnement" -#: ../app/views/miq_task/_tasks_options.html.haml:79 -msgid "Task Status" -msgstr "Statut de la tâche" +msgid "Subscriptions" +msgstr "Abonnements" -#: ../app/views/miq_task/_tasks_options.html.haml:100 -msgid "Running" -msgstr "Exécution" +msgid "Substitute: %{substitute}" +msgstr "Substituer : %{substitute}" -#: ../app/views/miq_task/_tasks_options.html.haml:110 -msgid "Ok" -msgstr "Ok" +msgid "Substitution:" +msgstr "Substitution :" -#: ../app/views/miq_task/_tasks_options.html.haml:130 -msgid "Warn" -msgstr "Avertissement" +msgid "Subtype" +msgstr "Sous-type" -#: ../app/views/miq_task/_tasks_options.html.haml:138 -msgid "Task State" -msgstr "État de la tâche" +msgid "Subtype is required." +msgstr "Le sous-type est obligatoire." -#: ../app/views/network_router/edit.html.haml:7 -msgid "Edit Router" -msgstr "Modifier Router" +msgid "Success" +msgstr "Réussite" -#: ../app/views/network_router/edit.html.haml:16 -#: ../app/views/network_router/new.html.haml:45 -msgid "Router Name" -msgstr "Nom du routeur" +msgid "Successful" +msgstr "Réussi" -#: ../app/views/network_topology/show.html.haml:90 -msgid "Floating Ips" -msgstr "IP flottantes" +msgid "Successful Events" +msgstr "Événements réussis" -#: ../app/views/network_topology/show.html.haml:185 -#: ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:28 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:94 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:220 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:333 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:365 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:38 -msgid "Load Balancer" -msgstr "Équilibreur de charge" +msgid "Successfully deleted Saved Report from the %{product} Database" +msgid_plural "Successfully deleted Saved Reports from the %{product} Database" +msgstr[0] "Le rapport enregistré a été supprimé de la base de données %{product}" +msgstr[1] "Les rapports enregistrés ont été supprimés de la base de données %{product}" -#: ../app/views/ontap_file_share/_create_datastore.html.haml:67 -msgid "Submit this Create Datastore request" -msgstr "Envoyer cette demande de création de magasin de données" +msgid "Successfully refreshed!" +msgstr "Actualisation réussie !" -#: ../app/views/ontap_logical_disk/_main.html.haml:16 -#: ../app/views/ops/_db_summary.html.haml:7 -msgid "Capacity Data" -msgstr "Données de capacité" +msgid "Sum 'Other' values" +msgstr "Additionner les valeurs 'Autres'" -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:26 -msgid "Aggregate (free space)" -msgstr "Agrégat (espace libre)" +msgid "Summary" +msgstr "Synthèse" -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:41 -msgid "Size (GB)" -msgstr "Taille (Go)" +msgid "Summary Screens" +msgstr "" -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:64 -msgid "Submit this Create Logical Disk request" -msgstr "Envoyer cette demande de création de disque logique" +msgid "Summary View" +msgstr "Vue de synthèse" -#: ../app/views/ops/_all_tabs.html.haml:11 -msgid "SmartProxy Affinity" -msgstr "Affinité des SmartProxys" +msgid "Summary tab is not available until at least 1 field has been selected" +msgstr "L'onglet Synthèse n'est pas disponible tant qu'au moins 1 champ n'a pas été sélectionné" -#: ../app/views/ops/_all_tabs.html.haml:24 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:53 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:98 -msgid "Server" -msgstr "Serveur" +msgid "Sunday" +msgstr "Dimanche" -#: ../app/views/ops/_all_tabs.html.haml:30 -#: ../app/views/ops/_all_tabs.html.haml:169 -msgid "Workers" -msgstr "Workers" +msgid "Super Administrator can not be copied" +msgstr "" -#: ../app/views/ops/_all_tabs.html.haml:34 -msgid "Custom Logos" -msgstr "Logos personnalisés" +msgid "Support Case must be provided to collect logs" +msgstr "Le dossier d'assistance doit être renseigné pour collecter les journaux" -#: ../app/views/ops/_all_tabs.html.haml:72 -msgid "C & U Collection" -msgstr "Collecte C & U" +msgid "Surveys" +msgstr "Questionnaires" -#: ../app/views/ops/_all_tabs.html.haml:85 -msgid "Import Tags" -msgstr "Importer des balises" +msgid "Suspend" +msgstr "Suspendre" -#: ../app/views/ops/_all_tabs.html.haml:88 -msgid "Import Variables" -msgstr "Importer les variables" +msgid "Suspend Role" +msgstr "Suspendre le rôle" -#: ../app/views/ops/_all_tabs.html.haml:91 -msgid "Map Tags" -msgstr "Mappe balises" +msgid "Suspend Server" +msgstr "Suspendre le serveur" -#: ../app/views/ops/_all_tabs.html.haml:94 -msgid "Red Hat Updates" -msgstr "Mises à jour de Red Hat" +msgid "Suspend Server Group" +msgstr "" -#: ../app/views/ops/_all_tabs.html.haml:97 -msgid "Replication" -msgstr "Réplication" +msgid "Suspend Server in this Server Group" +msgstr "" -#: ../app/views/ops/_all_tabs.html.haml:132 -#: ../app/views/ops/_all_tabs.html.haml:226 -msgid "Roles by Servers" -msgstr "Rôles par serveur" +msgid "Suspend is not allowed for the selected item" +msgstr "La suspension n'est pas autorisée pour l'élément sélectionné" -#: ../app/views/ops/_all_tabs.html.haml:135 -#: ../app/views/ops/_all_tabs.html.haml:229 -msgid "Servers by Roles" -msgstr "Serveurs par rôle" +msgid "Suspend successfully initiated" +msgstr "Suspension commencée" -#: ../app/views/ops/_all_tabs.html.haml:144 -msgid "C & U Gap Collection" -msgstr "Collecte des écarts C & U" +msgid "Suspend the %{server_role_description} Role on Server %{server_name} [%{server_id}]" +msgstr "Suspendre le rôle %{server_role_description} sur le serveur %{server_name} [%{server_id}]" -#: ../app/views/ops/_all_tabs.html.haml:176 -msgid "%{product} Log" -msgstr "Journal %{product}" +msgid "Suspend the %{server_role_description} Role on Server %{server_name} [%{server_id}]?" +msgstr "Suspendre le rôle %{server_role_description} sur le serveur %{server_name} [%{server_id}] ?" -#: ../app/views/ops/_all_tabs.html.haml:179 -msgid "Audit Log" -msgstr "Journal d'audit" +msgid "Suspend the selected items" +msgstr "Suspendre les éléments sélectionnés" -#: ../app/views/ops/_all_tabs.html.haml:239 -msgid "Orphaned Data" -msgstr "Données orphelines" +msgid "Suspend the selected items?" +msgstr "Suspendre les éléments sélectionnés ?" -#: ../app/views/ops/_all_tabs.html.haml:291 -msgid "Client Connections" -msgstr "Connexions du client" +msgid "Suspend this Instance" +msgstr "Suspendre cette instance" -#: ../app/views/ops/_amazon_verify_button.html.haml:2 -msgid "Validate the Amazon Settings" -msgstr "Valider les paramètres Amazon" +msgid "Suspend this Instance?" +msgstr "Suspendre cette instance ?" -#: ../app/views/ops/_amazon_verify_button.html.haml:16 -msgid "Amazon access key and secret are needed to validate Amazon Settings" -msgstr "" -"Une clé d'accès Amazon et un secret sont nécessaires pour valider les Paramètr" -"es Amazon" +msgid "Suspend this VM" +msgstr "Suspendre cette MV" -#: ../app/views/ops/_ap_form.html.haml:73 -#: ../app/views/ops/_ap_form.html.haml:83 -#: ../app/views/ops/_settings_import_tab.html.haml:42 -msgid "File" -msgstr "Fichier" +msgid "Suspend this VM?" +msgstr "Suspend cette MV ?" -#: ../app/views/ops/_ap_form_file.html.haml:4 -msgid "File Entry" -msgstr "Entrée de fichier" +msgid "Suspend this server" +msgstr "Suspendre ce serveur" -#: ../app/views/ops/_ap_form_file.html.haml:14 -#: ../app/views/ops/_ap_show.html.haml:96 -msgid "Collect Contents?" -msgstr "Collecter le contenu ?" +msgid "Switch" +msgstr "" -#: ../app/views/ops/_ap_form_file.html.haml:25 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:31 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:33 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:35 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:37 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:39 -#: ../app/views/ops/_ap_form_registry.html.haml:28 -#: ../app/views/ops/_ap_form_registry.html.haml:30 -#: ../app/views/ops/_ap_form_registry.html.haml:32 -#: ../app/views/ops/_classification_entry.html.haml:69 -msgid "" -msgstr "" +msgid "Switch: %{name}" +msgstr "Commutateur : %{name}" -#: ../app/views/ops/_ap_form_nteventlog.html.haml:4 -msgid "Event Log Entry" -msgstr "Entrée du journal des événements" +msgid "Switches" +msgstr "Commutateurs" -#: ../app/views/ops/_ap_form_nteventlog.html.haml:14 -msgid "Filter Message" -msgstr "Message de filtre" +msgid "Switches for %{model} \"%{name}\"" +msgstr "Commutateur pour %{model} \"%{name}\"" -#: ../app/views/ops/_ap_form_nteventlog.html.haml:16 -msgid "Level" -msgstr "Niveau" +msgid "Synchronizing" +msgstr "Synchronisation" -#: ../app/views/ops/_ap_form_nteventlog.html.haml:20 -msgid " # of Days" -msgstr "# de Jours" +msgid "Synchronous" +msgstr "Synchrone" -#: ../app/views/ops/_ap_form_registry.html.haml:4 -msgid "Registry Entry" -msgstr "Entrée de registre" +msgid "Syntax error in YAML file: %{error_message}" +msgstr "Erreur de syntaxe dans le fichier YAML : %{error_message}" -#: ../app/views/ops/_ap_form_registry.html.haml:12 -msgid "Registry Hive" -msgstr "Ruche de registre" +msgid "Sysprep" +msgstr "Sysprep" -#: ../app/views/ops/_ap_form_registry.html.haml:16 -msgid "Registry Value" -msgstr "Valeur de registre" +msgid "Sysprep \"%{params}\" upload was successful" +msgstr "Sysprep \"%{params}\" : téléchargement réussi" -#: ../app/views/ops/_ap_form_registry.html.haml:48 -#: ../app/views/ops/_ap_form_registry.html.haml:95 -#: ../app/views/ops/_ap_form_registry.html.haml:151 -msgid "HKLM" -msgstr "HKLM" +msgid "System" +msgstr "Système" -#: ../app/views/ops/_ap_form_set.html.haml:6 -msgid "Category Selection" -msgstr "Sélection de catégorie" +msgid "System BIOS UUID" +msgstr "UUID du BIOS système" -#: ../app/views/ops/_ap_show.html.haml:86 -msgid "File Items" -msgstr "Éléments de fichier" +msgid "System Default" +msgstr "Valeur par défaut du système" -#: ../app/views/ops/_ap_show.html.haml:113 -msgid "Registry Items" -msgstr "Éléments de registre" +msgid "System Image Types" +msgstr "Types d'images système" -#: ../app/views/ops/_ap_show.html.haml:132 -msgid "Event Log Items" -msgstr "Éléments du journal des événements" +msgid "System Type" +msgstr "Type de système" -#: ../app/views/ops/_category_form.html.haml:4 -msgid "Category Information" -msgstr "Informations sur la catégorie" +msgid "System/Process" +msgstr "Système/Processus" -#: ../app/views/ops/_category_form.html.haml:56 -#: ../app/views/ops/_category_form.html.haml:176 -#: ../app/views/ops/_settings_co_categories_tab.html.haml:14 -#: ../app/views/ops/_settings_co_tags_tab.html.haml:51 -msgid "Show in Console" -msgstr "Afficher sur la console" +msgid "System/Process/" +msgstr "Système/Processus/" -#: ../app/views/ops/_category_form.html.haml:71 -#: ../app/views/ops/_category_form.html.haml:194 -#: ../app/views/ops/_settings_co_categories_tab.html.haml:16 -msgid "Single Value" -msgstr "Valeur unique" +msgid "THROUGH" +msgstr "VIA" -#: ../app/views/ops/_category_form.html.haml:91 -#: ../app/views/ops/_category_form.html.haml:213 -msgid "Capture C & U Data by Tag" -msgstr "Capturer les données C & U par balise" +msgid "Tab" +msgstr "Onglet" -#: ../app/views/ops/_category_form.html.haml:229 -msgid "* 'Name' and 'Single Value' fields cannot be edited after adding a category." -msgstr "" -"* Les champs 'Nom' et 'Valeur unitaire' ne peuvent être édités après l'ajout d" -"'une catégorie." +msgid "Tab Information" +msgstr "Informations sur l'onglet" -#: ../app/views/ops/_classification_entry.html.haml:72 -msgid "" -msgstr "" +msgid "Tab Label is required" +msgstr "La balise d'onglet est obligatoire" -#: ../app/views/ops/_classification_entry.html.haml:100 -msgid "" -"Deleting the '%{entry_name}' entry will also unassign it from all items, are y" -"ou sure?" -msgstr "" -"Si vous supprimez l'entrée '%{entry_name}', son affectation sera également sup" -"primée de tous les éléments. Voulez-vous continuer ?" +msgid "Tab Title" +msgstr "Titre de l'onglet" -#: ../app/views/ops/_db_info.html.haml:91 -#: ../app/views/ops/_db_info.html.haml:184 -#: ../app/views/ops/_db_info.html.haml:221 -msgid "Percent Bloat" -msgstr "Pourcentage de gonflement" +msgid "Tab Title must be unique for this group" +msgstr "Le titre de l'onglet dopit être unique pour ce groupe" -#: ../app/views/ops/_db_info.html.haml:109 msgid "Table" msgstr "Table" -#: ../app/views/ops/_db_info.html.haml:204 -msgid "No Indexes found for this table." -msgstr "Aucun index trouvé pour cette table." - -#: ../app/views/ops/_db_info.html.haml:228 -msgid "Click to view index" -msgstr "Cliquez pour afficher l'index" +msgid "Tables" +msgstr "Tables" -#: ../app/views/ops/_db_summary.html.haml:12 msgid "Tables with Most Rows" msgstr "Tables avec le plus de lignes" -#: ../app/views/ops/_diagnostics_cu_repair_tab.html.haml:15 -msgid "Collection Options" -msgstr "Options de collecte" +msgid "Tables with Most Wasted Space" +msgstr "Tables avec le plus d'espace gaspillé" -#: ../app/views/ops/_diagnostics_cu_repair_tab.html.haml:43 -msgid "Start Date" -msgstr "Date de début" +msgid "Tables with the Most Rows" +msgstr "Tables avec le plus de lignes" -#: ../app/views/ops/_diagnostics_cu_repair_tab.html.haml:59 -msgid "End Date" -msgstr "Date de Fin" +msgid "Tabular View" +msgstr "Vue tabulaire" -#: ../app/views/ops/_diagnostics_cu_repair_tab.html.haml:73 -msgid "Note: Gap Collection is only available for VMware vSphere Infrastructures" -msgstr "" -"Remarque : la collecte d'écart n'est disponible que pour les infrastructures V" -"Mware vSphere." +msgid "Tag" +msgstr "Balise" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:84 -msgid "Run a Database Backup Now" -msgstr "Effectuer une sauvegarde de la base de données maintenant" +msgid "Tag Assignment" +msgstr "Affectation de balises" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:95 -msgid "Backup Schedules" -msgstr "Planifications des Backups" +msgid "Tag Assignment (Tags common to all selected items)" +msgstr "Affectation de balises (balises communes à tous les éléments sélectionnés)" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:102 -msgid "Fetch settings from a schedule" -msgstr "Récupérer les paramètres d'un planning" +msgid "Tag Category" +msgstr "Catégorie de balise" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:110 -msgid "No Backup Schedules are defined" -msgstr "Aucun planning de sauvegarde n'est défini" +msgid "Tag Edit was cancelled by the user" +msgstr "La modification des balises a été annulée par l'utilisateur" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:185 -msgid "Are you sure you want to Run a Database Backup Now?" +msgid "Tag edits were successfully saved" +msgstr "Les modifications des balises ont été enregistrées" + +msgid "Tag list" msgstr "" -"Voulez-vous vraiment lancer une copie de sauvegarde pour une base de donnée ma" -"intenant ?" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:197 -#: ../app/views/ops/_diagnostics_database_tab.html.haml:216 -msgid "Run Database Garbage Collection Now" -msgstr "Procéder au nettoyage de la mémoire de la base de données maintenant" +msgid "Tag to Apply" +msgstr "Balise à appliquer" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:204 -msgid "Press submit to start the Database Vacuum process" -msgstr "Appuyez sur Valider pour commencer le vidage de la base de données" +msgid "Tag: %{description}" +msgstr "Balise : %{description}" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:219 -msgid "Are you sure you want to Run Database Garbage Collection Now?" +msgid "Tagged Cluster / Deployment Roles" msgstr "" -"Voulez-vous vraiment procéder au nettoyage de la mémoire de la base de données" -" maintenant ?" - -#: ../app/views/ops/_diagnostics_roles_servers_tab.html.haml:19 -#: ../app/views/ops/_diagnostics_servers_roles_tab.html.haml:19 -msgid "No Servers found." -msgstr "Aucun serveur trouvé." -#: ../app/views/ops/_diagnostics_savedreports.html.haml:3 -msgid "Report Results by User" -msgstr "Résultats de rapport par utilisateur" +msgid "Tagged Container Images" +msgstr "" -#: ../app/views/ops/_diagnostics_savedreports.html.haml:20 -#: ../app/views/ops/_settings_workers_tab.html.haml:22 -#: ../app/views/ops/_settings_workers_tab.html.haml:73 -#: ../app/views/ops/_settings_workers_tab.html.haml:183 -#: ../app/views/ops/_settings_workers_tab.html.haml:224 -#: ../app/views/ops/_settings_workers_tab.html.haml:274 -#: ../app/views/ops/_settings_workers_tab.html.haml:327 -#: ../app/views/ops/_settings_workers_tab.html.haml:377 -#: ../app/views/ops/_settings_workers_tab.html.haml:457 -#: ../app/views/ops/_settings_workers_tab.html.haml:507 -msgid "Count" -msgstr "Nombre" +msgid "Tagged Datastores" +msgstr "" -#: ../app/views/ops/_diagnostics_savedreports.html.haml:28 -msgid "Are you sure you want to delete orphaned records for user '%{user}'?" +msgid "Tagged Host / Nodes" msgstr "" -"Voulez-vous vraiment supprimer les enregistrements orphelins pour l'utilisateu" -"r '%{user}' ?" -#: ../app/views/ops/_diagnostics_savedreports.html.haml:31 -msgid "Click to delete Orphaned Records for this user" -msgstr "Cliquez pour supprimer des enregistrements orphelins pour cet utilisateur" +msgid "Tagged Providers" +msgstr "" -#: ../app/views/ops/_diagnostics_timelines_tab.html.haml:16 -#: ../app/views/ops/_diagnostics_utilization_tab.html.haml:13 -msgid "This Server's Virtual Machine has not been identified." -msgstr "La MV de ce serveur n'a pas été identifiée." +msgid "Tagged Resource Pools" +msgstr "" -#: ../app/views/ops/_diagnostics_utilization_tab.html.haml:11 -msgid "No Utilization data available for this Server's Virtual Machine." +msgid "Tagged VMs and Instances" msgstr "" -"Aucune donnée d'utilisation disponible pour cette machine virtuelle de serveur" -"." -#: ../app/views/ops/_diagnostics_zones_tab.html.haml:6 -#: ../app/views/ops/_settings_list_tab.html.haml:6 -msgid "No Zones found." -msgstr "Aucune zone trouvée." +msgid "Tagging" +msgstr "Balisage" -#: ../app/views/ops/_diagnostics_zones_tab.html.haml:12 -msgid "View this Zone" -msgstr "Afficher cette zone" +msgid "Tags" +msgstr "balises" -#: ../app/views/ops/_diagnostics_zones_tab.html.haml:28 -msgid "(current)" -msgstr "(courant)" +msgid "Take this item out of Maintenance Mode" +msgstr "Sortir cet élément du mode de maintenance" -#: ../app/views/ops/_email_verify_button.html.haml:3 -#: ../app/views/ops/_email_verify_button.html.haml:3 -msgid "Send test email" -msgstr "Envoyer un email de test" +msgid "Take this item out of Maintenance Mode?" +msgstr "Sortir cet élément du mode de maintenance ?" -#: ../app/views/ops/_email_verify_button.html.haml:19 -msgid "" -"SMTP E-mail Server settings and Test E-mail Address are needed to send test em" -"ail" +msgid "Target Machine" msgstr "" -"Les paramètres de serveur email et l'adresse email de test sont requises pour " -"envoyer le message de test" -#: ../app/views/ops/_label_tag_mapping_form.html.haml:12 -msgid "Container entity and label" -msgstr "Entité de conteneur et un libellé" +msgid "Target Options / Limits" +msgstr "Options/Limites cibles" -#: ../app/views/ops/_label_tag_mapping_form.html.haml:15 -msgid "Choose a container entity and label" -msgstr "Choisir une entité de conteneur et un libellé" +msgid "Target Options/Limits" +msgstr "Options/Limites cibles" -#: ../app/views/ops/_label_tag_mapping_form.html.haml:21 -msgid "Entity" -msgstr "Entité" +msgid "Target Port" +msgstr "Port cible" -#: ../app/views/ops/_label_tag_mapping_form.html.haml:57 -msgid "Choose a tag category to map to" -msgstr "Choisir une catégorie de balise à laquelle se mapper" +msgid "Target: %{text}" +msgstr "Cible : %{text}" -#: ../app/views/ops/_ldap_auth_users.html.haml:9 -msgid "LDAP Groups for User" -msgstr "Groupes LDAP pour l'utilisateur" +msgid "Task State" +msgstr "État de la tâche" -#: ../app/views/ops/_ldap_domain_show.html.haml:242 -#: ../app/views/ops/_ldap_server_entries.html.haml:7 -msgid "LDAP Servers" -msgstr "Serveurs LDAP" +msgid "Task Status" +msgstr "Statut de la tâche" -#: ../app/views/ops/_ldap_domain_show.html.haml:257 -#: ../app/views/ops/_ldap_forest_entries.html.haml:20 -#: ../app/views/ops/_ldap_server_entries.html.haml:19 -#: ../app/views/ops/_settings_authentication_tab.html.haml:50 -#: ../app/views/ops/_settings_server_tab.html.haml:584 -#: ../app/views/vm_common/_disks.html.haml:11 -#: ../app/views/vm_common/_reconfigure.html.haml:205 -msgid "Mode" -msgstr "Mode" +msgid "Tasks" +msgstr "Tâches" -#: ../app/views/ops/_ldap_forest_entries.html.haml:4 -msgid "Trusted Forest Settings" -msgstr "Paramètres de la forêt fiables" +msgid "Tasks for %{name}" +msgstr "Tâches pour %{name}" -#: ../app/views/ops/_ldap_forest_entries.html.haml:18 -msgid "LDAP Hostname" -msgstr "Nom d'hôte LDAP" +msgid "Template" +msgstr "Modèle" -#: ../app/views/ops/_ldap_forest_entries.html.haml:22 -#: ../app/views/ops/_settings_authentication_tab.html.haml:113 -msgid "LDAP Port" -msgstr "Port LDAP" +msgid "Template Analysis" +msgstr "Analyse du modèle" -#: ../app/views/ops/_ldap_forest_entries.html.haml:35 -msgid "Click to add a new forest" -msgstr "Cliquez pour ajouter une nouvelle forêt" +msgid "Template Selection" +msgstr "Sélection du modèle" -#: ../app/views/ops/_ldap_forest_entries.html.haml:44 -msgid "" -msgstr "" +msgid "Template Type" +msgstr "Type de modèle" -#: ../app/views/ops/_ldap_forest_entries.html.haml:76 -#: ../app/views/ops/_ldap_forest_entries.html.haml:121 -msgid "ldap" -msgstr "ldap" +msgid "Template:" +msgstr "Modèle :" -#: ../app/views/ops/_ldap_forest_entries.html.haml:76 -#: ../app/views/ops/_ldap_forest_entries.html.haml:121 -msgid "ldaps" -msgstr "ldaps" +msgid "Templates" +msgstr "Modèles" -#: ../app/views/ops/_ldap_forest_entries.html.haml:152 -msgid "Are you sure you want to delete forest %{ldaphost} ?" -msgstr "Voulez-vous vraiment supprimer la forêt %{ldaphost} ?" +msgid "Templates & Images" +msgstr "Modèles et images" + +msgid "Tenancy" +msgstr "Location" + +msgid "Tenant" +msgstr "Locataire" + +msgid "Tenant ID" +msgstr "ID locataire" + +msgid "Tenant ID, Client ID and matching Client Key fields are needed to perform verification of credentials" +msgstr "Les champs ID du locataire, ID du client et les champs Clé du client correspondants sont nécessaires pour effectuer une vérification des informations d'authentification" + +msgid "Tenant Mapping Enabled" +msgstr "Mappage des locataires activé" + +msgid "Tenant Name" +msgstr "Nom locataire" -#: ../app/views/ops/_ldap_forest_entries.html.haml:153 -msgid "Click to delete this forest" -msgstr "Cliquez pour supprimer cette forêt" +msgid "Tenant Quota" +msgstr "Quota locataire" -#: ../app/views/ops/_ldap_forest_entries.html.haml:158 -#: ../app/views/ops/_ldap_forest_entries.html.haml:163 -#: ../app/views/ops/_ldap_forest_entries.html.haml:168 -#: ../app/views/ops/_ldap_forest_entries.html.haml:173 -#: ../app/views/ops/_ldap_forest_entries.html.haml:178 -#: ../app/views/ops/_ldap_forest_entries.html.haml:183 -msgid "Click to edit this forest" -msgstr "Cliquez pour modifier cette forêt" +msgid "Tenant no longer exists" +msgstr "Le locataire n'existe plus" -#: ../app/views/ops/_ldap_region_show.html.haml:58 -msgid "LDAP Domains" -msgstr "Domaines LDAP" +msgid "Tenants" +msgstr "Locataires" -#: ../app/views/ops/_ldap_region_show.html.haml:77 -msgid "User Suffix" -msgstr "Suffixe d'utilisateur" +msgid "Tenants (%{tenants_count})" +msgstr "Locataires (%{tenants_count})" -#: ../app/views/ops/_ldap_seq_form.html.haml:17 -msgid "User Group Sequencing for LDAP Look Up:" -msgstr "Séquencement des groupes d'utilisateurs pour la recherche LDAP :" +msgid "Test E-mail Address" +msgstr "Adresse e-mail de test" -#: ../app/views/ops/_ldap_seq_form.html.haml:75 -msgid "Select one or more consecutive groups to move up or down." -msgstr "Sélectionner un ou plusieurs groupes consécutifs à déplacer vers le haut/bas." +msgid "Text" +msgstr "Texte" -#: ../app/views/ops/_ldap_server_entry.html.haml:7 -msgid "Add this LDAP Server" -msgstr "Ajouter ce Serveur LDAP" +msgid "Text (REGEX)" +msgstr "Texte (REGEX)" -#: ../app/views/ops/_ldap_server_entry.html.haml:44 -msgid "Update this LDAP Server" -msgstr "Mettre à jour ce serveur LDAP" +msgid "Textual View" +msgstr "" -#: ../app/views/ops/_ldap_server_entry.html.haml:93 -msgid "" -msgstr "" +msgid "The %{product} Server is still starting, you have been redirected to the diagnostics page for problem determination" +msgstr "Le serveur %{product} est toujours en train de démarrer, vous avez été redirigé vers la page de diagnostics pour déterminer le problème" -#: ../app/views/ops/_ldap_server_entry.html.haml:98 -msgid "" -msgstr "" +msgid "The %{product} Server is still starting. If this message persists, please contact your %{product} administrator." +msgstr "Le serveur %{product} est toujours en train de démarrer. Si ce message persiste, contactez votre administrateur %{product}." -#: ../app/views/ops/_ldap_server_entry.html.haml:112 -msgid "Deleting the '%{hostname}' LDAP Server, are you sure?" -msgstr "Suppression du serveur LDAP '%{hostname}'. En êtes-vous sûr ?" +msgid "The Enterprise" +msgstr "L'entreprise" -#: ../app/views/ops/_ldap_server_entry.html.haml:113 -msgid "Click to delete this LDAP Server" -msgstr "Cliquez pour supprimer ce serveur LDAP" +msgid "The Host Default VNC Port Range ending port must be equal to or higher than the starting point" +msgstr "Le port de fin de la plage de ports VNC par défaut de l'hôte doit être identique ou supérieur au point de départ" -#: ../app/views/ops/_ldap_server_entry.html.haml:118 -msgid "Click to update this LDAP Server" -msgstr "Cliquez pour mettre à jour ce serveur LDAP" +msgid "The Remote Console is connecting" +msgstr "La console à distance est en cours de connexion" -#: ../app/views/ops/_ldap_server_entry.html.haml:135 -#: ../app/views/ops/_ldap_verify_button.html.haml:4 -#: ../app/views/ops/_ldap_verify_button.html.haml:4 -msgid "Validate the LDAP Settings by binding with the %{host}" -msgstr "Valider les paramètres LDAP par une liaison avec l'%{host}" +msgid "The Subscription Management Service you register with will provide your systems with updates and allow additional management." +msgstr "Le service de gestion des abonnements sur lequel vous vous enregistrez fournira des mises à jour à vos systèmes et permettra une gestion supplémentaire." -#: ../app/views/ops/_ldap_verify_button.html.haml:18 msgid "" -"LDAP Hostname and Port fields are needed to perform verification of LDAP Setti" -"ngs" +"The VM has been suspended, powered off or the connection to the server has been lost. \n" +"This console window will now close." msgstr "" -"Les champs Port et Nom d'hôte LDAP sont nécessaires pour effectuer la vérifica" -"tion des paramètres LDAP" +"La MV a été suspendue, éteinte ou la connexion au serveur a été perdue. \n" +"Cette fenêtre de console va se fermer." -#: ../app/views/ops/_log_viewer.html.haml:4 -msgid "Last 1000 lines from server %{name} [%{id}] in zone %{zone}" -msgstr "Les 1 000 dernières lignes du serveur %{name} [%{id}] dans la zone %{zone}" +msgid "The check count value must be an integer to commit this expression element" +msgstr "La valeur du nombre de contrôle doit être un nombre entier pour valider cet élément d'expression" -#: ../app/views/ops/_logs_selected.html.haml:14 -msgid "Log Depot URI" -msgstr "URI du référentiel de fichiers journaux" +msgid "The current search details have been reset" +msgstr "Les détails de la recherche actuelle ont été réinitialisés" -#: ../app/views/ops/_logs_selected.html.haml:24 -msgid "Last Log Collection" -msgstr "Dernière collecte de journaux" +msgid "The number of Masters must be 1, 3, or 5" +msgstr "Le nombre de masters doit être 1, 3 ou 5" -#: ../app/views/ops/_rbac_details_tab.html.haml:36 -#: ../app/views/ops/_rbac_details_tab.html.haml:41 -msgid "View Users" -msgstr "Afficher les utilisateurs" +msgid "The selected %{label} is not in the current region" +msgstr "Le/la %{label} sélectionné(e) n'est pas dans la région actuelle" -#: ../app/views/ops/_rbac_details_tab.html.haml:43 -msgid "Users (%{users_count})" -msgstr "Utilisateurs (%{users_count})" +msgid "The selected %{models} was deleted" +msgstr "Les %{models} ont été supprimés" -#: ../app/views/ops/_rbac_details_tab.html.haml:50 -#: ../app/views/ops/_rbac_details_tab.html.haml:55 -msgid "View Groups" -msgstr "Afficher les groupes" +msgid "The selected %{model} was deleted" +msgstr "Le %{model} sélectionné a été supprimé" -#: ../app/views/ops/_rbac_details_tab.html.haml:57 -msgid "Groups (%{groups_count})" -msgstr "Groupes (%{groups_count})" +msgid "The selected %{model} were marked as %{action}" +msgstr "Le %{model} sélectionné a été marqué comme %{action}" -#: ../app/views/ops/_rbac_details_tab.html.haml:64 -#: ../app/views/ops/_rbac_details_tab.html.haml:69 -msgid "View Roles" -msgstr "Afficher les rôles" +msgid "The selected %{number} Catalog Item was deleted" +msgid_plural "The selected %{number} Catalog Items were deleted" +msgstr[0] "Le %{number} élément de catalogue sélectionné a été supprimé" +msgstr[1] "Les %{number} éléments de catalogue sélectionnés ont été supprimés" -#: ../app/views/ops/_rbac_details_tab.html.haml:71 -msgid "Roles (%{roles_count})" -msgstr "Rôles (%{roles_count})" +msgid "The selected %{record} was deleted" +msgstr "Le %{record} sélectionné a été supprimé" -#: ../app/views/ops/_rbac_details_tab.html.haml:78 -#: ../app/views/ops/_rbac_details_tab.html.haml:83 -msgid "View Tenants" -msgstr "Afficher les locataires" +msgid "The selected %{schedules} were deleted" +msgstr "Les %{schedules} sélectionnés ont été supprimés" -#: ../app/views/ops/_rbac_details_tab.html.haml:85 -msgid "Tenants (%{tenants_count})" -msgstr "Locataires (%{tenants_count})" +msgid "The selected %{schedules} were disabled" +msgstr "Les %{schedules} sélectionnés ont été désactivés" -#: ../app/views/ops/_rbac_group_details.html.haml:11 -msgid "Group Information" -msgstr "Informations sur le groupe" +msgid "The selected %{schedules} were enabled" +msgstr "Les %{schedules} sélectionnés ont été activés" -#: ../app/views/ops/_rbac_group_details.html.haml:45 -msgid "(Look up %{authentication_mode_name} Groups)" -msgstr "(Rechercher %{authentication_mode_name} groupes)" +msgid "The selected %{tables} were deleted" +msgstr "Les %{tables} sélectionnées ont été supprimées" -#: ../app/views/ops/_rbac_group_details.html.haml:63 -#: ../app/views/ops/_rbac_user_details.html.haml:202 -msgid "View this Role" -msgstr "Afficher ce rôle" +msgid "The selected %{table} was deleted" +msgstr "La %{table} sélectionnée a été supprimée" -#: ../app/views/ops/_rbac_group_details.html.haml:88 -msgid "Project/Tenant" -msgstr "Projet/locataire" +msgid "The selected Cloud Network was deleted" +msgstr "" -#: ../app/views/ops/_rbac_group_details.html.haml:100 -msgid "View this Project" -msgstr "Afficher ce projet" +msgid "The selected Cloud Subnet was deleted" +msgstr "" -#: ../app/views/ops/_rbac_group_details.html.haml:100 -msgid "View this Tenant" -msgstr "Afficher ce locataire" +msgid "The selected Cloud Volume Snapshot was deleted" +msgstr "Le cliché de volume cloud sélectionné a été supprimé" -#: ../app/views/ops/_rbac_group_details.html.haml:120 -msgid "Users in this Group" -msgstr "Utilisateurs du groupe" +msgid "The selected Filter can not be set as Default because it requires user input" +msgstr "Le filtre sélectionné ne peut pas être défini comme filtre par défaut car il exige une saisie de l'utilisateur" -#: ../app/views/ops/_rbac_group_details.html.haml:127 -msgid "View this User" -msgstr "Afficher cet utilisateur" +msgid "The selected Filter record was not found" +msgstr "L'enregistrement de filtre sélectionné est introuvable" -#: ../app/views/ops/_rbac_group_details.html.haml:148 -msgid "LDAP Group Look Up" -msgstr "Recherche de groupe LDAP" +msgid "The selected Floating IP was deleted" +msgstr "" -#: ../app/views/ops/_rbac_group_details.html.haml:157 -#: ../app/views/ops/_rbac_group_details.html.haml:191 -msgid "User to Look Up" -msgstr "Utilisateur à rechercher" +msgid "The selected Router was deleted" +msgstr "Le router sélectionné a été supprimé" -#: ../app/views/ops/_rbac_group_details.html.haml:266 -msgid "Assign Filters" -msgstr "Assigner des Filtres" +msgid "The selected Saved Report was deleted" +msgstr "Le rapport enregistré sélectionné a été supprimé" -#: ../app/views/ops/_rbac_group_details.html.haml:266 -msgid "Assigned Filters (read only)" -msgstr "Filtres assignés (lecture seule)" +msgid "The selected Schedule has been queued to run" +msgstr "le planning sélectionné a été mis en file d'attente pour exécution" -#: ../app/views/ops/_rbac_group_details.html.haml:279 -msgid "%{title_for_hosts} & %{title_for_clusters}" -msgstr "%{title_for_hosts} & %{title_for_clusters}" +msgid "The selected Schedules have been queued to run" +msgstr "Les plannings sélectionnés ont été mis en file d'attente pour exécution" -#: ../app/views/ops/_rbac_group_details.html.haml:288 -msgid "This user is limited to items with the selected tags." -msgstr "Cet utilisateur est limité aux éléments avec les balises sélectionnées." +msgid "The selected Schedules were disabled" +msgstr "Les plannings sélectionnés ont été désactivés" -#: ../app/views/ops/_rbac_group_details.html.haml:299 -msgid "This user is limited to the selected items and their children." -msgstr "Cet utilisateur est limité aux éléments sélectionnés et à leurs enfants." +msgid "The selected Schedules were enabled" +msgstr "Les plannings sélectionnés ont été activés" -#: ../app/views/ops/_rbac_group_details.html.haml:319 -msgid "This user is limited to the selected folders and their children." -msgstr "Cet utilisateur est limité aux dossiers sélectionnés et à leurs enfants." +msgid "The selected Security Group was deleted" +msgstr "" -#: ../app/views/ops/_rbac_role_details.html.haml:14 -msgid "Role Information" -msgstr "Informations sur le rôle" +msgid "The selected Task was cancelled" +msgstr "La tâche sélectionnée a été annulée" -#: ../app/views/ops/_rbac_role_details.html.haml:49 -msgid "Access Restriction for Services, VMs, and Templates" -msgstr "" +msgid "The selected datasources were removed" +msgstr "Les sources de données sélectionnées ont été supprimées" -#: ../app/views/ops/_rbac_role_details.html.haml:62 -msgid "none" -msgstr "aucun" +msgid "The selected job no longer exists, Delete all older Tasks was not completed" +msgstr "La tâche sélectionnée n'existe plus, l'opération « Supprimer les tâches les plus anciennes » n'est pas terminée." -#: ../app/views/ops/_rbac_role_details.html.haml:79 -msgid "Groups Using this Role" -msgstr "Groupes à l'aide de ce rôle" +msgid "The selected snapshot will be permanently deleted. Are you sure you want to delete the selected snapshot?" +msgstr "Le cliché sélectionné sera définitivement supprimé. Voulez-vous vraiment supprimer ce cliché ?" -#: ../app/views/ops/_rbac_role_details.html.haml:86 -#: ../app/views/ops/_rbac_tenant_details.html.haml:68 -#: ../app/views/ops/_rbac_user_details.html.haml:167 -msgid "View this Group" -msgstr "Afficher ce groupe" +msgid "The server is initializing; access is being retried every 10 seconds . . ." +msgstr "Le serveur est en cours d'initialisation ; nouvelle tentative d'accès toutes les 10 secondes . . ." -#: ../app/views/ops/_rbac_role_details.html.haml:98 -msgid "Product Features (Editing)" -msgstr "Fonctionnalités du produit (Modification)" +msgid "The test email is being delivered, check \"%{email}\" to verify it was successful" +msgstr "L'email de test est en cours de transmission, vérifiez \"%{email}\" pour confirmer sa transmission" -#: ../app/views/ops/_rbac_role_details.html.haml:101 -msgid "Product Features (Read Only)" -msgstr "Fonctionnalités du produit (Lecture seule)" +msgid "The user is not authorized for this task or item." +msgstr "L'utilisateur n'est pas autorisé pour cette tâche ou cet élément." -#: ../app/views/ops/_rbac_role_details.html.haml:118 -msgid "Double click a feature to open/close all children." -msgstr "Double-cliquez sur une fonctionnalité pour ouvrir/fermer tous les enfants." +msgid "The user's role is not authorized for any access, please contact the administrator!" +msgstr "Le rôle de l'utilisateur n'a pas autorisation d'accès, veuillez contacter l'administrateur." -#: ../app/views/ops/_rbac_tag_box.html.haml:19 -msgid "No %{tenant_name} Tags have been assigned" -msgstr "Aucune balise %{tenant_name} n'a été attribuée" +msgid "The web-based VNC console is not available because the VM is not powered on" +msgstr "La console VNC sur le Web n'est pas disponible car la MV n'est pas activée" -#: ../app/views/ops/_rbac_tenant_details.html.haml:8 -msgid "%{type} Information" -msgstr "%{type} Information" +msgid "The web-based console is not available because the VM is not powered on" +msgstr "La console Web n'est pas disponible car la MV n'est pas activée" -#: ../app/views/ops/_rbac_tenant_details.html.haml:45 -msgid "Parent" -msgstr "Parent" +msgid "The web-based console is only available on IE, Firefox or Chrome (Windows/Linux)" +msgstr "La console Web n'est disponible que sur IE, Firefox ou Chrome (Windows/Linux)" -#: ../app/views/ops/_rbac_tenant_details.html.haml:49 -msgid "View Parent Tenant" -msgstr "Afficher le locataire parent" +msgid "The widget \"%{widget_name}\" is already part of the edited dashboard" +msgstr "Le composant graphique \"%{widget_name}\" fait déjà partie du tableau de bord modifié" -#: ../app/views/ops/_rbac_tenant_details.html.haml:59 -msgid "Groups in this %{type}" -msgstr "Groupes de ce %{type}" +msgid "There are no Cloud Volumes available to attach to this Instance." +msgstr "" -#: ../app/views/ops/_rbac_tenant_details.html.haml:85 -msgid "Child Tenants" -msgstr "Locataires enfants" +msgid "There are no Floating IPs available to this Instance." +msgstr "Il n'y a pas d'IP flottante disponible pour cette instance." -#: ../app/views/ops/_rbac_tenant_details.html.haml:99 -msgid "Click to view child Tenant" -msgstr "Cliquez pour afficher le locataire enfant" +msgid "There are no running Hosts with valid credentials for this Datastore" +msgstr "" -#: ../app/views/ops/_rbac_tenant_details.html.haml:125 -msgid "Click to view child TenantProject" -msgstr "Cliquez pour afficher le projet du locataire enfant" +msgid "There is an error in the selected expression element, perhaps it was imported or edited manually." +msgstr "L'élément d'expression sélectionné contient une erreur, il a peut-être été importé ou modifié manuellement." -#: ../app/views/ops/_rbac_tenant_details.html.haml:143 -msgid "Note: Total quota can be restricted by quotas defined at upper levels" +msgid "There should be at least 2 Dashboards to Edit Sequence" msgstr "" -"Remarque : le quota total peut être limité par des quotas définis à des niveau" -"x supérieurs." -#: ../app/views/ops/_rbac_user_details.html.haml:17 -msgid "User Information" -msgstr "Informations sur l'utilisateur" +msgid "These VMs can not be migrated together." +msgstr "" -#: ../app/views/ops/_rbac_user_details.html.haml:180 -msgid "" -msgstr "" +msgid "Thin Provisioning Used" +msgstr "Mise en service de base utilisée" -#: ../app/views/ops/_schedule_form_timer.html.haml:5 -#: ../app/views/ops/_schedule_show.html.haml:187 -msgid "Timer Options" -msgstr "Options Minuterie" +msgid "This %{klass} is read only and cannot be modified" +msgstr "Cette %{klass} est en lecture seule et ne peut pas être modifiée" -#: ../app/views/ops/_schedule_form_timer.html.haml:13 -#: ../app/views/report/_schedule_form_timer.html.haml:15 -msgid "Run" -msgstr "Exécuter" +msgid "This Action belongs to a read only Policy and cannot be modified" +msgstr "Cette action appartient à une stratégie en lecture seule et ne peut pas être modifiée" -#: ../app/views/ops/_schedule_form_timer.html.haml:26 -#: ../app/views/report/_schedule_form_timer.html.haml:32 -#: ../app/views/report/_schedule_form_timer.html.haml:44 -#: ../app/views/report/_schedule_form_timer.html.haml:56 -#: ../app/views/report/_schedule_form_timer.html.haml:68 -msgid "every" -msgstr "chaque" +msgid "This Action is not assigned to any Policies." +msgstr "Cette action n'est affectée à aucune stratégie." -#: ../app/views/ops/_schedule_form_timer.html.haml:57 -#: ../app/views/report/_schedule_form_timer.html.haml:103 -msgid "* Changing the Time Zone will reset the Starting Date and Time fields below" -msgstr "" -"*Changer la zone de temps réinitialisera la date initiale et les champs de dat" -"e suivants" +msgid "This Alert is not assigned to any Alert Profiles." +msgstr "Cette alerte n'est affectée à aucun profil d'alerte." -#: ../app/views/ops/_schedule_form_timer.html.haml:66 -#: ../app/views/report/_schedule_form_timer.html.haml:111 -msgid "Starting Date" -msgstr "Date de début" +msgid "This Alert is not referenced by any Actions." +msgstr "Cette alerte n'est référencée par aucune action." -#: ../app/views/ops/_schedule_form_timer.html.haml:96 -#: ../app/views/report/_schedule_form_timer.html.haml:126 -msgid "Starting Time" -msgstr "Heure de début" +msgid "This Condition is not assigned to any Policies." +msgstr "Cette condition n'est affectée à aucune stratégie." + +msgid "This Event belongs to a read only Policy and cannot be modified" +msgstr "Cet événement appartient à une stratégie en lecture seule et ne peut pas être modifié" + +msgid "This Event has no false Actions." +msgstr "Cet événement n'a aucune action False." + +msgid "This Event has no true Actions." +msgstr "Cet événement n'a aucune action True." + +msgid "This Event is not assigned to any Policies." +msgstr "Cet événement n'est affecté à aucune stratégie." + +msgid "This Group is Read Only and can not be deleted" +msgstr "Ce groupe est en lecture seule et ne peut pas être supprimé" + +msgid "This Group is Read Only and can not be edited" +msgstr "Ce groupe est en lecture seule et ne peut pas être modifié" + +msgid "This Host can not be provisioned because the MAC address is not known" +msgstr "Cet hôte ne peut pas être mis en service car l'adresse MAC n'est pas connue" -#: ../app/views/ops/_schedule_show.html.haml:44 -msgid "Automate Task" -msgstr "Automatiser la tâche" +msgid "This Hour" +msgstr "Cette heure" -#: ../app/views/ops/_schedule_show.html.haml:133 -msgid "Object Type" -msgstr "Type d'objet" +msgid "This Instance has no attached Cloud Volumes." +msgstr "" -#: ../app/views/ops/_schedule_show.html.haml:146 -msgid "Object Selection" -msgstr "Sélection d'objet" +msgid "This Month" +msgstr "Ce mois" -#: ../app/views/ops/_schedule_show.html.haml:191 -#: ../app/views/report/_show_schedule.html.haml:82 -#: ../app/views/report/_widget_show.html.haml:286 -msgid "Run At" -msgstr "Exécuter à" +msgid "This Month (partial)" +msgstr "Ce mois (partiel)" -#: ../app/views/ops/_schedule_show.html.haml:201 -#: ../app/views/report/_report_info.html.haml:144 -#: ../app/views/report/_show_schedule.html.haml:92 -#: ../app/views/report/_widget_show.html.haml:87 -msgid "Last Run Time" -msgstr "Heure de la dernière exécution" +msgid "This Policy is not assigned to any Profiles." +msgstr "Cette stratégie n'est affectée à aucun profil." -#: ../app/views/ops/_schedule_show.html.haml:215 -#: ../app/views/report/_report_info.html.haml:149 -#: ../app/views/report/_show_schedule.html.haml:106 -#: ../app/views/report/_widget_show.html.haml:296 -msgid "Next Run Time" -msgstr "Heure de la prochaine exécution" +msgid "This Quarter" +msgstr "Ce trimestre" -#: ../app/views/ops/_selected.html.haml:8 -msgid "Selected Item" -msgstr "Élément sélectionné" +msgid "This Role is Read Only and can not be deleted" +msgstr "Ce rôle est en lecture seule et ne peut pas être supprimé" -#: ../app/views/ops/_selected_by_roles.html.haml:28 -#: ../app/views/ops/_selected_by_servers.html.haml:209 -msgid "Max Concurrent" -msgstr "Concurrents max." +msgid "This Role is Read Only and can not be edited" +msgstr "Ce rôle est en lecture seule et ne peut pas être modifié" -#: ../app/views/ops/_selected_by_roles.html.haml:32 -#: ../app/views/ops/_selected_by_servers.html.haml:213 -msgid "unlimited" -msgstr "Illimité" +msgid "This Role is already active on this Server" +msgstr "Ce rôle est déjà actif sur ce serveur" -#: ../app/views/ops/_selected_by_roles.html.haml:78 -#: ../app/views/ops/_selected_by_servers.html.haml:194 -msgid "Priority" -msgstr "Priorité" +msgid "This Role is in use by one or more Groups and can not be deleted" +msgstr "Ce rôle est utilisé par un ou plusieurs groupes et ne peut pas être supprimé" -#: ../app/views/ops/_selected_by_roles.html.haml:84 -#: ../app/views/ops/_selected_by_servers.html.haml:199 -msgid "primary" -msgstr "primaire" +msgid "This Server's Virtual Machine has not been identified." +msgstr "La MV de ce serveur n'a pas été identifiée." -#: ../app/views/ops/_selected_by_roles.html.haml:87 -#: ../app/views/ops/_selected_by_servers.html.haml:202 -msgid "secondary" -msgstr "secondaire" +msgid "This Template is already orderable" +msgstr "Modèle déjà organisable" -#: ../app/views/ops/_selected_by_roles.html.haml:90 -#: ../app/views/ops/_selected_by_servers.html.haml:205 -msgid "normal" -msgstr "normal" +msgid "This Template is not orderable" +msgstr "Modèle non organisable" -#: ../app/views/ops/_selected_by_roles.html.haml:96 -msgid "Process ID" -msgstr "ID du processus" +msgid "This Template will revert to selected snapshot. Are you sure you want to revert to the selected snapshot?" +msgstr "Ce modèle reviendra au cliché sélectionné. Voulez-vous vraiment revenir au cliché sélectionné ?" -#: ../app/views/ops/_selected_by_roles.html.haml:109 -#: ../app/views/ops/_selected_by_servers.html.haml:61 -#: ../app/views/ops/_server_desc.html.haml:39 -msgid "Started On" -msgstr "Lancé le" +msgid "This VM will revert to selected snapshot. Are you sure you want to revert to the selected snapshot?" +msgstr "Cette MV reviendra au cliché sélectionné. Voulez-vous vraiment revenir au cliché sélectionné ?" -#: ../app/views/ops/_selected_by_roles.html.haml:123 -#: ../app/views/ops/_selected_by_servers.html.haml:75 -msgid "Stopped On" -msgstr "Arrêté le" +msgid "This Week" +msgstr "Cette semaine" -#: ../app/views/ops/_selected_by_roles.html.haml:163 -#: ../app/views/ops/_selected_by_servers.html.haml:115 -#: ../app/views/ops/_server_desc.html.haml:73 -msgid "CPU Time" -msgstr "Temps processeur" +msgid "This Week (partial)" +msgstr "Cette semaine (partielle)" -#: ../app/views/ops/_selected_by_roles.html.haml:176 -#: ../app/views/ops/_selected_by_servers.html.haml:128 -#: ../app/views/ops/_server_desc.html.haml:83 -msgid "CPU Percent" -msgstr "Pourcentage de processeur" +msgid "This Widget content generation is already running or queued up" +msgstr "La génération du contenu de ce composant graphique est déjà en cours ou en file d'attente" -#: ../app/views/ops/_selected_by_roles.html.haml:189 -#: ../app/views/ops/_selected_by_servers.html.haml:141 -#: ../app/views/ops/_server_desc.html.haml:93 -msgid "Version / Build" -msgstr "Version/Compilation" +msgid "This Year" +msgstr "Cette année" -#: ../app/views/ops/_selected_by_servers.html.haml:172 -msgid "%{role} on %{model}: %{name} [%{id}]" -msgstr "%{role} sur %{model}: %{name} [%{id}]" +msgid "This Zone do not have Log Depot settings configured, collection not allowed" +msgstr "Cette zone n'a pas de paramètres de Dêpot des journaux configuré, la collecte n'est pas autorisée" -#: ../app/views/ops/_selected_by_servers.html.haml:186 -msgid "active" -msgstr "actif" +msgid "This element is disabled because it is read only" +msgstr "Cet élément est désactivé car il est en lecture seule" -#: ../app/views/ops/_selected_by_servers.html.haml:189 -msgid "unavailable" -msgstr "indisponible" +msgid "This element should be removed and recreated or you can report the error to your %{product} administrator." +msgstr "Cet élément doit être supprimé et recréé ou vous pouvez signaler l'erreur ) votre administrateur %{product}." -#: ../app/views/ops/_settings_advanced_tab.html.haml:18 -msgid "Caution: Manual changes to configuration files can disable the Server!" +msgid "This object already exists in the database with the same name" msgstr "" -"Attention : les modifications manuelles apportées aux fichiers de configuratio" -"n peuvent désactiver le serveur !" - -#: ../app/views/ops/_settings_authentication_tab.html.haml:16 -msgid "Session Timeout" -msgstr "Expiration du délai d'attente de la session" -#: ../app/views/ops/_settings_authentication_tab.html.haml:55 -msgid "External (httpd)" -msgstr "Externe (httpd)" +msgid "This page requires the VMware MKS plugin. Install the plugin and try again." +msgstr "Cette page exige l'extension VMware MKS. Installez l'extension et recommencez." -#: ../app/views/ops/_settings_authentication_tab.html.haml:80 -msgid "LDAP Host Names" -msgstr "Noms d'hôte LDAP" +msgid "This policy does not currently respond to any Events." +msgstr "Cette stratégie ne répond actuellement à aucun événement." -#: ../app/views/ops/_settings_authentication_tab.html.haml:157 -msgid "Domain Prefix: \\" -msgstr "Préfixe de domaine : \\" +msgid "This report isn't generated yet. It cannot be rendered." +msgstr "" -#: ../app/views/ops/_settings_authentication_tab.html.haml:212 -msgid "Amazon Primary AWS Account Settings for IAM" -msgstr "Paramètres du compte Amazon AWS principal pour IAM" +msgid "This role can only be managed at the Region level" +msgstr "Ce rôle ne peut être géré qu'au niveau Région" -#: ../app/views/ops/_settings_authentication_tab.html.haml:220 -msgid "Access Key" -msgstr "Clé d''Accès" +msgid "This user is limited to items with the selected tags." +msgstr "Cet utilisateur est limité aux éléments avec les balises sélectionnées." -#: ../app/views/ops/_settings_authentication_tab.html.haml:237 -msgid "Secret Key" -msgstr "Clé secrète" +msgid "This user is limited to the selected folders and their children." +msgstr "Cet utilisateur est limité aux dossiers sélectionnés et à leurs enfants." -#: ../app/views/ops/_settings_authentication_tab.html.haml:284 -msgid "Default Group for Users" -msgstr "Groupe par défaut pour les utilisateurs" +msgid "This user is limited to the selected items and their children." +msgstr "Cet utilisateur est limité aux éléments sélectionnés et à leurs enfants." -#: ../app/views/ops/_settings_authentication_tab.html.haml:412 -msgid "Get User Groups from Amazon" -msgstr "Obtenir des groupes d'utilisateurs d'Amazon" +msgid "This will show the chart and the entire report (all rows) in your browser. Do you want to proceed?" +msgstr "Cette action affichera le graphique et le rapport complet (toutes les lignes) dans votre navigateur. Voulez-vous continuer ?" -#: ../app/views/ops/_settings_authentication_tab.html.haml:438 -msgid "External Authentication (httpd) Settings" -msgstr "Paramètres d'authentification externe (httpd)" +msgid "This will show the entire report (all rows) in your browser. Do you want to proceed?" +msgstr "Cette action affichera le rapport complet (toutes les lignes) dans votre navigateur. Voulez-vous continuer ?" -#: ../app/views/ops/_settings_authentication_tab.html.haml:447 -msgid "Enable Single Sign-On" -msgstr "Activer Single Sign-On" +msgid "This will show the entire report (all rows) in your browser. Do you want to proceed?" +msgstr "Cette action affichera le rapport complet (toutes les lignes) dans votre navigateur. Voulez-vous continuer ?" -#: ../app/views/ops/_settings_authentication_tab.html.haml:462 -msgid "Enable SAML" -msgstr "Activer SAML" +msgid "Thursday" +msgstr "Jeudi" -#: ../app/views/ops/_settings_authentication_tab.html.haml:474 -msgid "Disable Local Login" -msgstr "Désactiver la connexion locale" +msgid "Tile View" +msgstr "Mosaïque" -#: ../app/views/ops/_settings_authentication_tab.html.haml:501 -msgid "Get User Groups from External Authentication (httpd)" -msgstr "Obtenir des groupes d'utilisateurs de l'authentification externe (httpd)" +msgid "Time" +msgstr "" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:18 -msgid "Capture C & U Data" -msgstr "Capturer les données C & U" +msgid "Time Profile" +msgstr "Profil de temps" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:28 -msgid "Click to add a new category" -msgstr "Cliquez pour ajouter une nouvelle catégorie" +msgid "Time Profile Information" +msgstr "Informations sur le profil de temps" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:32 -msgid "" -msgstr "" +msgid "Time Profiles" +msgstr "Profils de temps" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:56 -msgid "Click to edit this category" -msgstr "Cliquez pour modifier cette catégorie" +msgid "Time Zone" +msgstr "Fuseau horaire" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:90 -msgid "Category '%{category_name}' cannot be deleted" -msgstr "Impossible de supprimer la catégorie '%{category_name}'" +msgid "Time threshold for the field criteria must be selected" +msgstr "La limite de temps de ce champ de critère doit être sélectionnée" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:101 -msgid "Are you sure you want to delete category '%{category_name}'?" -msgstr "Voulez-vous vraiment supprimer la catégorie '%{category_name}' ?" +msgid "TimeProfile \"%{name}\": Error during 'save': %{error_message}" +msgstr "Profil de temps \"%{name}\" : Erreur lors de l'enregistrement : %{error_message}" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:102 -msgid "Click to delete this category" -msgstr "Cliquez pour supprimer cette catégorie" +msgid "Timeline" +msgstr "Chronologie" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:25 -msgid "Collect for All %{clusters}" -msgstr "Collecter pour tous les %{clusters}" +msgid "Timeline Event" +msgstr "Mettre en chronologie un événement" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:41 -msgid "" -"Note: Collect for All %{clusters} must be checked to be able to collect C & U " -"data from Cloud Providers such as Red Hat OpenStack or Amazon EC2" -msgstr "" -"Remarque : la collecte pour tous les %{clusters} doit être sélectionnée pour p" -"ermettre la collecte des données de capacité et d'utilisation à partir des fou" -"rnisseurs de cloud comme Red Hat OpenStack ou Amazon EC2" +msgid "Timeline Preview (up to 50 rows)" +msgstr "Aperçu de la chronologie (jusqu'à 50 lignes)" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:48 -msgid "No %{clusters} found in the current region." -msgstr "Aucun %{clusters} trouvé dans la région actuelle." +msgid "Timeline Settings" +msgstr "Paramètres de chronologie" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:53 -msgid "Enable Collection by %{clusters}" -msgstr "Activer la collecte par %{clusters}" +msgid "Timeline View" +msgstr "Vue chronologie" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:69 -msgid "" -"VM data will be collected for VMs under selected %{hosts} only. Data is collec" -"ted for a %{cluster} and all of its %{hosts} when at least one %{host} is sele" -"cted." -msgstr "" -"Les données de la MV seront collectées pour les MV pour les %{hosts} sélection" -"nés uniquement. Les données sont collectées pour un %{cluster} et tous ses %{" -"hosts} quand un %{host} au moins est sélectionné." +msgid "Timeline tab is not available unless at least 1 time field has been selected" +msgstr "L'onglet Chronologie n'est pas disponible tant qu'au moins 1 champ de temps n'a pas été sélectionné" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:84 -msgid "Collect for All Datastores" -msgstr "Collecter pour tous les magasins de données" +msgid "Timeline tab is not available until at least 1 field has been selected" +msgstr "L'onglet Chronologie n'est pas disponible tant qu'au moins 1 champ de temps n'a pas été sélectionné" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:101 -msgid "No Datastores found in the current region." -msgstr "Aucun magasin de données trouvé dans la région actuelle." +msgid "Timelines" +msgstr "Chronologies" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:106 -msgid "Enable Collection by Datastore" -msgstr "Activer la collecte par le magasin de données" +msgid "Timelines for %{virtual_machine} \"%{name}\"" +msgstr "Chronologies pour la %{virtual_machine} \"%{name}\"" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:5 -msgid "Custom Logo Image (Shown on top right of all screens)" +msgid "Timelines for Container \"%{container_name}\"" msgstr "" -"Image du logo personnalisé (affiché dans le coin supérieur droit de tous les é" -"crans)" - -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:11 -msgid "No custom logo image has been uploaded yet." -msgstr "Aucune image de logo personnalisée n'a été téléchargée pour le moment." -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:30 -msgid "* Requirements: File-type - PNG; Dimensions - 350x70." -msgstr "* ré-requis: type-fichier - PNG; Dimensions - 350x70." +msgid "Timeout" +msgstr "Délai d'attente" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:43 -msgid "Use Custom Logo Image" -msgstr "Utiliser une image de logo personnalisée" +msgid "Timeout (ms)" +msgstr "Délai d'attente (ms)" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:55 -msgid "Custom Login Background Image" -msgstr "Connexion personnalisée - Image d'arrière-plan" +msgid "Timeout is required" +msgstr "Le délai d'attente est obligatoire" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:67 -msgid "Image shown at 25% of actual size" -msgstr "Image affichée à 25 % de sa taille réelle" +msgid "Timeout max is 60" +msgstr "Le délai d'attente maximum est 60" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:74 -msgid "No custom login image has been uploaded yet." -msgstr "Aucune image de connexion personnalisée n'a été téléchargée pour le moment." +msgid "Timeout min is 0" +msgstr "Le délai d'attente minimum est 0" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:93 -msgid "* Requirements: File-type - PNG; Dimensions - 1280x1000." -msgstr "* Pré-requis: type-fichier - PNG; Dimensions - 1280x1000." +msgid "Timer" +msgstr "Minuterie" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:107 -msgid "Use Custom Login Background Image" -msgstr "Utiliser une image d'arrièra-plan de connexion personnalisée" +msgid "Timer Options" +msgstr "Options Minuterie" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:121 -msgid "Custom Login Panel Text (" -msgstr "Connexion personnalisée - Texte du panneau (" +msgid "Timestamp" +msgstr "Horodatage" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:145 -msgid "Use Custom Login Text" -msgstr "Utiliser un texte de connexion personnalisé" +msgid "Timezone" +msgstr "Fuseau horaire" -#: ../app/views/ops/_settings_details_tab.html.haml:10 -msgid "Region Information" -msgstr "Informations sur la région" +msgid "Title" +msgstr "Titre" -#: ../app/views/ops/_settings_details_tab.html.haml:49 -#: ../app/views/ops/_settings_details_tab.html.haml:54 -msgid "Edit this Region" -msgstr "Modifier cette région" +msgid "To" +msgstr "À" -#: ../app/views/ops/_settings_details_tab.html.haml:64 -#: ../app/views/ops/_settings_details_tab.html.haml:69 -msgid "View Analysis Profiles" -msgstr "Afficher tous les profils d'analyse" +msgid "To Address" +msgstr "Adresse de destination" -#: ../app/views/ops/_settings_details_tab.html.haml:79 -#: ../app/views/ops/_settings_details_tab.html.haml:84 -msgid "View Zones" -msgstr "Afficher les zones" +msgid "To All" +msgstr "À tous" -#: ../app/views/ops/_settings_details_tab.html.haml:94 -#: ../app/views/ops/_settings_details_tab.html.haml:99 -msgid "View Schedules" -msgstr "Afficher les plannings" +msgid "To All Users" +msgstr "À tous les utilisateurs" -#: ../app/views/ops/_settings_details_tab.html.haml:110 -#: ../app/views/ops/_settings_details_tab.html.haml:115 -msgid "View LDAP Regions" -msgstr "Afficher les régions LDAP" +msgid "To Domain" +msgstr "Domaine de destination" -#: ../app/views/ops/_settings_details_tab.html.haml:117 -msgid "LDAP Regions" -msgstr "Régions LDAP" +msgid "To E-mail" +msgstr "Email de destination" -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:45 -#: ../app/views/ops/_zone_form.html.haml:57 -msgid "SmartProxy Server IP" -msgstr "IP du serveur SmartProxy" +msgid "To E-mail Address" +msgstr "Adresse e-mail de destination" -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:61 -#: ../app/views/ops/_settings_server_tab.html.haml:329 -#: ../app/views/ops/_zone_form.html.haml:78 -msgid "NTP Servers" -msgstr "Serveurs NTP" +msgid "To configure the Host Default VNC Port Range, both start and end ports are required" +msgstr "Pour configurer la plage de ports VNC par défaut de l'hôte, les ports de début et de fin sont obligatoires" -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:78 -msgid "Max active VM Scans" -msgstr "Analyses de MV actives max." +msgid "Today" +msgstr "Aujourd'hui" -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:166 -msgid "No Servers Found." -msgstr "Aucun serveur trouvé." +msgid "Today (partial)" +msgstr "Aujourd'hui (partiel)" -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:172 -msgid "View this MiqServer" -msgstr "Afficher ce MiqServer" +msgid "Toggle All/None" +msgstr "Basculer Tous/Aucun" -#: ../app/views/ops/_settings_import_tab.html.haml:3 -#: ../app/views/ops/_settings_import_tags_tab.html.haml:6 -msgid "Messages" -msgstr "Messages" +msgid "Toggle Fullscreen" +msgstr "" -#: ../app/views/ops/_settings_import_tab.html.haml:9 -msgid "Upload Custom Variable Values" -msgstr "Télécharger les valeurs variables personnalisées" +msgid "Toggle Maintenance" +msgstr "Basculer la maintenance" -#: ../app/views/ops/_settings_import_tab.html.haml:25 -msgid "Vm" -msgstr "MV" +msgid "Toggle Maintenance Mode" +msgstr "Basculer le mode de maintenance" -#: ../app/views/ops/_settings_import_tab.html.haml:54 -#: ../app/views/ops/_settings_import_tags_tab.html.haml:39 -msgid "* Requirements: CSV formatted file." -msgstr "* Pré-requis: fichier au format CSV." +msgid "Toggle Scheduling" +msgstr "Basculer l'ordonnancement" -#: ../app/views/ops/_settings_import_tags_tab.html.haml:15 -msgid "Upload %{customer_name} Tag Assignments for VMs" -msgstr "Télécharge les affectations de balise de %{customer_name} pour les MV" +msgid "Toggle Scheduling for Cloud Service" +msgstr "Basculer l'ordonnancement pour un service cloud" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:10 -msgid "Container Entity" -msgstr "Entité du conteneur" +msgid "Toggle Scheduling for this Cloud Service?" +msgstr "Basculer l'ordonnancement pour ce service cloud ?" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:12 -msgid "Container Label" -msgstr "Libellé du conteneur" +msgid "Toggle maintenance mode for this item" +msgstr "Basculer le mode de maintenance pour cet élément" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:22 -msgid "map a new label to tag" -msgstr "mapper un nouveau libellé à la balise" +msgid "Toggle maintenance mode for this item?" +msgstr "Basculer le mode de maintenance pour cet élément ?" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:26 -msgid "" -msgstr "" +msgid "Toggle navigation" +msgstr "Basculer la navigation" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:41 -msgid "Click to edit this mapping rule" -msgstr "Cliquez pour modifier cette règle de mappage" +msgid "Token" +msgstr "Jeton" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:59 -msgid "Are you sure you want to delete mapping '%{label_name}'?" -msgstr "Êtes-vous sûr de vouloir supprimer le mappage '%{label_name}' ?" +msgid "Token-Endpoint" +msgstr "Jeton-Extrémité" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:60 -msgid "Click to delete this mapping" -msgstr "Cliquez pour supprimer ce mappage" +msgid "Token-Endpoint:" +msgstr "Jeton-Extrémité :" -#: ../app/views/ops/_settings_list_tab.html.haml:13 -msgid "View this Zone's settings" -msgstr "Afficher les paramètres de cette zone" +msgid "Tokens do not match" +msgstr "Les jetons ne correspondent pas" -#: ../app/views/ops/_settings_list_tab.html.haml:27 -msgid " (current)" -msgstr "(courant)" +msgid "Top Level" +msgstr "" -#: ../app/views/ops/_settings_replication_tab.html.haml:106 -msgid "Subscriptions" -msgstr "Abonnements" +msgid "Top values to show" +msgstr "Afficher les plus grandes valeurs" -#: ../app/views/ops/_settings_replication_tab.html.haml:113 -msgid "At least 1 subscription must be added to save server replication type" +msgid "Topology" +msgstr "Topologie" + +msgid "Topology Default Items in View" msgstr "" -"Au moins 1 abonnement doit être ajouté pour enregistrer le type de réplication" -" du serveur" -#: ../app/views/ops/_settings_replication_tab.html.haml:123 -msgid "Add Subscription" -msgstr "Ajouter une souscription" +msgid "Topology View" +msgstr "Vue Topologie" -#: ../app/views/ops/_settings_replication_tab.html.haml:146 -msgid "Central Admin Enabled" -msgstr "Admin Centrale activée" +msgid "Total %{title} CPU Cores" +msgstr "Total des cœurs de processeur de %{title}" -#: ../app/views/ops/_settings_replication_tab.html.haml:208 -#: ../app/views/ops/_settings_replication_tab.html.haml:420 -msgid "Accept" -msgstr "Accepter" +msgid "Total %{title} CPU Resources" +msgstr "Total des ressources de processeur de %{title}" -#: ../app/views/ops/_settings_replication_tab.html.haml:245 -#: ../app/views/ops/_settings_replication_tab.html.haml:457 -#: ../app/views/report/_menu_form1.html.haml:102 -#: ../app/views/report/_menu_form2.html.haml:183 -msgid "Discard" -msgstr "Ignorer" +msgid "Total %{title} CPUs" +msgstr "Total des processeurs de %{title}" -#: ../app/views/ops/_settings_replication_tab.html.haml:350 -#: ../app/views/vm_common/_reconfigure.html.haml:372 -msgid "Cancel Delete" -msgstr "Annuler la suppression" +msgid "Total %{title} Memory" +msgstr "Mémoire totale de %{title}" -#: ../app/views/ops/_settings_replication_tab.html.haml:393 -msgid "Re-Enable Central Admin" -msgstr "Ré-activer Admin Centrale" +msgid "Total Allocation" +msgstr "Allocation totale" -#: ../app/views/ops/_settings_replication_tab.html.haml:401 -msgid "Enable Central Admin" -msgstr "Activer Admin Centrale" +msgid "Total CPU Resources" +msgstr "Total des ressources de processeur" -#: ../app/views/ops/_settings_replication_tab.html.haml:409 -msgid "Disable Central Admin" -msgstr "Désactiver Admin Centrale" +msgid "Total CPUs" +msgstr "Total des processeurs " -#: ../app/views/ops/_settings_replication_tab.html.haml:473 -msgid "Excluded Tables" -msgstr "" +msgid "Total Configured CPUs" +msgstr "Total des processeurs configurés" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:11 -msgid "Red Hat Software Updates" -msgstr "Mises à jours logicielles de Red Hat" +msgid "Total Configured Memory" +msgstr "Mémoire totale configurée" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:14 -msgid "" -"The Subscription Management Service you register with will provide your system" -"s with updates and allow additional management." -msgstr "" -"Le service de gestion des abonnements sur lequel vous vous enregistrez fournir" -"a des mises à jour à vos systèmes et permettra une gestion supplémentaire." +msgid "Total Configured VM CPUs" +msgstr "Total des processeurs MV configurés" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:26 -msgid "Register to" -msgstr "Enregistrer dans" +msgid "Total Configured VM Memory" +msgstr "Mémoire MV totale configurée" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:67 -msgid "Repository Name(s):" -msgstr "Nom(s) de référentiel :" +msgid "Total Datastore Used Space" +msgstr "Espace total utilisé du magasin de données" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:91 -msgid "HTTP Proxy:" -msgstr "Proxy HTTP :" +msgid "Total Index Nodes" +msgstr "Total des nœuds d'index" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:101 -msgid "Use HTTP Proxy" -msgstr "Utiliser un proxy HTTP" +msgid "Total Matches" +msgstr "Total des correspondances" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:153 -#: ../app/views/ops/rhn/_info_subscribed.html.haml:61 -msgid "Organization" -msgstr "Organisation" +msgid "Total Memory" +msgstr "Mémoire totale" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:171 -msgid "Forgot your login or password? Look it up at" -msgstr "" -"Vous avez oublié votre nom de connexion ou votre mot de passe ? Rendez-vous su" -"r" +msgid "Total Processors" +msgstr "Total des processeurs" -#: ../app/views/ops/_settings_rhn_tab.html.haml:28 -msgid "Edit Registration" -msgstr "Modifier l'abonnement" +msgid "Total Quota" +msgstr "Total des quota" -#: ../app/views/ops/_settings_server_tab.html.haml:48 -msgid "Resides on VM" -msgstr "Réside sur une MV" +msgid "Total Space" +msgstr "Espace total" -#: ../app/views/ops/_settings_server_tab.html.haml:71 -msgid "Company Name" -msgstr "Nom de l'entreprise" +msgid "Total Space on Volume" +msgstr "Espace total sur le volume" -#: ../app/views/ops/_settings_server_tab.html.haml:88 -msgid "Appliance Name" -msgstr "Nom de l''Appliance" +msgid "Total VMs" +msgstr "Total MV" -#: ../app/views/ops/_settings_server_tab.html.haml:105 -msgid "Zone*" -msgstr "Zone*" +msgid "Total number of VMs that can fit on all of the above %{models}: %{count}" +msgstr "Nombre total de MV pouvant tenir sur tous les %{models} ci-dessus : %{count}" -#: ../app/views/ops/_settings_server_tab.html.haml:135 -msgid "Appliance Time Zone" -msgstr "Fuseau Horaire de l''Appliance" +msgid "Totals for %{hosts}" +msgstr "Totaux pour les %{hosts}" -#: ../app/views/ops/_settings_server_tab.html.haml:156 -msgid "Default Locale" -msgstr "Localisation Par défaut" +msgid "Totals for Availability Zone" +msgstr "Totaux pour la zone de disponibilité" -#: ../app/views/ops/_settings_server_tab.html.haml:176 -msgid "* Changing the Zone will reset all of this Server's priorities to secondary." -msgstr "" -"* Changer la zone réinitialisera toutes les priorités de ce serveurs en tant q" -"ue secondaires." +msgid "Totals for Service VMs" +msgstr "Totaux pour les MV de service" -#: ../app/views/ops/_settings_server_tab.html.haml:183 -msgid "Server Control" -msgstr "Contrôle du serveur" +msgid "Totals for VMs" +msgstr "Totaux pour les MV" -#: ../app/views/ops/_settings_server_tab.html.haml:192 -msgid "Server Roles" -msgstr "Rôles du serveur" +msgid "Trap Number" +msgstr "Numéro de trap" -#: ../app/views/ops/_settings_server_tab.html.haml:199 -msgid "Off" -msgstr "" +msgid "Trap Number is required" +msgstr "Le numéro de trap est obligatoire" -#: ../app/views/ops/_settings_server_tab.html.haml:199 -msgid "On" -msgstr "" +msgid "Trap Object ID" +msgstr "ID d'objet de trap" -#: ../app/views/ops/_settings_server_tab.html.haml:216 -msgid "Default Repository SmartProxy" -msgstr "SmartProxy du référentiel par défaut" +msgid "Trap Object ID is required" +msgstr "L'ID d'objet de trap est obligatoire" -#: ../app/views/ops/_settings_server_tab.html.haml:241 -msgid "VMware Console Support" -msgstr "Prise en charge de la console VMware" +msgid "Tree View" +msgstr "Vue Arborescence" -#: ../app/views/ops/_settings_server_tab.html.haml:250 -msgid "Use" -msgstr "Utiliser" +msgid "Trend Options" +msgstr "Options de tendance" -#: ../app/views/ops/_settings_server_tab.html.haml:255 -msgid "VMware MKS Plugin" -msgstr "Exension MKS VMware" +msgid "Trend Steepness must be an integer" +msgstr "L'inclinaison de la tendance doit être un nombre entier" -#: ../app/views/ops/_settings_server_tab.html.haml:255 -msgid "VMware VMRC Plugin" -msgstr "Exension VMRC VMware" +msgid "Trend Target Limit" +msgstr "Limite cible de la tendance" -#: ../app/views/ops/_settings_server_tab.html.haml:255 -msgid "VNC" -msgstr "VNC" +msgid "Trend Target Limit must be configured" +msgstr "La Limite cible de la tendance doit être configurée" -#: ../app/views/ops/_settings_server_tab.html.haml:272 -msgid "VMware MKS Plugin Version" -msgstr "Version de l'extension MKS VMware" +msgid "Trend Target Limit must be numeric" +msgstr "La limite cible de la tendance doit être numérique" -#: ../app/views/ops/_settings_server_tab.html.haml:294 -msgid "VNC Proxy Address" -msgstr "Adresse du proxy VNC" +msgid "Trend Target Limit: Value must be numeric" +msgstr "Limite cible de la tendance : la valeur doit être numérique" -#: ../app/views/ops/_settings_server_tab.html.haml:311 -msgid "VNC Proxy Port" -msgstr "Port du proxy VNC" +msgid "Trend Target Percents" +msgstr "Pourcentages cibles de la tendance" -#: ../app/views/ops/_settings_server_tab.html.haml:370 -msgid "Specified NTP settings applied here will override Zone NTP settings." -msgstr "" -"Les paramètres NTP spécifiés appliqués ici remplaceront les paramètres NTP de " -"la zone." +msgid "Trend for Past" +msgstr "Tendance pour le passé" -#: ../app/views/ops/_settings_server_tab.html.haml:377 -msgid "Outgoing SMTP E-mail Server" -msgstr "Serveur email SMTP sortant" +msgid "Trending for" +msgstr "Tendance pour" -#: ../app/views/ops/_settings_server_tab.html.haml:437 -msgid "Start TLS Automatically" -msgstr "Démarrer TLS automatiquement" +msgid "Trending for is required" +msgstr "Le champ Tendance pour est obligatoire" -#: ../app/views/ops/_settings_server_tab.html.haml:457 -msgid "SSL Verify Mode" -msgstr "Mode de vérification SSL" +msgid "Trends for past" +msgstr "Tendances pour le passé" -#: ../app/views/ops/_settings_server_tab.html.haml:549 -msgid "Test E-mail Address" -msgstr "Adresse e-mail de test" +msgid "True" +msgstr "Vrai" -#: ../app/views/ops/_settings_server_tab.html.haml:623 -msgid "Logging" -msgstr "Journalisation" +msgid "Truncate Long Text" +msgstr "Tronquer le texte long" -#: ../app/views/ops/_settings_server_tab.html.haml:632 -msgid "Log Level" -msgstr "Niveau de journalisation" +msgid "Trusted CA Certificates" +msgstr "" -#: ../app/views/ops/_settings_server_tab.html.haml:652 -msgid "Custom Support URL" -msgstr "URL de Support personnalisée" +msgid "Trusted Forest Settings" +msgstr "Paramètres de la forêt fiables" -#: ../app/views/ops/_settings_server_tab.html.haml:661 -msgid "URL (i.e. www.mypage.com)" -msgstr "URL (p. ex. www.mypage.com)" +msgid "Tuesday" +msgstr "Mardi" -#: ../app/views/ops/_settings_workers_tab.html.haml:13 -msgid "Generic Workers" -msgstr "Workers génériques" +msgid "Type" +msgstr "Type" -#: ../app/views/ops/_settings_workers_tab.html.haml:42 -#: ../app/views/ops/_settings_workers_tab.html.haml:93 -#: ../app/views/ops/_settings_workers_tab.html.haml:123 -#: ../app/views/ops/_settings_workers_tab.html.haml:153 -#: ../app/views/ops/_settings_workers_tab.html.haml:244 -#: ../app/views/ops/_settings_workers_tab.html.haml:294 -#: ../app/views/ops/_settings_workers_tab.html.haml:347 -#: ../app/views/ops/_settings_workers_tab.html.haml:397 -#: ../app/views/ops/_settings_workers_tab.html.haml:427 -#: ../app/views/ops/_settings_workers_tab.html.haml:477 -msgid "Memory threshold" -msgstr "Seuil de mémoire" +msgid "Type is required" +msgstr "Le type est obligatoire" + +msgid "Type missing for %{field}" +msgstr "Type manquant pour %{field}" -#: ../app/views/ops/_settings_workers_tab.html.haml:64 -msgid "C & U Data Collectors" -msgstr "Collecteurs de données C & U" +msgid "Type:" +msgstr "Type :" -#: ../app/views/ops/_settings_workers_tab.html.haml:114 -msgid "Event Monitor" -msgstr "Moniteur d'événement" +msgid "Type: " +msgstr "Type : " -#: ../app/views/ops/_settings_workers_tab.html.haml:144 -msgid "Connection Broker" -msgstr "Broker de connexion" +msgid "Type: %{automation_type}" +msgstr "Type : %{automation_type}" -#: ../app/views/ops/_settings_workers_tab.html.haml:174 msgid "UI Worker" msgstr "Worker IU" -#: ../app/views/ops/_settings_workers_tab.html.haml:208 -msgid " * Multiple UI workers can not be configured with session store as memory" +msgid "UNUSED?" msgstr "" -"Plusieurs UI workers ne peuvent pas être configurés quand la session est charg" -"ée en mémoire" - -#: ../app/views/ops/_settings_workers_tab.html.haml:215 -msgid "Reporting Workers" -msgstr "Workers de rapport" -#: ../app/views/ops/_settings_workers_tab.html.haml:265 -msgid "Web Service Workers" -msgstr "Workers Service Web " +msgid "URI" +msgstr "URI" -#: ../app/views/ops/_settings_workers_tab.html.haml:318 -msgid "Priority Workers" -msgstr "Workers prioritaires" +msgid "URI Prefix" +msgstr "Préfixe URI" -#: ../app/views/ops/_settings_workers_tab.html.haml:368 -msgid "C & U Data Processors" -msgstr "Processeurs de données C & U" +msgid "URI is required" +msgstr "L'URI est obligatoire" -#: ../app/views/ops/_settings_workers_tab.html.haml:448 -msgid "VM Analysis Collectors" -msgstr "Collecteurs d'anamyse MV" +msgid "URL" +msgstr "URL" -#: ../app/views/ops/_settings_workers_tab.html.haml:498 -msgid "Websocket Workers" -msgstr "Workers Websocket" +msgid "URL (i.e. www.mypage.com)" +msgstr "URL (p. ex. www.mypage.com)" -#: ../app/views/ops/_smartproxy_affinity.html.haml:3 -msgid "" -"Assign Hosts and Datastores to Embedded SmartProxies in Zone: \"%{zone_descript" -"ion}\"" -msgstr "" -"Affecter des hôtes et des magasins de données à des proxys dynamiques intégrés" -" dans la zone : \"%{zone_description}\"" +msgid "URL:" +msgstr "URL :" -#: ../app/views/ops/_smartproxy_affinity.html.haml:13 -msgid "No Servers with the SmartProxy role are in Zone: \"%{zone_description}\"" -msgstr "" -"Aucun serveur avec le rôle SmartProxy n'est dans la zone : \"%{zone_description" -"}\"" +msgid "US Executive - 7.25in x 10.5in" +msgstr "US Executive - 7,25 x 10,5 po" -#: ../app/views/ops/_tenant_form.html.haml:67 -msgid "Use Configuration Settings" -msgstr "Utiliser les paramètres de configuration" +msgid "US Folio - 8.5in x 13.0in" +msgstr "US Folio - 8,5 x 13 po" -#: ../app/views/ops/_tenant_quota_form.html.haml:72 -msgid " Valid numeric quota value required " -msgstr "Une valeur numérique valide est requise pour le quota" +msgid "US Government - 8.0in x 11.0in" +msgstr "US Government - 8 x 11 po" -#: ../app/views/ops/_zone_form.html.haml:7 -msgid "Zone Information" -msgstr "Information sur la Zone" +msgid "US Ledger - 17.0in x 11.0in" +msgstr "US Ledger - 17 x 11 po" -#: ../app/views/ops/_zone_form.html.haml:117 -msgid "* Specified NTP settings apply to this zone only and are not global." -msgstr "" -"* Les paramétrages NTP spécifiés ne s'appliquent qu'à cette zone et ne sont pa" -"s globaux." +msgid "US Legal - 8.5in x 14.0in" +msgstr "US Legal - 8,5 x 14 po" -#: ../app/views/ops/_zone_form.html.haml:124 -msgid "Credentials - Windows Domain" -msgstr "Données d'identification - Domaine Windows" +msgid "US Letter - 8.5in x 11.0in" +msgstr "US Letter - 8,5 x 11 po" -#: ../app/views/ops/_zone_form.html.haml:194 -msgid "Max Active VM Scans" -msgstr "Analyses de MV actives max." +msgid "US Statement - 5.5in x 8.5in" +msgstr "US Statement - 5,5 x 8,5 po" -#: ../app/views/ops/_zone_tree.html.haml:5 -msgid "Status of Regional Roles for Servers in %{kind} %{description}" -msgstr "Statut des rôles régionaux pour les serveurs en %{kind} %{description}" +msgid "US Tabloid - 11.0in x 17.0in" +msgstr "US Tabloid - 11 x 17 po" -#: ../app/views/ops/_zone_tree.html.haml:8 -msgid "Status of Roles for Servers in %{kind} %{description}" -msgstr "Statut des rôles pour les serveurs en %{kind} %{description}" +msgid "Unable to add Subnet \"%{name}\": %{details}" +msgstr "" -#: ../app/views/ops/_zone_tree.html.haml:14 -msgid "* Primary Server Roles shown as %{bold} text." -msgstr "* Roles primaires du serveur montrés comme texte %{bold}." +msgid "Unable to add nodes: %{error}" +msgstr "Impossible d'ajouter des nœuds : %{error}" -#: ../app/views/ops/_zone_tree.html.haml:14 -msgid "bold" -msgstr "gras" +msgid "Unable to associate Floating IP %{address} with Instance \"%{name}\": %{details}" +msgstr "Impossible d'associer l'IP flottante %{address} à l'instance \"%{name}\" : %{details}" -#: ../app/views/ops/_zone_tree.html.haml:17 -msgid "Region based nodes shown as %{dimmed} text." -msgstr "Nœuds basés sur une région affichés en texte %{dimmed}." +msgid "Unable to associate Floating IP with Instance \"%{name}\": %{details}" +msgstr "Impossible d'associer l'IP flottante à l'instance \"%{name}\" : %{details}" -#: ../app/views/ops/_zone_tree.html.haml:17 -msgid "dimmed" -msgstr "estompé" +msgid "Unable to attach Cloud Volume \"%{volume_name}\" to %{vm_name}: %{details}" +msgstr "" -#: ../app/views/ops/rhn/_info_subscribed.html.haml:3 -msgid "Appliances in this region can be registered with:" -msgstr "Les appliances dans cette région peuvent être enregistrées avec:" +msgid "Unable to create %{model} \"%{name}\": %{details}" +msgstr "Impossible de créer le %{model} \"%{name}\" : %{details}" -#: ../app/views/ops/rhn/_info_subscribed.html.haml:45 -msgid "Account" -msgstr "Compte" +msgid "Unable to create Cloud Network \"%{name}\": %{details}" +msgstr "" -#: ../app/views/ops/rhn/_info_subscribed.html.haml:75 -msgid "Repository Name(s)" -msgstr "Nom(s) de référentiel" +msgid "Unable to create Cloud Subnet: %{details}" +msgstr "" -#: ../app/views/ops/rhn/_info_unsubscribed.html.haml:5 -msgid "" -"Software updates have not yet been configured. Select Edit Registration to reg" -"ister appliances in this region with Red Hat to receive software updates and o" -"ther benefits." +msgid "Unable to create Cloud Tenant \"%{name}\": %{details}" msgstr "" -"Les mises à jour logicielles n'ont pas encore été configurées. Sélectionnez Mo" -"difier l'enregistrement pour enregistrer des appareils auprès de Red Hat dans " -"cette région afin de recevoir des mises à jour logicielles et d'autres avantag" -"es." -#: ../app/views/ops/rhn/_info_unsubscribed.html.haml:9 -msgid "You will need the following to register:" -msgstr "Pour vous enregistrer, vous aurez besoin des informations suivantes :" +msgid "Unable to create Cloud Volume \"%{name}\": %{details}" +msgstr "" -#: ../app/views/ops/rhn/_info_unsubscribed.html.haml:15 -msgid "Your Red Hat Account login or Red Hat Network Satellite login" +msgid "Unable to create Floating IP \"%{name}\": %{details}" msgstr "" -"Votre identifiant de compte Red Hat ou votre identifiant Red Hat Network Satel" -"lite" -#: ../app/views/ops/rhn/_info_unsubscribed.html.haml:17 -msgid "A Red Hat subscription that covers your product" -msgstr "Un abonnement Red Hat couvrant votre produit" +msgid "Unable to create Key Pair \"%{name}\": %{details}" +msgstr "" -#: ../app/views/ops/rhn/_info_unsubscribed.html.haml:19 -msgid "(optional) your HTTP proxy information" -msgstr "(optional) vos information de proxy HTTP" +msgid "Unable to create Security Group \"%{name}\": %{details}" +msgstr "" -#: ../app/views/ops/rhn/_info_unsubscribed.html.haml:21 -msgid "(optional) the address of an alternate service" -msgstr "(optionnel) l’adresse d'un service alternatif" +msgid "Unable to create a new template copy \"%{name}\": new template content cannot be empty." +msgstr "Impossible de créer une copie du modèle \"%{name}\" : le contenu du nouveau modèle ne peut pas être vide." -#: ../app/views/ops/rhn/_server_table.html.haml:5 -msgid "Appliance Updates" -msgstr "Mises à jour de l''Appliance" +msgid "Unable to create a new template copy \"%{name}\": old and new template content have to differ." +msgstr "Impossible de créer une copie du modèle \"%{name}\" : l'ancien et le nouveau modèle doivent être différents." -#: ../app/views/ops/rhn/_server_table.html.haml:16 -msgid "Available Product version:" -msgstr "Version de Produit disponible :" +msgid "Unable to create backup for %{model} \"%{name}\": %{details}" +msgstr "Impossible de créer la sauvegarde de %{model} \"%{name}\" : %{details}" -#: ../app/views/ops/rhn/_server_table.html.haml:31 -msgid "Refresh List" -msgstr "Actualiser la liste" +msgid "Unable to create snapshot for Cloud Volume \"%{name}\": %{details}" +msgstr "Impossible de créer un cliché pour la volume cloud \"%{name}\": %{details}" -#: ../app/views/ops/rhn/_server_table.html.haml:40 -msgid "Check for Updates" -msgstr "Rechercher des mises à jour" +msgid "Unable to deploy %s on this server %s\"" +msgstr "" -#: ../app/views/ops/rhn/_server_table.html.haml:62 -msgid "Apply %{product} Update" -msgstr "Appliquer la mise à jour de %{product}" +msgid "Unable to detach Cloud Volume \"%{volume_name}\" from %{vm_name}: %{details}" +msgstr "" -#: ../app/views/ops/rhn/_server_table.html.haml:89 -msgid "Appliance" -msgstr "Appliance" +msgid "Unable to disassociate Floating IP %{address} from Instance \"%{name}\": %{details}" +msgstr "Impossible de dissocier l'IP flottante %{address} de l'instance \"%{name}\" : %{details}" -#: ../app/views/ops/rhn/_server_table.html.haml:93 -msgid "Update Status" -msgstr "Mettre à jour le statut" +msgid "Unable to disassociate Floating IP from Instance \"%{name}\": %{details}" +msgstr "Impossible de dissocier l'IP flottante de l'instance \"%{name}\" : %{details}" -#: ../app/views/ops/rhn/_server_table.html.haml:95 -msgid "Last Checked for updates" -msgstr "Dernière vérification des mises à jour" +msgid "Unable to evacuate %{instance} \"%{name}\": %{details}" +msgstr "Impossible d'évacuer l'%{instance} \"%{name}\" : %{details}" -#: ../app/views/ops/rhn/_server_table.html.haml:97 -msgid "%{product} Version" -msgstr "Version %{product}" +msgid "Unable to initiate scaling: %{message}" +msgstr "Impossible d'initier la mise à l'échelle : %{message}" -#: ../app/views/ops/rhn/_server_table.html.haml:99 -msgid "Platform Updates Available" -msgstr "Mises à jour de la plateforme disponibles" +msgid "Unable to install the Datasource on this server." +msgstr "" -#: ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 -msgid "Orderable" -msgstr "Organisable" +msgid "Unable to live migrate %{instance} \"%{name}\": %{details}" +msgstr "Impossible de migrer en live l'%{instance} \"%{name}\": %{details}" -#: ../app/views/persistent_volume/_main.html.haml:10 -msgid "Volume Claim" -msgstr "Demande de volume" +msgid "Unable to live migrate Instance \"%{name}\": %{details}" +msgstr "" -#: ../app/views/persistent_volume/_main.html.haml:22 -msgid "Capacity" -msgstr "Capacité" +msgid "Unable to reconfigure %{instance} \"%{name}\": %{details}" +msgstr "Impossible de reconfigurer l'%{instance} \"%{name}\": %{details}" -#: ../app/views/provider_foreman/_configuration_script.html.haml:18 -msgid "Surveys" -msgstr "Questionnaires" +msgid "Unable to remove Subnet \"%{name}\": %{details}" +msgstr "" -#: ../app/views/provider_foreman/_form.html.haml:108 -msgid "Url" -msgstr "URL" +msgid "Unable to restore %{model} \"%{name}\" from backup: %{details}" +msgstr "Impossible de restaurer %{model} \"%{name}\" à partir de la sauvegarde : %{details}" -#: ../app/views/provider_foreman/_main.html.haml:16 -#: ../app/views/provider_foreman/_main_configuration_profile.html.haml:16 -msgid "Tenancy" -msgstr "Location" +msgid "Unable to update %{model} \"%{name}\": %{details}" +msgstr "Impossible de mettre à jour le %{model} \"%{name}\" : %{details}" -#: ../app/views/pxe/_iso_datastore_details.html.haml:31 -msgid "View this ISO Image" -msgstr "Afficher cette image ISO" +msgid "Unable to update Cloud Network \"%{name}\": %{details}" +msgstr "" -#: ../app/views/pxe/_pxe_form.html.haml:34 -msgid "Depot Type" -msgstr "Type de dépôt" +msgid "Unable to update Cloud Subnet \"%{name}\": %{details}" +msgstr "" -#: ../app/views/pxe/_pxe_form.html.haml:146 -#: ../app/views/pxe/_pxe_server_details.html.haml:17 -#: ../app/views/pxe/_pxe_server_details.html.haml:25 -msgid "PXE Image Menus" -msgstr "Menus d'images PXE" +msgid "Unable to update Cloud Tenant \"%{name}\": %{details}" +msgstr "" -#: ../app/views/pxe/_pxe_image_type_form.html.haml:39 -msgid "Any" -msgstr "Tous" +msgid "Unable to update Cloud Volume \"%{name}\": %{details}" +msgstr "" -#: ../app/views/pxe/_pxe_img_form.html.haml:48 -msgid "" -"* Checking this box will remove this setting from all other PXE Images on this" -" PXE Server" +msgid "Unable to update Floating IP \"%{name}\": %{details}" msgstr "" -"* Valider cette option supprimera ce paramétrage pour toutes les images PXE hé" -"bergées par ce serveur PXE" -#: ../app/views/pxe/_pxe_server_details.html.haml:65 -msgid "Windows Boot Env" -msgstr "Environnement de démarrage Windows" +msgid "Unable to update Security Group \"%{name}\": %{details}" +msgstr "" -#: ../app/views/pxe/_pxe_server_details.html.haml:72 -msgid "View this PXE Image" -msgstr "Afficher cette image PXE" +msgid "Unable to update stack, obtaining of status failed: %{message}" +msgstr "Impossible de mettre à jour la pile, le statut n'a pas pu être obtenu : %{message}" -#: ../app/views/pxe/_pxe_server_details.html.haml:119 -msgid "View this Windows Image" -msgstr "Afficher cette image Windows" +msgid "Unacknowledge" +msgstr "" -#: ../app/views/pxe/_template_details.html.haml:16 -#: ../app/views/pxe/_template_form.html.haml:91 -msgid "Script" -msgstr "Script" +msgid "Unacknowledged" +msgstr "" -#: ../app/views/pxe/_template_folders.html.haml:9 -msgid "View Examples (read only)' Folder" -msgstr "Afficher le dossier Exemples (lecture seule)" +msgid "Unassign" +msgstr "" -#: ../app/views/pxe/_template_folders.html.haml:21 -msgid "View '%{name}' Folder" -msgstr "Afficher le dossier '%{name}'" +msgid "Unassign Alert" +msgstr "" -#: ../app/views/pxe/_template_form.html.haml:73 -msgid "CloudInit" -msgstr "CloudInit" +msgid "Unassigned" +msgstr "Non affecté" -#: ../app/views/pxe/_template_form.html.haml:73 -msgid "Kickstart" -msgstr "Kickstart" +msgid "Unassigned Profiles Group" +msgstr "Groupe de profils non affecté" -#: ../app/views/pxe/_template_form.html.haml:73 -msgid "Sysprep" -msgstr "Sysprep" +msgid "Unassigned:" +msgstr "Non affecté :" -#: ../app/views/report/_column_lists.html.haml:9 -msgid "Available Fields:" -msgstr "Champs disponibles:" +msgid "Unattended GUI" +msgstr "GUI automatisée" -#: ../app/views/report/_column_lists.html.haml:38 -#: ../app/views/report/_column_lists.html.haml:91 -msgid "down" -msgstr "Vers le bas" +msgid "Unauthorized object or action" +msgstr "Objet ou action non autorisé(e)" -#: ../app/views/report/_column_lists.html.haml:38 -#: ../app/views/report/_column_lists.html.haml:91 -msgid "up" -msgstr "haut" +msgid "Uncknowledge Alert" +msgstr "" -#: ../app/views/report/_column_lists.html.haml:40 -#: ../app/views/report/_column_lists.html.haml:95 -msgid "Move selected fields %{where}" -msgstr "Déplacer les champs sélectionnés %{where}" +msgid "Uncommitted Space" +msgstr "Espace non engagé" -#: ../app/views/report/_column_lists.html.haml:69 -msgid "Selected Fields:" -msgstr "Champs sélectionnés :" +msgid "Undeploy" +msgstr "Rétracter un déploiement" -#: ../app/views/report/_column_lists.html.haml:91 -msgid "to bottom" -msgstr "vers le bas" +msgid "Undeploy these Middleware Deployments" +msgstr "Rétracter ces déploiements de middleware" -#: ../app/views/report/_column_lists.html.haml:91 -msgid "to top" -msgstr "vers le haut" +msgid "Undeploy this Middleware Deployment" +msgstr "Rétracter ce déploiement de middleware" -#: ../app/views/report/_db_form.html.haml:41 -#: ../app/views/report/_db_show.html.haml:28 -msgid "Tab Title" -msgstr "Titre de l'onglet" +msgid "Undeployment initiated for selected deployment(s)" +msgstr "Rétractation lancée pour le(s) déploiement(s) sélectionné(s)" -#: ../app/views/report/_db_form.html.haml:74 -msgid "* Dashboard name cannot be changed" -msgstr "* Le nom du tableau de bord ne peut être changé" +msgid "Underlying %{name}" +msgstr "%{name} sous-jacent(e)" -#: ../app/views/report/_db_list.html.haml:23 -msgid "Click to view '%{title}'" -msgstr "Cliquez pour afficher '%{title}'" +msgid "Undo the last change" +msgstr "Annuler la dernière modification" -#: ../app/views/report/_db_list.html.haml:60 -msgid "Click to view %{group} " -msgstr "Cliquez pour afficher %{group} " +msgid "Unexpected error encountered" +msgstr "Une erreur inattendue s'est produite" -#: ../app/views/report/_db_list.html.haml:77 -msgid "No Dashboards are defined for this group. Default dashboard will be shown." +msgid "Ungrouped" msgstr "" -"Aucun tableau de bord n'est défini pour ce groupe. Le tableau de bord par défa" -"ut sera affiché." -#: ../app/views/report/_db_list.html.haml:99 -msgid "Click to view '%{widgetset_description} (%{widgetset_name})'" -msgstr "Cliquez pour afficher '%{widgetset_description} (%{widgetset_name})'" +msgid "Units" +msgstr "Unités" -#: ../app/views/report/_db_seq_form.html.haml:11 -msgid "Dashboards:" -msgstr "Tableaux de bord :" +msgid "Unknown" +msgstr "Inconnu" -#: ../app/views/report/_db_widget.html.haml:5 -msgid "Drag/drop Widget \"%{widget_title}\"" -msgstr "Faire glisser le composant d'interface \"%{widget_title}\"" +msgid "Unknown Action" +msgstr "Action inconnue" -#: ../app/views/report/_db_widget.html.haml:8 -msgid "View this Widget" -msgstr "Afficher ce composant graphique" +msgid "Unknown error has occurred" +msgstr "Une erreur inconnue s'est produite" -#: ../app/views/report/_db_widget_remove.html.haml:4 -msgid "Remove this widget" -msgstr "Supprimer ce composant d'interface" +msgid "Unknown server group operation: " +msgstr "" -#: ../app/views/report/_db_widgets.html.haml:5 -msgid "Sample Dashboard" -msgstr "Exemple de tableau de bord" +msgid "Unknown server operation: %{operation}" +msgstr "" -#: ../app/views/report/_export.html.haml:5 -msgid "Choose a Import/Export type from the menus on the left." -msgstr "Choisir un type d'importation/exportation dans les menus de gauche." +msgid "Unlimited" +msgstr "Illimité" -#: ../app/views/report/_export_custom_reports.html.haml:30 -msgid "Overwrite existing reports?" -msgstr "Écraser les rapports existants ?" +msgid "Unlock this Domain" +msgstr "Déverrouiller ce domaine" -#: ../app/views/report/_export_custom_reports.html.haml:73 -msgid "Available Custom Reports:" -msgstr "Rapports Personnalisés Disponibles:" +msgid "Unlocked" +msgstr "Déverrouillé" -#: ../app/views/report/_export_widgets.html.haml:7 -msgid "Import Widgets" -msgstr "Importer des composants d'interface" +msgid "Unmanaged VMs" +msgstr "MV non gérées" -#: ../app/views/report/_export_widgets.html.haml:24 -msgid "Widget name" -msgstr "Nom du composant graphique" +msgid "Unused/Overcommited Allocation" +msgstr "Allocation inutilisée/surengagée" -#: ../app/views/report/_export_widgets.html.haml:120 -msgid "Available Widgets:" -msgstr "Composants d'interface disponibles :" +msgid "Up" +msgstr "" -#: ../app/views/report/_form.html.haml:14 -msgid "Basic Report Info" -msgstr "Info du Rapport de Base" +msgid "Update" +msgstr "Mettre à jour" -#: ../app/views/report/_form.html.haml:21 -msgid "Menu Name" -msgstr "Nom du menu" +msgid "Update Password" +msgstr "Mettre à jour le mot de passe" -#: ../app/views/report/_form_chart.html.haml:6 -msgid "Chart Settings" -msgstr "Paramètres du graphique" +msgid "Update Status" +msgstr "Mettre à jour le statut" -#: ../app/views/report/_form_chart.html.haml:15 -msgid "Choose a chart type" -msgstr "Choisir un type de tableau" +msgid "Update aggregate not supported by %{model} \"%{name}\"" +msgstr "La mise à jour d'agrégats n'est pas pris en charge par %{model} \"%{name}\"" -#: ../app/views/report/_form_chart.html.haml:20 -msgid "" -msgstr "" +msgid "Update password" +msgstr "Mettre à jour le mot de passe" -#: ../app/views/report/_form_chart.html.haml:37 -msgid "Chart mode" -msgstr "Mode Graphique" +msgid "Update this LDAP Server" +msgstr "Mettre à jour ce serveur LDAP" -#: ../app/views/report/_form_chart.html.haml:43 -#: ../app/views/report/_form_chart.html.haml:54 -#: ../app/views/report/_form_sort.html.haml:78 -msgid "Counts" -msgstr "Nombres" +msgid "Update this entry" +msgstr "Mettre à jour cette entrée" -#: ../app/views/report/_form_chart.html.haml:43 -msgid "Values" -msgstr "Valeurs" +msgid "Updated" +msgstr "Mis à jour" -#: ../app/views/report/_form_chart.html.haml:62 -msgid "Data column" -msgstr "Colonne de données" +msgid "Updated - %{time}" +msgstr "Mis à jour - %{time}" -#: ../app/views/report/_form_chart.html.haml:83 -msgid "Top values to show" -msgstr "Afficher les plus grandes valeurs" +msgid "Updated - %{update_time}, Last valid connection - %{valid_time}" +msgstr "Mis à jour - %{update_time}, Dernière connexion valide - %{valid_time}" -#: ../app/views/report/_form_chart.html.haml:104 -msgid "Sum 'Other' values" -msgstr "Additionner les valeurs 'Autres'" +msgid "Updated On" +msgstr "Mis à jour le" -#: ../app/views/report/_form_chart.html.haml:117 -msgid "* Some charts my not produce desired results with a single sort field" -msgstr "" -"* Certains diagrammes peuvent ne pas produire les résultats escomptés avec un " -"seul champ de tri." +msgid "Upload" +msgstr "Télécharger" -#: ../app/views/report/_form_columns.html.haml:9 -msgid "Configure Report Columns" -msgstr "Configurer les colonnes du rapport" +msgid "Upload %{customer_name} Tag Assignments for VMs" +msgstr "Télécharge les affectations de balise de %{customer_name} pour les MV" -#: ../app/views/report/_form_columns.html.haml:16 -msgid "* Base the report on" -msgstr "* Baser le rapport sur" +msgid "Upload Custom Variable Values" +msgstr "Télécharger les valeurs variables personnalisées" -#: ../app/views/report/_form_columns.html.haml:45 -msgid "* Caution: Changing these fields will clear all selected values below them!" -msgstr "" -"* Attention : Le changement de ces champs impliquera l'effacement de toutes va" -"leurs sélectionnées suivantes!" +msgid "Upload File" +msgstr "Télécharger un fichier" -#: ../app/views/report/_form_columns.html.haml:52 -msgid "Report Creation Timeout" -msgstr "Expiration du délai d'attente pour la création du rapport" +msgid "Uploaded File '%{filename}'" +msgstr "Fichier téléchargé '%{filename}'" -#: ../app/views/report/_form_columns.html.haml:61 -msgid "Cancel after" -msgstr "Annuler après" +msgid "Url" +msgstr "URL" -#: ../app/views/report/_form_columns.html.haml:66 -msgid "%{number} Hour" -msgid_plural "%{number} Hours" -msgstr[0] "%{number} heure" -msgstr[1] "%{number} heures" +msgid "Usage" +msgstr "Utilisation" -#: ../app/views/report/_form_columns.html.haml:66 -msgid "System Default" -msgstr "Valeur par défaut du système" +msgid "Usage: " +msgstr "Utilisation : " -#: ../app/views/report/_form_columns_performance.html.haml:6 -msgid "* Performance Interval" -msgstr "* Intervalle de Performance" +msgid "Usage: Unknown" +msgstr "Utilisation : inconnue" -#: ../app/views/report/_form_columns_performance.html.haml:31 -msgid "Averages Based On" -msgstr "Moyennes basées sur" +msgid "Use" +msgstr "Utiliser" -#: ../app/views/report/_form_columns_performance.html.haml:36 -msgid "Available Active Data" -msgstr "Donnés Actives Disponibles" +msgid "Use Alias" +msgstr "Utiliser l'alias" -#: ../app/views/report/_form_columns_performance.html.haml:36 -msgid "Performance Interval" -msgstr "Intervalle de performances" +msgid "Use CTRL-ALT-Enter to toggle full screen" +msgstr "Utiliser CTRL-ALT-Entrée pour basculer le plein écran" -#: ../app/views/report/_form_columns_trend.html.haml:6 -msgid "Trending for" -msgstr "Tendance pour" +msgid "Use CTRL-ALT-INS for CTRL-ALT-DEL" +msgstr "Utiliser CTRL-ALT-INS pour CTRL-ALT-SUPPR" -#: ../app/views/report/_form_columns_trend.html.haml:29 -msgid "Trend Target Limit" -msgstr "Limite cible de la tendance" +msgid "Use Configuration Settings" +msgstr "Utiliser les paramètres de configuration" -#: ../app/views/report/_form_columns_trend.html.haml:39 -msgid "Column" -msgstr "Colonne" +msgid "Use Custom Login & 'About' Screen Background Image" +msgstr "" -#: ../app/views/report/_form_columns_trend.html.haml:80 -msgid "Trend Target Percents" -msgstr "Pourcentages cibles de la tendance" +msgid "Use Custom Login Text" +msgstr "Utiliser un texte de connexion personnalisé" -#: ../app/views/report/_form_consolidate.html.haml:6 -msgid "Group Records by up to 3 Columns" -msgstr "Grouper les enregistrements selon un maximum de 3 colonnes" +msgid "Use Custom Logo Image" +msgstr "Utiliser une image de logo personnalisée" -#: ../app/views/report/_form_consolidate.html.haml:15 -#: ../app/views/report/_widget_columns.html.haml:6 -msgid "Column 1" -msgstr "Colonne 1" +msgid "Use Existing" +msgstr "" -#: ../app/views/report/_form_consolidate.html.haml:37 -#: ../app/views/report/_widget_columns.html.haml:28 -msgid "Column 2" -msgstr "Colonne 2" +msgid "Use HTTP Proxy" +msgstr "Utiliser un proxy HTTP" -#: ../app/views/report/_form_consolidate.html.haml:59 -#: ../app/views/report/_widget_columns.html.haml:50 -msgid "Column 3" -msgstr "Colonne 3" +msgid "Use existing VMs from an existing provider" +msgstr "Utiliser les MV existantes d'un fournisseur existant" -#: ../app/views/report/_form_consolidate.html.haml:81 -#: ../app/views/report/_form_consolidate.html.haml:149 -msgid "Note:" -msgstr "Remarque :" +msgid "Use existing VMs from an existing provider: " +msgstr "Utiliser les MV existantes d'un fournisseur existant : " -#: ../app/views/report/_form_consolidate.html.haml:84 -msgid "Consolidating records will not show detail records in the report." -msgstr "" -"Le rapport n'affiche pas d'enregistrements détaillés lors de la consolidation " -"des enregistrements." +msgid "Use the Choose file button to locate .png image file" +msgstr "Utiliser le bouton Choisir un fichier pour localiser un fichie d'image .png" -#: ../app/views/report/_form_consolidate.html.haml:91 -msgid "Specify Calculations of Numeric Values for Grouped Records" -msgstr "" -"Spécifier les calculs des valeurs numériques pour des enregistrements regroupé" -"s" +msgid "Use the Choose file button to locate CSV file" +msgstr "Utiliser le bouton Choisir un fichier pour localiser un fichier CSV" -#: ../app/views/report/_form_consolidate.html.haml:102 -#: ../app/views/report/_form_formatting.html.haml:48 -#: ../app/views/report/_form_sort.html.haml:236 -#: ../app/views/report/_form_styling.html.haml:21 -msgid "Column Name" -msgstr "Nom de la colonne" +msgid "Use the Choose file button to locate a .png or .jpg image file" +msgstr "Utiliser le bouton Choisir un fichier pour localiser un fichier d'image .png ou .jpg" -#: ../app/views/report/_form_consolidate.html.haml:107 -#: ../app/views/report/_form_sort.html.haml:246 -msgid "Calculations" -msgstr "Calculs" +msgid "Use the Choose file button to locate an Import file" +msgstr "Utiliser le bouton Choisir un fichier pour localiser un fichier d'importation" -#: ../app/views/report/_form_consolidate.html.haml:152 -msgid "" -"Leave all options unchecked to show the original column value from the first r" -"ecord in the group." -msgstr "" -"N'activez aucune des options pour afficher la valeur de colonne d'origine du p" -"remier enregistrement dans le groupe." +msgid "Use the Choose file button to locate an Upload file" +msgstr "Utiliser le bouton Choisir un fichier pour localiser un fichier à télécharger" -#: ../app/views/report/_form_filter.html.haml:14 -msgid "Primary (Record) Filter - Filters the %{model} table records" -msgstr "" -"Filtre (d'enregistrements) principal - Filtre les enregistrements de la table " -"%{model}" +msgid "Use the Choose file button to locate an import file" +msgstr "Utiliser le bouton Choisir un fichier pour localiser un fichier d'importation" -#: ../app/views/report/_form_filter.html.haml:22 -msgid "Edit the Record Filter" -msgstr "Modifier le filtre d'enregistrements" +msgid "Used" +msgstr "Utilisé" -#: ../app/views/report/_form_filter.html.haml:33 -msgid "No Record Filter defined." -msgstr "Aucun filtre d'enregistrement défini." +msgid "Used + Uncommitted Space" +msgstr "Espace utilisé + Espace non engagé" -#: ../app/views/report/_form_filter.html.haml:55 -msgid "Secondary (Display) Filter - Filters the rows based on child table fields" -msgstr "" -"Filtre (d'affichage) secondaire - Filtre les lignes selon les champs de la tab" -"le fille" +msgid "Used Index Nodes" +msgstr "Nœuds d'index utilisés" -#: ../app/views/report/_form_filter.html.haml:73 -msgid "No Display Filter defined." -msgstr "Aucun filtre d'affichage n'est défini." +msgid "Used Size" +msgstr "Taille utilisée" -#: ../app/views/report/_form_filter_chargeback.html.haml:4 -msgid "Chargeback Filters" -msgstr "Filtres rétrofacturation" +msgid "Used Space" +msgstr "Espace utilisé" -#: ../app/views/report/_form_filter_chargeback.html.haml:14 -#: ../app/views/report/_form_filter_chargeback.html.haml:249 -msgid "Show Costs by" -msgstr "Afficher les coûts par" +msgid "Used Space on Volume" +msgstr "Espace utilisé sur le volume" -#: ../app/views/report/_form_filter_chargeback.html.haml:23 -#: ../app/views/report/_form_filter_chargeback.html.haml:27 -#: ../app/views/report/_form_filter_chargeback.html.haml:44 -#: ../app/views/report/_form_filter_chargeback.html.haml:182 -msgid "Owner" -msgstr "Propriétaire" +msgid "Used for SSH connection to all %{hosts} in this provider." +msgstr "Utilisé pour la connexion SSH vers tous les %{hosts} de ce fournisseur." -#: ../app/views/report/_form_filter_chargeback.html.haml:49 -msgid "Choose an Owner" -msgstr "Choisir un propriétaire" +msgid "Used for access to IPMI." +msgstr "Utilisé pour l'accès à IPMI." -#: ../app/views/report/_form_filter_chargeback.html.haml:71 -msgid "Choose a tenant" -msgstr "Choisir un locataire" +msgid "Used for access to Web Services." +msgstr "Utilisé pour l'accès aux services Web." -#: ../app/views/report/_form_filter_chargeback.html.haml:115 -msgid "Choose a Value" -msgstr "Choisir une valeur" +msgid "Used to authenticate as a service account against your provider." +msgstr "Utilisé pour l'authentification comme compte de service auprès de votre fournisseur." -#: ../app/views/report/_form_filter_chargeback.html.haml:137 -msgid "All Providers" -msgstr "" +msgid "Used to authenticate with OpenStack AMQP Messaging Bus for event handling. Configure AMQP if eventing is not enabled on Ceilometer." +msgstr "Utilisé pour l'authentification auprès du bus de messages OpenStack AMQP pour l'interception d'événements. Configurez AMQP si la gestion des événements n'est pas activée sur le service Ceilometer." -#: ../app/views/report/_form_filter_chargeback.html.haml:137 -msgid "Choose Provider" -msgstr "" +msgid "Used to gather Capacity & Utilization metrics." +msgstr "Utilisé pour recueillir les mesures de capacité et d'utilisation." -#: ../app/views/report/_form_filter_chargeback.html.haml:162 -msgid "Choose %{entity}" -msgstr "Choisir %{entity}" +msgid "User" +msgid_plural "Users" +msgstr[0] "Utilisateur" +msgstr[1] "Utilisateurs" -#: ../app/views/report/_form_filter_chargeback.html.haml:219 -msgid "Group by Tag" -msgstr "Grouper par balise" +msgid "User '%{user_id}' is not authorized to access '%{model}' record id '%{record_id}'" +msgstr "L'utilisateur '%{user_id}' n'est pas autorisé à accéder à l'enregistrement de '%{model}' ID '%{record_id}'" -#: ../app/views/report/_form_filter_chargeback.html.haml:240 -msgid "Chargeback Interval" -msgstr "Intervalle rétrofacturation" +msgid "User '%{username}' is not authorized to access '%{controller_name}'" +msgstr "L'utilisateur '%{username}' n'est pas autorisé à accéder à '%{controller_name}'" + +msgid "User Accounts" +msgstr "Comptes utilisateurs" -#: ../app/views/report/_form_filter_chargeback.html.haml:269 -msgid "%{chargeback_interval} Ending with" -msgstr "%{chargeback_interval} se terminant par" +msgid "User Data" +msgstr "Données de l'utilisateur" -#: ../app/views/report/_form_filter_chargeback.html.haml:276 -msgid "%{number} Days Ago" -msgstr "Il y a %{number} jours" +msgid "User Group Sequence was saved" +msgstr "La séquence de groupes d'utilisateurs a été enregistrée" -#: ../app/views/report/_form_filter_chargeback.html.haml:276 -msgid "1 Week Ago" -msgstr "1 Semaine Plus tôt" +msgid "User Group Sequencing for LDAP Look Up:" +msgstr "Séquencement des groupes d'utilisateurs pour la recherche LDAP :" -#: ../app/views/report/_form_filter_chargeback.html.haml:276 -msgid "Today (partial)" -msgstr "Aujourd'hui (partiel)" +msgid "User Information" +msgstr "Informations sur l'utilisateur" -#: ../app/views/report/_form_filter_chargeback.html.haml:278 -msgid "%d Weeks Ago" -msgstr "%d Semaines Avant" +msgid "User Interface Configuration" +msgstr "Configuration de l'interface utilisateur" -#: ../app/views/report/_form_filter_chargeback.html.haml:278 -msgid "This Week (partial)" -msgstr "Cette semaine (partielle)" +msgid "User Interface settings saved for User %{name}" +msgstr "Paramètres d'interface utilisateur enregistrés pour l'utilisateur %{name}" -#: ../app/views/report/_form_filter_chargeback.html.haml:280 -msgid "%d Months Ago" -msgstr " il y a %d mois" +msgid "User Interface settings saved for this session" +msgstr "Paramètres d'interface utilisateur enregistrés pour cette session" -#: ../app/views/report/_form_filter_chargeback.html.haml:280 -msgid "This Month (partial)" -msgstr "Ce mois (partiel)" +msgid "User Name" +msgstr "Nom d'utilisateur" -#: ../app/views/report/_form_filter_chargeback.html.haml:290 -#: ../app/views/report/_form_filter_performance.html.haml:32 -msgid "going back" -msgstr "précédent" +msgid "User Password must be entered to perform LDAP Group Look Up" +msgstr "Le mot de passe utilisateur doit être saisi pour effectuer une recherche de groupe LDAP" -#: ../app/views/report/_form_filter_chargeback.html.haml:294 -msgid "%{number} Day" -msgid_plural "%{number} Days" -msgstr[0] "%{number} jour" -msgstr[1] "%{number} jours" +msgid "User Principal Name" +msgstr "Nom principal de l'utilisateur" -#: ../app/views/report/_form_filter_chargeback.html.haml:294 -#: ../app/views/report/_form_filter_chargeback.html.haml:296 -msgid "%{number} Week" -msgid_plural "%{number} Weeks" -msgstr[0] "%{number} semaine" -msgstr[1] "%{number} semaines" +msgid "User Role" +msgstr "Rôle de l'utilisateur" -#: ../app/views/report/_form_filter_chargeback.html.haml:298 -msgid "%{number} Month" -msgid_plural "%{number} Months" -msgstr[0] "%{number} mois" -msgstr[1] "%{number} mois" +msgid "User Roles" +msgstr "Rôles de l'utilisateur" -#: ../app/views/report/_form_filter_performance.html.haml:4 -msgid "Performance Timeframe" -msgstr "Période de performances" +msgid "User Suffix" +msgstr "Suffixe d'utilisateur" -#: ../app/views/report/_form_filter_performance.html.haml:14 -msgid "Show hourly data from" -msgstr "Afficher les données horaires de" +msgid "User Suffix:" +msgstr "Suffixe d'utilisateur :" -#: ../app/views/report/_form_filter_performance.html.haml:17 -msgid "Show daily data from" -msgstr "Afficher les données quotidiennes de" +msgid "User Type" +msgstr "Type d'utilisateur" -#: ../app/views/report/_form_filter_performance.html.haml:76 -msgid "Note: Only Time Profiles with 'Roll Up Performance' set are shown." -msgstr "" -"Remarque : seuls les profils temporels pour lesquels le paramètre 'Performance" -"s de roll-up' est configuré sont affichés." +msgid "User is not authorized to view %{model} \"%{name}\"" +msgstr "L'utilisateur n'est pas autorisé à afficher le %{model} \"%{name}\"" -#: ../app/views/report/_form_formatting.html.haml:6 -msgid "PDF Output" -msgstr "Sortie PDF" +msgid "User must be entered to perform LDAP Group Look Up" +msgstr "L'utilisateur doit être saisi pour effectuer une recherche de groupe LDAP" -#: ../app/views/report/_form_formatting.html.haml:15 -msgid "Page Size" -msgstr "Format de page" +msgid "User no longer exists" +msgstr "L'utilisateur n'existe plus" -#: ../app/views/report/_form_formatting.html.haml:37 -msgid "Specify Column Headers and Formats" -msgstr "Spécifier les en-têtes et formats de colonne" +msgid "User to Look Up" +msgstr "Utilisateur à rechercher" -#: ../app/views/report/_form_formatting.html.haml:53 -#: ../app/views/report/_form_sort.html.haml:241 -msgid "Header" -msgstr "En-tête" +msgid "User will input the value" +msgstr "La valeur sera saisie par l'utilisateur" -#: ../app/views/report/_form_formatting.html.haml:88 -#: ../app/views/report/_form_sort.html.haml:119 -msgid "Reset to Default" -msgstr "Rétablir les valeurs par défaut" +msgid "Username" +msgstr "Nom d'utilisateur" -#: ../app/views/report/_form_preview.html.haml:8 -msgid "Timeline Preview (up to 50 rows)" -msgstr "Aperçu de la chronologie (jusqu'à 50 lignes)" +msgid "Username (optional):" +msgstr "Nom d'utilisateur (optionnel) :" -#: ../app/views/report/_form_preview.html.haml:24 -msgid "Chart Preview (up to 50 rows)" -msgstr "Aperçu du Graphique (jusqu'à 50 lignes)" +msgid "Username and matching password fields are needed to run a database backup" +msgstr "Le nom d'utilisateur et des champs de mot de passe correspondants sont requis pour effectuer une sauvegarde de la base de données" -#: ../app/views/report/_form_preview.html.haml:42 -msgid "Report Preview (up to 50 rows)" -msgstr "Aperçu du rapport (jusqu'à 50 lignes)" +msgid "Username is required" +msgstr "Le nom d'utilisateur est obligatoire" -#: ../app/views/report/_form_preview.html.haml:51 -msgid "Generate Report Preview" -msgstr "Générer un aperçu de rapport" +msgid "Username must be entered if Password is entered" +msgstr "Le nom d'utilisateur doit être saisi si le mot de passe est saisi" -#: ../app/views/report/_form_preview.html.haml:53 -msgid "Generate Report preview" -msgstr "Générer un aperçu de rapport" +msgid "Username must be entered to perform LDAP Group Look Up" +msgstr "Le nom d'utilisateur doit être saisi pour effectuer une recherche de groupe LDAP" -#: ../app/views/report/_form_sort.html.haml:6 -msgid "Sort Criteria" -msgstr "Critères de tri" +msgid "Username:" +msgstr "Nom d'utilisateur :" -#: ../app/views/report/_form_sort.html.haml:15 -msgid "Sort the Report By" -msgstr "Trier le rapport par" +msgid "Users" +msgstr "Utilisateurs" -#: ../app/views/report/_form_sort.html.haml:35 -#: ../app/views/report/_form_sort.html.haml:183 -msgid "Original Value" -msgstr "Valeur d'origine" +msgid "Users (%{users_count})" +msgstr "Utilisateurs (%{users_count})" -#: ../app/views/report/_form_sort.html.haml:73 -msgid "Show Sort Breaks" -msgstr "Afficher les ruptures de tri" +msgid "Users are only allowed to delete their own requests" +msgstr "Un utilisateur ne peut supprimer que ses propres demandes" -#: ../app/views/report/_form_sort.html.haml:96 -msgid "Hide Detail Rows" -msgstr "Masquer les lignes de détails" +msgid "Users in this Group" +msgstr "Utilisateurs du groupe" -#: ../app/views/report/_form_sort.html.haml:114 -msgid "Format on Summary Row" -msgstr "Format sur la ligne de résumé" +msgid "Utilization" +msgstr "Utilisation" -#: ../app/views/report/_form_sort.html.haml:138 -msgid "Label on Summary Row" -msgstr "Libellé sur la ligne de résumé" +msgid "Utilization Summary" +msgstr "Synthèse de l'utilisation" -#: ../app/views/report/_form_sort.html.haml:163 -msgid "Within Above Field, Sort By" -msgstr "Dans le champ ci-dessus, trier par" +msgid "VC Custom Attributes" +msgstr "Attributs personnalisés VC" -#: ../app/views/report/_form_sort.html.haml:200 -msgid "Number of Rows to Show" -msgstr "Nombre de lignes à afficher" +msgid "VM" +msgstr "MV" -#: ../app/views/report/_form_sort.html.haml:206 -msgid "First %{number}" -msgstr "Premier %{number}" +msgid "VM \"%{name}\"" +msgstr "MV \"%{name}\"" -#: ../app/views/report/_form_sort.html.haml:225 -msgid "Specify Calculations for Summary Rows" -msgstr "Spécifier les calculs pour les lignes de synthèse" +msgid "VM %{name} Remote Console" +msgstr "Console à distance MV %{name}" -#: ../app/views/report/_form_styling.html.haml:10 -msgid "Specify Column Styles" -msgstr "Spécifier les styles de colonnes" +msgid "VM Analysis" +msgstr "Analyse MV" -#: ../app/views/report/_form_styling.html.haml:26 -msgid "Style" -msgstr "Style" +msgid "VM Analysis Collectors" +msgstr "Collecteurs d'anamyse MV" -#: ../app/views/report/_form_styling.html.haml:31 -msgid "If" -msgstr "Si" +msgid "VM Compliance Check" +msgstr "Vérification de conformité de la MV" -#: ../app/views/report/_form_styling.html.haml:57 -msgid "Normal" -msgstr "Normal" +msgid "VM Configuration" +msgstr "Configuration de la MV" -#: ../app/views/report/_form_styling.html.haml:137 -msgid "* Style \"If\" conditions are evaluated top to bottom for each column" +msgid "VM Console" msgstr "" -"* Les conditions de style \"Si\" sont évaluées de haut en bas pour chaque colonn" -"e." -#: ../app/views/report/_form_tl_sample.html.haml:7 -msgid "Sample Timeline" -msgstr "Exemple de ligne du temps" +msgid "VM Counts per %{model}" +msgstr "Nombres de MV par %{model}" -#: ../app/views/report/_form_tl_settings.html.haml:6 -msgid "Timeline Settings" -msgstr "Paramètres de chronologie" +msgid "VM Hardware" +msgstr "Matériel de MV" -#: ../app/views/report/_form_tl_settings.html.haml:19 -msgid "Base Timeline on" -msgstr "Chronologie de base sur" +msgid "VM Limits" +msgstr "Limites de MV" -#: ../app/views/report/_form_tl_settings.html.haml:47 -msgid "Event to position at" -msgstr "Événement à positionner à" +msgid "VM Memory Files" +msgstr "Fichiers mémoire de la MV" -#: ../app/views/report/_menu_form1.html.haml:45 -msgid "Move selected folder top" -msgstr "Déplacer le répertoire sélectionné au sommet" +msgid "VM Number" +msgstr "Numéro de MV" -#: ../app/views/report/_menu_form1.html.haml:119 -msgid "Manage Accordions & Folders" -msgstr "Gérer les accordéons et les dossiers" +msgid "VM Options" +msgstr "Options de MV" -#: ../app/views/report/_menu_form1.html.haml:130 -msgid "Please select a node from the tree to edit." -msgstr "Sélectionnez un nœud à modifier dans l'arborescence." +msgid "VM Power Functions" +msgstr "Fonctions d'alimentation MV" -#: ../app/views/report/_menu_form2.html.haml:8 -msgid "Manage Reports" -msgstr "Gérer les rapports" +msgid "VM Provisioned Disk Files" +msgstr "Fichiers disque configurés de la MV" -#: ../app/views/report/_menu_form2.html.haml:19 -msgid "Available Reports:" -msgstr "Rapports disponibles:" +msgid "VM Reconfigure Request was cancelled by the user" +msgstr "La demande de reconfiguration de la MV a été annulée par l'utilisateur" -#: ../app/views/report/_menu_form2.html.haml:26 -msgid "Selected Reports:" -msgstr "Rapports sélectionnés :" +msgid "VM Reconfigure Request was saved" +msgstr "La demande de reconfiguration de la MV a été enregistrée" -#: ../app/views/report/_menu_form2.html.haml:53 -msgid "Move selected reports right" -msgstr "Déplacer les rapports sélectionnés vers la droite" +msgid "VM Remote Access" +msgstr "" -#: ../app/views/report/_menu_form2.html.haml:69 -msgid "Move selected reports left" -msgstr "Déplacer les rapports sélectionnés vers la gauche" +msgid "VM Reservations" +msgstr "Réservations de MV" -#: ../app/views/report/_menu_form2.html.haml:85 -msgid "Move selected reports to top" -msgstr "Déplacer les rapports sélectionnés au sommet" +msgid "VM Selection" +msgstr "Sélection de MV" -#: ../app/views/report/_menu_form2.html.haml:101 -msgid "Move selected reports up" -msgstr "Déplacer les rapports sélectionnés vers le haut" +msgid "VM Snapshot Files" +msgstr "Fichiers de cliché de MV" -#: ../app/views/report/_menu_form2.html.haml:117 -msgid "Move selected reports down" -msgstr "Déplacer les rapports sélectionnés vers le bas" +msgid "VM Templates" +msgstr "Modèles de MV" -#: ../app/views/report/_menu_form2.html.haml:133 -msgid "Move selected reports to bottom" -msgstr "Déplacer les rapports sélectionnés tout en bas" +msgid "VM VMRC Console error: %{error}" +msgstr "Erreur de console VMRC de la MV : %{error}" -#: ../app/views/report/_menu_form2.html.haml:163 -msgid "Commit report management changes" -msgstr "Valider les modifications de gestion du rapport" +msgid "VM Visibility" +msgstr "Visibilité MV" -#: ../app/views/report/_menu_form2.html.haml:174 -msgid "Discard report management changes" -msgstr "Ignorer les modifications de gestion du rapport" +msgid "VM and Instance Conditions" +msgstr "Conditions de MV et d'instance" -#: ../app/views/report/_menu_form2.html.haml:193 -msgid "* Report is not owned by your group so it cannot be removed" -msgstr "* Rapport non possédé par votre groupe ne pouvant être supprimé" +msgid "VM data will be collected for VMs under selected %{hosts} only. Data is collected for a %{cluster} and all of its %{hosts} when at least one %{host} is selected." +msgstr "Les données de la MV seront collectées pour les MV pour les %{hosts} sélectionnés uniquement. Les données sont collectées pour un %{cluster} et tous ses %{hosts} quand un %{host} au moins est sélectionné." -#: ../app/views/report/_report_info.html.haml:20 -#: ../app/views/report/_report_list.html.haml:117 -msgid "Primary (Record) Filter" -msgstr "Filtre (d'enregistrements) principal" +msgid "VM has too many parents." +msgstr "" -#: ../app/views/report/_report_info.html.haml:31 -#: ../app/views/report/_report_list.html.haml:122 -msgid "Secondary (Display) Filter" -msgstr "Filtre (d'affichage) secondaire" +msgid "VM is already retired" +msgstr "La MV est déjà désactivée" -#: ../app/views/report/_report_info.html.haml:113 -msgid "Report is not Scheduled." -msgstr "Le rapport n'est pas planifié." +msgid "VM successfully removed from service \"%{name}\"" +msgstr "MV retirée du service \"%{name}\"" + +msgid "VM/Instance Name" +msgstr "Nom de MV/instance" -#: ../app/views/report/_report_info.html.haml:169 -msgid "View this Schedule" -msgstr "Afficher ce plannning" +msgid "VM: %{name} (Click to view)" +msgstr "MV : %{name} (Cliquer pour afficher)" -#: ../app/views/report/_report_info.html.haml:232 -msgid "Report doesn't belong to Widgets." -msgstr "Le rapport ne concerne pas les composants graphiques." +msgid "VMDB" +msgstr "VMDB" -#: ../app/views/report/_report_info.html.haml:261 -msgid "Click to view selected widget" -msgstr "Cliquez pour afficher le composant d'interface sélectionné" +msgid "VMDB \"%{name}\" Table Utilization" +msgstr "Utilisation de la table de VMDB \"%{name}\"" -#: ../app/views/report/_report_list.html.haml:198 -msgid "Report Info" -msgstr "Informations sur le rapport" +msgid "VMDB Client Connections" +msgstr "Connexions de client VMDB" -#: ../app/views/report/_report_list.html.haml:214 -#: ../app/views/report/_reports.html.haml:2 -msgid "Choose a Report to view from the menus on the left." -msgstr "Choisir un rapport à afficher dans les menus de gauche." +msgid "VMDB Settings" +msgstr "Paramètres de la VMDB" -#: ../app/views/report/_report_saved_reports.html.haml:6 -#: ../app/views/report/_role_list.html.haml:25 -msgid "No Saved Reports available." -msgstr "Aucun rapport enregistré disponible." +msgid "VMDB Summary" +msgstr "Synthède de la VMDB" -#: ../app/views/report/_role_list.html.haml:45 -msgid "Choose a Role to edit from the left." -msgstr "Choisir un rôle à modifier dans la partie gauche." +msgid "VMDB Utilization" +msgstr "Utilisation de la VMDB" -#: ../app/views/report/_savedreports_list.html.haml:22 -msgid "* No Reports available." -msgstr "* Aucun Rapports disponible." +msgid "VMM Information" +msgstr "Informations sur VMM" -#: ../app/views/report/_savedreports_list.html.haml:29 -#: ../app/views/report/show_saved.html.haml:3 -msgid "Choose a Report from the menus on the left." -msgstr "Choisir un rapport dans les menus de gauche." +msgid "VMs" +msgstr "MV" -#: ../app/views/report/_schedule_email_options.html.haml:7 -msgid "E-mail Options" -msgstr "Options de messagerie" +msgid "VMs & Instances" +msgstr "MV et instances" -#: ../app/views/report/_schedule_email_options.html.haml:16 -msgid "Send if Report is Empty" -msgstr "Envoyer si le rapport est vide" +msgid "VMs & Templates" +msgstr "MV et modèles" -#: ../app/views/report/_schedule_email_options.html.haml:30 -msgid "Attachments" -msgstr "Pièces jointes" +msgid "VMs And Templates" +msgstr "MV et modèles" -#: ../app/views/report/_schedule_email_options.html.haml:50 -msgid "CSV" -msgstr "CSV" +msgid "VMsafe" +msgstr "MVafe" -#: ../app/views/report/_schedule_email_options.html.haml:60 -msgid "PDF" -msgstr "PDF" +msgid "VMware Console Support" +msgstr "Prise en charge de la console VMware" -#: ../app/views/report/_schedule_form.html.haml:68 -msgid "E-mail after Running" -msgstr "Email après exécution" +msgid "VMware MKS Plugin" +msgstr "Exension MKS VMware" -#: ../app/views/report/_schedule_form_filter.html.haml:6 -msgid "Report Selection" -msgstr "Sélection du rapport" +msgid "VMware MKS Plugin Version" +msgstr "Version de l'extension MKS VMware" -#: ../app/views/report/_schedule_form_timer.html.haml:6 -#: ../app/views/report/_widget_show.html.haml:279 -msgid "Timer" -msgstr "Minuterie" +msgid "VMware Server" +msgstr "Serveur VMware" -#: ../app/views/report/_schedule_form_timer.html.haml:20 -msgid "Monthly" -msgstr "Mensuel" +msgid "VMware VMRC Plugin" +msgstr "Exension VMRC VMware" -#: ../app/views/report/_schedule_form_timer.html.haml:20 -msgid "Once" -msgstr "Une fois" +msgid "VMware vCenter" +msgstr "VMware vCenter" -#: ../app/views/report/_schedule_form_timer.html.haml:20 -msgid "Weekly" -msgstr "Chaque semaine" +msgid "VNC" +msgstr "VNC" -#: ../app/views/report/_schedule_form_timer.html.haml:151 -msgid "h" -msgstr "h" +msgid "VNC consoles are unsupported on VMware ESXi 6.5 and later." +msgstr "" -#: ../app/views/report/_schedule_form_timer.html.haml:164 -msgid "m" -msgstr "m" +msgid "VNF Templates" +msgstr "Modèles VNF" -#: ../app/views/report/_schedule_list.html.haml:12 -msgid "No Schedules available." -msgstr "Aucun planning disponible." +msgid "Valid" +msgstr "Valide" -#: ../app/views/report/_schedule_list.html.haml:18 -msgid "Choose a Schedule to view from the menus on the left." -msgstr "Choisir un Planning à afficher dans les menus de gauche." +msgid "Validate" +msgstr "Valider" -#: ../app/views/report/_show_schedule.html.haml:29 -msgid "E-Mail after Running" -msgstr "Email après exécution" +msgid "Validate the Amazon Settings" +msgstr "Valider les paramètres Amazon" -#: ../app/views/report/_show_schedule.html.haml:44 -msgid "From E-mail" -msgstr "Depuis l'e-mail" +msgid "Validate the LDAP Settings by binding with the %{host}" +msgstr "Valider les paramètres LDAP par une liaison avec l'%{host}" -#: ../app/views/report/_show_schedule.html.haml:58 -msgid "To E-mail" -msgstr "Email de destination" +msgid "Validate the credentials" +msgstr "Valider les informations d'authentification" -#: ../app/views/report/_show_schedule.html.haml:72 -#: ../app/views/report/_widget_show.html.haml:126 -msgid "Report Filter" -msgstr "Filtre de rapports" +msgid "Validate the credentials by logging into the Server" +msgstr "Valider les informations d'authentification en se connectant au serveur" -#: ../app/views/report/_widget_columns.html.haml:72 -msgid "Column 4" -msgstr "Colonne 4" +msgid "Validate the credentials by logging into the selected %{host}" +msgstr "Valider les informations d'authentification en se connectant à l'%{host} sélectionné" -#: ../app/views/report/_widget_form.html.haml:76 -#: ../app/views/report/_widget_show.html.haml:338 -msgid "* Fields are read only for default Widgets" -msgstr "* Pour les widgets pas défaut, ces champs sont en lecture uniquement." +msgid "Validate the credentials by logging into the selected %{title_for_host}" +msgstr "Valider les informations d'authentification en se connectant au %{title_for_host} sélectionné" -#: ../app/views/report/_widget_form_chart.html.haml:4 -#: ../app/views/report/_widget_show.html.haml:112 -msgid "Chart Report" -msgstr "Rapport sur le graphique" +msgid "Validation Required" +msgstr "Validation requise" -#: ../app/views/report/_widget_form_menu.html.haml:4 -#: ../app/views/report/_widget_show.html.haml:116 -msgid "Menu Shortcuts" -msgstr "Raccourcis de menu" +msgid "Validation successful" +msgstr "Validation réussie" -#: ../app/views/report/_widget_form_menu.html.haml:7 -msgid "Add a Shortcut" -msgstr "" +msgid "Validator Rule" +msgstr "Règle de validateur" -#: ../app/views/report/_widget_form_menu.html.haml:23 -msgid "Drag this Shortcut to a new location" -msgstr "Glissez ce Raccourci vers un nouvel emplacement" +msgid "Validator Type" +msgstr "Type de validateur" -#: ../app/views/report/_widget_form_menu.html.haml:33 -msgid "Remove this Shortcut" -msgstr "Supprimer ce raccourci" +msgid "Value" +msgstr "Valeur" -#: ../app/views/report/_widget_form_menu.html.haml:42 -msgid "Reset this Shortcut's text" -msgstr "Réinitialiser le texte de ce raccourci" +msgid "Value Threshold must be an integer" +msgstr "Le seuil de valeur doit être un nombre entier" -#: ../app/views/report/_widget_form_report.html.haml:4 -#: ../app/views/report/_widget_show.html.haml:110 -msgid "Report Options" -msgstr "Options de rapport" +msgid "Value Type" +msgstr "Type de valeur" -#: ../app/views/report/_widget_form_report.html.haml:59 -msgid "No Widget compatible Reports found" -msgstr "Aucun rapport compatible avec le widget trouvé" +msgid "Value and Description fields can't be blank" +msgstr "Les champs Valeur et Description ne peuvent pas être vides" -#: ../app/views/report/_widget_form_report.html.haml:69 -#: ../app/views/report/_widget_form_rss.html.haml:86 -#: ../app/views/report/_widget_show.html.haml:268 -msgid "Row Count" -msgstr "Nombre de lignes" +msgid "Value missing for %{field}" +msgstr "Valeur manquante pour %{field}" -#: ../app/views/report/_widget_form_rss.html.haml:4 -#: ../app/views/report/_widget_show.html.haml:114 -msgid "RSS Feed Options" -msgstr "Options de flux RSS" +msgid "Value to Set" +msgstr "Valeur à définir" -#: ../app/views/report/_widget_form_rss.html.haml:20 -#: ../app/views/report/_widget_show.html.haml:164 -msgid "External" -msgstr "Externe" +msgid "Value:" +msgstr "Valeur :" -#: ../app/views/report/_widget_form_rss.html.haml:20 -#: ../app/views/report/_widget_show.html.haml:164 -msgid "Internal" -msgstr "Interne" +msgid "Values" +msgstr "Valeurs" -#: ../app/views/report/_widget_form_rss.html.haml:37 -#: ../app/views/report/_widget_show.html.haml:183 -msgid "Internal RSS Feed" -msgstr "Flux RSS interne" +msgid "Variable" +msgstr "Variable" -#: ../app/views/report/_widget_form_rss.html.haml:59 -#: ../app/views/report/_widget_show.html.haml:204 -msgid "External RSS Feed/URL" -msgstr "Flux RSS/URL externe" +msgid "Variable Object ID" +msgstr "ID d'objet de variable" -#: ../app/views/report/_widget_form_rss.html.haml:64 -msgid "Enter URL Manually" -msgstr "Saisir manuellement l'URL" +msgid "Variables" +msgstr "Variables" -#: ../app/views/report/_widget_list.html.haml:4 -#: ../app/views/report/_widget_list.html.haml:11 -msgid "No Widgets available." -msgstr "Aucun widget disponible." +msgid "Variables & Default Values" +msgstr "" -#: ../app/views/report/_widget_show.html.haml:71 -msgid "Current Status" -msgstr "État actuel" +msgid "Vendor" +msgstr "Fournisseur" -#: ../app/views/report/_widget_show.html.haml:139 -msgid "Report no longer exists" -msgstr "Le rapport n'existe plus" +msgid "Verbosity" +msgstr "" -#: ../app/views/report/_widget_show.html.haml:160 -msgid "Chart no longer exists" -msgstr "Le graphique n'existe plus" +msgid "Verify" +msgstr "Vérifier" -#: ../app/views/report/_widget_show.html.haml:196 -msgid "RSS Feed no longer exists" -msgstr "Le flux RSS n'existe plus" +msgid "Verify %{password_label}" +msgstr "Vérifier le %{password_label}" -#: ../app/views/report/_widget_show.html.haml:218 -msgid "Shortcuts" -msgstr "Raccourcis" +msgid "Verify Password" +msgstr "Vérifier le mot de passe" -#: ../app/views/report/_widget_show.html.haml:256 -msgid "Column %{index}" -msgstr "Colonne %{index}" +msgid "Verify Peer Certificate" +msgstr "Vérifier le certificat pair" -#: ../app/views/report/_widget_show.html.haml:314 -msgid "No timer is attached to this Widget, its contents will not be updated." +msgid "Verify TLS Certificates" msgstr "" -"Aucun temporisateur n'est associé à ce widget. Son contenu ne sera pas télécha" -"rgé." -#: ../app/views/report/_widget_show.html.haml:316 -msgid "Edit this Widget to configure a timer." -msgstr "Modifiez ce composant d'interface pour configurer un minuteur." +msgid "Version" +msgstr "Version" -#: ../app/views/security_group/_main.html.haml:20 -msgid "Direction" -msgstr "Direction" +msgid "Version / Build" +msgstr "Version/Compilation" -#: ../app/views/security_group/_main.html.haml:20 -msgid "End Port" -msgstr "Port de fin" +msgid "View %{name} Folder" +msgstr "Afficher le dossier %{name}" -#: ../app/views/security_group/_main.html.haml:20 -msgid "Host Protocol" -msgstr "Protocole hôte" +msgid "View '%{name}' Cluster" +msgstr "Afficher le cluster '%{name}'" -#: ../app/views/security_group/_main.html.haml:20 -msgid "Network Protocol" -msgstr "Protocole réseau" +msgid "View '%{name}' Folder" +msgstr "Afficher le dossier '%{name}'" -#: ../app/views/service/_svcs_show.html.haml:18 -msgid "Totals for Service VMs" -msgstr "Totaux pour les MV de service" +msgid "View Analysis Profiles" +msgstr "Afficher tous les profils d'analyse" -#: ../app/views/shared/_file_chooser.html.haml:9 -msgid "Choose file" -msgstr "Choisir un fichier" +msgid "View Compute Rates" +msgstr "Afficher les taux de calcul" -#: ../app/views/shared/_topology_header.html.haml:9 -#: ../app/views/shared/_topology_header_toolbar.html.haml:7 -msgid "Display Names" -msgstr "Noms d'affichage" +msgid "View Condition" +msgstr "Afficher la condition" -#: ../app/views/shared/buttons/_ab_form.html.haml:7 -msgid "Paste object details for use in a Button." -msgstr "Coller les détails d'objet à utiliser dans un bouton" +msgid "View Examples (read only)' Folder" +msgstr "Afficher le dossier Exemples (lecture seule)" -#: ../app/views/shared/buttons/_ab_form.html.haml:18 -msgid "" -"Paste is not available, no object information has been copied from the Simulat" -"ion screen" +msgid "View Graph" msgstr "" -"Collage non disponible, aucune information objet n'a été copiée à partir de l'" -"écran de simulation" -#: ../app/views/shared/buttons/_ab_form.html.haml:36 -#: ../app/views/shared/buttons/_ab_list.html.haml:134 -#: ../app/views/shared/buttons/_ab_show.html.haml:15 -msgid "Button Text" -msgstr "Texte du bouton" +msgid "View Groups" +msgstr "Afficher les groupes" + +msgid "View Instances" +msgstr "Afficher les instances" + +msgid "View LDAP Regions" +msgstr "Afficher les régions LDAP" + +msgid "View Parent Tenant" +msgstr "Afficher le locataire parent" -#: ../app/views/shared/buttons/_ab_form.html.haml:55 -#: ../app/views/shared/buttons/_ab_list.html.haml:146 -#: ../app/views/shared/buttons/_ab_show.html.haml:27 -#: ../app/views/shared/buttons/_group_form.html.haml:36 -msgid "Display on Button" -msgstr "Afficher sur le Bouton" +msgid "View Policy Simulation for the selected Templates" +msgstr "Afficher la simulation de stratégie pour les modèles sélectionnés" -#: ../app/views/shared/buttons/_ab_form.html.haml:69 -#: ../app/views/shared/buttons/_ab_list.html.haml:154 -#: ../app/views/shared/buttons/_ab_show.html.haml:35 -msgid "Button Hover Text" -msgstr "Texte de l'infobulle du bouton" +msgid "View Policy Simulation for the selected items" +msgstr "Afficher la simulation de stratégie pour les éléments sélectionnés" -#: ../app/views/shared/buttons/_ab_form.html.haml:85 -msgid "Button Image" -msgstr "Image du bouton" +msgid "View Policy Simulation for this Image" +msgstr "Afficher la simulation de stratégie pour cette image" -#: ../app/views/shared/buttons/_ab_form.html.haml:90 -#: ../app/views/shared/buttons/_group_form.html.haml:73 -msgid "No Image" -msgstr "Aucune image" +msgid "View Policy Simulation for this Instance" +msgstr "Afficher la simulation de stratégie pour cette instance" -#: ../app/views/shared/buttons/_ab_form.html.haml:105 -msgid "" -msgstr "" +msgid "View Policy Simulation for this Template" +msgstr "Afficher la simulation de stratégie pour ce modèle" -#: ../app/views/shared/buttons/_ab_form.html.haml:116 -#: ../app/views/shared/buttons/_ab_show.html.haml:74 -msgid "Open URL" -msgstr "" +msgid "View Policy Simulation for this VM" +msgstr "Afficher la simulation de stratégie pour cette MV" -#: ../app/views/shared/buttons/_ab_list.html.haml:32 -msgid "No Items found." -msgstr "Aucun élément trouvé." +msgid "View Roles" +msgstr "Afficher les rôles" -#: ../app/views/shared/buttons/_ab_list.html.haml:56 -#: ../app/views/shared/buttons/_ab_list.html.haml:198 -msgid "Hover Text" -msgstr "Texte de pointage" +msgid "View SOP" +msgstr "" -#: ../app/views/shared/buttons/_ab_list.html.haml:167 -#: ../app/views/shared/buttons/_ab_show.html.haml:48 -msgid "Image" -msgstr "Image" +msgid "View Schedules" +msgstr "Afficher les plannings" -#: ../app/views/shared/buttons/_ab_list.html.haml:180 -msgid "No Buttons found." -msgstr "Aucun bouton trouvé." +msgid "View Storage Rates" +msgstr "Afficher les taux de stockage" -#: ../app/views/shared/buttons/_ab_show.html.haml:98 -msgid "System/Process/" -msgstr "Système/Processus/" +msgid "View Tenants" +msgstr "Afficher les locataires" -#: ../app/views/shared/buttons/_ab_show.html.haml:181 -msgid "No Attribute/Value Pairs found." -msgstr "Aucun(e) attribut/paire de valeurs trouvé(e)." +msgid "View This Alert" +msgstr "Afficher cette alerte" -#: ../app/views/shared/buttons/_ab_show.html.haml:214 -msgid "By Role" -msgstr "Par Rôle" +msgid "View Users" +msgstr "Afficher les utilisateurs" -#: ../app/views/shared/buttons/_ab_show.html.haml:214 -msgid "To All" -msgstr "À tous" +msgid "View Zones" +msgstr "Afficher les zones" -#: ../app/views/shared/buttons/_column_lists.html.haml:39 -msgid "Move selected fields right" -msgstr "Déplacer les champs sélectionnés vers la droite" +msgid "View the %{title} Guide" +msgstr "Afficher le guide %{title}" -#: ../app/views/shared/buttons/_column_lists.html.haml:55 -msgid "Move selected fields left" -msgstr "Déplacer les champs sélectionnés vers la gauche" +msgid "View the table" +msgstr "Afficher la table" -#: ../app/views/shared/buttons/_column_lists.html.haml:83 -msgid "Move selected fields to top" -msgstr "Déplacer les champs sélectionnés tout en haut" +msgid "View this %{model} Policy" +msgstr "Afficher cette stratégie de %{model}" -#: ../app/views/shared/buttons/_column_lists.html.haml:131 -msgid "Move selected fields to bottom" -msgstr "Déplacer les champs sélectionnés tout en bas" +msgid "View this Action" +msgstr "Afficher cette action" -#: ../app/views/shared/buttons/_group_form.html.haml:17 -msgid "Button Group Text" -msgstr "Texte du Groupe de boutons" +msgid "View this Alert" +msgstr "Afficher cette alerte" -#: ../app/views/shared/buttons/_group_form.html.haml:50 -msgid "Button Group Hover Text" -msgstr "Texte de l'infobulle du groupe de boutons" +msgid "View this Alert Profile" +msgstr "Afficher ce profil d'alerte" -#: ../app/views/shared/buttons/_group_form.html.haml:66 -msgid "Button Group Image" -msgstr "Image du Groupe de boutons" +msgid "View this Condition" +msgstr "Afficher cette condition" -#: ../app/views/shared/buttons/_group_form.html.haml:91 -msgid "Assign Buttons" -msgstr "Assigner des Boutons" +msgid "View this Event" +msgstr "Afficher cet événement" -#: ../app/views/shared/buttons/_group_order_form.html.haml:17 -msgid "Button Group Order:" -msgstr "Ordre du Groupe de boutons" +msgid "View this Event Action" +msgstr "Afficher cette action d'événement" -#: ../app/views/shared/summary/_textual_listview.html.haml:30 -msgid "View the table" -msgstr "Afficher la table" +msgid "View this Group" +msgstr "Afficher ce groupe" -#: ../app/views/shared/views/_ownership.html.haml:11 -msgid "Changes" -msgstr "Modifications" +msgid "View this ISO Image" +msgstr "Afficher cette image ISO" -#: ../app/views/shared/views/_ownership.html.haml:20 -msgid "Select an Owner:" -msgstr "Sélectionner un propriétaire :" +msgid "View this MiqServer" +msgstr "Afficher ce MiqServer" -#: ../app/views/shared/views/_ownership.html.haml:26 -#: ../app/views/shared/views/_ownership.html.haml:51 -msgid "Don't change" -msgstr "Ne pas modifier" +msgid "View this Orchestration Template in Catalogs" +msgstr "Afficher ce modèle d'orchestration dans les catalogues" -#: ../app/views/shared/views/_ownership.html.haml:26 -#: ../app/views/shared/views/_ownership.html.haml:28 -msgid "No Owner" -msgstr "Aucun propriétaire" +msgid "View this PXE Image" +msgstr "Afficher cette image PXE" -#: ../app/views/shared/views/_ownership.html.haml:45 -msgid "Select a Group:" -msgstr "Sélectionner un groupe :" +msgid "View this Policy Event" +msgstr "Afficher cet événement de stratégie" -#: ../app/views/shared/views/_ownership.html.haml:69 -msgid "Affected Items" -msgstr "Items Affectés" +msgid "View this Profile" +msgstr "Afficher ce profil" -#: ../app/views/shared/views/_prov_dialog.html.haml:37 -msgid "Select" -msgstr "Sélectionner" +msgid "View this Project" +msgstr "Afficher ce projet" -#: ../app/views/shared/views/_prov_dialog.html.haml:37 -msgid "Selected VM" -msgstr "MV sélectionnée" +msgid "View this Report" +msgstr "Afficher ce rapport" -#: ../app/views/shared/views/_prov_dialog.html.haml:56 -msgid "ISO" -msgstr "ISO" +msgid "View this Role" +msgstr "Afficher ce rôle" -#: ../app/views/shared/views/_prov_dialog.html.haml:64 -msgid "Number of Instances" -msgstr "Nombre d'instances" +msgid "View this Schedule" +msgstr "Afficher ce plannning" -#: ../app/views/shared/views/_prov_dialog.html.haml:64 -msgid "Number of VMs" -msgstr "Nombre de MV" +msgid "View this Tenant" +msgstr "Afficher ce locataire" -#: ../app/views/shared/views/_prov_dialog.html.haml:73 -#: ../app/views/shared/views/_prov_dialog.html.haml:284 -msgid "Naming" -msgstr "Désignation" +msgid "View this User" +msgstr "Afficher cet utilisateur" -#: ../app/views/shared/views/_prov_dialog.html.haml:126 -msgid "Folder" -msgstr "Dossier" +msgid "View this Widget" +msgstr "Afficher ce composant graphique" -#: ../app/views/shared/views/_prov_dialog.html.haml:152 -msgid "Placement - Options" -msgstr "Placement - Options" +msgid "View this Windows Image" +msgstr "Afficher cette image Windows" -#: ../app/views/shared/views/_prov_dialog.html.haml:163 -msgid "Hardware" -msgstr "Matériel" +msgid "View this Zone" +msgstr "Afficher cette zone" -#: ../app/views/shared/views/_prov_dialog.html.haml:173 -msgid "VM Limits" -msgstr "Limites de MV" +msgid "View this Zone's settings" +msgstr "Afficher les paramètres de cette zone" -#: ../app/views/shared/views/_prov_dialog.html.haml:181 -msgid "VM Reservations" -msgstr "Réservations de MV" +msgid "View this item" +msgstr "Afficher cet élément" -#: ../app/views/shared/views/_prov_dialog.html.haml:197 -msgid "Network Adapter Information" -msgstr "Informations sur l'adaptateur réseau" +msgid "Virtual Machine" +msgstr "Machine virtuelle" -#: ../app/views/shared/views/_prov_dialog.html.haml:207 -msgid "Basic Options" -msgstr "Options de Base" +msgid "Virtual Machines" +msgstr "Machines virtuelles" -#: ../app/views/shared/views/_prov_dialog.html.haml:216 -#: ../app/views/shared/views/_prov_dialog.html.haml:293 -#: ../app/views/shared/views/_prov_dialog.html.haml:330 -msgid "Custom Specification" -msgstr "Fiche technique personnalisée" +msgid "Virtual Private Cloud" +msgstr "Cloud privé virtuel" -#: ../app/views/shared/views/_prov_dialog.html.haml:225 -msgid "Unattended GUI" -msgstr "GUI automatisée" +msgid "Virtualization Type" +msgstr "Type de virtualisation" -#: ../app/views/shared/views/_prov_dialog.html.haml:233 -msgid "Identification" -msgstr "Identification" +msgid "Visibility" +msgstr "Visibilité" -#: ../app/views/shared/views/_prov_dialog.html.haml:242 -msgid "Domain Information" -msgstr "Information sur le Domaine" +msgid "Visible" +msgstr "Visible" -#: ../app/views/shared/views/_prov_dialog.html.haml:251 -msgid "Workgroup Information" -msgstr "Informations sur le groupe de travail" +msgid "Visual" +msgstr "Visuel" -#: ../app/views/shared/views/_prov_dialog.html.haml:259 -msgid "User Data" -msgstr "Données de l'utilisateur" +msgid "Vm" +msgstr "MV" -#: ../app/views/shared/views/_prov_dialog.html.haml:267 -#: ../app/views/shared/views/_prov_dialog.html.haml:301 -msgid "Windows Options" -msgstr "Options Windows" +msgid "Vm Compliance Policies" +msgstr "Stratégies de conformité de MV" -#: ../app/views/shared/views/_prov_dialog.html.haml:275 -msgid "Server License" -msgstr "Licence de serveur" +msgid "Vm Control Policies" +msgstr "Stratégies de contrôle de MV" -#: ../app/views/shared/views/_prov_dialog.html.haml:310 -msgid "Upload File" -msgstr "Télécharger un fichier" +msgid "Volume" +msgstr "Volume" -#: ../app/views/shared/views/_prov_dialog.html.haml:319 -msgid "Uploaded File '%{filename}'" -msgstr "Fichier téléchargé '%{filename}'" +msgid "Volume Backups" +msgstr "" -#: ../app/views/shared/views/_prov_dialog.html.haml:356 -msgid "WINS Server" -msgstr "Serveur WINS" +msgid "Volume Claim" +msgstr "Demande de volume" -#: ../app/views/shared/views/_prov_dialog.html.haml:416 -msgid "Lifespan" -msgstr "Durée de vie" +msgid "Volume ID" +msgstr "ID du volume" -#: ../app/views/shared/views/_retire.html.haml:9 -msgid "Set/Remove Retirement Date" -msgstr "Définir/annuler une date de désactivation" +msgid "Volume Name" +msgstr "Nom du volume" -#: ../app/views/shared/views/_retire.html.haml:35 -msgid "Set to blank" -msgstr "Définir comme vide" +msgid "Volume Path" +msgstr "Chemin du volume" -#: ../app/views/shared/views/_retire.html.haml:44 -msgid "Retirement Warning" -msgstr "Alerte de désactivation" +msgid "Volume Snapshots" +msgstr "Clichés de volume" -#: ../app/views/shared/views/_retire.html.haml:49 -msgid "1 Week before retirement" -msgstr "Une Semaine avant désactivation" +msgid "Volumes" +msgstr "Volumes" -#: ../app/views/shared/views/_retire.html.haml:49 -msgid "2 Weeks before retirement" -msgstr "2 Semaines avant désactivation" +msgid "WINS Server" +msgstr "Serveur WINS" -#: ../app/views/shared/views/_retire.html.haml:49 -msgid "30 Days before retirement" -msgstr "30 Jours avant désactivation" +msgid "Waiting to Start" +msgstr "En attente de démarrage" -#: ../app/views/shared/views/_retire.html.haml:69 -msgid "* Saving a blank date will remove all retirement dates" -msgstr "* Sauvegarder une date vierge détruira toutes les dates de désactivation" +msgid "Warn" +msgstr "Avertissement" -#: ../app/views/shared/views/_retire.html.haml:77 -msgid "New setting will affect Service" -msgid_plural "New setting will affect Services" -msgstr[0] "Le nouveau paramètre affectera le service" -msgstr[1] "Le nouveau paramètre affectera les services" +msgid "Warning" +msgstr "" -#: ../app/views/shared/views/_retire.html.haml:80 -msgid "New setting will affect Orchestration Stack" -msgid_plural "New setting will affect Orchestration Stacks" -msgstr[0] "Le nouveau paramètre affectera la pile d'orchestration" -msgstr[1] "Le nouveau paramètre affectera les piles d'orchestration" +msgid "Warning Count" +msgstr "" -#: ../app/views/shared/views/_retire.html.haml:84 -msgid "New setting will affect VM" -msgid_plural "New setting will affect VMs" -msgstr[0] "Le nouveau paramètre affectera la MV" -msgstr[1] "Le nouveau paramètre affectera les MV" +msgid "Warning: Enabling this option may cause performance issues in large environments (i.e. thousands of VMs)" +msgstr "Avertissement : activer cette option risque de créer des problèmes de performance à grande échelle (c-a-d dans des milliers de MV)" -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:105 -msgid "Aggregated Node Utilization" -msgstr "Utilisation du nœud agrégé" +msgid "Warning: Finished tasks will be permanently removed from the database!" +msgstr "Avertissement : les tâches terminées seront définitivement supprimées de la base de données." -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:214 -msgid "Node Utilization" -msgstr "Utilisation du nœud" +msgid "Warning: Selected node will be restarted, do you want to continue?" +msgstr "Avertissement : le nœud sélectionné va redémarrer, voulez-vous continuer ?" -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:72 -msgid "Global Utilization" -msgstr "Utilisation globale" +msgid "Warning: Server will be restarted, do you want to continue?" +msgstr "Avertissement : le serveur va redémarrer, voulez-vous continuer?" -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:129 -msgid "Cluster Utilization" -msgstr "Utilisation Clusters" +msgid "Warning: Tasks that are older than selected task will be permanently removed from the database!" +msgstr "Avertissement : les tâches antérieures à la tâche sélectionnée seront définitivement supprimées de la base de données." -#: ../app/views/shared/views/ems_common/_form.html.haml:100 -msgid "Openstack Infra provider" -msgstr "Fournisseur d'infrastructure Openstack" +msgid "Warning: The selected Analysis Profiles and ALL of their components will be permanently removed!" +msgstr "Avertissement : les profils d'analyse sélectionnées et TOUS leurs composants seront définitivement supprimés." -#: ../app/views/shared/views/ems_common/_form.html.haml:147 -msgid "Host Default VNC Port Range" -msgstr "Plage de ports VNC par défaut de l'hôte" +msgid "Warning: The selected Block Storage Managers and ALL of their components will be permanently removed!" +msgstr "" -#: ../app/views/shared/views/ems_common/_form.html.haml:180 -msgid "Add this %{provider}" -msgstr "Ajouter ce %{provider}" +msgid "Warning: The selected Button Group will be permanently removed!" +msgstr "Avertissement : le groupe de boutons sélectionné sera définitivement supprimé." -#: ../app/views/shared/views/ems_common/_form.html.haml:188 -msgid "Add of new %{provider} was cancelled by the user" -msgstr "L'ajout d'un nouveau %{provider} a été annulé par l'utilisateur" +msgid "Warning: The selected Catalogs will be permanently removed!" +msgstr "Avertissement : les catalogues sélectionnés seront définitivement supprimés." -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:124 -msgid "Tenant ID" -msgstr "ID locataire" +msgid "Warning: The selected Chargeback Rate will be permanently removed!" +msgstr "Avertissement : le taux de rétrofacturation sélectionné sera définitivement supprimé." -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:276 -msgid "Openstack Infra Provider" -msgstr "Fournisseur d'infrastructure Openstack" +msgid "Warning: The selected Cloud Providers and ALL of their components will be permanently removed from the Virtual Management Database. Are you sure you want to remove the selected Cloud Providers?" +msgstr "Avertissement : les fournisseurs de cloud sélectionnés et TOUS leurs composants seront définitivement supprimés de la base de données Virtual Management. Voulez-vous vraiment supprimer ces fournisseurs de cloud ?" -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:281 -msgid "blank" -msgstr "vide" +msgid "Warning: The selected Cloud Providers and ALL related components will be permanently removed!" +msgstr "Avertissement : les fournisseurs de cloud sélectionnées et TOUS les composants associés seront définitivement supprimés." -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:326 -msgid "Tenant Mapping Enabled" -msgstr "Mappage des locataires activé" +msgid "Warning: The selected Cloud Tenants will be permanently deleted!" +msgstr "Avertissement : les locataires cloud sélectionnés seront définitivement supprimés." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:7 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:73 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:190 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:283 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:378 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:7 -msgid "Master" -msgstr "Maître" +msgid "Warning: The selected Cloud Volume and ALL of their components will be removed!" +msgstr "Avertissement : le volume cloud sélectionné et TOUS ses composants seront supprimés." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:42 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:108 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:240 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:348 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:411 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:56 -msgid "Etcd" -msgstr "Etcd" +msgid "Warning: The selected Containers Providers and ALL of their components will be permanently removed!" +msgstr "Avertissement : les fournisseurs de conteneurs sélectionnés et TOUS leurs composants seront définitivement supprimés." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-mode-review.html.haml:9 -msgid "Authentication Type:" -msgstr "Type d'authentification :" +msgid "Warning: The selected Customization Templates will be permanently removed!" +msgstr "Avertissement : les modèles de personnalisation sélectionnés seront définitivement supprimés." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:11 -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:65 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-review.html.haml:19 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review.html.haml:19 -msgid "Username:" -msgstr "Nom d'utilisateur :" +msgid "Warning: The selected Datastores and ALL of their components will be permanently removed!" +msgstr "Avertissement : les magasins de données sélectionnés et TOUS leurs composants seront définitivement supprimés." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:21 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-review.html.haml:29 -msgid "Password:" -msgstr "Mot de passe :" +msgid "Warning: The selected Datawarehouse Providers and ALL of their components will be permanently removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:35 -msgid "ID:" -msgstr "ID :" +msgid "Warning: The selected Dialog will be permanently removed from the Virtual Management Database!" +msgstr "Avertissement : la boîte de dialogue sélectionnée sera définitivement supprimée de la base de données Virtual Management." -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:45 -msgid "Email:" -msgstr "E-mail :" +msgid "Warning: The selected Dialog will be permanently removed!" +msgstr "Avertissement : la boîte de dialogue sélectionnée sera définitivement supprimée" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:55 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general-review.html.haml:9 -msgid "Name:" -msgstr "Nom :" +msgid "Warning: The selected Host Aggregates will be permanently deleted!" +msgstr "Avertissement : les agrégats d'hôtes sélectionnés seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:75 -msgid "BindDN:" -msgstr "DN de liaison :" +msgid "Warning: The selected ISO Datastores and ALL of their components will be permanently removed!" +msgstr "Avertissement : les magasins de données ISO sélectionnés et TOUS leurs composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:85 -msgid "Bind Password:" -msgstr "Mot de passe de liaison :" +msgid "Warning: The selected Infrastructure Providers and ALL of their components will be permanently removed!" +msgstr "Avertissement : les fournisseurs d'infrastructure sélectionnés et TOUS leurs composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:95 -msgid "CA:" -msgstr "CA :" +msgid "Warning: The selected Items and ALL of their components will be permanently removed!" +msgstr "Avertissement : les éléments sélectionnés et TOUS leurs composants seront définitivement supprimés " -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:105 -msgid "Insecure:" -msgstr "Non sécurisé :" +msgid "Warning: The selected Jobs and ALL of their components will be permanently removed!" +msgstr "Avertissement : les tâches sélectionnées et TOUS leurs composants seront définitivement supprimés " -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:115 -msgid "URL:" -msgstr "URL :" +msgid "Warning: The selected Key Pair and ALL of its components will be permanently removed!" +msgstr "Avertissement : la paire de clés sélectionnée et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:128 -msgid "Challenge URL:" -msgstr "URL de la question :" +msgid "Warning: The selected Key Pairs and ALL of their components will be permanently removed!" +msgstr "Avertissement : les paires de clés sélectionnées et TOUS leurs composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:138 -msgid "Login URL:" -msgstr "URL de connexion :" +msgid "Warning: The selected Middleware Providers and ALL of their components will be permanently removed!" +msgstr "Avertissement : les fournisseurs de middleware sélectionnés et TOUS leurs composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:148 -msgid "Client CA:" -msgstr "CA du client :" +msgid "Warning: The selected Network Providers and ALL of their components will be permanently removed!" +msgstr "Avertissement : les fournisseurs de réseaux sélectionnés et TOUS leurs composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:158 -msgid "Headers:" -msgstr "En-têtes :" +msgid "Warning: The selected Object Storage Container and ALL related Objects will be permanently removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:171 -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:224 -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:257 -msgid "Client ID:" -msgstr "ID du client :" +msgid "Warning: The selected Object Storage Containers and ALL related Objects will be permanently removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:181 -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:234 -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:267 -msgid "Client Secret:" -msgstr "Question secrète du client :" +msgid "Warning: The selected Object Storage Managers and ALL of their components will be permanently removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:191 -msgid "Sub-claim:" -msgstr "Réclamation secondaire :" +msgid "Warning: The selected Object Storage Object will be permanently removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:201 -msgid "Authorization-Endpoint:" -msgstr "Autorisation-Point d'accès :" +msgid "Warning: The selected Orchestration Stacks and ALL of their components will be permanently removed!" +msgstr "Avertissement : les piles d'orchestration sélectionnées et TOUS leurs composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:211 -msgid "Token-Endpoint:" -msgstr "Jeton-Extrémité :" +msgid "Warning: The selected PXE Servers and ALL of their components will be permanently removed!" +msgstr "Avertissement : les serveurs PXE sélectionnés et TOUS leurs composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:244 -msgid "Hosted Domain:" -msgstr "Domaine hébergé :" +msgid "Warning: The selected Provider and ALL of their components will be permanently removed!" +msgstr "Avertissement : les fournisseurs sélectionnés et TOUS leurs composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:2 -msgid "Authentication Type" -msgstr "Type d'authentification" +msgid "Warning: The selected Reports will be permanently removed from the database!" +msgstr "Avertissement : les rapports sélectionnés seront définitivement supprimés de la base de données" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:6 -msgid "Select authenticaton type" -msgstr "Sélectionner un type d'authentification" +msgid "Warning: The selected Resource Pools and ALL of their components will be permanently removed!" +msgstr "Avertissement : les pools de ressources sélectionnés et TOUS leurs composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:15 -msgid "Allow All" -msgstr "Autoriser tout" +msgid "Warning: The selected Routers and ALL of their components will be removed!" +msgstr "Avertissement : les routers sélectionnés et TOUS leurs composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:23 -msgid "HTPassword" -msgstr "HTPassword" +msgid "Warning: The selected Saved Reports will be permanently removed from the database!" +msgstr "Avertissement : les rapports enregistrés sélectionnés seront définitivement supprimés de la base de données" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:39 -msgid "Request Header" -msgstr "En-tête de la demande" +msgid "Warning: The selected Schedules and ALL of their components will be permanently removed!" +msgstr "Avertissement : les plannings sélectionnés et TOUS leurs composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:47 -msgid "OpenID Connect" -msgstr "Connecter OpenID" +msgid "Warning: The selected Services and ALL of their components will be permanently removed!" +msgstr "Avertissement : les services sélectionnés et TOUS leurs composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:55 -msgid "Google" -msgstr "Google" +msgid "Warning: The selected Storage Managers and ALL of their components will be permanently removed!" +msgstr "Avertissement : les gestionnaires de stockage sélectionnés et TOUS leurs composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:63 -msgid "GitHub" -msgstr "GitHub" +msgid "Warning: The selected System Image Types will be permanently removed!" +msgstr "Avertissement : les types d'images système sélectionnés seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:5 -msgid "Authentication Details" -msgstr "Détails de l'authentification" +msgid "Warning: The selected Templates and ALL of their components will be permanently removed!" +msgstr "Avertissement : les modèles sélectionnés et TOUS leurs composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:50 -msgid "ID" -msgstr "ID" +msgid "Warning: The selected Time Profiles will be permanently removed!" +msgstr "Avertissement : les profils de temps sélectionnés seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:57 -msgid "Email Address" -msgstr "Adresse e-mail" +msgid "Warning: The selected Volumes and ALL of their components will be permanently removed!" +msgstr "Avertissement : les volumes sélectionnés et TOUS leurs composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:75 -msgid "BindDN" -msgstr "DN de liaison" +msgid "Warning: The selected items and ALL of their components will be permanently removed!" +msgstr "Avertissement : les éléments sélectionnés et TOUS leurs composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:92 -msgid "CA" -msgstr "CA" +msgid "Warning: The selected items and ALL of their components will be permanently removed!?" +msgstr "Avertissement : les éléments sélectionnés et TOUS leurs composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:107 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:165 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:24 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:24 -msgid "Browse" -msgstr "Parcourir" +msgid "Warning: The selected task will be cancelled. Are you sure you want to cancel the task?" +msgstr "Avertissement : la tâche sélectionnée sera annulée. Voulez-vous vraiment annuler cette tâche ?" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:116 -msgid "Insecure" -msgstr "Non sécurisé" +msgid "Warning: The selected tasks will be permanently removed from the database!" +msgstr "Avertissement : les tâches sélectionnées seront définitivement supprimées de la base de données" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:122 -msgid "URL" -msgstr "URL" +msgid "Warning: This 'Run Once' timer is in the past and will never run as currently configured" +msgstr "Avertissement : cette minuterie 'Exécuter une fois' se situe dans le passé et ne s'exécutera jamais dans sa configuration actuelle" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:131 -msgid "Challenge URL" -msgstr "URL de la question" +msgid "Warning: This Analysis Profile and ALL of its components will be permanently removed!" +msgstr "Avertissement : ce profil d'analyse et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:138 -msgid "Login URL" -msgstr "URL de connexion" +msgid "Warning: This Button will be permanently removed from the Virtual Management Database!" +msgstr "Avertissement : ce bouton sera définitivement supprimé de la base de données Virtual Management" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:149 -msgid "Client CA" -msgstr "CA du client" +msgid "Warning: This Catalog Items and ALL of their components will be permanently removed!" +msgstr "Avertissement : ces éléments de catalogue et TOUS leurs composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:174 -msgid "Headers" -msgstr "En-têtes" +msgid "Warning: This Catalog will be permanently removed!" +msgstr "Avertissement : ce catalogue sera définitivement supprimé" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:191 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:228 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:252 -msgid "Client Secret" -msgstr "Question secrète du client" +msgid "Warning: This Chargeback Rate will be permanently removed!" +msgstr "Avertissement : ce taux de rétrofacturation sera définitivement supprimé" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:198 -msgid "Sub-claim" -msgstr "Réclamation secondaire" +msgid "Warning: This Cloud Network and ALL of its components will be removed!" +msgstr "Avertissement : ce réseau cloud et TOUS ses composants seront supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:204 -msgid "Authorization-Endpoint" -msgstr "Autorisation-Point d'accès" +msgid "Warning: This Cloud Provider and ALL of its components will be permanently removed!" +msgstr "Avertissement : ce fournisseur de cloud et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:211 -msgid "Token-Endpoint" -msgstr "Jeton-Extrémité" +msgid "Warning: This Cloud Subnet and ALL of its components will be removed!" +msgstr "Avertissement : ce sous-réseau cloud et TOUS ses composants seront supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:235 -msgid "Hosted Domain" -msgstr "Domaine hébergé" +msgid "Warning: This Cloud Volume and ALL of its components will be removed!" +msgstr "Avertissement : ce volume cloud et TOUS ses composants seront supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:9 -msgid "Configure:" -msgstr "Configurer :" +msgid "Warning: This Containers Provider and ALL of its components will be permanently removed!" +msgstr "Avertissement : ce fournisseur de conteneurs et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:20 -msgid "Configure Router" -msgstr "Configurer le routeur" +msgid "Warning: This Customization Template will be permanently removed!" +msgstr "Avertissement : ce modèle de personnalisation sera définitivement supprimé" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:28 -msgid "Configure Registry" -msgstr "Configurer le registre" +msgid "Warning: This Dashboard and ALL of its components will be permanently removed!" +msgstr "Avertissement : ce tableau de bord et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:36 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:64 -msgid "Server:" -msgstr "Serveur :" +msgid "Warning: This Datastore and ALL of its components will be permanently removed!" +msgstr "Avertissement : ce magasin de données et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:46 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:74 -msgid "Path:" -msgstr "Chemin :" +msgid "Warning: This Datawarehouse Provider and ALL of its components will be permanently removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:56 -msgid "Configure Metrics" -msgstr "Configurer les métriques" +msgid "Warning: This Dialog will be permanently removed from the Virtual Management Database!" +msgstr "Avertissement : cette boîte de dialogue sera définitivement supprimée de la base de données Virtual Management" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:8 -msgid "Select items to configure" -msgstr "Sélectionner les éléments à configurer" +msgid "Warning: This Dialog will be permanently removed!" +msgstr "Avertissement : cette boîte de dialogue sera définitivement supprimée" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:19 -msgid "Standard NFS Server" -msgstr "Serveur NFS standard" +msgid "Warning: This Floating IP and ALL of its components will be removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:31 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:143 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:187 -msgid "Router" -msgstr "Routeur" +msgid "Warning: This ISO Datastore and ALL of its components will be permanently removed!" +msgstr "Avertissement : ce magasin de données ISO et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:131 -msgid "Integrated NFS Server (POC only)" -msgstr "Serveur NFC intégré (POC uniquement)" +msgid "Warning: This Image and ALL of its components will be permanently removed!" +msgstr "Avertissement : cette image et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:4 -msgid "CDN Channel" -msgstr "Canal CDN" +msgid "Warning: This Infrastructure Provider and ALL of its components will be permanently removed!" +msgstr "Avertissement : ce fournisseur d'infrastructure et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:8 -msgid "Specify CDN configuration" -msgstr "Spécifier une configuration CDN" +msgid "Warning: This Instance and ALL of its components will be permanently removed!" +msgstr "Avertissement : cette instance et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:19 -msgid "Enable CDN Channel" -msgstr "Activer le canal CDN" +msgid "Warning: This Job and ALL of its components will be permanently removed!" +msgstr "Avertissement : cette tâche et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:39 -msgid "SKU" -msgstr "SKU" +msgid "Warning: This Middleware Provider and ALL of its components will be permanently removed!" +msgstr "Avertissement : ce fournisseur de middleware et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:54 -msgid "RHN Satellite URL" -msgstr "URL RHN Satellite" +msgid "Warning: This Network Provider and ALL of its components will be permanently removed!" +msgstr "Avertissement : ce fournisseur de réseaux et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-review.html.haml:9 -msgid "CDN Channel:" -msgstr "Canal CDN :" +msgid "Warning: This Orchestration Stack and ALL of its components will be permanently removed!" +msgstr "Avertissement : cette pile d'orchestration et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-review.html.haml:39 -msgid "SKU:" -msgstr "SKU :" +msgid "Warning: This PXE Server and ALL of its components will be permanently removed!" +msgstr "Avertissement : ce serveur PXE et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-review.html.haml:49 -msgid "RHN Satellite URL:" -msgstr "URL RHN Satellite :" +msgid "Warning: This Resource Pool and ALL of its components will be permanently removed!" +msgstr "Avertissement : ce pool de ressources et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:5 -msgid "New VM Settings" -msgstr "Nouveaux paramètres de MV" +msgid "Warning: This Router and ALL of its components will be removed!" +msgstr "Avertissement : ce router et TOUS ses composants seront supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:9 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:5 -msgid "Master configuration" -msgstr "Configuration maîtresse" +msgid "Warning: This Saved Report and ALL of its components will be permanently removed!" +msgstr "Avertissement : ce rapport enregistré et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:14 -msgid "Number of Masters" -msgstr "Nombre de maîtres" +msgid "Warning: This Schedule and ALL of its components will be permanently removed!" +msgstr "Avertissement : ce planning et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:34 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:97 -msgid "Base Name" -msgstr "Nom de base" +msgid "Warning: This Security Group and ALL of its components will be removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:72 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:35 -msgid "Node configuration" -msgstr "Configuration du nœud" +msgid "Warning: This Service and ALL of their components will be permanently removed!" +msgstr "Avertissement : ces services et TOUS leurs composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:77 -msgid "Number of Nodes" -msgstr "Nombre de nœuds" +msgid "Warning: This Storage Manager and ALL of its components will be permanently removed!" +msgstr "Avertissement : ce gestionnaire de stockage et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:111 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:56 -msgid "Same as Master configuration" -msgstr "Comme la configuration maîtresse" +msgid "Warning: This System Image Type will be permanently removed!" +msgstr "Avertissement : ce type d'image système sera définitivement supprimé" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:9 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:9 -msgid "Private SSH Key" -msgstr "Clé SSH privée" +msgid "Warning: This Template and ALL of its components will be permanently removed!" +msgstr "Avertissement : ce modèle et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:42 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:42 -msgid "" -"Add tags individually for each VM or select multiple rows and edit tags as a g" -"roup." -msgstr "" -"Ajoutez des balises séparément pour chaque machine virtuelle ou sélectionnez p" -"lusieurs lignes et modifiez des balises sous la forme d'un groupe." +msgid "Warning: This Virtual Machine and ALL of its components will be permanently removed!" +msgstr "Avertissement : cette machine virtuelle et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:56 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:64 -msgid "Edit Roles" -msgstr "Modifier les rôles" +msgid "Warning: This Volume and ALL of its components will be permanently removed!" +msgstr "Avertissement : ce volume et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:67 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:355 -msgid "Select All" -msgstr "Tout sélectionner" +msgid "Warning: This Widget and ALL of its components will be permanently removed!" +msgstr "Avertissement : ce composant graphique et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:148 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:154 -msgid "VM/Instance Name" -msgstr "Nom de MV/instance" +msgid "Warning: This item and ALL of its components will be permanently removed!" +msgstr "Avertissement : cet élément et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:288 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:12 -msgid "Masters" -msgstr "Maîtres" +msgid "Warning: This item and ALL of its components will be permanently removed!?" +msgstr "Avertissement : cet élément et TOUS ses composants seront définitivement supprimés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:21 -msgid "OpenShift Origin" -msgstr "OpenShift Origin" +msgid "Wasted" +msgstr "Gaspillé" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:29 -msgid "OpenShift Enterprise" -msgstr "OpenShift Enterprise" +msgid "Web Console" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:37 -msgid "Provider to provision on" -msgstr "Fournisseur pour la mise en service" +msgid "Web Service Workers" +msgstr "Workers Service Web " -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:48 -msgid "Use existing VMs from an existing provider" -msgstr "Utiliser les MV existantes d'un fournisseur existant" +msgid "Web Services" +msgstr "Services Web" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:62 -msgid "Create new VMs on provider" -msgstr "Créer des machines virtuelles sur le fournisseur" +msgid "Web Services Listen Port must be numeric" +msgstr "Le port d'écoute des services Web doit être numérique" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:55 -msgid "Add VM" -msgstr "Ajouter une machine virtuelle" +msgid "Web Services Password and Verify Password fields do not match" +msgstr "Les champs Mot de passe des services Web et Vérifier le mot de passe ne correspondent pas" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:318 -msgid "Add Host" -msgstr "Ajouter un hôte" +msgid "Websocket Workers" +msgstr "Workers Websocket" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:324 -msgid "Enter a name or IP address" -msgstr "Saisir un nom ou une adresse IP" +msgid "Wednesday" +msgstr "Mercredi" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:329 -msgid "Private Host Name" -msgstr "Nom d'hôte privé" +msgid "Week" +msgstr "Semaine" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:335 -msgid "Public Host Name" -msgstr "Nom d'hôte public" +msgid "Weekly" +msgstr "Chaque semaine" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:344 -msgid "Specify role(s) for this host" -msgstr "Spécifier un ou des rôles pour cet hôte" +msgid "Weeks" +msgstr "Semaines" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:16 -msgid "Masters Base Name:" -msgstr "Nom de la base de maîtres" +msgid "What to Evaluate" +msgstr "Qu'évaluer ?" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:26 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:65 -msgid "Template:" -msgstr "Modèle :" +msgid "Widget content generation error: %{message}" +msgstr "Erreur de génération du contenu du composant graphique : %{message}" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:44 -msgid "Nodes Base Name:" -msgstr "Nom de base du nœud :" +msgid "Widget has to be assigned to a dashboard to generate content" +msgstr "Le composant graphique doit être affecté à un tableau de bord pour générer du contenu" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:61 -msgid "Etcds" -msgstr "Etcd" +msgid "Widget import cancelled" +msgstr "L'importation des composants graphiques est annulée" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:74 -msgid "Infrastructures" -msgstr "Infrastructures" +msgid "Widget name" +msgstr "Nom du composant graphique" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-masters-nodes.html.haml:4 -msgid "Masters & Nodes" -msgstr "Maîtres et nœuds" +msgid "Widgets" +msgstr "Composants graphiques" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-progress.html.haml:12 -msgid "Deployment in Progress" -msgstr "Déploiement en cours" +msgid "Widgets imported successfully" +msgstr "Composants graphiques correctement importés" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-progress.html.haml:17 -msgid "" -"Your deployment %{name} is currently in progress. Updates will be posted here " -"shortly." -msgstr "" -"Votre déploiement %{name} est en cours. Des mises à jour seront publiées ici s" -"ous peu." +msgid "Win32 Service" +msgid_plural "Win32 Services" +msgstr[0] "Service Win32" +msgstr[1] "Services Win32" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-progress.html.haml:22 -msgid "" -"If you choose to close this wizard, deployment status can be monitored under r" -"equests." -msgstr "" -"Si vous choisissez de fermer cet assistant, l'état de déploiement peut être co" -"ntrôlé sous les demandes." +msgid "Win32 Services" +msgstr "Services Win32" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-progress.html.haml:32 -msgid "Deployment %{name} was sucessful." -msgstr "Le déploiement %{name} a réussi." +msgid "Windows Boot Env" +msgstr "Environnement de démarrage Windows" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-progress.html.haml:39 -msgid "Failed to deploy %{name}. Error:" -msgstr "Échec du déploiement de %{name}. Erreur :" +msgid "Windows Boot Environment" +msgstr "Environnement de démarrage Windows" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-summary.html.haml:40 -msgid "Loading summary..." -msgstr "Chargement du résumé..." +msgid "Windows Images" +msgstr "Images Windows" -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:56 -msgid "Key Pair" -msgstr "Paire de Clé" +msgid "Windows Images Directory" +msgstr "Répertoire d'images Windows" -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:103 -msgid "Flavor" -msgstr "Gabarit" +msgid "Windows Options" +msgstr "Options Windows" -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:127 -msgid "Cloud Network" -msgstr "Réseau Cloud" +msgid "Within Above Field, Sort By" +msgstr "Dans le champ ci-dessus, trier par" -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:175 -msgid "Security Group" -msgstr "Groupe de sécurité" +msgid "Worker on Server '%{name}' restarted" +msgstr "Worker sur le serveur '%{name}' redémarré" -#: ../app/views/static/notification_drawer/notification-body.html.haml:50 -#: ../app/views/static/notification_drawer/notification-body.html.haml:100 -msgid "% Complete" -msgstr "% terminé" +msgid "Workers" +msgstr "Workers" -#: ../app/views/static/notification_drawer/notification-body.html.haml:83 -msgid "Started:" -msgstr "Lancé :" +msgid "Workgroup Information" +msgstr "Informations sur le groupe de travail" -#: ../app/views/static/notification_drawer/notification-body.html.haml:110 -msgid "Completed:" -msgstr "Terminé :" +msgid "Workloads" +msgstr "Charges de travail" -#: ../app/views/static/notification_drawer/notification-footer.html.haml:11 -msgid "Mark All Read" -msgstr "Tout marquer comme lu" +msgid "Wrap this expression element with a NOT" +msgstr "Encapsulez cet élément d'expression avec un NOT" -#: ../app/views/static/notification_drawer/notification-footer.html.haml:24 -msgid "Clear All" -msgstr "Effacer tout" +msgid "XA Datasource:" +msgstr "" -#: ../app/views/static/wizard.html.haml:21 -msgid "Initialization in progress..." -msgstr "Initialisation en cours…" +msgid "XA Properties" +msgstr "" -#: ../app/views/storage/_main.html.haml:9 -msgid "Information for Registered VMs" -msgstr "Informations pour les machines virtuelles enregistrées" +msgid "XML View" +msgstr "Vue XML" -#: ../app/views/storage/_storage_pod_folders.html.haml:10 -msgid "View '%{name}' Cluster" -msgstr "Afficher le cluster '%{name}'" +msgid "Yellow" +msgstr "Jaune" -#: ../app/views/storage_manager/_form.html.haml:240 -msgid "Add this Storage Manager" -msgstr "Ajouter ce Gestionnaire de stockage." +msgid "Yellow Background" +msgstr "Fond jaune" -#: ../app/views/support/show.html.haml:19 -msgid "View the %{title} Guide" -msgstr "Afficher le guide %{title}" +msgid "Yellow Text" +msgstr "Texte jaune" -#: ../app/views/support/show.html.haml:31 -msgid "%{title} Guide" -msgstr "Guide %{title}" +msgid "Yes" +msgstr "Oui" -#: ../app/views/support/show.html.haml:45 -msgid "For questions or problem reporting, visit " -msgstr "Pour toute question ou pour signaler un problème, rendez-vous sur " +msgid "Yes; VM will run at most 24 hours." +msgstr "Oui ; la MV s'exécutera au maximum pendant 24 heures." -#: ../app/views/vm_cloud/_main.html.haml:17 -#: ../app/views/vm_common/_main.html.haml:16 -msgid "VMsafe" -msgstr "MVafe" +msgid "Yesterday" +msgstr "Hier" -#: ../app/views/vm_cloud/_main.html.haml:28 -#: ../app/views/vm_common/_main.html.haml:29 -msgid "Power Management" -msgstr "Gestion de l'alimentation" +msgid "You are about to enter fullscreen mode. Press Ctl+Alt to return to windowed mode." +msgstr "Vous êtes sur le point d'entrer en mode plein écran. Pressez Ctrl+Alt pour revenir en mode fenêtre. " -#: ../app/views/vm_common/_add_to_service.html.haml:22 -msgid "Service Selection" -msgstr "Sélection du service" +msgid "You are not authorized to view %{model_name} '%{resource_name}'" +msgstr "Vous n'êtes pas autorisé à voir %{model_name} '%{resource_name}'" -#: ../app/views/vm_common/_add_to_service.html.haml:49 -msgid "Add VM to the selected Service" -msgstr "Ajouter une MV au service sélectionné" +msgid "You can only specify one Storage Node" +msgstr "Vous ne pouvez spécifier qu'un seul nœud de stockage" -#: ../app/views/vm_common/_associate_floating_ip.html.haml:7 -msgid "Associate Floating IP" -msgstr "Associer une adresse IP flottante" +msgid "You can specify at most one DNS Node" +msgstr "Vous ne pouvez spécifier qu'un seul nœud DNS" -#: ../app/views/vm_common/_associate_floating_ip.html.haml:16 -#: ../app/views/vm_common/_disassociate_floating_ip.html.haml:16 -msgid "Floating IP" -msgstr "IP Flottante" +msgid "You must select at least one Node" +msgstr "Vous devez sélectionner au moins un nœud" -#: ../app/views/vm_common/_attach.html.haml:16 -#: ../app/views/vm_common/_detach.html.haml:16 -msgid "Volume" -msgstr "Volume" +msgid "You must select at least one namespace to import" +msgstr "Vous devez sélectionner au moins un espace de nommage à importer" -#: ../app/views/vm_common/_config.html.haml:74 -#: ../app/views/vm_common/_config.html.haml:230 -msgid "Account Policies" -msgstr "Politiques de Comptes" +msgid "You must select one Storage Node when using Integrated NFS storage" +msgstr "Vous devez sélectionner un nœud de stockage lorsque vous utilisez un stockage NFS intégré" -#: ../app/views/vm_common/_config.html.haml:168 -msgid "Network Type" -msgstr "Type de réseau" +msgid "You need two or more domains to edit domain priorities" +msgstr "" -#: ../app/views/vm_common/_config.html.haml:196 -msgid "Network Adapter" -msgstr "Adaptateur réseau" +msgid "You will need the following to register:" +msgstr "Pour vous enregistrer, vous aurez besoin des informations suivantes :" -#: ../app/views/vm_common/_config.html.haml:202 -msgid "DHCP Enabled" -msgstr "DHCP Activé" +msgid "Your Red Hat Account login or Red Hat Network Satellite login" +msgstr "Votre identifiant de compte Red Hat ou votre identifiant Red Hat Network Satellite" -#: ../app/views/vm_common/_config.html.haml:202 -msgid "DHCP Server" -msgstr "Serveur DHCP" +msgid "Your deployment %{name} is currently in progress. Updates will be posted here shortly." +msgstr "Votre déploiement %{name} est en cours. Des mises à jour seront publiées ici sous peu." -#: ../app/views/vm_common/_config.html.haml:202 -msgid "DNS Server" -msgstr "Serveur DNS" +msgid "Zone" +msgstr "Zone" -#: ../app/views/vm_common/_config.html.haml:202 -msgid "Default Gateway" -msgstr "Passerelle par défaut" +msgid "Zone Information" +msgstr "Information sur la Zone" -#: ../app/views/vm_common/_config.html.haml:202 -msgid "IPv6 Address" -msgstr "Adresse IPv6" +msgid "Zone name is required" +msgstr "Le nom de la zone est requis" -#: ../app/views/vm_common/_config.html.haml:202 -msgid "Subnet Mask" -msgstr "Masque de sous-réseau" +msgid "Zone*" +msgstr "Zone*" -#: ../app/views/vm_common/_disassociate_floating_ip.html.haml:7 -msgid "Disassociate Floating IP" -msgstr "Dissocier une adresse IP flottante" +msgid "Zone:" +msgstr "Zone:" -#: ../app/views/vm_common/_disks.html.haml:7 -msgid "Device Type" -msgstr "Type de périphérique" +msgid "Zones" +msgstr "Zones" -#: ../app/views/vm_common/_disks.html.haml:13 -msgid "Partitions Aligned" -msgstr "Partitions alignées" +msgid "Zoom in on this chart" +msgstr "Zoomer sur ce graphique" -#: ../app/views/vm_common/_disks.html.haml:15 -msgid "Provisioned Size" -msgstr "Taille allouée " +msgid "[%{name}] Policy Profile %{mode} (db:[%{db}]" +msgstr "[%{name}] Profil de stratégie %{mode} (bd:[%{db}]" -#: ../app/views/vm_common/_disks.html.haml:17 -msgid "Used Size" -msgstr "Taille utilisée" +msgid "[%{name}] Record added (" +msgstr "[%{name}] Enregistrement ajouté (" -#: ../app/views/vm_common/_disks.html.haml:19 -msgid "Percent Used of Provisioned Size" -msgstr "Pourcentage de la taille allouée utilisée" +msgid "[%{name}] Record created (" +msgstr "[%{name}] Enregistrement créé (" -#: ../app/views/vm_common/_evacuate.html.haml:7 -msgid "Evacuate Host" -msgstr "Évacuer l'hôte" +msgid "[%{name}] Record delete initiated" +msgstr "[%{name}] Démarrage de la suppression de l'enregistrement" -#: ../app/views/vm_common/_evacuate.html.haml:16 -#: ../app/views/vm_common/_live_migrate.html.haml:16 -msgid "Auto-select Host?" -msgstr "Sélection automatique de l'Hôte?" +msgid "[%{name}] Record deleted" +msgstr "[%{name}] Enregistrement supprimé" -#: ../app/views/vm_common/_evacuate.html.haml:40 -msgid "On Shared Storage" -msgstr "Sur le stockage partagé" +msgid "[%{name}] Record updated (" +msgstr "[%{name}] Enregistrement mis à jour (" -#: ../app/views/vm_common/_evacuate.html.haml:55 -msgid "Admin Password" -msgstr "Mot de passe d'administrateur" +msgid "[New Box]" +msgstr "[Nouvelle case]" -#: ../app/views/vm_common/_evacuate.html.haml:71 -#: ../app/views/vm_common/_live_migrate.html.haml:75 -msgid "Select Destination Host" -msgstr "Sélectionner l'hôte de destination" +msgid "[New Dialog]" +msgstr "[Nouvelle boîte de dialogue]" -#: ../app/views/vm_common/_evacuate.html.haml:80 -#: ../app/views/vm_common/_live_migrate.html.haml:84 -msgid "Destination Host" -msgstr "Hôte de destination" +msgid "[New Element]" +msgstr "[Nouvel élément]" -#: ../app/views/vm_common/_evm_relationship.html.haml:17 -msgid "Select Server:" -msgstr "Sélectionner le serveur :" +msgid "[New Tab]" +msgstr "[Nouvel onglet]" -#: ../app/views/vm_common/_evm_relationship.html.haml:22 -msgid "Not a Server" -msgstr "Il ne s'agit pas d'un serveur" +msgid "[Region: %{description} [%{region}]]" +msgstr "[Région : %{description} [%{region}]]" -#: ../app/views/vm_common/_form.html.haml:64 -msgid "Parent VM Selection" -msgstr "Sélection de la MV parente" +msgid "active" +msgstr "actif" -#: ../app/views/vm_common/_form.html.haml:96 -msgid "Child VM Selection" -msgstr "Sélection MV Enfant" +msgid "alerts" +msgstr "" -#: ../app/views/vm_common/_form.html.haml:102 -msgid "Child VMs:" -msgstr "Machines virtuelles enfants :" +msgid "ansible_tower" +msgstr "ansible_tower" -#: ../app/views/vm_common/_form.html.haml:106 -msgid "Available VMs:" -msgstr "MV disponibles:" +msgid "at" +msgstr "à" -#: ../app/views/vm_common/_form.html.haml:128 -msgid "Move selected VMs to right" -msgstr "Déplacer les VM sélectionnées vers la droite" +msgid "available" +msgstr "disponible" -#: ../app/views/vm_common/_form.html.haml:139 -msgid "Move all VMs to right" -msgstr "Déplacer toutes les MV vers la droite" +msgid "back" +msgstr "retour" -#: ../app/views/vm_common/_form.html.haml:150 -msgid "Move selected VMs to left" -msgstr "Déplacer les VM sélectionnées vers la gauche" +msgid "blank" +msgstr "vide" -#: ../app/views/vm_common/_live_migrate.html.haml:40 -msgid "Block Migration" -msgstr "Migration par bloc" +msgid "bold" +msgstr "gras" -#: ../app/views/vm_common/_live_migrate.html.haml:57 -msgid "Disk Over Commit" -msgstr "Mise à jour du disque" +msgid "centered" +msgstr "centré" -#: ../app/views/vm_common/_main.html.haml:18 -msgid "Normal Operating Ranges (over 30 days)" -msgstr "Plages de fonctionnement normal (plus de 30 jours)" +msgid "clear" +msgstr "effacer" -#: ../app/views/vm_common/_main.html.haml:35 -msgid "Datastore Allocation Summary" -msgstr "Résumé d'allocation du magasin de données" +msgid "description:[%{session}] to [%{name}]" +msgstr "description : [%{session}] à [%{name}]" -#: ../app/views/vm_common/_main.html.haml:37 -msgid "Datastore Actual Usage Summary" -msgstr "Résumé de l'utilisation réelle du magasin de données" +msgid "dimmed" +msgstr "estompé" -#: ../app/views/vm_common/_policies.html.haml:11 -msgid "Policy Simulation Details" -msgstr "Détails de la simulation de stratégie" +msgid "disabling deployment" +msgstr "désactivation du déploiement" -#: ../app/views/vm_common/_policies.html.haml:24 -msgid "" -"* Items in red italics do not change the outco" -"me of the scope or expression." -msgstr "" -"* Les éléments en italique rouge ne modifient " -"pas le résultat de l'étendue ou de l'expression." +msgid "do not change the outcome of the scope or expression" +msgstr "ne pas changer le résultat de la portée ou de l'expression" -#: ../app/views/vm_common/_policy_options.html.haml:44 -msgid "Successful" -msgstr "Réussi" +msgid "down" +msgstr "Vers le bas" -#: ../app/views/vm_common/_reconfigure.html.haml:50 -msgid " Memory value not in range or not a multiple of 4" -msgstr "Valeur de la mémoire hors de la plage ou non multiple de 4" +msgid "enabling deployment" +msgstr "activer le déploiement" -#: ../app/views/vm_common/_reconfigure.html.haml:55 -msgid " Valid memory value required" -msgstr "Une valeur de mémoire valide est requise" +msgid "ending" +msgstr "fin" -#: ../app/views/vm_common/_reconfigure.html.haml:96 -msgid " Processor Options" -msgstr "Options de Processeur" +msgid "every" +msgstr "chaque" -#: ../app/views/vm_common/_reconfigure.html.haml:103 -msgid "Sockets" -msgstr "Sockets" +msgid "false" +msgstr "faux" -#: ../app/views/vm_common/_reconfigure.html.haml:124 -msgid "Cores Per Socket" -msgstr "Cœurs par socket" +msgid "foreman" +msgstr "Foreman" -#: ../app/views/vm_common/_reconfigure.html.haml:164 -msgid " Total processors value larger than the maximum allowed" -msgstr "Nombre de processeurs supérieur au maximum autorisé" +msgid "going back" +msgstr "précédent" -#: ../app/views/vm_common/_reconfigure.html.haml:184 -msgid "Add Disk" -msgstr "Ajouter un Disque" +msgid "h" +msgstr "h" -#: ../app/views/vm_common/_reconfigure.html.haml:211 -msgid "Dependent" -msgstr "Dépendant" +msgid "hawkular URL and API port fields are needed to perform validation." +msgstr "les champs de port URL et API Hawkular sont requis pour effectuer une validation." -#: ../app/views/vm_common/_reconfigure.html.haml:213 -msgid "Delete Backing" -msgstr "Supprimer le stockage" +msgid "instances" +msgstr "instances" -#: ../app/views/vm_common/_reconfigure.html.haml:215 -msgid "Bootable" -msgstr "Amorçable" +msgid "invalid button action" +msgstr "action de bouton non valide" -#: ../app/views/vm_common/_reconfigure.html.haml:263 -msgid " Valid numeric disk size required " -msgstr "Valeur numérique valide requise pour la taille du disque" +msgid "killing" +msgstr "killing" -#: ../app/views/vm_common/_reconfigure.html.haml:300 -msgid " Add " -msgstr "Ajout" +msgid "ldap" +msgstr "ldap" -#: ../app/views/vm_common/_reconfigure.html.haml:376 -msgid "Cancel Add" -msgstr "Annuler l'ajout" +msgid "ldaps" +msgstr "ldaps" -#: ../app/views/vm_common/_resize.html.haml:9 -msgid "Reconfigure Instance" -msgstr "Reconfigurer l'instance" +msgid "m" +msgstr "m" -#: ../app/views/vm_common/_resize.html.haml:18 -msgid "Current Flavor" -msgstr "Gabarit actuel" +msgid "map a new label to tag" +msgstr "mapper un nouveau libellé à la balise" -#: ../app/views/vm_common/_resize.html.haml:31 -msgid "Choose Flavor" -msgstr "Choisir le gabarit" +msgid "name:[%{session}] to [%{name}]" +msgstr "nom:[%{session}] to [%{name}]" -#: ../app/views/vm_common/_right_size.html.haml:8 -msgid "Normal Operating Ranges (up to 30 days' data)" -msgstr "Plages de fonctionnement normal (données de 30 jours max.)" +msgid "no value" +msgstr "aucune valeur" -#: ../app/views/vm_common/_right_size.html.haml:187 -msgid "Right-Sizing (Conservative - derived from Absolute Maximum)" -msgstr "Calibrage (Prudent - dérivé du maximum absolu)" +msgid "none" +msgstr "aucun" -#: ../app/views/vm_common/_right_size.html.haml:197 -#: ../app/views/vm_common/_right_size.html.haml:281 -#: ../app/views/vm_common/_right_size.html.haml:364 -msgid "Current" -msgstr "Actuel" +msgid "normal" +msgstr "normal" -#: ../app/views/vm_common/_right_size.html.haml:199 -#: ../app/views/vm_common/_right_size.html.haml:283 -#: ../app/views/vm_common/_right_size.html.haml:366 -msgid "Recommended" -msgstr "Recommandé" +msgid "not yet available" +msgstr "non disponible pour l'instant" -#: ../app/views/vm_common/_right_size.html.haml:201 -#: ../app/views/vm_common/_right_size.html.haml:285 -#: ../app/views/vm_common/_right_size.html.haml:368 -msgid "% Savings" -msgstr "% Sauvergardes" +msgid "primary" +msgstr "primaire" -#: ../app/views/vm_common/_right_size.html.haml:203 -#: ../app/views/vm_common/_right_size.html.haml:287 -#: ../app/views/vm_common/_right_size.html.haml:370 -msgid "Savings" -msgstr "Économies" +msgid "primary, " +msgstr "principal, " -#: ../app/views/vm_common/_right_size.html.haml:271 -msgid "Right-Sizing (Moderate - derived from High NORM)" -msgstr "Calibrage (Modéré - dérivé de la NORME haute)" +msgid "red italics" +msgstr "italique rouge" -#: ../app/views/vm_common/_right_size.html.haml:354 -msgid "Right-Sizing (Aggressive - derived from Average NORM)" -msgstr "Calibrage (Aggressif - dérivé de la NORME moyenne)" +msgid "reloading" +msgstr "rechargement" -#: ../app/views/vm_common/_right_size.html.haml:438 -msgid "* Recommendations are subject to minimum of CPU: %{cpu} and Memory: %{memory}." -msgstr "" -"* Les recommandations minimales sont les suivantes, pour le processeur : %{cpu" -"} et pour la mémoire : %{memory}." +msgid "removed datasources" +msgstr "a supprimé les sources de données" -#: ../app/views/vm_common/_snap.html.haml:9 -msgid "Snapshot Information" -msgstr "Informations sur le cliché" +msgid "restarting" +msgstr "redémarrage" -#: ../app/views/vm_common/_snap.html.haml:43 -msgid "Snapshot VM memory" -msgstr "Prendre un cliché de la mémoire MV" +msgid "restarting deployment" +msgstr "redémarrage du déploiement" -#: ../app/views/vm_common/_snap.html.haml:63 -msgid "Create snapshot" -msgstr "Créer un cliché" +msgid "resuming" +msgstr "reprise" -#: ../app/views/vm_common/_snapshots_desc.html.haml:41 -msgid "(%{number} bytes)" -msgstr "(%{number} octets)" +msgid "running" +msgstr "en cours" -#: ../app/views/vm_common/_snapshots_desc.html.haml:63 -msgid "%{record_name} has no snapshots" -msgstr "%{record_name} ne comporte pas de clichés" +msgid "secondary" +msgstr "secondaire" -#: ../app/views/vm_common/_snapshots_tree.html.haml:5 -msgid "Available Snapshots" -msgstr "Clichés disponibles" +msgid "secondary, " +msgstr "secondaire, " -#: ../app/views/vm_common/console_mks.html.haml:8 -#: ../app/views/vm_common/console_mks.html.haml:95 -msgid "VM %{name} Remote Console" -msgstr "Console à distance MV %{name}" +msgid "seconds" +msgstr "secondes" -#: ../app/views/vm_common/console_mks.html.haml:32 -msgid "" -"You are about to enter fullscreen mode. Press Ctl+Alt to return to windowed mo" -"de." -msgstr "" -"Vous êtes sur le point d'entrer en mode plein écran. Pressez Ctrl+Alt pour rev" -"enir en mode fenêtre. " +msgid "selected to copy" +msgstr "sélectionné pour copier" -#: ../app/views/vm_common/console_mks.html.haml:43 -msgid "Press Ctl+Alt to release cursor." -msgstr "Appuyez sur Ctl+Alt pour libérer le curseur." +msgid "shutting down" +msgstr "arrêt en cours" -#: ../app/views/vm_common/console_mks.html.haml:138 -msgid "Connection failed." -msgstr "La connexion a échoué." +msgid "starting" +msgstr "démarrage" -#: ../app/views/vm_common/console_mks.html.haml:147 -msgid "Press Ctrl+Alt to release cursor." -msgstr "Appuyez sur Ctl+Alt pour libérer le curseur." +msgid "stopped" +msgstr "stoppé" -#: ../app/views/vm_common/console_mks.html.haml:202 -msgid "This page requires the VMware MKS plugin. Install the plugin and try again." -msgstr "Cette page exige l'extension VMware MKS. Installez l'extension et recommencez." +msgid "stopping" +msgstr "arrêt" -#: ../app/views/vm_common/console_spice.html.haml:9 -msgid "SPICE Console" -msgstr "Console SPICE" +msgid "suspending" +msgstr "suspension" -#: ../app/views/vm_common/console_spice.html.haml:30 -msgid "Connecting (unencrypted) to: %{url}" -msgstr "Connexion (non chiffrée) à : %{url}" +msgid "to bottom" +msgstr "vers le bas" -#: ../app/views/vm_common/console_vmrc.html.haml:74 -#: ../app/views/vm_common/console_vmrc.html.haml:99 -msgid "Hint: Press Ctrl-Alt to release the cursor from the guest" -msgstr "Conseil : appuyez sur Ctrl+Alt pour libérer le pointeur de l'invité" +msgid "to top" +msgstr "vers le haut" -#: ../app/views/vm_common/console_vmrc.html.haml:83 -msgid "" -"The VM has been suspended, powered off or the connection to the server has bee" -"n lost. \n" -"This console window will now close." -msgstr "" -"La MV a été suspendue, éteinte ou la connexion au serveur a été perdue. \n" -"Cette fenêtre de console va se fermer." +msgid "true" +msgstr "vrai" -#: ../app/views/vm_common/console_vmrc.html.haml:423 -msgid "Remote Console plugin is not properly installed." -msgstr "L'extension de Console distante n'est pas correctement installée." +msgid "true/false" +msgstr "vrai/faux" -#: ../app/views/vm_common/console_vmrc.html.haml:451 -msgid "Full Screen" -msgstr "Plein écran" +msgid "unavailable" +msgstr "indisponible" -#: ../app/views/vm_common/console_vmrc.html.haml:460 -msgid "Send Ctrl-Alt-Delete" -msgstr "Envoyer Ctrl-Alt-Suppr" +msgid "undeploying deployment" +msgstr "annulation du déploiement" -#: ../app/views/vm_common/console_vmrc.html.haml:481 -msgid "Use CTRL-ALT-INS for CTRL-ALT-DEL" -msgstr "Utiliser CTRL-ALT-INS pour CTRL-ALT-SUPPR" +msgid "unknown tree in replace_trees: %{name}" +msgstr "arborescence inconnue dans replace_trees : %{name}" -#: ../app/views/vm_common/console_vmrc.html.haml:485 -msgid "Use CTRL-ALT-Enter to toggle full screen" -msgstr "Utiliser CTRL-ALT-Entrée pour basculer le plein écran" +msgid "unlimited" +msgstr "Illimité" -#: ../app/views/vm_common/console_vmrc.html.haml:490 -msgid "The Remote Console is connecting" -msgstr "La console à distance est en cours de connexion" +msgid "up" +msgstr "haut" -#: ../app/views/vm_common/console_vnc.html.haml:9 -msgid "VNC Console" -msgstr "Console VNC" +msgid "user input" +msgstr "saisie utilisateur" -#: ../app/views/vm_common/console_vnc.html.haml:30 -msgid "Loading ..." -msgstr "Chargement..." +msgid "vApp" +msgstr "vApp" -#: ../app/views/vm_common/console_vnc.html.haml:38 -msgid "Canvas not supported." -msgstr "Canevas non pris en charge." +msgid "vApp Templates" +msgstr "Modèles vApp" -#: ../lib/report_formatter/chart_common.rb:344 -#: ../lib/report_formatter/chart_common.rb:403 -#: ../lib/report_formatter/chart_common.rb:404 -#: ../lib/report_formatter/chart_common.rb:434 -#: ../lib/report_formatter/chart_common.rb:435 -#: ../lib/report_formatter/chart_common.rb:472 -msgid "Other" -msgstr "Autre" +msgid "vCPU Count" +msgstr "Nombre de vCPU" -#: ../lib/report_formatter/chart_common.rb:394 -#: ../lib/report_formatter/chart_common.rb:424 -#: ../lib/report_formatter/chart_common.rb:469 -#: ../lib/report_formatter/chart_common.rb:498 -#: ../lib/report_formatter/chart_common.rb:501 -msgid "no value" -msgstr "aucune valeur" +msgid "vCPU per Core" +msgstr "vCPU par Core" -#: ../lib/report_formatter/chart_common.rb:560 -msgid "Invalid chart definition" -msgstr "Définition de graphique non valide" +msgid "vCPUs per Core" +msgstr "vCPUs par Core" -#: ../lib/report_formatter/timeline_message.rb:43 -msgid "Policy no longer exists" -msgstr "" +msgid "vcpus" +msgstr "vcpus" diff --git a/locale/ja/ManageIQ_UI_Classic.po b/locale/ja/ManageIQ_UI_Classic.po index 781b876e42b..164c6a9e021 100644 --- a/locale/ja/ManageIQ_UI_Classic.po +++ b/locale/ja/ManageIQ_UI_Classic.po @@ -11,7 +11,6 @@ msgid "" msgstr "" "Project-Id-Version: manageiq 1.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-20 15:56+0100\n" "PO-Revision-Date: 2016-12-14 06:36-0500\n" "Last-Translator: asasaki \n" "Language-Team: English\n" @@ -22,31700 +21,19036 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Zanata 3.9.6\n" -#: -#: ../app/assets/javascripts/controllers/auth_key_pair_cloud/auth_key_pair_cloud_controller.js:53 -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:202 -#: ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:57 -#: ../app/assets/javascripts/controllers/ems_common/ems_common_form_controller.js:276 -#: ../app/assets/javascripts/controllers/host/host_form_controller.js:137 -#: ../app/assets/javascripts/controllers/ops/log_collection_form_controller.js:101 -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:43 -#: ../app/assets/javascripts/controllers/ops/tenant_form_controller.js:63 -#: ../app/assets/javascripts/controllers/ops/tenant_quota_form_controller.js:60 -#: ../app/assets/javascripts/controllers/ownership/ownership_form_controller.js:58 -#: ../app/assets/javascripts/controllers/provider_foreman/provider_foreman_form_controller.js:100 -#: ../app/assets/javascripts/controllers/reconfigure/reconfigure_form_controller.js:275 -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:318 -#: ../app/assets/javascripts/controllers/service/service_form_controller.js:41 -#: ../app/controllers/application_controller/automate.rb:115 -#: ../app/controllers/application_controller/buttons.rb:50 -#: ../app/controllers/application_controller/buttons.rb:401 -#: ../app/controllers/application_controller/buttons.rb:536 -#: ../app/controllers/application_controller/ci_processing.rb:177 -#: ../app/controllers/application_controller/ci_processing.rb:181 -#: ../app/controllers/application_controller/dialog_runner.rb:67 -#: ../app/controllers/application_controller/policy_support.rb:32 -#: ../app/controllers/application_controller/tags.rb:161 -#: ../app/controllers/catalog_controller.rb:104 -#: ../app/controllers/catalog_controller.rb:352 -#: ../app/controllers/catalog_controller.rb:597 -#: ../app/controllers/catalog_controller.rb:1013 -#: ../app/controllers/catalog_controller.rb:2045 -#: ../app/controllers/chargeback_controller.rb:178 -#: ../app/controllers/chargeback_controller.rb:297 -#: ../app/controllers/configuration_controller.rb:224 -#: ../app/controllers/ems_common.rb:340 -#: ../app/controllers/host_controller.rb:394 -#: ../app/controllers/miq_ae_class_controller.rb:605 -#: ../app/controllers/miq_ae_class_controller.rb:1000 -#: ../app/controllers/miq_ae_class_controller.rb:1043 -#: ../app/controllers/miq_ae_class_controller.rb:1084 -#: ../app/controllers/miq_ae_class_controller.rb:1133 -#: ../app/controllers/miq_ae_class_controller.rb:1451 -#: ../app/controllers/miq_ae_class_controller.rb:1490 -#: ../app/controllers/miq_ae_class_controller.rb:1682 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:254 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:302 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:22 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:104 -#: ../app/controllers/miq_policy_controller/alerts.rb:44 -#: ../app/controllers/miq_policy_controller/conditions.rb:25 -#: ../app/controllers/miq_policy_controller/events.rb:17 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:23 -#: ../app/controllers/miq_policy_controller/policies.rb:23 -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:22 -#: ../app/controllers/ops_controller/ops_rbac.rb:155 -#: ../app/controllers/ops_controller/ops_rbac.rb:220 -#: ../app/controllers/ops_controller/ops_rbac.rb:426 -#: ../app/controllers/ops_controller/ops_rbac.rb:606 -#: ../app/controllers/ops_controller/ops_rbac.rb:694 -#: ../app/controllers/ops_controller/settings.rb:173 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:338 -#: ../app/controllers/ops_controller/settings/cap_and_u.rb:44 -#: ../app/controllers/ops_controller/settings/common.rb:583 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:47 -#: ../app/controllers/ops_controller/settings/ldap.rb:87 -#: ../app/controllers/ops_controller/settings/ldap.rb:237 -#: ../app/controllers/ops_controller/settings/schedules.rb:113 -#: ../app/controllers/ops_controller/settings/tags.rb:118 -#: ../app/controllers/ops_controller/settings/zones.rb:51 -#: ../app/controllers/pxe_controller/iso_datastores.rb:73 -#: ../app/controllers/pxe_controller/iso_datastores.rb:201 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:143 -#: ../app/controllers/pxe_controller/pxe_image_types.rb:64 -#: ../app/controllers/pxe_controller/pxe_servers.rb:83 -#: ../app/controllers/pxe_controller/pxe_servers.rb:221 -#: ../app/controllers/pxe_controller/pxe_servers.rb:271 -#: ../app/controllers/report_controller/dashboards.rb:42 -#: ../app/controllers/report_controller/dashboards.rb:99 -#: ../app/controllers/report_controller/menus.rb:210 -#: ../app/controllers/report_controller/reports/editor.rb:95 -#: ../app/controllers/report_controller/schedules.rb:269 -#: ../app/controllers/report_controller/widgets.rb:82 -#: ../app/controllers/storage_manager_controller.rb:183 -#: ../app/controllers/vm_common.rb:783 ../app/controllers/vm_common.rb:786 -#: ../app/controllers/vm_common.rb:974 -msgid "All changes have been reset" -msgstr "すべての変更がリセットされました" +msgid " # of Days" +msgstr "日数" -#: ../app/assets/javascripts/controllers/buttons/button_group_controller.js:5 -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:3 -#: ../app/helpers/application_helper/toolbar/dialog_center.rb:38 -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:6 -#: ../app/views/chargeback/_cb_rate_edit_table.html.haml:85 -#: ../app/views/chargeback/_tier_first_row.haml:46 -#: ../app/views/cloud_volume/new.html.haml:86 -#: ../app/views/host_aggregate/add_host_select.html.haml:40 -#: ../app/views/host_aggregate/new.html.haml:85 -#: ../app/views/layouts/_edit_buttons.html.haml:15 -#: ../app/views/layouts/_edit_buttons.html.haml:15 -#: ../app/views/layouts/_edit_buttons.html.haml:52 -#: ../app/views/layouts/_edit_buttons.html.haml:52 -#: ../app/views/layouts/_edit_to_email.html.haml:92 -#: ../app/views/layouts/_x_edit_buttons.html.haml:46 -#: ../app/views/layouts/_x_edit_buttons.html.haml:141 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:3 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:3 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:3 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:11 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:11 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:11 -#: ../app/views/ops/_ap_form_file.html.haml:33 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:45 -#: ../app/views/ops/_ap_form_registry.html.haml:38 -#: ../app/views/ops/_classification_entry.html.haml:25 -#: ../app/views/ops/_classification_entry.html.haml:78 -#: ../app/views/ops/_settings_co_categories_tab.html.haml:49 -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:34 -#: ../app/views/shared/views/ems_common/_form.html.haml:181 -#: ../app/views/static/buttons.html.haml:3 -#: ../app/views/static/buttons.html.haml:4 -#: ../app/views/static/buttons.html.haml:13 -#: ../app/views/static/buttons.html.haml:14 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:451 -#: ../app/views/storage_manager/_form.html.haml:240 -#: ../app/views/vm_common/_add_to_service.html.haml:49 -msgid "Add" -msgstr "追加" +msgid " %{host_uid_ems} is not a compute node " +msgstr " %{host_uid_ems} はコンピュートノードではありません" -#: ../app/assets/javascripts/controllers/buttons/button_group_controller.js:6 -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:4 -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:15 -#: ../app/views/cloud_volume/backup_new.html.haml:57 -#: ../app/views/cloud_volume/backup_select.html.haml:41 -#: ../app/views/cloud_volume/edit.html.haml:40 -#: ../app/views/cloud_volume/new.html.haml:93 -#: ../app/views/cloud_volume/snapshot_new.html.haml:40 -#: ../app/views/host_aggregate/edit.html.haml:39 -#: ../app/views/host_aggregate/new.html.haml:92 -#: ../app/views/layouts/_adv_search_footer.html.haml:84 -#: ../app/views/layouts/_edit_buttons.html.haml:23 -#: ../app/views/layouts/_edit_buttons.html.haml:58 -#: ../app/views/layouts/_edit_form_buttons.html.haml:25 -#: ../app/views/layouts/_edit_form_buttons.html.haml:47 -#: ../app/views/layouts/_edit_form_buttons.html.haml:56 -#: ../app/views/layouts/_edit_form_buttons.html.haml:76 -#: ../app/views/layouts/_edit_form_buttons.html.haml:148 -#: ../app/views/layouts/_form_buttons.html.haml:14 -#: ../app/views/layouts/_form_buttons.html.haml:21 -#: ../app/views/layouts/_form_buttons.html.haml:29 -#: ../app/views/layouts/_form_buttons.html.haml:39 -#: ../app/views/layouts/_form_buttons.html.haml:77 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:18 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:59 -#: ../app/views/layouts/_x_edit_buttons.html.haml:101 -#: ../app/views/layouts/_x_edit_buttons.html.haml:108 -#: ../app/views/layouts/_x_edit_buttons.html.haml:157 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:19 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:27 -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:149 -#: ../app/views/ops/_ap_form_file.html.haml:62 -#: ../app/views/ops/_ap_form_file.html.haml:119 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:106 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:173 -#: ../app/views/ops/_ap_form_registry.html.haml:81 -#: ../app/views/ops/_ap_form_registry.html.haml:128 -#: ../app/views/ops/_classification_entry.html.haml:58 -#: ../app/views/ops/_settings_replication_tab.html.haml:488 -#: ../app/views/ops/_settings_replication_tab.html.haml:488 -#: ../app/views/ops/_settings_replication_tab.html.haml:494 -#: ../app/views/ops/_settings_replication_tab.html.haml:494 -#: ../app/views/shared/dialogs/_dialog_field.html.haml:48 -#: ../app/views/shared/views/_retire.html.haml:99 -#: ../app/views/shared/views/_retire.html.haml:99 -msgid "Save" -msgstr "保存" +msgid " %{host_uid_ems} needs to be evacuated before it can be removed " +msgstr " %{host_uid_ems} は削除する前に退避させる必要があります" -#: ../app/assets/javascripts/controllers/buttons/button_group_controller.js:7 -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:8 -#: ../app/helpers/application_helper/toolbar/host_center.rb:215 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:237 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:265 -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:22 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:225 -#: ../app/views/cloud_volume/attach.html.haml:64 -#: ../app/views/cloud_volume/backup_new.html.haml:63 -#: ../app/views/cloud_volume/backup_select.html.haml:47 -#: ../app/views/cloud_volume/edit.html.haml:46 -#: ../app/views/cloud_volume/new.html.haml:99 -#: ../app/views/cloud_volume/snapshot_new.html.haml:46 -#: ../app/views/host_aggregate/edit.html.haml:45 -#: ../app/views/host_aggregate/new.html.haml:98 -#: ../app/views/layouts/_adv_search_footer.html.haml:54 -#: ../app/views/layouts/_adv_search_footer.html.haml:57 -#: ../app/views/layouts/_edit_buttons.html.haml:32 -#: ../app/views/layouts/_edit_form_buttons.html.haml:87 -#: ../app/views/layouts/_edit_form_buttons.html.haml:103 -#: ../app/views/layouts/_edit_form_buttons.html.haml:112 -#: ../app/views/layouts/_edit_form_buttons.html.haml:151 -#: ../app/views/layouts/_form_buttons.html.haml:49 -#: ../app/views/layouts/_form_buttons.html.haml:56 -#: ../app/views/layouts/_form_buttons.html.haml:79 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:39 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:68 -#: ../app/views/layouts/_x_edit_buttons.html.haml:116 -#: ../app/views/layouts/_x_edit_buttons.html.haml:161 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:19 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:27 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:35 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:43 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:25 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:51 -#: ../app/views/miq_capacity/planning.html.haml:19 -#: ../app/views/miq_capacity/planning.html.haml:36 -#: ../app/views/miq_policy/_rsop_options.html.haml:22 -#: ../app/views/miq_policy/_rsop_options.html.haml:40 -#: ../app/views/miq_request/_prov_options.html.haml:127 -#: ../app/views/miq_request/_prov_options.html.haml:153 -#: ../app/views/miq_task/_tasks_options.html.haml:160 -#: ../app/views/miq_task/_tasks_options.html.haml:185 -#: ../app/views/ops/_settings_replication_tab.html.haml:500 -#: ../app/views/ops/_settings_replication_tab.html.haml:506 -#: ../app/views/vm_common/_reconfigure.html.haml:413 -msgid "Reset" -msgstr "リセット" +msgid " %{host_uid_ems} needs to be in maintenance mode before it can be removed " +msgstr " %{host_uid_ems} は削除する前にメンテナンスモードにする必要があります" -#: ../app/assets/javascripts/controllers/buttons/button_group_controller.js:8 -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:10 -#: ../app/assets/javascripts/controllers/container_deployment/wizard/wizard-directive.js:46 -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:31 -#: ../app/views/cloud_volume/attach.html.haml:70 -#: ../app/views/cloud_volume/backup_new.html.haml:69 -#: ../app/views/cloud_volume/backup_select.html.haml:53 -#: ../app/views/cloud_volume/detach.html.haml:46 -#: ../app/views/cloud_volume/edit.html.haml:52 -#: ../app/views/cloud_volume/new.html.haml:105 -#: ../app/views/cloud_volume/snapshot_new.html.haml:52 -#: ../app/views/ems_cloud/discover.html.haml:61 -#: ../app/views/ems_cloud/discover.html.haml:61 -#: ../app/views/ems_infra/register_nodes.html.haml:23 -#: ../app/views/ems_infra/scaledown.html.haml:96 -#: ../app/views/ems_infra/scaledown.html.haml:96 -#: ../app/views/ems_infra/scaling.html.haml:66 -#: ../app/views/ems_infra/scaling.html.haml:66 -#: ../app/views/host_aggregate/edit.html.haml:51 -#: ../app/views/host_aggregate/new.html.haml:104 -#: ../app/views/layouts/_adv_search_footer.html.haml:77 -#: ../app/views/layouts/_adv_search_footer.html.haml:90 -#: ../app/views/layouts/_ae_tree_select.html.haml:66 -#: ../app/views/layouts/_ae_tree_select.html.haml:80 -#: ../app/views/layouts/_discover.html.haml:110 -#: ../app/views/layouts/_discover.html.haml:110 -#: ../app/views/layouts/_edit_buttons.html.haml:40 -#: ../app/views/layouts/_edit_buttons.html.haml:40 -#: ../app/views/layouts/_edit_buttons.html.haml:63 -#: ../app/views/layouts/_edit_buttons.html.haml:63 -#: ../app/views/layouts/_edit_form_buttons.html.haml:123 -#: ../app/views/layouts/_edit_form_buttons.html.haml:132 -#: ../app/views/layouts/_edit_form_buttons.html.haml:163 -#: ../app/views/layouts/_edit_form_buttons.html.haml:172 -#: ../app/views/layouts/_form_buttons.html.haml:65 -#: ../app/views/layouts/_form_buttons.html.haml:83 -#: ../app/views/layouts/_user_input_filter.html.haml:123 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:46 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:71 -#: ../app/views/layouts/_x_edit_buttons.html.haml:130 -#: ../app/views/layouts/_x_edit_buttons.html.haml:173 -#: ../app/views/layouts/_x_edit_buttons.html.haml:193 -#: ../app/views/layouts/_x_edit_buttons.html.haml:211 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:35 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:35 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:35 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:51 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:51 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:51 -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:80 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:115 -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:107 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:188 -#: ../app/views/middleware_server/_choose_datasource.html.haml:42 -#: ../app/views/middleware_server/_deploy.html.haml:116 -#: ../app/views/middleware_server/_ops_params.html.haml:93 -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:67 -#: ../app/views/miq_ae_tools/_import_export.html.haml:234 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:37 -#: ../app/views/miq_policy/_export.html.haml:33 -#: ../app/views/miq_policy/import.html.haml:73 -#: ../app/views/miq_request/_prov_form_buttons.html.haml:15 -#: ../app/views/miq_request/_prov_form_buttons.html.haml:46 -#: ../app/views/ontap_file_share/_create_datastore.html.haml:73 -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:70 -#: ../app/views/report/_export_widgets.html.haml:68 -#: ../app/views/shared/views/_retire.html.haml:106 -#: ../app/views/shared/views/_retire.html.haml:106 -#: ../app/views/shared/views/ems_common/_form.html.haml:187 -#: ../app/views/static/buttons.html.haml:52 -#: ../app/views/static/buttons.html.haml:53 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:445 -#: ../app/views/storage_manager/_form.html.haml:246 -#: ../app/views/vm_common/_add_to_service.html.haml:56 -#: ../app/views/vm_common/_associate_floating_ip.html.haml:48 -#: ../app/views/vm_common/_disassociate_floating_ip.html.haml:48 -#: ../app/views/vm_common/_evacuate.html.haml:115 -#: ../app/views/vm_common/_live_migrate.html.haml:119 -#: ../app/views/vm_common/_reconfigure.html.haml:422 -#: ../app/views/vm_common/_reconfigure.html.haml:422 -#: ../app/views/vm_common/_resize.html.haml:70 -#: ../app/views/vm_common/_resize.html.haml:83 -#: ../app/views/vm_common/_snap.html.haml:70 -msgid "Cancel" -msgstr "取り消し" +msgid " %{model} Assignments" +msgstr " %{model}の割り当て" -#: -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:5 -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:14 -#: ../app/views/layouts/_edit_buttons.html.haml:23 -#: ../app/views/layouts/_edit_form_buttons.html.haml:1 -#: ../app/views/layouts/_form_buttons.html.haml:1 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:18 -#: ../app/views/layouts/_x_edit_buttons.html.haml:108 -msgid "Save Changes" -msgstr "変更の保存" +msgid " %{name} from %{value} to %{parameters} " +msgstr "%{value} から %{parameters} の %{name}" -#: -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:6 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:25 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:62 -#: ../app/views/layouts/_x_edit_buttons.html.haml:71 -#: ../app/views/layouts/_x_edit_buttons.html.haml:148 -#: ../app/views/layouts/angular/_form_button_submit_angular.html.haml:8 -#: ../app/views/layouts/angular/_form_button_submit_angular.html.haml:15 -#: ../app/views/miq_ae_tools/_import_export.html.haml:122 -#: ../app/views/miq_ae_tools/_import_export.html.haml:232 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:6 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:47 -#: ../app/views/miq_capacity/planning.html.haml:9 -#: ../app/views/miq_capacity/planning.html.haml:32 -#: ../app/views/miq_policy/_rsop_options.html.haml:12 -#: ../app/views/miq_policy/_rsop_options.html.haml:35 -#: ../app/views/miq_request/_prov_form_buttons.html.haml:18 -#: ../app/views/miq_request/_prov_form_buttons.html.haml:42 -#: ../app/views/miq_request/_request.html.haml:266 -#: ../app/views/ontap_file_share/_create_datastore.html.haml:67 -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:64 -#: ../app/views/ops/_diagnostics_database_tab.html.haml:217 -#: ../app/views/vm_common/_associate_floating_ip.html.haml:42 -#: ../app/views/vm_common/_disassociate_floating_ip.html.haml:42 -#: ../app/views/vm_common/_evacuate.html.haml:109 -#: ../app/views/vm_common/_live_migrate.html.haml:113 -#: ../app/views/vm_common/_reconfigure.html.haml:401 -#: ../app/views/vm_common/_reconfigure.html.haml:401 -#: ../app/views/vm_common/_reconfigure.html.haml:407 -#: ../app/views/vm_common/_reconfigure.html.haml:407 -#: ../app/views/vm_common/_resize.html.haml:62 -#: ../app/views/vm_common/_resize.html.haml:81 -msgid "Submit" -msgstr "送信" +msgid " (%{priority}active, PID=%{number})" +msgstr " (%{priority} 動作中、PID=%{number})" -#: -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:7 -msgid "Submit Changes" -msgstr "変更の送信" +msgid " (%{priority}available, PID=%{number})" +msgstr " (%{priority} 利用不可、PID=%{number})" -#: -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:9 -#: ../app/views/layouts/_edit_buttons.html.haml:32 -#: ../app/views/layouts/_edit_form_buttons.html.haml:87 -#: ../app/views/layouts/_edit_form_buttons.html.haml:103 -#: ../app/views/layouts/_edit_form_buttons.html.haml:112 -#: ../app/views/layouts/_form_buttons.html.haml:49 -#: ../app/views/layouts/_form_buttons.html.haml:56 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:39 -#: ../app/views/layouts/_x_edit_buttons.html.haml:116 -msgid "Reset Changes" -msgstr "変更のリセット" +msgid " (%{priority}unavailable)" +msgstr " (%{priority} 利用不可)" -#: -#: ../app/assets/javascripts/controllers/cloud_topology/cloud_topology_controller.js:41 -#: ../app/assets/javascripts/controllers/container_topology/container_topology_controller.js:48 -#: ../app/assets/javascripts/controllers/infra_topology/infra_topology_controller.js:41 -#: ../app/assets/javascripts/controllers/network_topology/network_topology_controller.js:41 -msgid "Click here to show/hide entities of this type" -msgstr "ここをクリックしてこのタイプのエントリーを表示または非表示にします" +msgid " (Ad hoc Metrics)" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Friday" -msgstr "金曜日" +msgid " (All Descendant %{table}(s))" +msgstr " (すべての子%{table}(s))" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Monday" -msgstr "月曜日" +msgid " (All Resource Pools)" +msgstr " (すべてのリソースプール)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Saturday" -msgstr "土曜日" +msgid " (All VMs - Tree View)" +msgstr " (すべての仮想マシン - ツリー表示)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Sunday" -msgstr "日曜日" +msgid " (All VMs)" +msgstr " (すべての仮想マシン)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Thursday" -msgstr "木曜日" +msgid " (Analysis History)" +msgstr "(分析履歴)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Tuesday" -msgstr "火曜日" +msgid " (Click to view)" +msgstr " (クリックして表示)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Wednesday" -msgstr "水曜日" +msgid " (Compliance History - Last %{number} Checks)" +msgstr "(コンプライアンス履歴 ー 最後の %{number} チェック)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 -msgid "1-2" -msgstr "1-2" +msgid " (Container)" +msgstr "(コンテナー)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 -msgid "12-1" -msgstr "12-1" +msgid " (Dashboard)" +msgstr "(ダッシュボード)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 -msgid "2-3" -msgstr "2-3" +msgid " (Devices)" +msgstr "(デバイス)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 -msgid "3-4" -msgstr "3-4" +msgid " (Direct %{title})" +msgstr " (ダイレクト%{title})" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 -msgid "4-5" -msgstr "4-5" +msgid " (Genealogy)" +msgstr "(系図)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 -msgid "5-6" -msgstr "5-6" +msgid " (Hosts & Clusters)" +msgstr "(ホスト & クラスター)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 -msgid "10-11" -msgstr "10-11" +msgid " (Inactive)" +msgstr "(休止中)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 -msgid "11-12" -msgstr "11-12" +msgid " (Latest Compliance Check)" +msgstr "(最新のコンプライアンスチェック)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 -msgid "6-7" -msgstr "6-7" +msgid " (Names with \"%{search_text}\")" +msgstr " (\"%{search_text}\" を含む名前)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 -msgid "7-8" -msgstr "7-8" +msgid " (Names with \"%{text}\")" +msgstr " (\"%{text}\" を含む名前)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 -msgid "8-9" -msgstr "8-9" +msgid " (Networks)" +msgstr "(ネットワーク)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 -msgid "9-10" -msgstr "9-10" +msgid " (OS Information)" +msgstr "(OS 情報)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:48 -msgid "In use by %s reports, cannot be disabled" -msgstr "%s レポートが使用中のため無効にできません" +msgid " (Parent)" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/container_dashboard_controller.js:25 -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:45 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/ems_infra_dashboard_controller.js:22 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:37 -#: ../app/controllers/miq_capacity_controller.rb:766 -#: ../app/helpers/chargeback_helper.rb:4 -#: ../app/helpers/service_helper/textual_summary.rb:39 -#: ../app/helpers/vm_helper/textual_summary.rb:788 -#: ../app/views/miq_capacity/_utilization_report.html.haml:33 -#: ../app/views/miq_capacity/_utilization_summary.html.haml:18 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:55 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:132 -#: ../app/views/vm_common/_right_size.html.haml:44 -msgid "CPU" -msgstr "CPU" +msgid " (Properties)" +msgstr "(プロパティー)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/container_dashboard_controller.js:31 -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:54 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:35 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/ems_infra_dashboard_controller.js:28 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:46 -#: ../app/controllers/application_controller.rb:1163 -#: ../app/controllers/application_controller/miq_request_methods.rb:410 -#: ../app/controllers/miq_capacity_controller.rb:767 -#: ../app/helpers/chargeback_helper.rb:7 -#: ../app/helpers/container_node_helper/textual_summary.rb:51 -#: ../app/helpers/host_helper/textual_summary.rb:247 -#: ../app/helpers/service_helper/textual_summary.rb:43 -#: ../app/helpers/vm_helper/textual_summary.rb:605 -#: ../app/helpers/vm_helper/textual_summary.rb:807 -#: ../app/views/miq_capacity/_utilization_report.html.haml:33 -#: ../app/views/miq_capacity/_utilization_summary.html.haml:18 -#: ../app/views/miq_request/_reconfigure_show.html.haml:17 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:48 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:125 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:163 -#: ../app/views/vm_common/_reconfigure.html.haml:15 -#: ../app/views/vm_common/_right_size.html.haml:114 -#: ../app/views/vm_common/_right_size.html.haml:241 -#: ../app/views/vm_common/_right_size.html.haml:325 -#: ../app/views/vm_common/_right_size.html.haml:408 -msgid "Memory" -msgstr "メモリー" +msgid " (Resources)" +msgstr "(リソース)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:46 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:38 -msgid "Cores" -msgstr "コア数" +msgid " (Snapshots)" +msgstr "(スナップショット)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:47 -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:56 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:39 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:48 -msgid "Used" -msgstr "使用済み容量" +msgid " (Summary)" +msgstr "(概要)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:48 -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:57 -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:64 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:40 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:49 -#: ../app/helpers/ui_constants.rb:429 -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:128 -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:146 -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:195 -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:239 -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:95 -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:113 -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:151 -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:173 -msgid "Last 30 Days" -msgstr "最後の 30 日" +msgid " (Topology)" +msgstr " (トポロジー)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:55 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:47 -#: ../app/views/miq_capacity/_planning_options.html.haml:251 -msgid "GB" -msgstr "GB" +msgid " (VMs & Templates)" +msgstr "(仮想マシン & テンプレート)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:63 -msgid "Network Utilization Trend" -msgstr "ネットワーク使用状況のトレンド" +msgid " (current)" +msgstr " (現在)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:65 -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:66 -#: ../app/assets/javascripts/miq_application.js:95 -msgid "KBps" -msgstr "KBps" +msgid " (filtered)" +msgstr "(フィルター済み)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:71 -msgid "Pod Creation and Deletion Trends" -msgstr "ポッド作成および削除のトレンド" +msgid " * Multiple UI workers can not be configured with session store as memory" +msgstr " * 複数の UI ワーカーをメモリーとしてのセッションストアで設定することはできません" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:72 -#: ../app/views/miq_policy/_policy_details.html.haml:76 -msgid "Created" -msgstr "作成日" +msgid " - %{last_refresh_date} Ago" +msgstr " - %{last_refresh_date} 前" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:73 -msgid "Deleted" -msgstr "削除" +msgid " - Filtered by \"%{text}\"" +msgstr " - \"%{text}\" でフィルター" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:86 -msgid "New Image Usage Trend" -msgstr "新規イメージ使用状況のトレンド" +msgid " - Filtered by \"%{text}\" report" +msgstr " - \"%{text}\" レポートでフィルター" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:87 -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:59 -#: ../app/controllers/ems_common.rb:61 -#: ../app/controllers/vm_cloud_controller.rb:165 -#: ../app/controllers/vm_common.rb:1246 -#: ../app/views/configuration/_ui_2.html.haml:175 -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:42 -msgid "Images" -msgstr "イメージ" +msgid " - Filtered by %{filter}" +msgstr " - %{filter} でフィルター" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:103 -msgid "Node: " -msgstr "ノード: " +msgid " - Filtered by custom search" +msgstr " - カスタム検索でフィルター" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:103 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:85 -#: ../app/assets/javascripts/services/topology_service.js:10 -msgid "Provider: " -msgstr "プロバイダー:" +msgid " Add " +msgstr "追加" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:105 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:87 -msgid "Usage: Unknown" -msgstr "使用状況: 不明" +msgid " Address" +msgstr "アドレス" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:108 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:90 -msgid "%d%% in use of %d total" -msgstr "%d%% 使用 (%d 合計)" +msgid " Build %{number}" +msgstr " ビルド %{number}" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:108 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:90 -msgid "Usage: " -msgstr "使用状況: " +msgid " Day" +msgstr "日" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:4 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:4 -#: ../app/controllers/provider_foreman_controller.rb:518 -#: ../app/controllers/provider_foreman_controller.rb:1169 -#: ../app/presenters/menu/default_menu.rb:48 -#: ../app/presenters/menu/default_menu.rb:65 -#: ../app/presenters/menu/default_menu.rb:97 -#: ../app/presenters/menu/default_menu.rb:117 -#: ../app/presenters/menu/default_menu.rb:125 -#: ../app/presenters/menu/default_menu.rb:138 -msgid "Providers" -msgstr "プロバイダー" +msgid " Days" +msgstr "日" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:11 -#: ../app/helpers/application_helper.rb:1525 -#: ../app/presenters/menu/default_menu.rb:61 -#: ../app/views/container_topology/show.html.haml:120 -#: ../app/views/infra_topology/show.html.haml:33 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:303 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:25 -msgid "Nodes" -msgstr "ノード" +msgid " Download PDF" +msgstr "PDF のダウンロード" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:19 -#: ../app/controllers/ems_common.rb:76 -#: ../app/presenters/menu/default_menu.rb:95 -#: ../app/views/configuration/_ui_2.html.haml:74 -#: ../app/views/container_topology/show.html.haml:63 -msgid "Containers" -msgstr "コンテナー" +msgid " Full Screen" +msgstr "全画面表示" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:27 -msgid "Registries" -msgstr "レジストリー" +msgid " Hour" +msgstr "時間" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:35 -#: ../app/views/ops/_rbac_tenant_details.html.haml:111 -msgid "Projects" -msgstr "プロジェクト" +msgid " Hours" +msgstr "時間" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:43 -#: ../app/controllers/ems_common.rb:79 -#: ../app/views/container_topology/show.html.haml:44 -msgid "Pods" -msgstr "ポッド" +msgid " Maximize" +msgstr "最大化" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:51 -#: ../app/controllers/host_controller.rb:190 -#: ../app/controllers/service_controller.rb:150 -#: ../app/helpers/host_helper/textual_summary.rb:448 -#: ../app/helpers/ui_constants.rb:437 ../app/presenters/menu/default_menu.rb:38 -#: ../app/views/configuration/_ui_2.html.haml:46 -#: ../app/views/container_topology/show.html.haml:82 -#: ../app/views/layouts/listnav/_host.html.haml:224 -msgid "Services" -msgstr "サービス" +msgid " Memory value not in range or not a multiple of 4" +msgstr "メモリー値が範囲内ではないか、または 4 の倍数ではありません" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:67 -#: ../app/views/container_topology/show.html.haml:101 -msgid "Routes" -msgstr "ルート" +msgid " Minimize" +msgstr "最小化" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:23 -#: ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:213 -#: ../app/assets/javascripts/controllers/container_deployment/wizard/wizard-directive.js:52 -msgid "Next >" -msgstr "次へ >" +msgid " Processor Options" +msgstr "プロセッサーオプション" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:191 -msgid "An unknown error has occurred." -msgstr "不明のエラーが発生しました。" +msgid " Remove Widget" +msgstr "ウィジェットの削除" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:209 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:196 -#: ../app/views/middleware_server/_deploy.html.haml:124 -msgid "Deploy" -msgstr "デプロイ" +msgid " Scaling down to %{a} compute nodes" +msgstr "%{a} コンピュートノードにスケールダウン" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:211 -#: ../app/views/dashboard/_zoomed_chart.html.haml:14 -#: ../app/views/middleware_server/_add_datasource.html.haml:29 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:29 -#: ../app/views/middleware_server/_ops_params.html.haml:31 -msgid "Close" -msgstr "閉じる" +msgid " Selected Actions:" +msgstr " 選択したアクション:" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:20 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-no-provider-controller.js:89 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:238 -#: ../app/controllers/application_controller/miq_request_methods.rb:323 -#: ../app/controllers/application_controller/miq_request_methods.rb:335 -#: ../app/controllers/application_controller/miq_request_methods.rb:346 -#: ../app/controllers/application_controller/miq_request_methods.rb:358 -#: ../app/controllers/application_controller/miq_request_methods.rb:375 -#: ../app/controllers/application_controller/miq_request_methods.rb:390 -#: ../app/controllers/application_controller/miq_request_methods.rb:406 -#: ../app/controllers/application_controller/miq_request_methods.rb:437 -#: ../app/controllers/application_controller/miq_request_methods.rb:443 -#: ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:17 -#: ../app/helpers/container_build_helper/textual_summary.rb:23 -#: ../app/helpers/container_group_helper/textual_summary.rb:16 -#: ../app/helpers/container_group_helper/textual_summary.rb:57 -#: ../app/helpers/container_helper/textual_summary.rb:121 -#: ../app/helpers/container_image_helper/textual_summary.rb:105 -#: ../app/helpers/container_node_helper/textual_summary.rb:17 -#: ../app/helpers/container_project_helper/textual_summary.rb:22 -#: ../app/helpers/container_project_helper/textual_summary.rb:43 -#: ../app/helpers/container_service_helper/textual_summary.rb:18 -#: ../app/helpers/container_template_helper/textual_summary.rb:20 -#: ../app/helpers/container_template_helper/textual_summary.rb:26 -#: ../app/helpers/ems_container_helper/textual_summary.rb:28 -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:27 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:37 -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:27 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:30 -#: ../app/helpers/ops_helper/textual_summary.rb:37 -#: ../app/helpers/ops_helper/textual_summary.rb:101 -#: ../app/helpers/ops_helper/textual_summary.rb:109 -#: ../app/helpers/ops_helper/textual_summary.rb:117 -#: ../app/helpers/ops_helper/textual_summary.rb:139 -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:168 -#: ../app/helpers/provider_foreman_helper.rb:125 -#: ../app/helpers/provider_foreman_helper.rb:205 -#: ../app/helpers/provider_foreman_helper.rb:234 -#: ../app/helpers/provider_foreman_helper.rb:280 -#: ../app/helpers/pxe_helper/textual_summary.rb:48 -#: ../app/helpers/pxe_helper/textual_summary.rb:72 -#: ../app/helpers/pxe_helper/textual_summary.rb:96 -#: ../app/helpers/pxe_helper/textual_summary.rb:116 -#: ../app/helpers/pxe_helper/textual_summary.rb:140 -#: ../app/views/_ldap_domain_form.html.haml:16 -#: ../app/views/auth_key_pair_cloud/_form.html.haml:24 -#: ../app/views/catalog/_form_resources_info.html.haml:55 -#: ../app/views/catalog/_ot_add.html.haml:14 -#: ../app/views/catalog/_ot_copy.html.haml:21 -#: ../app/views/catalog/_ot_edit.html.haml:14 -#: ../app/views/catalog/_ot_tree_show.html.haml:11 -#: ../app/views/catalog/_sandt_tree_show.html.haml:261 -#: ../app/views/catalog/_stcat_form.html.haml:20 -#: ../app/views/catalog/_stcat_tree_show.html.haml:11 -#: ../app/views/catalog/_svccat_tree_show.html.haml:28 -#: ../app/views/chargeback/_cb_assignments.html.haml:94 -#: ../app/views/chargeback/_cb_assignments.html.haml:155 -#: ../app/views/chargeback/_cb_assignments.html.haml:192 -#: ../app/views/chargeback/_cb_assignments.html.haml:229 -#: ../app/views/chargeback/_reports_list.html.haml:52 -#: ../app/views/configuration/_timeprofile_form.html.haml:384 -#: ../app/views/ems_container/_form.html.haml:13 -#: ../app/views/ems_datawarehouse/_form.html.haml:13 -#: ../app/views/ems_infra/_form.html.haml:13 -#: ../app/views/ems_middleware/_form.html.haml:13 -#: ../app/views/generic_object/explorer.html.haml:21 -#: ../app/views/generic_object/explorer.html.haml:52 -#: ../app/views/generic_object/explorer.html.haml:108 -#: ../app/views/host/_form.html.haml:25 -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:15 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:15 -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_class_form.html.haml:27 -#: ../app/views/miq_ae_class/_class_props.html.haml:29 -#: ../app/views/miq_ae_class/_inputs.html.haml:14 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:15 -#: ../app/views/miq_ae_class/_instance_form.html.haml:27 -#: ../app/views/miq_ae_class/_instance_form.html.haml:87 -#: ../app/views/miq_ae_class/_method_form.html.haml:31 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:32 -#: ../app/views/miq_ae_class/_ns_list.html.haml:20 -#: ../app/views/miq_ae_class/_ns_list.html.haml:104 -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:35 -#: ../app/views/miq_ae_customization/_old_dialogs_details.html.haml:20 -#: ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:17 -#: ../app/views/miq_capacity/_planning_summary.html.haml:49 -#: ../app/views/miq_policy/_action_details.html.haml:76 -#: ../app/views/ontap_file_share/_create_datastore.html.haml:18 -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:12 -#: ../app/views/ops/_ap_form.html.haml:18 -#: ../app/views/ops/_ap_form_file.html.haml:12 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:12 -#: ../app/views/ops/_ap_show.html.haml:16 -#: ../app/views/ops/_ap_show.html.haml:94 -#: ../app/views/ops/_category_form.html.haml:118 -#: ../app/views/ops/_classification_entries.html.haml:13 -#: ../app/views/ops/_db_info.html.haml:15 -#: ../app/views/ops/_db_info.html.haml:118 -#: ../app/views/ops/_db_info.html.haml:213 -#: ../app/views/ops/_ldap_domain_form.html.haml:16 -#: ../app/views/ops/_ldap_domain_show.html.haml:16 -#: ../app/views/ops/_ldap_region_form.html.haml:19 -#: ../app/views/ops/_ldap_region_show.html.haml:18 -#: ../app/views/ops/_ldap_region_show.html.haml:71 -#: ../app/views/ops/_rbac_role_details.html.haml:23 -#: ../app/views/ops/_rbac_tenant_details.html.haml:17 -#: ../app/views/ops/_rbac_tenant_details.html.haml:93 -#: ../app/views/ops/_rbac_tenant_details.html.haml:119 -#: ../app/views/ops/_schedule_form.html.haml:19 -#: ../app/views/ops/_settings_co_categories_tab.html.haml:10 -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:13 -#: ../app/views/ops/_tenant_form.html.haml:17 -#: ../app/views/ops/_zone_form.html.haml:16 -#: ../app/views/orchestration_stack/_copy_orchestration_template.html.haml:16 -#: ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 -#: ../app/views/provider_foreman/_form.html.haml:18 -#: ../app/views/pxe/_iso_datastore_details.html.haml:24 -#: ../app/views/pxe/_pxe_form.html.haml:17 -#: ../app/views/pxe/_pxe_image_type_form.html.haml:17 -#: ../app/views/pxe/_pxe_server_details.html.haml:59 -#: ../app/views/pxe/_pxe_server_details.html.haml:106 -#: ../app/views/pxe/_template_form.html.haml:15 -#: ../app/views/report/_db_form.html.haml:20 -#: ../app/views/report/_db_show.html.haml:12 -#: ../app/views/report/_report_info.html.haml:124 -#: ../app/views/report/_report_list.html.haml:49 -#: ../app/views/report/_report_list.html.haml:82 -#: ../app/views/report/_report_list.html.haml:112 -#: ../app/views/report/_schedule_form.html.haml:17 -#: ../app/views/service/_service_form.html.haml:27 -#: ../app/views/shared/views/ems_common/_form.html.haml:18 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:13 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:63 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:9 -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:7 -#: ../app/views/storage_manager/_form.html.haml:23 -#: ../app/views/vm_common/_reconfigure.html.haml:201 -#: ../app/views/vm_common/_snap.html.haml:17 -msgid "Name" -msgstr "名前" +msgid " Selected Alerts:" +msgstr " 選択したアラート:" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:25 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-no-provider-controller.js:94 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:244 -#: ../app/views/ops/_rbac_group_details.html.haml:55 -#: ../app/views/ops/_rbac_user_details.html.haml:195 -#: ../app/views/ops/_selected_by_roles.html.haml:7 -#: ../app/views/ops/_selected_by_servers.html.haml:168 -msgid "Role" -msgstr "ロール" +msgid " Total processors value larger than the maximum allowed" +msgstr "プロセッサー合計値が最大許可値を超えています" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:30 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:158 -msgid "# CPUS" -msgstr "# CPUS" +msgid " Valid memory value required" +msgstr "有効なメモリー値が必要です" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:40 -#: ../app/controllers/application_controller/miq_request_methods.rb:411 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:62 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:139 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:168 -msgid "Disk Size" -msgstr "ディスクサイズ" +msgid " Valid numeric disk size required " +msgstr "有効なディスクサイズ数値が必要です" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-no-provider-controller.js:67 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:126 -msgid "Remove Roles" -msgstr "ロールの削除" +msgid " Valid numeric quota value required " +msgstr "有効なクォータ数値が必要です" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-no-provider-controller.js:71 -msgid "Remove VM(s)" -msgstr "仮想マシンの削除" +msgid " Week" +msgstr "週" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:76 -msgid "The number of Masters must be 1, 3, or 5" -msgstr "マスターの番号は 1、3、または 5 である必要があります。" +msgid " Weeks" +msgstr "週" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:85 -msgid "You must select at least one Node" -msgstr "1 つ以上のノードを選択する必要があります。" +msgid " Zoom in" +msgstr "拡大" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:94 -msgid "You must select one Storage Node when using Integrated NFS storage" -msgstr "統合 NFS ストレージの使用時に 1 つのストレージノードを選択する必要があります。" +msgid " [%{text} Information]" +msgstr " [%{text}情報]" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:97 -msgid "You can only specify one Storage Node" -msgstr "ストレージノードを 1 つのみ指定できます。" +msgid " by %{user}" +msgstr "%{user}別" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:106 -msgid "You can specify at most one DNS Node" -msgstr "DNS ノードを 1 つのみ指定できます。" +msgid "\"%{action}\" for %{switch} \"%{name}\"" +msgstr "%{switch} \"%{name} の \"%{action}\"" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:120 -msgid "Load balancers can only be assigned to Masters or Nodes" -msgstr "ロードバランサーはマスターまたはノードのみに割り当てることができます" +msgid "\"%{action}\" for %{vm_or_template} \"%{name}\"" +msgstr "%{vm_or_template} \"%{name}\" の \"%{action}\" " -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:128 -msgid "DNS can only be assigned to Masters or Nodes" -msgstr "DNS はマスターまたはノードのみに割り当てることができます" +msgid "\"%{datastore_name}\": cannot be removed, has vms or hosts" +msgstr "\"%{datastore_name}\": 削除できません、仮想マシンまたはホストがあります" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:136 -msgid "Etcd can only be assigned to Masters or Nodes" -msgstr "Etcd はマスターまたはノードのみに割り当てることができます" +msgid "\"%{field}\" %{model} cannot be deleted" +msgstr "\"%{field}\" %{model}は削除できません" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:144 -msgid "Infrastructure can only be assigned to Nodes" -msgstr "インフラストラクチャーはノードにのみ割り当てることができます" +msgid "\"%{name}\": Global %{model} cannot be deleted" +msgstr "\"%{name}\": グローバル%{model}は削除できません" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:30 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:36 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:47 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:54 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:73 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:85 -#: ../app/helpers/cloud_volume_backup_helper/textual_summary.rb:37 -#: ../app/helpers/cloud_volume_helper/textual_summary.rb:37 -#: ../app/helpers/cloud_volume_helper/textual_summary.rb:52 -#: ../app/helpers/cloud_volume_helper/textual_summary.rb:64 -#: ../app/helpers/cloud_volume_snapshot_helper/textual_summary.rb:45 -#: ../app/helpers/configuration_job_helper/textual_summary.rb:36 -#: ../app/helpers/configuration_job_helper/textual_summary.rb:49 -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:124 -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:190 -#: ../app/helpers/host_helper/textual_summary.rb:136 -#: ../app/helpers/host_helper/textual_summary.rb:225 -#: ../app/helpers/host_helper/textual_summary.rb:265 -#: ../app/helpers/host_helper/textual_summary.rb:304 -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:61 -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:74 -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:86 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:189 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:211 -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:47 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:60 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:67 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:79 -#: ../app/helpers/service_helper/textual_summary.rb:77 -#: ../app/helpers/storage_helper/textual_summary.rb:61 -#: ../app/helpers/storage_helper/textual_summary.rb:144 -#: ../app/helpers/storage_helper/textual_summary.rb:155 -#: ../app/helpers/textual_mixins/textual_authentications_status.rb:12 -#: ../app/helpers/textual_mixins/textual_authentications_status.rb:38 -#: ../app/helpers/textual_mixins/textual_drift.rb:7 -#: ../app/helpers/textual_mixins/textual_metrics_status.rb:5 -#: ../app/helpers/textual_mixins/textual_metrics_status.rb:6 -#: ../app/helpers/textual_mixins/textual_scan_history.rb:6 -#: ../app/helpers/textual_summary_helper.rb:163 -#: ../app/helpers/textual_summary_helper.rb:178 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:100 -#: ../app/helpers/vm_helper.rb:24 ../app/helpers/vm_helper.rb:29 -#: ../app/helpers/vm_helper/textual_summary.rb:127 -#: ../app/helpers/vm_helper/textual_summary.rb:160 -#: ../app/helpers/vm_helper/textual_summary.rb:221 -#: ../app/helpers/vm_helper/textual_summary.rb:232 -#: ../app/helpers/vm_helper/textual_summary.rb:243 -#: ../app/helpers/vm_helper/textual_summary.rb:256 -#: ../app/helpers/vm_helper/textual_summary.rb:288 -#: ../app/helpers/vm_helper/textual_summary.rb:299 -#: ../app/helpers/vm_helper/textual_summary.rb:310 -#: ../app/helpers/vm_helper/textual_summary.rb:323 -#: ../app/helpers/vm_helper/textual_summary.rb:337 -#: ../app/helpers/vm_helper/textual_summary.rb:349 -#: ../app/helpers/vm_helper/textual_summary.rb:447 -#: ../app/helpers/vm_helper/textual_summary.rb:831 -#: ../app/views/catalog/_form_resources_info.html.haml:121 -#: ../app/views/layouts/_edit_to_email.html.haml:22 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:269 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:126 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:209 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:252 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:350 -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:121 -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:155 -#: ../app/views/miq_capacity/_utilization_options.html.haml:45 -#: ../app/views/miq_policy/_action_options.html.haml:477 -#: ../app/views/miq_policy/_action_options.html.haml:489 -#: ../app/views/miq_policy/_alert_snmp.html.haml:129 -#: ../app/views/miq_request/_prov_ds_grid.html.haml:29 -#: ../app/views/miq_request/_prov_field.html.haml:285 -#: ../app/views/miq_request/_prov_field.html.haml:337 -#: ../app/views/miq_request/_prov_field.html.haml:456 -#: ../app/views/miq_request/_prov_field.html.haml:549 -#: ../app/views/miq_request/_prov_host_grid.html.haml:33 -#: ../app/views/miq_request/_prov_iso_img_grid.html.haml:26 -#: ../app/views/miq_request/_prov_pxe_img_grid.html.haml:26 -#: ../app/views/miq_request/_prov_template_grid.html.haml:26 -#: ../app/views/miq_request/_prov_vc_grid.html.haml:27 -#: ../app/views/miq_request/_prov_vm_grid.html.haml:31 -#: ../app/views/miq_request/_prov_vm_grid.html.haml:108 -#: ../app/views/miq_request/_prov_windows_image_grid.html.haml:26 -#: ../app/views/ops/_rbac_role_details.html.haml:59 -#: ../app/views/ops/_rbac_role_details.html.haml:62 -#: ../app/views/ops/_settings_replication_tab.html.haml:91 -#: ../app/views/report/_form_columns_trend.html.haml:42 -#: ../app/views/report/_form_columns_trend.html.haml:86 -#: ../app/views/report/_form_columns_trend.html.haml:86 -#: ../app/views/report/_form_formatting.html.haml:88 -#: ../app/views/report/_form_sort.html.haml:119 -#: ../app/views/shared/dialogs/_dialog_field_radio_button.html.haml:6 -#: ../app/views/shared/views/_retire.html.haml:49 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:175 -msgid "None" -msgstr "なし" +msgid "\"%{name}\": In use by %{rep_count} Report, cannot be deleted" +msgid_plural "\"%{name}\": In use by %{rep_count} Reports, cannot be deleted" +msgstr[0] "\"%{name}\": %{rep_count} レポートで使用中のため、削除できません" +msgstr[1] "\"%{name}\": %{rep_count} レポートで使用中のため、削除できません" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:30 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:36 -msgid "Use existing VMs from an existing provider: " -msgstr "既存プロバイダーの既存の仮想マシンを使用: " +msgid "\"%{record}\": %{task} invalid" +msgstr "\"%{record}\": %{task}が無効です" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:39 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:76 -msgid "Specify a list of machines to deploy on (No existing provider)" -msgstr "デプロイするマシンの一覧を指定 (既存プロバイダーなし)" +msgid "\"%{record}\": %{task} successfully initiated" +msgstr "\"%{record}\": %{task}が正常に実行されました" -#: -#: ../app/assets/javascripts/controllers/container_deployment/wizard/wizard-directive.js:49 -msgid "< Back" -msgstr "< 戻る" +msgid "\"%{record}\": Analysis successfully initiated" +msgstr "\"%{record}\": 分析が正常に実行されました" -#: -#: ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:89 -msgid "Filter by %s..." -msgstr "" +msgid "\"%{record}\": Compliance check successfully initiated" +msgstr "\"%{record}\": コンプライアンスチェックが正常に実行されました" -#: -#: ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:226 -#: ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:248 -msgid "MM/DD/YYYY HH:mm" -msgstr "" +msgid "\"%{record}\": Refresh successfully initiated" +msgstr "\"%{record}\": 更新が正常に実行されました" -#: -#: ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:268 -msgid "Use the System Tenant Metrics" -msgstr "" +msgid "\"%{record}\": Scheduling is %{status} now." +msgstr "\"%{record}\": スケジューリングは%{status}になっています。" -#: -#: ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:274 -msgid "Use the Ops Tenant Metrics" -msgstr "" +msgid "\"%{task_description}\" was executed" +msgstr "\"%{task_description}\" が実行されました" -#: -#: ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:45 -msgid "Add of Arbitration Profile was cancelled by the user" -msgstr "アービトレーションプロファイルの追加はユーザーによって取り消されました" +msgid "\"%{task}\": not available for %{hostname}" +msgstr "\"%{task}\": %{hostname}には利用できません" -#: -#: ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:47 -msgid "Edit of Arbitration Profile %s was cancelled by the user" -msgstr "アービトレーションプロファイル %s の編集がユーザーにより取り消されました" +msgid "\"%{task}\": not available for %{hostname}. %{hostname}'s provision state must be in \"available\", \"adoptfail\", \"cleanfail\", \"enroll\", or \"inspectfail\"" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:61 -msgid "Arbitration Profile %s was saved" -msgstr "アービトレーションプロファイル %s が保存されました" +msgid "\"%{task}\": not available for %{hostname}. %{hostname}'s provision state needs to be in \"manageable\"" +msgstr "\"%{task}\": %{hostname} には利用できません。%{hostname} のプロビジョニング状態は \"manageable\" である必要があります" -#: -#: ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:70 -msgid "Arbitration Profile %s was added" -msgstr "アービトレーションプロファイル %s が追加されました" +msgid "\"%{task}\": not supported for %{hostname}" +msgstr "\"%{task}\": %{hostname}にはサポートされていません" -#: -#: ../app/assets/javascripts/controllers/ems_common/ems_common_form_controller.js:57 -#: ../app/views/layouts/_auth_credentials.html.haml:30 -msgid "Note: Username must be in the format: name@realm" -msgstr "注: ユーザー名の形式は、name@realm にする必要があります。" +msgid "\"%{type}\" is not a valid Orchestration Template type" +msgstr "\"%{type}\"は有効なオーケストレーションテンプレートのタイプではありません" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:55 -msgid "Recent Hosts" -msgstr "最近のホスト" +msgid "\"A route named '#{route_name}' is configured to connect to the \"external logging server but it doesn't exist" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:56 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:19 -#: ../app/controllers/application_controller/miq_request_methods.rb:617 -#: ../app/controllers/host_controller.rb:31 -#: ../app/controllers/host_controller.rb:686 -#: ../app/helpers/application_helper.rb:1523 ../app/helpers/ui_constants.rb:359 -#: ../app/presenters/menu/default_menu.rb:61 -#: ../app/views/configuration/_ui_2.html.haml:210 -#: ../app/views/container_topology/show.html.haml:158 -msgid "Hosts" -msgstr "ホスト" +msgid "\"There is no server with the #{role} role enabled\"" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:68 -msgid "Recent VMs" -msgstr "最近の VM" +msgid "# CPUS" +msgstr "# CPUS" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:69 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:35 -#: ../app/controllers/application_controller/miq_request_methods.rb:613 -#: ../app/controllers/ems_common.rb:72 ../app/controllers/host_controller.rb:95 -#: ../app/controllers/vm_common.rb:1262 -#: ../app/controllers/vm_infra_controller.rb:27 -#: ../app/helpers/host_helper/textual_summary.rb:320 -#: ../app/views/cloud_topology/show.html.haml:33 -#: ../app/views/configuration/_ui_2.html.haml:210 -#: ../app/views/container_topology/show.html.haml:139 -#: ../app/views/ems_infra/scaledown.html.haml:46 -#: ../app/views/layouts/listnav/_ems_infra.html.haml:63 -#: ../app/views/layouts/listnav/_host.html.haml:128 -#: ../app/views/layouts/listnav/_storage.html.haml:37 -#: ../app/views/middleware_topology/show.html.haml:108 -#: ../app/views/miq_capacity/_planning_summary.html.haml:20 -#: ../app/views/network_topology/show.html.haml:52 -#: ../app/views/service/_svcs_show.html.haml:30 -msgid "VMs" -msgstr "仮想マシン" +msgid "% Complete" +msgstr "% 完了" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:85 -msgid "Cluster: " -msgstr "クラスター: " +msgid "% Matched" +msgstr "% 一致" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:11 -#: ../app/controllers/application_controller/compare.rb:867 -#: ../app/controllers/ems_cluster_controller.rb:28 -#: ../app/controllers/ems_cluster_controller.rb:261 -#: ../app/helpers/application_helper.rb:1538 ../app/helpers/ui_constants.rb:358 -#: ../app/presenters/menu/default_menu.rb:62 -#: ../app/views/configuration/_ui_2.html.haml:210 -msgid "Clusters" -msgstr "クラスター" +msgid "% Matched:" +msgstr "% 一致:" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:27 -#: ../app/controllers/storage_controller.rb:416 -#: ../app/controllers/storage_controller.rb:629 -#: ../app/views/configuration/_ui_2.html.haml:210 -msgid "Datastores" -msgstr "データストア" +msgid "% Savings" +msgstr "% 節約" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:43 -#: ../app/controllers/application_controller/miq_request_methods.rb:615 -#: ../app/controllers/ems_common.rb:71 ../app/controllers/host_controller.rb:95 -#: ../app/controllers/miq_template_controller.rb:20 -#: ../app/controllers/vm_common.rb:1260 -#: ../app/controllers/vm_infra_controller.rb:32 -#: ../app/helpers/ems_infra_helper/textual_summary.rb:153 -#: ../app/views/configuration/_ui_2.html.haml:210 -#: ../app/views/layouts/listnav/_ems_infra.html.haml:70 -#: ../app/views/layouts/listnav/_host.html.haml:136 -msgid "Templates" -msgstr "テンプレート" +msgid "%d Months Ago" +msgstr "%d カ月前" -#: ../app/assets/javascripts/controllers/header/header_controller.js:43 -msgid "%{count} unread notifications" -msgstr "%{count} 件の未読通知" +msgid "%d Note" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/middleware_datasource/middleware_datasource_controller.js:58 -msgid "Unable to install the Datasource on this server." +msgid "%d Notes" msgstr "" -#: -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:25 -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:83 -msgid "No replication role has been set" -msgstr "設定されたレプリケーションロールはありません" +msgid "%d Weeks Ago" +msgstr "%d 週前" -#: -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:85 -msgid "Replication will be disabled for this region" -msgstr "このリージョンのレプリケーションは無効になります" +msgid "%d%% in use of %d %s total" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:87 -msgid "All current subscriptions will be removed" -msgstr "現在のサブスクリプションがすべて削除されます" +msgid "%d%% in use of %d total" +msgstr "%d%% 使用 (%d 合計)" -#: -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:89 -msgid "Changing to remote replication role will remove all current subscriptions" -msgstr "リモートレプリケーションロールに変更すると、現在のサブスクリプションがすべて削除されます" +msgid "%{action} \"%{item_name}\" for %{switch} \"%{name}\"" +msgstr "%{switch} \"%{name}\" の %{action} \"%{item_name}\" " -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:161 -#: ../app/views/miq_policy/_rsop_form.html.haml:45 -msgid "VM Selection" -msgstr "仮想マシンの選択" +msgid "%{action} \"%{item_name}\" for %{vm_or_template} \"%{name}\"" +msgstr "%{vm_or_template} \"%{name}\" の %{action} \"%{item_name}\"" -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:163 -msgid "Host Selection" -msgstr "ホストの選択" +msgid "%{alert_profiles} with %{type} Tags" +msgstr "%{type}タグのある%{alert_profiles} " -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:165 -msgid "Template Selection" -msgstr "テンプレート選択" +msgid "%{amount} %{object} Being Tagged" +msgid_plural "%{amount} %{objects} Being Tagged" +msgstr[0] "%{amount} %{object}にタグが付けられます" +msgstr[1] "%{amount} %{objects}にタグが付けられます" -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:167 -msgid "Cluster Selection" -msgstr "クラスター選択" +msgid "%{approval_states} requests cannot be deleted" +msgstr "%{approval_states}の要求は削除できません" -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:169 -msgid "Datastore Selection" -msgstr "データストアの選択" +msgid "%{button_group_name} (Group)" +msgstr "%{button_group_name} (グループ)" -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:171 -msgid "Database Backup Selection" -msgstr "データベースバックアップの選択" +msgid "%{button_name} Button not yet implemented" +msgstr "%{button_name}のボタンはまだ実装されていません" -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:173 -msgid "Automate Tasks Selection" -msgstr "タスク選択の自動化" +msgid "%{chargeback_interval} Ending with" +msgstr "%{chargeback_interval} の終了:" -#: ../app/assets/javascripts/dialog_field_refresh.js:97 -#: ../app/assets/javascripts/dialog_field_refresh.js:178 -#: ../app/helpers/application_helper/dialogs.rb:133 -msgid "This element is disabled because it is read only" -msgstr "この要素は読み取り専用のため無効になります" +msgid "%{children} (%{count})" +msgstr "%{children} (%{count})" -#: ../app/assets/javascripts/miq_application.js:86 -msgid "true/false" -msgstr "true/false" +msgid "%{children} (0)" +msgstr "%{children} (0)" -#: ../app/assets/javascripts/miq_application.js:87 -msgid "Number (Bytes)" -msgstr "数字 (バイト)" +msgid "%{count} unread notifications" +msgstr "%{count} 件の未読通知" -#: ../app/assets/javascripts/miq_application.js:88 -#: ../app/views/layouts/_perf_options.html.haml:82 -#: ../app/views/report/_form_filter_chargeback.html.haml:200 -msgid "Date" -msgstr "日付" +msgid "%{current_tenant} Tags" +msgstr "" -#: ../app/assets/javascripts/miq_application.js:89 -msgid "Date/Time" -msgstr "日付/時間" +msgid "%{date_from} to %{date_to}" +msgstr "%{date_from} から %{date_to} まで" -#: ../app/assets/javascripts/miq_application.js:90 -#: ../app/assets/javascripts/miq_application.js:91 -#: ../app/assets/javascripts/miq_application.js:94 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:76 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:231 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:329 -msgid "Integer" -msgstr "整数" +msgid "%{description} category Scan" +msgstr "%{description} カテゴリースキャン" -#: ../app/assets/javascripts/miq_application.js:92 -msgid "Number" -msgstr "数字" +msgid "%{description} registry Scan" +msgstr "%{description} レジストリースキャン" -#: ../app/assets/javascripts/miq_application.js:93 -msgid "Number (GB)" -msgstr "数字 (GB)" +msgid "%{entry_point} Entry Point (NameSpace/Class/Instance)" +msgstr "%{entry_point} エントリーポイント (名前空間/クラス/インスタンス)" -#: ../app/assets/javascripts/miq_application.js:96 -msgid "Number (kB)" -msgstr "数字 (kB)" +msgid "%{field} '%{value}' is already in use" +msgstr "%{field} '%{value}' はすでに使用されています" -#: ../app/assets/javascripts/miq_application.js:97 -msgid "Number (MB)" -msgstr "数字 (MB)" +msgid "%{field} is required" +msgstr "" -#: ../app/assets/javascripts/miq_application.js:98 -#: ../app/assets/javascripts/miq_application.js:99 -#: ../app/views/miq_capacity/_planning_options.html.haml:168 -msgid "MHz" -msgstr "MHz" +msgid "%{hosts} & %{clusters}" +msgstr "%{hosts} & %{clusters}" -#: ../app/assets/javascripts/miq_application.js:100 -msgid "Number List" -msgstr "数字一覧" +msgid "%{host} to validate against, Username and matching password fields are needed to perform verification of credentials" +msgstr "検証対象の%{host} 、ユーザー名および一致するパスワードフィールドが認証情報を確認するために必要です" -#: ../app/assets/javascripts/miq_application.js:101 -msgid "Percent" -msgstr "割合" +msgid "%{instance_model} \"%{instance_name}\" has no attached %{volumes}" +msgstr "%{instance_model} \"%{instance_name}\" には割り当てられた%{volumes}がありません" -#: ../app/assets/javascripts/miq_application.js:102 -msgid "Text (REGEX)" -msgstr "テキスト (REGEX)" +msgid "%{item} (Selected)" +msgstr "" -#: ../app/assets/javascripts/miq_application.js:103 -msgid "Ruby Script" -msgstr "Ruby スクリプト" +msgid "%{item} has been initiated for the selected Servers" +msgstr "%{item}が選択したサーバーに対して開始されました" -#: ../app/assets/javascripts/miq_application.js:104 -#: ../app/assets/javascripts/miq_application.js:106 -#: ../app/views/report/_schedule_email_options.html.haml:41 -#: ../app/views/shared/buttons/_ab_list.html.haml:45 -#: ../app/views/shared/buttons/_ab_list.html.haml:193 -msgid "Text" -msgstr "テキスト" +msgid "%{key} changed to %{value}" +msgstr "%{key}が %{value} に変更されました" -#: ../app/assets/javascripts/miq_application.js:105 -msgid "String List" -msgstr "文字列リスト" +msgid "%{labels} are not in the current region and will be skipped" +msgstr "%{labels}は現在のリージョンにないため省略されます" -#: ../app/assets/javascripts/miq_application.js:125 -#: ../app/views/ops/_ap_form_registry.html.haml:14 -msgid "Registry Key" -msgstr "レジストリーキー" +msgid "%{label} Authentication" +msgstr "%{label}の認証" -#: ../app/assets/javascripts/miq_application.js:131 -msgid "Registry Key Value" -msgstr "レジストリーキー値" +msgid "%{label} Credentials" +msgstr "%{label}の認証情報" -#: ../app/assets/javascripts/miq_application.js:297 -#: ../app/assets/javascripts/miq_application.js:307 -msgid "Abandon changes?" -msgstr "変更を破棄しますか?" +msgid "%{label} is not in the current region and will be skipped" +msgstr "%{label}は現在のリージョンにないため省略されます" -#: ../app/assets/javascripts/miq_application.js:744 -#: ../app/assets/javascripts/miq_application.js:1063 -#: ../app/assets/javascripts/miq_application.js:1197 -msgid "Error requesting data from server" -msgstr "" +msgid "%{log_description} log downloaded" +msgstr "%{log_description} のログをダウンロードしました" -#: ../app/assets/javascripts/miq_application.js:830 -msgid "Incorrect username or password" -msgstr "ユーザー名またはパスワードが正しくありません" +msgid "%{message} %{key}:[%{old_value}] to [%{new_value}]" +msgstr "" -#: ../app/assets/javascripts/miq_application.js:907 -#: ../app/views/dashboard/login.html.haml:32 -msgid "Click to remove message" -msgstr "クリックしてメッセージを削除する" +msgid "%{message} %{key}:[%{old_value}] to [new_value]" +msgstr "%{message} %{key}:[%{old_value}] から [new_value] " -#: ../app/assets/javascripts/miq_application.js:1559 -msgid "Enter Support Case:" -msgstr "サポートケースの入力" +msgid "%{message} %{key}:[*] to [*]" +msgstr "%{message} %{key}:[*] から [*] " -#: ../app/assets/javascripts/miq_application.js:1563 -msgid "Support Case must be provided to collect logs" -msgstr "ログを収集するにはサポートケースを提供する必要があります" +msgid "%{missing_field_name} is required" +msgstr "" -#: ../app/assets/javascripts/miq_application.js:1575 -msgid "Are you sure you want to reset this Dashboard's Widgets to the defaults?" -msgstr "このダッシュボードのウィジェットをデフォルト設定にリセットしてもよいですか?" +msgid "%{model_name} Group Reorder cancelled" +msgstr "%{model_name}のグループレコーダーが取り消されました" -#: ../app/assets/javascripts/miq_formatters.js:253 -#: ../app/helpers/ui_constants.rb:290 -#: ../app/views/report/_form_filter_chargeback.html.haml:254 -msgid "Day" -msgstr "日" +msgid "%{model_name} Group Reorder saved" +msgstr "%{model_name}のグループレコーダーを保存しました" -#: ../app/assets/javascripts/miq_formatters.js:253 -#: ../app/helpers/ui_constants.rb:298 -msgid "Hour" -msgstr "時間" +msgid "%{models} Group Reorder" +msgstr "%{models}のグループレコーダー" -#: ../app/assets/javascripts/miq_formatters.js:253 -msgid "Minute" -msgstr "分" +msgid "%{models} can not be deleted" +msgstr "%{models}は削除できません" -#: ../app/assets/javascripts/miq_formatters.js:253 -msgid "Second" -msgstr "秒" +msgid "%{models} no longer exists" +msgstr "%{models}は存在しません" -#: ../app/assets/javascripts/miq_tree.js:336 -msgid "New name?" -msgstr "新規の名前?" +msgid "%{model} \"%{name}\"" +msgstr "%{model} \"%{name}\"" -#: ../app/assets/javascripts/miq_tree.js:360 -msgid "New Folder" -msgstr "新規フォルダー" +msgid "%{model} \"%{name}\" (Summary)" +msgstr "%{model} \"%{name}\" (概要)" -#: ../app/assets/javascripts/miq_tree.js:409 -msgid "Collapse All" -msgstr "すべて折り畳む" +msgid "%{model} \"%{name}\" Bottlenecks Summary" +msgstr "%{model} \"%{name}\" ボトルネックの概要" -#: ../app/assets/javascripts/miq_tree.js:414 -#: ../app/views/configuration/_ui_3.html.haml:17 -#: ../app/views/miq_policy/_rsop_results.html.haml:86 -#: ../app/views/shared/views/_compliance_history.html.haml:5 -#: ../app/views/vm_common/_policies.html.haml:15 -msgid "Expand All" -msgstr "すべて展開" +msgid "%{model} \"%{name}\" Utilization Trend Summary" +msgstr "%{model} \"%{name}\" の使用状況のトレンド概要" -#: ../app/assets/javascripts/services/event_notifications_service.js:54 -#: ../app/controllers/miq_policy_controller.rb:1104 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:27 -#: ../app/views/miq_policy/_policy_details.html.haml:303 -msgid "Events" -msgstr "イベント" +msgid "%{model} \"%{name}\" already exists" +msgstr "%{model} \"%{name}\" はすでに存在しています" -#: ../app/assets/javascripts/services/event_notifications_service.js:62 -#: ../app/presenters/menu/default_menu.rb:250 -msgid "Tasks" -msgstr "タスク" +msgid "%{model} \"%{name}\" cannot be removed because it is attached to one or more %{instances}" +msgstr "%{model} \"%{name}\" は 1 つ以上の%{instances}に割り当てられているために削除できません" -#: ../app/assets/javascripts/services/miq_service.js:47 -msgid "Click to remove messages" -msgstr "クリックしてメッセージを削除する" +msgid "%{model} \"%{name}\" created" +msgstr "%{model} \"%{name}\" が作成されました" -#: ../app/assets/javascripts/services/post_service.js:18 -msgid "Error during Save: [%s - %s]" -msgstr "保存時のエラー: [%s - %s]" +msgid "%{model} \"%{name}\" is not attached to any %{instances}" +msgstr "%{model} \"%{name}\" はいずれの%{instances}にも割り当てられていません" -#: ../app/assets/javascripts/services/post_service.js:40 -msgid "Error during Add: [%s - %s]" -msgstr "追加時のエラー: [%s - %s]" +msgid "%{model} \"%{name}\" successfully added to Service \"%{to_name}\"" +msgstr "%{model} \"%{name}\" がサービス \"%{to_name}\" に正常に追加されました" -#: ../app/assets/javascripts/services/topology_service.js:4 -msgid "Name: " -msgstr "名前: " +msgid "%{model} \"%{name}\" updated" +msgstr "%{model} \"%{name}\" が更新されました" -#: ../app/assets/javascripts/services/topology_service.js:5 -msgid "Type: " -msgstr "タイプ: " +msgid "%{model} \"%{name}\" was added" +msgstr "%{model} \"%{name}\" が追加されました" -#: ../app/assets/javascripts/services/topology_service.js:6 -msgid "Status: " -msgstr "ステータス: " +msgid "%{model} \"%{name}\" was saved" +msgstr "%{model} \"%{name}\" が保存されました" -#: ../app/controllers/alert_controller.rb:22 -msgid "All RSS Feeds" -msgstr "すべての RSS フィード" +msgid "%{model} \"%{name}\" was updated" +msgstr "%{model} \"%{name}\" が更新されました" -#: ../app/controllers/alert_controller.rb:25 -msgid "%{name} RSS Feeds" -msgstr "%{name}の RSS フィード" +msgid "%{model} \"%{name}\": %{task} successfully initiated" +msgstr "%{model} \"%{name}\": %{task}が正常に実行されました" -#: ../app/controllers/alert_controller.rb:42 -msgid "Requested feed is invalid" -msgstr "要求されたフィードは無効です" +msgid "%{model} \"%{name}\": Delete successful" +msgstr "%{model} \"%{name}\": 正常に削除されました" -#: ../app/controllers/alert_controller.rb:66 -#: ../app/presenters/menu/default_menu.rb:27 -msgid "RSS" -msgstr "RSS" +msgid "%{model} \"%{name}\": Error during '%{task}': " +msgstr "%{model} \"%{name}\": '%{task}' の実行中にエラーが発生しました: " -#: ../app/controllers/application_controller.rb:119 -msgid "Action not implemented" -msgstr "アクションが実装されていません" +msgid "%{model} \"%{name}\": Error during '%{task}': %{error_message}" +msgstr "%{model} \"%{name}\": '%{task}' の実行中にエラーが発生しました : %{error_message}" -#: ../app/controllers/application_controller.rb:121 -msgid "Unknown Action" -msgstr "不明なアクション" +msgid "%{model} \"%{name}\": Error during '%{task}': %{error_msg}" +msgstr "%{model} \"%{name}\": '%{task}' の実行中にエラーが発生しました: %{error_msg}" -#: ../app/controllers/application_controller.rb:204 -msgid "Invalid input for \"wait_for_task\"." -msgstr "\"wait_for_task\" の無効な入力です。" +msgid "%{model} \"%{name}\": Error during '%{task}': %{message}" +msgstr "%{model} \"%{name}\": '%{task}' の実行中にエラーが発生しました: %{message}" -#: ../app/controllers/application_controller.rb:256 -#: ../app/helpers/host_helper/textual_summary.rb:481 -#: ../app/views/layouts/listnav/_host.html.haml:84 -msgid "ESX Logs" -msgstr "ESX ログ" +msgid "%{model} \"%{name}\": Error during 'Analysis': %{message}" +msgstr "%{model} \"%{name}\": 「分析」の実行中にエラーが発生しました: %{message}" -#: ../app/controllers/application_controller.rb:256 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:240 -#: ../app/helpers/vm_helper/textual_summary.rb:673 -msgid "Event Logs" -msgstr "イベントログ" +msgid "%{model} \"%{name}\": Error during 'Check Compliance': %{error}" +msgstr "" -#: ../app/controllers/application_controller.rb:339 -#: ../app/controllers/miq_capacity_controller.rb:19 -#: ../app/controllers/miq_capacity_controller.rb:773 -#: ../app/helpers/application_helper/toolbar/availability_zone_center.rb:28 -#: ../app/helpers/application_helper/toolbar/container_center.rb:21 -#: ../app/helpers/application_helper/toolbar/container_group_center.rb:22 -#: ../app/helpers/application_helper/toolbar/container_node_center.rb:22 -#: ../app/helpers/application_helper/toolbar/container_project_center.rb:22 -#: ../app/helpers/application_helper/toolbar/container_replicator_center.rb:22 -#: ../app/helpers/application_helper/toolbar/container_service_center.rb:13 -#: ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:56 -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:55 -#: ../app/helpers/application_helper/toolbar/host_center.rb:127 -#: ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:13 -#: ../app/helpers/application_helper/toolbar/middleware_messaging_center.rb:14 -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:14 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:106 -#: ../app/helpers/application_helper/toolbar/ontap_file_share_center.rb:43 -#: ../app/helpers/application_helper/toolbar/ontap_logical_disk_center.rb:28 -#: ../app/helpers/application_helper/toolbar/ontap_storage_system_center.rb:43 -#: ../app/helpers/application_helper/toolbar/ontap_storage_volume_center.rb:28 -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:163 -#: ../app/helpers/application_helper/toolbar/storage_center.rb:52 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:112 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:157 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:112 -#: ../app/presenters/menu/default_menu.rb:241 -#: ../app/views/ops/_all_tabs.html.haml:187 -#: ../app/views/ops/_all_tabs.html.haml:295 -msgid "Utilization" -msgstr "使用状況" +msgid "%{model} \"%{name}\": Error during 'delete': %{error_message}" +msgstr "%{model} \"%{name}\": 「削除」の実行中にエラーが発生しました: %{error_message}" -#: ../app/controllers/application_controller.rb:375 -msgid "PXE Credentials successfuly validated" -msgstr "PXE 認証情報が正常に検証されました" +msgid "%{model} \"%{name}\": Error during 'miq_report_delete': %{message}" +msgstr "%{model} \"%{name}\": 'miq_report_delete' の実行中にエラーが発生しました: %{message}" -#: ../app/controllers/application_controller.rb:378 -#: ../app/controllers/ops_controller/settings/schedules.rb:261 -msgid "Depot Settings successfuly validated" -msgstr "デポ設定が正常に検証されました" +msgid "%{model} \"%{name}\": Error during delete: %{error_msg}" +msgstr "%{model} \"%{name}\": 削除の実行中にエラーが発生しました: %{error_msg}" -#: ../app/controllers/application_controller.rb:382 -msgid "Error during 'Validate': %{error_message}" -msgstr "'検証' の実行中にエラーが発生しました: %{error_message}" +msgid "%{model} (%{tag} running %{time})" +msgstr "%{model} (%{tag} 実行中、%{time})" -#: ../app/controllers/application_controller.rb:420 -#: ../app/controllers/report_controller/menus.rb:358 -msgid "No fields were selected to move left" -msgstr "左に移動するフィールドが選択されていません" +msgid "%{model} Alert Profiles" +msgstr "%{model}のアラートプロファイル" -#: ../app/controllers/application_controller.rb:421 -#: ../app/controllers/report_controller/menus.rb:373 -msgid "No fields were selected to move right" -msgstr "右に移動するフィールドが選択されていません" +msgid "%{model} Analysis" +msgstr "%{model}分析" -#: ../app/controllers/application_controller.rb:595 -#: ../app/controllers/chargeback_controller.rb:381 -#: ../app/controllers/report_controller/saved_reports.rb:77 -#: ../app/helpers/application_helper/button/chargeback_download_choice.rb:3 -#: ../app/helpers/application_helper/button/chargeback_report_only.rb:3 -#: ../app/helpers/application_helper/button/utilization_download.rb:13 -#: ../app/helpers/application_helper/toolbar_builder.rb:809 -#: ../app/helpers/application_helper/toolbar_builder.rb:815 -msgid "No records found for this report" -msgstr "このレポートのレコードが見つかりませんでした" +msgid "%{model} Condition \"%{name}\"" +msgstr "%{model}の条件 \"%{name}\"" -#: ../app/controllers/application_controller.rb:617 -msgid "" -"Edit aborted! %{product} does not support the browser's back button or access" -" from multiple tabs or windows of the same browser. Please close any duplicat" -"e sessions before proceeding." -msgstr "" -"編集が中止されました! %{product} ではブラウザーの「戻る」ボタンや同一ブラウザーの複数タブ/ウィンドウからのアクセスがサポートされていません" -"。重複するセッションを終了してから続行してください。" +msgid "%{model} Order was cancelled by the user" +msgstr "%{model}ユーザーにより命令が取り消されました" -#: ../app/controllers/application_controller.rb:719 -msgid "%{tenant_name} (All %{groups})" -msgstr "%{tenant_name} (すべての%{groups})" +msgid "%{model} [%{name} - Updated %{time}%{update}]" +msgstr "%{model} [%{name} - 更新 %{time}%{update}]" -#: ../app/controllers/application_controller.rb:721 -msgid "%{tenant_name} (%{group}): %{group_description}" -msgstr "%{tenant_name} (%{group}): %{group_description}" +msgid "%{model} for %{group} \"%{name}\"" +msgstr "%{group} \"%{name}\" の%{model}" -#: ../app/controllers/application_controller.rb:877 -msgid "View this item" -msgstr "この項目の表示" +msgid "%{model} must contain at least one %{field}" +msgstr "%{model}は最低 1 つの %{field} を含む必要があります" -#: ../app/controllers/application_controller.rb:1037 -#: ../app/controllers/vm_common.rb:1355 -msgid " (Names with \"%{search_text}\")" -msgstr " (\"%{search_text}\" を含む名前)" +msgid "%{model} no longer exists" +msgstr "%{model}は存在しません" -#: ../app/controllers/application_controller.rb:1077 -#: ../app/controllers/application_controller.rb:2303 -#: ../app/controllers/dashboard_controller.rb:599 -#: ../app/controllers/ontap_file_share_controller.rb:48 -#: ../app/controllers/ontap_storage_system_controller.rb:53 -msgid "The user is not authorized for this task or item." -msgstr "ユーザーにはこのタスクまたは項目についての権限がありません。" +msgid "%{model} no longer exists." +msgstr "%{model}は存在しません。" -#: ../app/controllers/application_controller.rb:1152 -#: ../app/views/vm_common/_reconfigure.html.haml:78 -#: ../app/views/vm_common/_right_size.html.haml:213 -#: ../app/views/vm_common/_right_size.html.haml:297 -#: ../app/views/vm_common/_right_size.html.haml:380 -msgid "Processors" -msgstr "プロセッサー" +msgid "%{model} search \"%{name}\" was saved" +msgstr "%{model}の検索 \"%{name}\" を保存しました" -#: ../app/controllers/application_controller.rb:1157 -msgid "CPU Type" -msgstr "CPU タイプ" +msgid "%{model} search \"%{name}\" was successfully loaded" +msgstr "%{model}の検索 \"%{name}\" が正常に読み込まれました" -#: ../app/controllers/application_controller.rb:1160 -#: ../app/views/miq_capacity/_planning_options.html.haml:148 -#: ../app/views/miq_capacity/_planning_options.html.haml:320 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:16 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:67 -msgid "CPU Speed" -msgstr "CPU スピード" +msgid "%{model} search \"%{name}\": Delete successful" +msgstr "%{model}の検索 \"%{name}\": 削除が正常に実行されました" -#: ../app/controllers/application_controller.rb:1182 -msgid ", Connect at Power On = No" -msgstr "、電源オンで接続 = No" +msgid "%{model} under %{record_model} \"%{name}\"" +msgstr "%{record_model}「%{name}」下の%{model} " -#: ../app/controllers/application_controller.rb:1182 -msgid ", Connect at Power On = Yes" -msgstr "、電源オンで接続 = Yes" +msgid "%{model} under Inventory Group \"%{name}\"" +msgstr "インベントリーグループ \"%{name}\" 下の%{model} " -#: ../app/controllers/application_controller.rb:1186 -msgid "CD-ROM (IDE %{location})%{connection}" -msgstr "CD-ROM (IDE %{location})%{connection}" +msgid "%{model} under Unassigned Profiles Group" +msgstr "未割り当てプロファイルグループ下の%{model} " -#: ../app/controllers/application_controller.rb:1189 -msgid "ATAPI CD-ROM (IDE %{location})%{connection}" -msgstr "ATAPI CD-ROM (IDE %{location})%{connection}" +msgid "%{model}: %{name}" +msgstr "%{model}: %{name}" -#: ../app/controllers/application_controller.rb:1192 -msgid "CD-ROM Image (IDE %{location})%{connection}" -msgstr "CD-ROM イメージ (IDE %{location})%{connection}" +msgid "%{model}: %{task} successfully initiated" +msgstr "%{model}: %{task}が正常に実行されました" -#: ../app/controllers/application_controller.rb:1197 -#: ../app/controllers/application_controller.rb:1215 -msgid "Hard Disk (IDE %{location})" -msgstr "ハードディスク (IDE %{location})" +msgid "%{model}: Discovery successfully initiated" +msgstr "%{model}: 検出が正常に実行されました" -#: ../app/controllers/application_controller.rb:1199 -#: ../app/controllers/application_controller.rb:1229 -msgid "Hard Disk (SCSI %{location})" -msgstr "ハードディスク (SCSI %{location})" +msgid "%{name} '%{vm_name}' Drift Report" +msgstr "%{name} '%{vm_name}' ドリフトレポート" -#: ../app/controllers/application_controller.rb:1203 -#: ../app/controllers/application_controller.rb:1217 -#: ../app/controllers/application_controller.rb:1231 -msgid ", Size: %{number}" -msgstr "、サイズ: %{number}" +msgid "%{name} (%{table}(s))" +msgstr "%{name} (%{table})" -#: ../app/controllers/application_controller.rb:1206 -#: ../app/controllers/application_controller.rb:1220 -#: ../app/controllers/application_controller.rb:1234 -msgid ", Size on disk: %{number}" -msgstr "、ディスクのサイズ: %{number}" +msgid "%{name} (All %{children})" +msgstr "%{name} (すべての%{children})" -#: ../app/controllers/application_controller.rb:1210 -#: ../app/controllers/application_controller.rb:1223 -#: ../app/controllers/application_controller.rb:1238 -msgid ", Percent Used Provisioned Space: %{number}%%" -msgstr "、プロビジョニングされた領域の使用率: %{number}%%" +msgid "%{name} (All %{tables})" +msgstr "%{name} (すべての%{tables})" -#: ../app/controllers/application_controller.rb:1213 -#: ../app/controllers/application_controller.rb:1226 -#: ../app/controllers/application_controller.rb:1241 -msgid ", Mode: %{mode}" -msgstr "、モード: %{mode}" +msgid "%{name} (All %{titles})" +msgstr "%{name} (すべての%{titles})" -#: ../app/controllers/application_controller.rb:1244 -msgid "Generic SCSI (%{location})" -msgstr "汎用 SCSI (%{location})" +msgid "%{name} (All %{title})" +msgstr "%{name} (すべての%{title})" -#: ../app/controllers/application_controller.rb:1271 -msgid "Default Adapter" -msgstr "デフォルトアダプター" +msgid "%{name} (All Registered %{title})" +msgstr "%{name} (すべての登録 %{title})" -#: ../app/controllers/application_controller.rb:1287 -#: ../app/controllers/application_controller/miq_request_methods.rb:311 -#: ../app/controllers/application_controller/miq_request_methods.rb:407 -#: ../app/helpers/host_helper/textual_summary.rb:166 -#: ../app/helpers/textual_mixins/textual_os_info.rb:3 -#: ../app/views/provider_foreman/_main.html.haml:11 -#: ../app/views/provider_foreman/_main_configuration_profile.html.haml:11 -msgid "Operating System" -msgstr "オペレーティングシステム" +msgid "%{name} (All Registered Hosts)" +msgstr "%{name} (すべての登録ホスト)" -#: ../app/controllers/application_controller.rb:1289 -msgid "Service Pack" -msgstr "サービスパック" +msgid "%{name} (All Resource Pools)" +msgstr "%{name} (すべてのリソースプール)" -#: ../app/controllers/application_controller.rb:1291 -msgid "Product ID" -msgstr "製品 ID" +msgid "%{name} (All VMs - Tree View)" +msgstr "%{name} (すべての仮想マシン ー ツリー表示)" -#: ../app/controllers/application_controller.rb:1293 -#: ../app/controllers/application_controller.rb:1325 -#: ../app/controllers/application_controller.rb:1338 -#: ../app/controllers/application_controller/miq_request_methods.rb:446 -#: ../app/helpers/ops_helper/textual_summary.rb:49 -#: ../app/views/layouts/_about_modal.html.haml:26 -#: ../app/views/miq_policy/_action_details.html.haml:355 -#: ../app/views/miq_policy/_action_options.html.haml:395 -#: ../app/views/miq_policy/_alert_details.html.haml:362 -#: ../app/views/miq_policy/_alert_snmp.html.haml:64 -msgid "Version" -msgstr "バージョン" +msgid "%{name} (All cloud tenants present on this host)" +msgstr "%{name} (このホスト上のすべてのクラウドテナント)" -#: ../app/controllers/application_controller.rb:1295 -#: ../app/controllers/application_controller.rb:1327 -msgid "Build Number" -msgstr "ビルド番号" +msgid "%{name} (Applications)" +msgstr "%{name} (アプリケーション)" -#: ../app/controllers/application_controller.rb:1297 -msgid "System Type" -msgstr "システムタイプ" +msgid "%{name} (Compliance History - Last %{number} Checks)" +msgstr "%{name} (コンプライアンス履歴 - 最後の %{number} チェック)" -#: ../app/controllers/application_controller.rb:1299 -msgid "Password History" -msgstr "パスワード履歴" +msgid "%{name} (Devices)" +msgstr "%{name} (デバイス)" -#: ../app/controllers/application_controller.rb:1301 -msgid "Max Password Age" -msgstr "最大パスワード年数" +msgid "%{name} (Disks)" +msgstr "%{name} (ディスク)" -#: ../app/controllers/application_controller.rb:1303 -msgid "Min Password Age" -msgstr "最小パスワード年数" +msgid "%{name} (Groups)" +msgstr "%{name} (グループ)" -#: ../app/controllers/application_controller.rb:1305 -msgid "Min Password Length" -msgstr "最小パスワード長さ" - -#: ../app/controllers/application_controller.rb:1307 -msgid "Password Complex" -msgstr "パスワードの複雑度" +msgid "%{name} (Hosts)" +msgstr "%{name} (ホスト)" -#: ../app/controllers/application_controller.rb:1309 -msgid "Password Encrypt" -msgstr "パスワードの暗号化" +msgid "%{name} (Latest Compliance Check)" +msgstr "%{name} (最新のコンプライアンスチェック)" -#: ../app/controllers/application_controller.rb:1311 -msgid "Lockout Threshold" -msgstr "ロックアウトのしきい値" +msgid "%{name} (Network)" +msgstr "%{name} (ネットワーク)" -#: ../app/controllers/application_controller.rb:1313 -msgid "Lockout Duration" -msgstr "ロックアウト期間" +msgid "%{name} (OS Information)" +msgstr "%{name} (OS 情報)" -#: ../app/controllers/application_controller.rb:1315 -msgid "Reset Lockout Counter" -msgstr "ロックアウトカウンターのリセット" +msgid "%{name} (Packages)" +msgstr "%{name} (パッケージ)" -#: ../app/controllers/application_controller.rb:1321 -#: ../app/controllers/application_controller.rb:1334 -#: ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:21 -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:35 -#: ../app/helpers/ops_helper/textual_summary.rb:45 -msgid "Vendor" -msgstr "ベンダー" +msgid "%{name} (Patches)" +msgstr "%{name} (パッチ)" -#: ../app/controllers/application_controller.rb:1323 -msgid "Product" -msgstr "製品" +msgid "%{name} (Storage Adapters)" +msgstr "%{name} (ストレージアダプター)" -#: ../app/controllers/application_controller.rb:1336 -#: ../app/views/report/_form_formatting.html.haml:58 -msgid "Format" -msgstr "形式" +msgid "%{name} (Summary)" +msgstr "%{name} (概要)" -#: ../app/controllers/application_controller.rb:1342 -msgid "" -msgstr "<この仮想マシンにはメモが入力されていません>" +msgid "%{name} (Users)" +msgstr "%{name} (ユーザー)" -#: ../app/controllers/application_controller.rb:1346 -#: ../app/views/miq_policy/_alert_profile_details.html.haml:150 -#: ../app/views/miq_policy/_alert_profile_details.html.haml:174 -#: ../app/views/miq_policy/_condition_details.html.haml:95 -#: ../app/views/miq_policy/_condition_details.html.haml:112 -#: ../app/views/miq_policy/_policy_details.html.haml:385 -#: ../app/views/miq_policy/_policy_details.html.haml:402 -#: ../app/views/miq_policy/_profile_details.html.haml:161 -#: ../app/views/miq_policy/_profile_details.html.haml:180 -msgid "Notes" -msgstr "メモ" +msgid "%{name} (VM Monitor Information)" +msgstr "%{name} (仮想マシンモニター情報)" -#: ../app/controllers/application_controller.rb:1390 -#: ../app/controllers/application_controller/ci_processing.rb:2345 -#: ../app/controllers/application_controller/ci_processing.rb:2355 -#: ../app/controllers/application_controller/ci_processing.rb:2363 -#: ../app/controllers/application_controller/ci_processing.rb:2394 -#: ../app/controllers/application_controller/ci_processing.rb:2403 -#: ../app/controllers/application_controller/ci_processing.rb:2412 -#: ../app/controllers/application_controller/ci_processing.rb:2421 -#: ../app/controllers/application_controller/ci_processing.rb:2611 -#: ../app/controllers/miq_task_controller.rb:222 -msgid "\"%{record}\": %{task} successfully initiated" -msgstr "\"%{record}\": %{task}が正常に実行されました" +msgid "%{name} (no longer exists)" +msgstr "%{name} (存在しません)" -#: ../app/controllers/application_controller.rb:1395 -msgid "Successfully deleted Saved Report from the %{product} Database" -msgid_plural "Successfully deleted Saved Reports from the %{product} Database" -msgstr[0] " %{product} データベースから保存済みレポートが正常に削除されました" -msgstr[1] " %{product} データベースから保存済みレポートが正常に削除されました" +msgid "%{name} Capacity & Utilization" +msgstr "%{name} 容量 & 使用状況" -#: ../app/controllers/application_controller.rb:1399 -msgid "Error during Saved Report delete from the %{product} Database" -msgid_plural "Error during Saved Reports delete from the %{product} Database" -msgstr[0] " %{product}データベースから保存済みレポートの削除時にエラーが発生しました" -msgstr[1] " %{product} データベースから保存済みレポートの削除時にエラーが発生しました" +msgid "%{name} Capacity & Utilization (by %{option}:%{model})" +msgstr "%{name}の容量 & 使用状況 (%{option}別:%{model})" -#: ../app/controllers/application_controller.rb:1412 -msgid "The selected %{label} is not in the current region" -msgstr "選択した%{label}は現在のリージョンにありません" +msgid "%{name} Compare Report (* = Value does not match base)" +msgstr "%{name}のレポートの比較 (* = 値はベースと一致しません)" -#: ../app/controllers/application_controller.rb:1414 -msgid "All selected %{labels} are not in the current region" -msgstr "選択している %{labels} はすべて現在のリージョンにはありません" +msgid "%{name} Configured Systems" +msgstr "%{name}の構成済みシステム" -#: ../app/controllers/application_controller.rb:1417 -msgid "%{label} is not in the current region and will be skipped" -msgstr "%{label}は現在のリージョンにないため省略されます" +msgid "%{name} Providers" +msgstr "%{name}のプロバイダー" -#: ../app/controllers/application_controller.rb:1419 -msgid "%{labels} are not in the current region and will be skipped" -msgstr "%{labels}は現在のリージョンにないため省略されます" +msgid "%{name} RSS Feeds" +msgstr "%{name}の RSS フィード" -#: ../app/controllers/application_controller.rb:2208 -#: ../app/controllers/infra_networking_controller.rb:723 -#: ../app/controllers/provider_foreman_controller.rb:1155 -#: ../app/controllers/storage_controller.rb:337 -msgid "Invalid input" -msgstr "無効な入力" +msgid "%{name} Tags" +msgstr "%{name}のタグ" -#: ../app/controllers/application_controller.rb:2212 -msgid "Selected %{model_name} no longer exists" -msgstr "選択した%{model_name}は存在しません" +msgid "%{name} dashboard for user %{id} in group id %{current_group_id}" +msgstr "グループ id %{current_group_id}、ユーザー %{id} の%{name} ダッシュボード" -#: ../app/controllers/application_controller.rb:2217 -msgid "" -"User '%{user_id}' is not authorized to access '%{model}' record id '%{record_i" -"d}'" -msgstr "ユーザー '%{user_id}' は '%{model}' レコード id '%{record_id}' にアクセスする権限がありません" +msgid "%{name} domain: Current version - %{version}, Available version - %{available_version}" +msgstr "%{name}ドメイン: 現在のバージョン - %{version}、利用できるバージョン - %{available_version}" -#: ../app/controllers/application_controller.rb:2280 -msgid "%{record_name} no longer exists in the database" -msgstr "%{record_name}はデータベース内にはすでにありません" +msgid "%{name} is currently being used in the Display Filter" +msgstr "%{name}は現在表示フィルターで使用されています" -#: ../app/controllers/application_controller.rb:2282 -msgid "You are not authorized to view %{model_name} '%{resource_name}'" -msgstr "%{model_name} '%{resource_name}' を表示する権限がありません" +msgid "%{name} is required" +msgstr "%{name}が必要です" -#: ../app/controllers/application_controller.rb:2308 -msgid "Unauthorized object or action" -msgstr "未承認オブジェクトまたはアクション" +msgid "%{name} is the base" +msgstr "%{name}がベースです" -#: ../app/controllers/application_controller.rb:2346 -msgid "%{task} does not apply to at least one of the selected %{model}" -msgstr "1 つ以上の選択した%{model}に%{task}は適用されません" +msgid "%{name}: '%{task}' successfully initiated" +msgstr "%{name}: '%{task}' が正常に開始されました" -#: ../app/controllers/application_controller.rb:2350 -msgid "%{task} does not apply to at least one of the selected items" -msgstr "" +msgid "%{name}: Delete successful" +msgstr "%{name}: 削除が正常に実行されました" -#: ../app/controllers/application_controller/automate.rb:6 -msgid "Automation Simulation has been run" -msgstr "自動化シミュレーションが実行されました" +msgid "%{name}: Error during '%{task}': %{message}" +msgstr "%{name}: '%{task}' の実行中にエラーが発生しました: %{message}" -#: ../app/controllers/application_controller/automate.rb:21 -msgid "Automation Error: %{error_message}" -msgstr "自動化エラー: %{error_message}" +msgid "%{name}:[%{key}] to [%{new_key}]" +msgstr "%{name}:[%{key}] から [%{new_key}] " -#: ../app/controllers/application_controller/automate.rb:102 -#: ../app/controllers/miq_policy_controller/rsop.rb:51 -#: ../app/views/layouts/_tl_options.html.haml:16 -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:110 -#: ../app/views/miq_capacity/_bottlenecks_options.html.haml:6 -#: ../app/views/miq_capacity/_utilization_options.html.haml:7 -#: ../app/views/miq_request/_reconfigure_show.html.haml:7 -#: ../app/views/ontap_file_share/_create_datastore.html.haml:9 -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:6 -#: ../app/views/vm_common/_policy_options.html.haml:7 -#: ../app/views/vm_common/_reconfigure.html.haml:9 -msgid "Options" -msgstr "オプション" +msgid "%{number} (%{percentage} of Used Space, %{amount} file)" +msgid_plural "%{number} (%{percentage} of Used Space, %{amount} files)" +msgstr[0] "%{number} (使用済みの %{percentage}、%{amount} ファイル)" +msgstr[1] "%{number} (使用済みの %{percentage}、%{amount} ファイル)" -#: ../app/controllers/application_controller/automate.rb:129 -msgid "Resolve" -msgstr "解決" +msgid "%{number} (Virtual to Real Ratio: %{ratio})" +msgstr "%{number} (仮想 vs. 物理の比率: %{ratio})" -#: ../app/controllers/application_controller/automate.rb:131 -#: ../app/presenters/menu/default_menu.rb:216 -#: ../app/presenters/menu/default_menu.rb:230 -msgid "Simulation" -msgstr "シミュレーション" +msgid "%{number} Day" +msgid_plural "%{number} Days" +msgstr[0] "%{number} 日" +msgstr[1] "%{number} 日" -#: ../app/controllers/application_controller/buttons.rb:18 -msgid "%{model_name} Group Reorder cancelled" -msgstr "%{model_name}のグループレコーダーが取り消されました" +msgid "%{number} Days Ago" +msgstr "%{number} 日前" -#: ../app/controllers/application_controller/buttons.rb:43 -msgid "%{model_name} Group Reorder saved" -msgstr "%{model_name}のグループレコーダーを保存しました" +msgid "%{number} Hour" +msgid_plural "%{number} Hours" +msgstr[0] "%{number} 時間" +msgstr[1] "%{number} 時間" -#: ../app/controllers/application_controller/buttons.rb:75 -msgid "No Button Group was selected!" -msgstr "ボタングループが選択されていません!" +msgid "%{number} Month" +msgid_plural "%{number} Months" +msgstr[0] "%{number} カ月" +msgstr[1] "%{number} カ月" -#: ../app/controllers/application_controller/buttons.rb:151 -#: ../app/controllers/application_controller/buttons.rb:228 -#: ../app/controllers/application_controller/ci_processing.rb:1583 -#: ../app/controllers/miq_ae_class_controller.rb:2590 -#: ../app/controllers/miq_request_controller.rb:569 -#: ../app/controllers/miq_task_controller.rb:219 -#: ../app/controllers/ops_controller/diagnostics.rb:713 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:194 -#: ../app/controllers/ops_controller/settings/tags.rb:24 -#: ../app/controllers/ops_controller/settings/zones.rb:70 -#: ../app/controllers/report_controller/reports.rb:101 -#: ../app/controllers/storage_manager_controller.rb:458 -msgid "%{model} \"%{name}\": Delete successful" -msgstr "%{model} \"%{name}\": 正常に削除されました" +msgid "%{number} Week" +msgid_plural "%{number} Weeks" +msgstr[0] "%{number} 週" +msgstr[1] "%{number} 週" -#: ../app/controllers/application_controller/buttons.rb:210 -msgid "'Unassigned Buttons Group' can not be deleted" -msgstr "’未割り当てボタングループ’ は削除できません" +msgid "%{number} bytes" +msgstr "%{number} バイト" -#: ../app/controllers/application_controller/buttons.rb:260 -msgid "No url was returned from automate." +msgid "%{object_types} under %{datastore_or_provider} \"%{provider_or_datastore_name}\"" msgstr "" -#: ../app/controllers/application_controller/buttons.rb:272 -msgid "%{record} - \"%{button_text}\"" -msgstr "%{record} - \"%{button_text}\"" +msgid "%{object} Conditions" +msgstr "%{object}の条件" -#: ../app/controllers/application_controller/buttons.rb:286 -msgid "Error executing: \"%{task_description}\" %{error_message}" -msgstr "実行中にラーが発生しました: \"%{task_description}\" %{error_message}" +msgid "%{operation} initiated for given server group." +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:289 -msgid "\"%{task_description}\" was executed" -msgstr "\"%{task_description}\" が実行されました" +msgid "%{operation} initiated for selected server(s)" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:304 -#: ../app/controllers/application_controller/buttons.rb:426 -#: ../app/controllers/catalog_controller.rb:89 -#: ../app/controllers/catalog_controller.rb:558 -#: ../app/controllers/chargeback_controller.rb:105 -#: ../app/controllers/cloud_tenant_controller.rb:142 -#: ../app/controllers/cloud_volume_controller.rb:320 -#: ../app/controllers/configuration_controller.rb:398 -#: ../app/controllers/ems_common.rb:288 -#: ../app/controllers/host_aggregate_controller.rb:253 -#: ../app/controllers/host_controller.rb:347 -#: ../app/controllers/miq_ae_class_controller.rb:571 -#: ../app/controllers/miq_ae_class_controller.rb:974 -#: ../app/controllers/miq_ae_class_controller.rb:1061 -#: ../app/controllers/miq_ae_class_controller.rb:1101 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:194 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:247 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:13 -#: ../app/controllers/miq_policy_controller/alerts.rb:13 -#: ../app/controllers/miq_policy_controller/conditions.rb:11 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:11 -#: ../app/controllers/miq_policy_controller/policies.rb:11 -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:13 -#: ../app/controllers/mixins/ems_common_angular.rb:17 -#: ../app/controllers/ops_controller/ops_rbac.rb:111 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:226 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:12 -#: ../app/controllers/ops_controller/settings/ldap.rb:39 -#: ../app/controllers/ops_controller/settings/ldap.rb:156 -#: ../app/controllers/ops_controller/settings/schedules.rb:50 -#: ../app/controllers/ops_controller/settings/tags.rb:44 -#: ../app/controllers/ops_controller/settings/zones.rb:9 -#: ../app/controllers/pxe_controller/iso_datastores.rb:171 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:102 -#: ../app/controllers/pxe_controller/pxe_image_types.rb:29 -#: ../app/controllers/pxe_controller/pxe_servers.rb:46 -#: ../app/controllers/pxe_controller/pxe_servers.rb:191 -#: ../app/controllers/pxe_controller/pxe_servers.rb:242 -#: ../app/controllers/report_controller/reports/editor.rb:43 -#: ../app/controllers/report_controller/schedules.rb:227 -#: ../app/controllers/report_controller/widgets.rb:49 -#: ../app/controllers/storage_manager_controller.rb:158 -#: ../app/controllers/vm_common.rb:919 ../app/controllers/vm_common.rb:923 -msgid "Edit of %{model} \"%{name}\" was cancelled by the user" -msgstr "%{model}の編集 \"%{name}\" がユーザーにより取り消されました" +msgid "%{operation} was not initiated for given group." +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:307 -#: ../app/controllers/application_controller/buttons.rb:428 -msgid "Add of new %{model_name} was cancelled by the user" -msgstr "新規%{model_name}の追加はユーザーにより取り消されました" +msgid "%{product} Appliance restart initiated successfully" +msgstr "%{product}アプライアンスの再起動が正常に実行されました" -#: ../app/controllers/application_controller/buttons.rb:318 -#: ../app/controllers/catalog_controller.rb:310 -#: ../app/controllers/catalog_controller.rb:854 -#: ../app/controllers/miq_ae_class_controller.rb:576 -#: ../app/controllers/miq_ae_class_controller.rb:624 -#: ../app/controllers/miq_ae_class_controller.rb:2079 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:255 -#: ../app/controllers/ontap_file_share_controller.rb:100 -#: ../app/controllers/ontap_storage_system_controller.rb:108 -#: ../app/controllers/ops_controller/settings/ldap.rb:50 -#: ../app/controllers/ops_controller/settings/ldap.rb:167 -#: ../app/controllers/ops_controller/settings/tags.rb:55 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:115 -#: ../app/controllers/pxe_controller/pxe_image_types.rb:164 -#: ../app/controllers/pxe_controller/pxe_servers.rb:292 -msgid "Name is required" -msgstr "名前が必要です。" +msgid "%{product} Log" +msgstr "%{product}のログ" -#: ../app/controllers/application_controller/buttons.rb:322 -#: ../app/controllers/chargeback_controller.rb:118 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:370 -#: ../app/controllers/ops_controller/settings/tags.rb:58 -#: ../app/controllers/ops_controller/settings/zones.rb:22 -msgid "Description is required" -msgstr "説明が必要です" +msgid "%{product} Region: %{region_description} [%{region}]" +msgstr "%{product}のリージョン: %{region_description} [%{region}]" -#: ../app/controllers/application_controller/buttons.rb:326 -#: ../app/controllers/application_controller/buttons.rb:732 -msgid "Button Image must be selected" -msgstr "ボタンイメージを選択してください" +msgid "%{product} Server \"%{name}\" set as %{priority} for Role \"%{role_description}\"" +msgstr "%{product}のサーバー \"%{name}\" をロール \"%{role_description}\" の %{priority} に設定する" -#: ../app/controllers/application_controller/buttons.rb:347 -#: ../app/controllers/application_controller/buttons.rb:517 -#: ../app/controllers/catalog_controller.rb:579 -#: ../app/controllers/catalog_controller.rb:913 -#: ../app/controllers/catalog_controller.rb:1001 -#: ../app/controllers/catalog_controller.rb:1054 -#: ../app/controllers/catalog_controller.rb:1100 -#: ../app/controllers/chargeback_controller.rb:141 -#: ../app/controllers/configuration_controller.rb:426 -#: ../app/controllers/ems_common.rb:193 ../app/controllers/ems_common.rb:310 -#: ../app/controllers/host_controller.rb:358 -#: ../app/controllers/miq_ae_class_controller.rb:599 -#: ../app/controllers/miq_ae_class_controller.rb:990 -#: ../app/controllers/miq_ae_class_controller.rb:1075 -#: ../app/controllers/miq_ae_class_controller.rb:1121 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:227 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:285 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:53 -#: ../app/controllers/miq_policy_controller/alerts.rb:25 -#: ../app/controllers/miq_policy_controller/conditions.rb:60 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:45 -#: ../app/controllers/miq_policy_controller/policies.rb:62 -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:53 -#: ../app/controllers/mixins/ems_common_angular.rb:33 -#: ../app/controllers/mixins/ems_common_angular.rb:87 -#: ../app/controllers/ops_controller/ops_rbac.rb:132 -#: ../app/controllers/ops_controller/ops_rbac.rb:731 -#: ../app/controllers/ops_controller/settings.rb:165 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:271 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:174 -#: ../app/controllers/ops_controller/settings/ldap.rb:61 -#: ../app/controllers/ops_controller/settings/ldap.rb:182 -#: ../app/controllers/ops_controller/settings/schedules.rb:80 -#: ../app/controllers/ops_controller/settings/tags.rb:100 -#: ../app/controllers/ops_controller/settings/zones.rb:32 -#: ../app/controllers/orchestration_stack_controller.rb:259 -#: ../app/controllers/pxe_controller/iso_datastores.rb:180 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:128 -#: ../app/controllers/pxe_controller/pxe_servers.rb:66 -#: ../app/controllers/pxe_controller/pxe_servers.rb:200 -#: ../app/controllers/pxe_controller/pxe_servers.rb:251 -#: ../app/controllers/report_controller/reports.rb:33 -#: ../app/controllers/report_controller/reports/editor.rb:72 -#: ../app/controllers/report_controller/schedules.rb:246 -#: ../app/controllers/report_controller/widgets.rb:63 -#: ../app/controllers/storage_manager_controller.rb:167 -#: ../app/controllers/vm_common.rb:958 -msgid "%{model} \"%{name}\" was saved" -msgstr "%{model} \"%{name}\" が保存されました" +msgid "%{product} Version" +msgstr "%{product}のバージョン" -#: ../app/controllers/application_controller/buttons.rb:353 -#: ../app/controllers/application_controller/buttons.rb:523 -msgid "Error during 'edit': %{field_name} %{error_message}" -msgstr "'編集' の実行中にエラーが発生しました: %{field_name} %{error_message}" +msgid "%{protocol} port %{port} to pods on target port:'%{target_port}'" +msgstr "ターゲットポート'%{target_port}' のポッドの%{protocol}ポート %{port}" -#: ../app/controllers/application_controller/buttons.rb:382 -#: ../app/controllers/application_controller/buttons.rb:465 -#: ../app/controllers/catalog_controller.rb:913 -#: ../app/controllers/chargeback_controller.rb:138 -#: ../app/controllers/host_controller.rb:276 -#: ../app/controllers/miq_ae_class_controller.rb:644 -#: ../app/controllers/miq_ae_class_controller.rb:1191 -#: ../app/controllers/miq_ae_class_controller.rb:1226 -#: ../app/controllers/miq_ae_class_controller.rb:1255 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:225 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:283 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:54 -#: ../app/controllers/miq_policy_controller/alerts.rb:26 -#: ../app/controllers/miq_policy_controller/conditions.rb:61 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:46 -#: ../app/controllers/miq_policy_controller/policies.rb:63 -#: ../app/controllers/miq_policy_controller/policies.rb:108 -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:54 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:156 -#: ../app/controllers/ops_controller/settings/tags.rb:81 -#: ../app/controllers/ops_controller/settings/zones.rb:33 -#: ../app/controllers/provider_foreman_controller.rb:181 -#: ../app/controllers/pxe_controller/iso_datastores.rb:57 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:128 -#: ../app/controllers/pxe_controller/pxe_image_types.rb:52 -#: ../app/controllers/pxe_controller/pxe_servers.rb:66 -#: ../app/controllers/report_controller/reports/editor.rb:73 -#: ../app/controllers/report_controller/schedules.rb:247 -#: ../app/controllers/storage_manager_controller.rb:84 -msgid "%{model} \"%{name}\" was added" -msgstr "%{model} \"%{name}\" が追加されました" +msgid "%{record_name} has no snapshots" +msgstr "%{record_name}にはスナップショットはありません" -#: ../app/controllers/application_controller/buttons.rb:388 -msgid "Error during 'add': %{field_name} %{error_name}" -msgstr "'追加' の実行中にエラーが発生しました: %{field_name} %{error_name}" +msgid "%{record_name} no longer exists in the database" +msgstr "%{record_name}はデータベース内にはすでにありません" -#: ../app/controllers/application_controller/buttons.rb:440 -#: ../app/controllers/application_controller/buttons.rb:510 -#: ../app/controllers/application_controller/buttons.rb:539 -msgid "Edit of Button" -msgstr "ボタンの編集" +msgid "%{record} - \"%{button_text}\"" +msgstr "%{record} - \"%{button_text}\"" -#: ../app/controllers/application_controller/buttons.rb:489 -#: ../app/controllers/miq_ae_class_controller.rb:1184 -#: ../app/controllers/miq_ae_class_controller.rb:1222 -msgid "Error during 'add': %{error_message}" -msgstr "'追加' の実行中にエラーが発生しました: %{error_message}" +msgid "%{record} no longer exists" +msgstr "%{record}は存在しません" -#: ../app/controllers/application_controller/buttons.rb:582 -msgid "'Unassigned Buttons Group' can not be edited" -msgstr "’未割り当てボタングループ’ は編集できません" +msgid "%{role} on %{model}: %{name} [%{id}]" +msgstr " %{model}の%{role}: %{name} [%{id}] " -#: ../app/controllers/application_controller/buttons.rb:605 -msgid "Add Button" -msgstr "ボタンの追加" +msgid "%{schedule} %{name} was deleted" +msgstr "%{schedule} %{name}は削除されました" -#: ../app/controllers/application_controller/buttons.rb:607 -msgid "Edit of '%{description}' Button" -msgstr "'%{description}' ボタンの編集" +msgid "%{server}: %{server_name} [%{server_id}] (current)" +msgstr "%{server}: %{server_name} [%{server_id}] (現在)" -#: ../app/controllers/application_controller/buttons.rb:686 -msgid "No fields were selected to move top" -msgstr "上に移動するフィールドが選択されていません" +msgid "%{start_number} of %{total_items}" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:691 -msgid "Select only one or consecutive fields to move to the top" -msgstr "1 つまたは連続するフィールドのみを選択して一番上に移動します" +msgid "%{start_number}-%{end_number} of %{total_items}" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:707 -msgid "No fields were selected to move bottom" -msgstr "下に移動するフィールドが選択されていません" +msgid "%{start_number}-%{total_items} of %{total_items}" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:712 -msgid "Select only one or consecutive fields to move to the bottom" -msgstr "1 つまたは連続するフィールドのみを選択して一番下に移動します" +msgid "%{status} - %{time}" +msgstr "%{status} - %{time}" -#: ../app/controllers/application_controller/buttons.rb:729 -msgid "Button Text is required" -msgstr "ボタンテキストが必要です" +msgid "%{storage} Type" +msgstr "%{storage}タイプ" -#: ../app/controllers/application_controller/buttons.rb:734 -msgid "Button Hover Text is required" -msgstr "ボタンのホバーテキストが必要です" +msgid "%{table} (%{count})" +msgstr "%{table} (%{count})" -#: ../app/controllers/application_controller/buttons.rb:736 -#: ../app/controllers/miq_ae_tools_controller.rb:407 -msgid "Starting Process is required" -msgstr "開始プロセスが必要です" +msgid "%{table} no longer exists" +msgstr "%{table}は存在しません" -#: ../app/controllers/application_controller/buttons.rb:737 -#: ../app/controllers/miq_ae_tools_controller.rb:409 -msgid "Request is required" -msgstr "要求が必要です" +msgid "%{table}: %{name}" +msgstr "%{table}: %{name}" -#: ../app/controllers/application_controller/buttons.rb:739 -msgid "At least one Role must be selected" -msgstr "ロールを 1 つ以上選択してください" +msgid "%{task} does not apply to at least one of the selected %{model}" +msgstr "1 つ以上の選択した%{model}に%{task}は適用されません" -#: ../app/controllers/application_controller/buttons.rb:913 -msgid "Buttons for \"%{record}\"" -msgstr "\"%{record}\" のボタン" +msgid "%{task} does not apply to at least one of the selected items" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:941 -msgid "Button Group \"%{name}\"" -msgstr "ボタングループ \"%{name}\"" +msgid "%{task} does not apply to this item" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:982 -#: ../app/controllers/catalog_controller.rb:1720 -#: ../app/views/catalog/_form_basic_info.html.haml:85 -msgid "No Dialog" -msgstr "ダイアログなし" +msgid "%{task} initiated for %{count} %{model} from the %{product} Database" +msgid_plural "%{task} initiated for %{count} %{models} from the %{product} Database" +msgstr[0] "%{task}が %{product} データベースの %{count} %{model}に対して実行されました" +msgstr[1] "%{task}が %{product} データベースの %{count} %{models}に対して実行されました " -#: ../app/controllers/application_controller/buttons.rb:983 -#: ../app/controllers/miq_ae_customization_controller/custom_buttons.rb:101 -msgid "Button \"%{name}\"" -msgstr "ボタン \"%{name}\"" +msgid "%{task} initiated for %{count} Host from the %{product} Database" +msgid_plural "%{task} initiated for %{count} Hosts from the %{product} Database" +msgstr[0] "%{task}が %{product} データベースの %{count} ホストに対して実行されました" +msgstr[1] "%{task}が %{product} データベースの %{count} ホストに対して実行されました " -#: ../app/controllers/application_controller/buttons.rb:1017 -msgid "Simulation unavailable: Required Class \"System/Process\" is missing" -msgstr "シミュレーション不可: 必須クラス\"システム/プロセス\" が見つかりません" +msgid "%{task} initiated for %{count} Storage Manager from the %{product} Database" +msgid_plural "%{task} initiated for %{count} Storage Managers from the %{product} Database" +msgstr[0] "%{task}が %{product} データベースの %{count} ストレージマネージャーに対して実行されました " +msgstr[1] "%{task}が %{product} データベースの %{count} ストレージマネージャーに対して実行されました " -#: ../app/controllers/application_controller/buttons.rb:1023 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:655 -#: ../app/controllers/ops_controller/ops_rbac.rb:453 -#: ../app/controllers/report_controller/dashboards.rb:435 -#: ../app/controllers/report_controller/menus.rb:402 -#: ../app/controllers/report_controller/menus.rb:446 -#: ../app/controllers/report_controller/reports/editor.rb:824 -msgid "No fields were selected to move up" -msgstr "上に移動するフィールドが選択されていません" +msgid "%{task} initiated for %{count} provider" +msgid_plural "%{task} initiated for %{count} providers)" +msgstr[0] "" +msgstr[1] "" -#: ../app/controllers/application_controller/buttons.rb:1028 -#: ../app/controllers/ops_controller/ops_rbac.rb:458 -#: ../app/controllers/report_controller/dashboards.rb:442 -#: ../app/controllers/report_controller/menus.rb:407 -#: ../app/controllers/report_controller/menus.rb:451 -msgid "Select only one or consecutive fields to move up" -msgstr "1 つまたは連続するフィールドのみを選択して上に移動します" +msgid "%{task} initiated for %{number} %{model} from the %{product} Database" +msgid_plural "%{task} initiated for %{number} %{models} from the %{product} Database" +msgstr[0] "%{task}が %{product} データベースの %{number} %{model}に対して実行されました" +msgstr[1] "%{task}が %{product} データベースの %{number} %{models}に対して実行されました" -#: ../app/controllers/application_controller/buttons.rb:1044 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:664 -#: ../app/controllers/ops_controller/ops_rbac.rb:475 -#: ../app/controllers/report_controller/dashboards.rb:459 -#: ../app/controllers/report_controller/menus.rb:423 -#: ../app/controllers/report_controller/menus.rb:467 -#: ../app/controllers/report_controller/reports/editor.rb:796 -msgid "No fields were selected to move down" -msgstr "下に移動するフィールドが選択されていません" +msgid "%{tenant_name} (%{group}): %{group_description}" +msgstr "%{tenant_name} (%{group}): %{group_description}" -#: ../app/controllers/application_controller/buttons.rb:1049 -#: ../app/controllers/ops_controller/ops_rbac.rb:480 -#: ../app/controllers/report_controller/dashboards.rb:466 -#: ../app/controllers/report_controller/menus.rb:428 -#: ../app/controllers/report_controller/menus.rb:472 -msgid "Select only one or consecutive fields to move down" -msgstr "1 つまたは連続するフィールドのみを選択して下に移動します" +msgid "%{tenant_name} (All %{groups})" +msgstr "%{tenant_name} (すべての%{groups})" -#: ../app/controllers/application_controller/ci_processing.rb:35 -msgid "One or more %{model} must be selected to Set Ownership" -msgstr "所有権の設定には 1 つ以上の%{model}が選択されている必要があります" +msgid "%{time} Ago" +msgstr "%{time} 前" -#: ../app/controllers/application_controller/ci_processing.rb:49 -#: ../app/controllers/application_controller/ci_processing.rb:77 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:34 -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:41 -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:32 -#: ../app/helpers/application_helper/toolbar/service_center.rb:27 -#: ../app/helpers/application_helper/toolbar/services_center.rb:33 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:50 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:50 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:51 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:60 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:41 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:33 -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:32 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:41 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:32 -msgid "Set Ownership" -msgstr "所有権の設定" +msgid "%{title_for_hosts} & %{title_for_clusters}" +msgstr "%{title_for_hosts} & %{title_for_clusters}" -#: ../app/controllers/application_controller/ci_processing.rb:128 -msgid "Set Ownership was cancelled by the user" -msgstr "所有権の設定がユーザーにより取り消されました" +msgid "%{title} '%{description}'" +msgstr "%{title} '%{description}'" -#: ../app/controllers/application_controller/ci_processing.rb:163 -msgid "Ownership saved for selected %{object_types}" -msgstr "選択した %{object_types} の所有権が保存されました" +msgid "%{title} Default VNC Port Range" +msgstr "%{title}デフォルトの VNC ポート範囲" -#: ../app/controllers/application_controller/ci_processing.rb:194 -msgid "Set Retirement Date does not apply to selected %{model}" -msgstr "選択した%{model}に対してリタイア日が適用されません" +msgid "%{title} Discovery" +msgstr "%{title}の検出" -#: ../app/controllers/application_controller/ci_processing.rb:202 -msgid "Retire VM or Instance" -msgstr "仮想マシンまたはインスタンスのリタイア" +msgid "%{title} Discovery returned: %{error_message}" +msgstr "%{title}の検出が返されました: %{error_message}" -#: ../app/controllers/application_controller/ci_processing.rb:205 -msgid "Retire Service" -msgstr "サービスのリタイア" +msgid "%{title} Discovery was cancelled by the user" +msgstr "%{title}の検出はユーザーによって取り消されました" -#: ../app/controllers/application_controller/ci_processing.rb:208 -msgid "Retire Orchestration Stack" -msgstr "オーケストレーションスタックのリタイア" +msgid "%{title} Guide" +msgstr "%{title}ガイド" -#: ../app/controllers/application_controller/ci_processing.rb:214 -msgid "At least one %{model} must be selected for tagging" -msgstr "タグ付けには 1 つ以上の%{model}を選択してください" +msgid "%{title} Main Tab" +msgstr "%{title}のメインタブ" -#: ../app/controllers/application_controller/ci_processing.rb:272 -msgid "Set/remove retirement date was cancelled by the user" -msgstr "リタイア日の設定/削除がユーザーにより取り消されました" +msgid "%{type} Information" +msgstr "%{type}情報" -#: ../app/controllers/application_controller/ci_processing.rb:280 -msgid "Retirement date removed" -msgstr "リタイア日が削除されました" +msgid "%{type} Storage Adapter: %{name}" +msgstr "%{type}ストレージアダプター: %{name}" -#: ../app/controllers/application_controller/ci_processing.rb:282 -msgid "Retirement dates removed" -msgstr "リタイア日が削除されました" +msgid "%{typ} %{model}" +msgstr "%{typ} %{model}" -#: ../app/controllers/application_controller/ci_processing.rb:290 -msgid "Retirement date set to %{date}" -msgstr "リタイア日が %{date} に設定されています" +msgid "%{typ} %{model} \"%{name}\"" +msgstr "%{typ} %{model} \"%{name}\"" -#: ../app/controllers/application_controller/ci_processing.rb:292 -msgid "Retirement dates set to %{date}" -msgstr "リタイア日が %{date} に設定されています" +msgid "%{typ} Button Group \"%{name}\"" +msgstr "%{typ}ボタングループ \"%{name}\"" -#: ../app/controllers/application_controller/ci_processing.rb:308 -msgid "Retire %{name}" -msgstr "%{name} のリタイア" +msgid "%{typ} Button Group \"Unassigned Buttons\"" +msgstr "%{typ}ボタングループ \"未割り当てボタン\"" -#: ../app/controllers/application_controller/ci_processing.rb:330 -msgid "Reconfigure Instance '%{name}'" -msgstr "インスタンス '%{name}' の再設定" +msgid "%{typ} Button Groups" +msgstr "%{typ}ボタングループ" -#: ../app/controllers/application_controller/ci_processing.rb:370 -#: ../app/controllers/application_controller/ci_processing.rb:401 -#: ../app/controllers/application_controller/ci_processing.rb:407 -msgid "Unable to reconfigure %{instance} \"%{name}\": %{details}" -msgstr "%{instance} \"%{name}\" を再設定できません: %{details} " +msgid "%{typ} Request was Submitted, you will be notified when your %{title} are ready" +msgstr "%{typ}要求が送信されました。%{title}の準備ができた時点で通知が送信されます" -#: ../app/controllers/application_controller/ci_processing.rb:387 -msgid "Reconfigure of %{model} \"%{name}\" was cancelled by the user" -msgstr "%{model} \"%{name}\" の再設定がユーザーにより取り消されました" +msgid "%{typ} Request was re-submitted, you will be notified when your %{title} are ready" +msgstr "%{typ}要求が再送信されました。%{title}の準備ができた時点で通知が送信されます" -#: ../app/controllers/application_controller/ci_processing.rb:395 -msgid "Reconfiguring %{instance} \"%{name}\" from %{old_flavor} to %{new_flavor}" -msgstr "%{old_flavor}の%{instance} \"%{name}\" を %{new_flavor} に再設定" +msgid "%{typ} in %{model} \"%{name}\"" +msgstr "%{model}「%{name}」の %{typ} " -#: ../app/controllers/application_controller/ci_processing.rb:452 -#: ../app/controllers/application_controller/ci_processing.rb:525 -#: ../app/controllers/application_controller/ci_processing.rb:531 -msgid "Unable to live migrate %{instance} \"%{name}\": %{details}" -msgstr "%{instance} \"%{name}\" をライブマイグレーションできません: %{details}" +msgid "%{typ} in %{model} \"Unassigned\"" +msgstr " %{model}「Unassigned (未割り当て)」の %{typ} " -#: ../app/controllers/application_controller/ci_processing.rb:464 -msgid "Live Migrate Instance '%{name}'" -msgstr "インスタンス '%{name}' のライブマイグレーション" +msgid "%{val} missing for %{field}" +msgstr "%{val} が %{field} に設定されていません" -#: ../app/controllers/application_controller/ci_processing.rb:503 -msgid "Live Migration of %{model} \"%{name}\" was cancelled by the user" -msgstr "%{model} \"%{name}\" のライブマイグレーションがユーザーにより取り消されました" +msgid "%{vm_or_template} Policy Assignment" +msgstr "%{vm_or_template}のポリシーの割り当て" -#: ../app/controllers/application_controller/ci_processing.rb:521 -msgid "Live Migrating %{instance} \"%{name}\"" -msgstr "%{instance} \"%{name}\" のライブマイグレーション" +msgid "%{vm_or_template} Policy Simulation" +msgstr "%{vm_or_template}のポリシーシミュレーション" -#: ../app/controllers/application_controller/ci_processing.rb:553 -msgid "Evacuate Instance '%{name}'" -msgstr "インスタンス '%{name}' の移行" +msgid "%{volume} \"%{volume_name}\" is not attached to any %{instances}" +msgstr "%{volume} \"%{volume_name}\" はいずれの%{instances}にも割り当てられていません" -#: ../app/controllers/application_controller/ci_processing.rb:575 -#: ../app/controllers/application_controller/ci_processing.rb:611 -#: ../app/controllers/application_controller/ci_processing.rb:617 -msgid "Unable to evacuate %{instance} \"%{name}\": %{details}" -msgstr "%{instance} \"%{name}\" を移行できません: %{details}" +msgid "'%{model}' Policy Assignment" +msgstr "'%{model}' ポリシーの割り当て" -#: ../app/controllers/application_controller/ci_processing.rb:589 -msgid "Evacuation of %{model} \"%{name}\" was cancelled by the user" -msgstr "%{model} \"%{name}\" の移行はユーザーにより取り消されました" +msgid "'%{name}' Drift Analysis" +msgstr "'%{name}' ドリフト分析" -#: ../app/controllers/application_controller/ci_processing.rb:607 -msgid "Evacuating %{instance} \"%{name}\"" -msgstr "%{instance} \"%{name}\" の移行" +msgid "'%{task}' successfully initiated for %{items}" +msgstr "'%{task}' が%{items}に対して正常に開始されました" -#: ../app/controllers/application_controller/ci_processing.rb:675 -#: ../app/controllers/application_controller/ci_processing.rb:729 -msgid "Unable to associate Floating IP with Instance \"%{name}\": %{details}" -msgstr "Floating IP をインスタンス \"%{name}\" に関連付けることはできません: %{details}" +msgid "'%{task}' successfully initiated for %{table}" +msgstr "'%{task}' が%{table}に対して正常に開始されました" -#: ../app/controllers/application_controller/ci_processing.rb:686 -msgid "Associate Floating IP with Instance '%{name}'" -msgstr "インスタンス '%{name}' への Floating IP の関連付け" +msgid "'%{type}' Worker restart initiated successfully" +msgstr "'%{type}'ワーカーの再起動が正常に開始されました" -#: ../app/controllers/application_controller/ci_processing.rb:712 -msgid "Association of Floating IP with Instance \"%{name}\" was cancelled by the user" -msgstr "インスタンス \"%{name}\" への Floating IP の関連付けがユーザーにより取り消されました" +msgid "'Default' zone cannot be deleted" +msgstr "'デフォルト' ゾーンは削除できません" -#: ../app/controllers/application_controller/ci_processing.rb:719 -msgid "Associating Floating IP %{address} with Instance \"%{name}\"" -msgstr "インスタンス \"%{name}\" への Floating IP %{address} の割り当て" +msgid "'Unassigned Buttons Group' can not be deleted" +msgstr "’未割り当てボタングループ’ は削除できません" -#: ../app/controllers/application_controller/ci_processing.rb:723 -msgid "Unable to associate Floating IP %{address} with Instance \"%{name}\": %{details}" -msgstr "Floating IP %{address} をインスタンス \"%{name}\" に関連付けることはできません: %{details}" +msgid "'Unassigned Buttons Group' can not be edited" +msgstr "’未割り当てボタングループ’ は編集できません" -#: ../app/controllers/application_controller/ci_processing.rb:767 -#: ../app/controllers/application_controller/ci_processing.rb:823 -msgid "Unable to disassociate Floating IP from Instance \"%{name}\": %{details}" -msgstr "Floating IP のインスタンス \"%{name}\" との関連付けを解除できません: %{details}" +msgid "(%{number} bytes)" +msgstr "(%{number} バイト)" -#: ../app/controllers/application_controller/ci_processing.rb:778 -msgid "Disssociate Floating IP from Instance '%{name}'" -msgstr "Floating IP のインスタンス '%{name}' との関連付けを解除" +msgid "(%{value}) * Overallocated" +msgstr "(%{value}) * 割当超過" -#: ../app/controllers/application_controller/ci_processing.rb:806 -msgid "" -"Disassociation of Floating IP from Instance \"%{name}\" was cancelled by the use" -"r" -msgstr " Floating IP のインスタンス \"%{name}\" との関連付け解除がユーザーにより取り消されました" +msgid "(All)" +msgstr "(すべて)" -#: ../app/controllers/application_controller/ci_processing.rb:813 -msgid "Disassociating Floating IP %{address} from Instance \"%{name}\"" -msgstr "Floating IP %{address} のインスタンス \"%{name}\" との関連付けを解除" +msgid "(Check All)" +msgstr "(すべて選択)" -#: ../app/controllers/application_controller/ci_processing.rb:817 -msgid "" -"Unable to disassociate Floating IP %{address} from Instance \"%{name}\": %{detai" -"ls}" -msgstr "Floating IP %{address} のインスタンス \"%{name}\" との関連付けを解除できません: %{details}" +msgid "(Checked default filters will be visible.)" +msgstr "(チェックされたデフォルトフィルターが表示されます。)" -#: ../app/controllers/application_controller/ci_processing.rb:848 -msgid "One or more %{model} must be selected to Right-Size Recommendations" -msgstr "適切なサイズの推奨には 1 つ以上の%{model}が選択されている必要があります" +msgid "(Click to remove)" +msgstr "(クリックすると削除されます)" -#: ../app/controllers/application_controller/ci_processing.rb:855 -msgid "Right-Size Recommendations does not apply to selected %{model}" -msgstr "推奨される適切なサイズは選択した%{model}に適用されません" +msgid "(Default: %{email_from})" +msgstr "(デフォルト: %{email_from})" -#: ../app/controllers/application_controller/ci_processing.rb:880 -#: ../app/controllers/catalog_controller.rb:874 -#: ../app/views/catalog/_sandt_tree_show.html.haml:145 -msgid "Reconfigure" -msgstr "再設定" +msgid "(Enter the value between 4 - 65636 MB)" +msgstr "(4 から 65636 MBの間の値を入力してください)" -#: ../app/controllers/application_controller/ci_processing.rb:900 -msgid "VM Reconfigure Request was cancelled by the user" -msgstr "仮想マシンの再構成要求がユーザーにより取り消されました" +msgid "(Look up %{authentication_mode_name} Groups)" +msgstr "(%{authentication_mode_name}でのグループ検索)" -#: ../app/controllers/application_controller/ci_processing.rb:956 -msgid "VM Reconfigure Request was saved" -msgstr "仮想マシンの再構成要求が保存されました" +msgid "(MB) memory" +msgstr "(MB) メモリー" -#: ../app/controllers/application_controller/ci_processing.rb:1155 -#: ../app/controllers/cim_instance_controller.rb:135 -#: ../app/controllers/host_controller.rb:115 -#: ../app/controllers/host_controller.rb:122 -#: ../app/controllers/host_controller.rb:129 -#: ../app/controllers/host_controller.rb:136 -#: ../app/controllers/host_controller.rb:143 -#: ../app/controllers/storage_controller.rb:101 -#: ../app/controllers/storage_controller.rb:108 -#: ../app/controllers/storage_controller.rb:115 -msgid "%{name} (All %{tables})" -msgstr "%{name} (すべての%{tables})" +msgid "(current)" +msgstr " (現在)" -#: ../app/controllers/application_controller/ci_processing.rb:1191 -#: ../app/controllers/application_controller/ci_processing.rb:1203 -msgid "%{name} (Packages)" -msgstr "%{name} (パッケージ)" +msgid "(leave blank for default)" +msgstr "(デフォルトの場合は空白にする)" -#: ../app/controllers/application_controller/ci_processing.rb:1194 -#: ../app/controllers/application_controller/ci_processing.rb:1206 -msgid "%{name} (Applications)" -msgstr "%{name} (アプリケーション)" +msgid "(missing)" +msgstr "(見つかりません)" -#: ../app/controllers/application_controller/ci_processing.rb:1227 -#: ../app/controllers/application_controller/ci_processing.rb:1233 -msgid "%{name} (Patches)" -msgstr "%{name} (パッチ)" +msgid "(optional) the address of an alternate service" +msgstr "(オプション) 代替サービスのアドレス" -#: ../app/controllers/application_controller/ci_processing.rb:1253 -#: ../app/controllers/application_controller/ci_processing.rb:1260 -msgid "%{name} (Groups)" -msgstr "%{name} (グループ)" +msgid "(optional) your HTTP proxy information" +msgstr "(オプション) HTTP プロキシー情報" -#: ../app/controllers/application_controller/ci_processing.rb:1280 -#: ../app/controllers/application_controller/ci_processing.rb:1287 -msgid "%{name} (Users)" -msgstr "%{name} (ユーザー)" +msgid "* 'Name' and 'Single Value' fields cannot be edited after adding a category." +msgstr "* '名前' および '単一値' フィールドは、カテゴリーの追加後に編集することができません。" -#: ../app/controllers/application_controller/ci_processing.rb:1308 -#: ../app/controllers/application_controller/ci_processing.rb:1314 -msgid "%{name} (Hosts)" -msgstr "%{name} (ホスト)" +msgid "* Base the report on" +msgstr "* レポートのベース" -#: ../app/controllers/application_controller/ci_processing.rb:1328 -msgid "%{title} Discovery was cancelled by the user" -msgstr "%{title}の検出はユーザーによって取り消されました" +msgid "* Cannot be changed while this Alert belongs to an Alert Profile." +msgstr "* このアラートがアラートプロファイルに属している場合は変更できません。" -#: ../app/controllers/application_controller/ci_processing.rb:1381 -#: ../app/controllers/application_controller/ci_processing.rb:1453 -msgid "%{title} Discovery" -msgstr "%{title}の検出" +msgid "* Caution: Changing these fields will clear all selected values below them!" +msgstr "* 注意: これらのフィールドを変更すると、フィールドの下で選択したすべての値がクリアされます!" -#: ../app/controllers/application_controller/ci_processing.rb:1391 -msgid "Client ID, Client Key, Azure Tenant ID and Subscription ID are required" -msgstr "クライアント ID、クライアントキー、Azure テナント ID およびサブスクリプション ID が必要です" +msgid "* Caution: The value Range end will not be included in the tier." +msgstr "* 注意: 範囲の値の終端は階層に組み込まれません。" -#: ../app/controllers/application_controller/ci_processing.rb:1400 -#: ../app/controllers/pxe_controller/pxe_servers.rb:305 -msgid "Username is required" -msgstr "ユーザー名が必要です" +msgid "* Changing the Time Zone will reset the Starting Date and Time fields below" +msgstr "* タイムゾーンを変更すると、以下の開始日と時間フィールドがリセットされます。" -#: ../app/controllers/application_controller/ci_processing.rb:1405 -#: ../app/controllers/ems_common.rb:696 -#: ../app/controllers/ops_controller/settings/ldap.rb:171 -#: ../app/controllers/ops_controller/settings/zones.rb:123 -#: ../app/controllers/storage_manager_controller.rb:243 -msgid "Username must be entered if Password is entered" -msgstr "パスワードが入力される場合はユーザー名を入力する必要があります" +msgid "* Changing the Zone will reset all of this Server's priorities to secondary." +msgstr "* ゾーンを変更すると、このサーバーの優先順位がすべて「セカンダリー」にリセットされます。" -#: ../app/controllers/application_controller/ci_processing.rb:1410 -#: ../app/controllers/ems_common.rb:699 -#: ../app/controllers/ops_controller/ops_rbac.rb:999 -#: ../app/controllers/pxe_controller/pxe_servers.rb:310 -msgid "Password/Verify Password do not match" -msgstr "パスワード/検証パスワードが一致しません" +msgid "* Checking this box will remove this setting from all other PXE Images on this PXE Server" +msgstr "* このボックスをチェックすると、この PXE サーバーにある他のすべての PXE イメージからこの設定が削除されます" -#: ../app/controllers/application_controller/ci_processing.rb:1417 -msgid "At least 1 item must be selected for discovery" -msgstr "検出には 1 つ以上の項目を選択してください" +msgid "* Daily charts only include days for which all 24 hours of data has been collected." +msgstr "* 日次チャートには、24 時間分のデータが収集される日のデータのみが表示されます。" -#: ../app/controllers/application_controller/ci_processing.rb:1440 -msgid "%{title} Discovery returned: %{error_message}" -msgstr "%{title}の検出が返されました: %{error_message}" +msgid "* Dashboard name cannot be changed" +msgstr "* ダッシュボード名は変更できません" -#: ../app/controllers/application_controller/ci_processing.rb:1447 -msgid "%{model}: Discovery successfully initiated" -msgstr "%{model}: 検出が正常に実行されました" +msgid "* Dates/Times on this page are based on time zone: %{time_zone}." +msgstr "* このページの日付/時間は、タイムゾーン %{time_zone} に基づいています。" -#: ../app/controllers/application_controller/ci_processing.rb:1460 -#: ../app/helpers/application_helper.rb:1527 -#: ../app/presenters/menu/default_menu.rb:61 -msgid "Hosts / Nodes" -msgstr "ホスト / ノード" +msgid "* Disk space not supported for OpenStack providers" +msgstr "* ディスク領域は OpenStack プロバイダーの場合はサポートされていません" -#: ../app/controllers/application_controller/ci_processing.rb:1540 -msgid "%{model} \"%{name}\": Error during '%{task}': %{error_msg}" -msgstr "%{model} \"%{name}\": '%{task}' の実行中にエラーが発生しました: %{error_msg}" +msgid "* Enter Policy Simulation options on the left and press Submit" +msgstr "* 左側のポリシーシミュレーションのオプションを入力して「送信」を押してください" -#: ../app/controllers/application_controller/ci_processing.rb:1544 -#: ../app/controllers/application_controller/ci_processing.rb:2238 -#: ../app/controllers/ems_common.rb:1038 -#: ../app/controllers/miq_request_controller.rb:571 -#: ../app/controllers/ontap_file_share_controller.rb:70 -#: ../app/controllers/storage_manager_controller.rb:463 -msgid "%{model} \"%{name}\": %{task} successfully initiated" -msgstr "%{model} \"%{name}\": %{task}が正常に実行されました" +msgid "* Enter a reason for this approval and press Submit" +msgstr "* 承認の理由を入力して「送信」を押してください" -#: ../app/controllers/application_controller/ci_processing.rb:1578 -#: ../app/controllers/application_controller/ci_processing.rb:1586 -#: ../app/controllers/miq_ae_class_controller.rb:2592 -msgid "%{model} \"%{name}\": Error during delete: %{error_msg}" -msgstr "%{model} \"%{name}\": 削除の実行中にエラーが発生しました: %{error_msg}" +msgid "* Enter a reason for this denial and press Submit" +msgstr "* 拒否の理由を入力して「送信」を押してください" -#: ../app/controllers/application_controller/ci_processing.rb:1663 -msgid "One or more %{model} must be selected to Reconfigure" -msgstr "再設定には 1 つ以上の%{model}が選択されている必要があります" +msgid "* Fields are read only for default Widgets" +msgstr "* デフォルトウィジェットの場合、フィールドは読み取り専用になります。" -#: ../app/controllers/application_controller/ci_processing.rb:1669 -msgid "Reconfigure does not apply because you selected at least one %{model}" -msgstr "1 つ以上の%{model}が選択されているので再設定は適用されません" +msgid "* If all Conditions are removed from a Policy, it will be unconditional and always evaluate to true." +msgstr "* ポリシーからすべての条件が削除された場合は、無条件となり常に true と評価されます。" -#: ../app/controllers/application_controller/ci_processing.rb:1675 -msgid "" -"Reconfigure does not apply because you selected at least one un-reconfigurable" -" VM" -msgstr "1 つ以上の再設定できない仮想マシンが選択されているので再設定は適用されません" +msgid "* Information shown is based on available trend data from %{start_time} to %{end_time} in the %{timezone} time zone." +msgstr "* 表示されている情報は %{timezone} タイムゾーンの %{start_time} から %{end_time} までの入手可能なトレンドデータに基づいています。" -#: ../app/controllers/application_controller/ci_processing.rb:1843 -msgid "Retire does not apply to selected %{model}" -msgstr "リタイアは選択した%{model}に適用されません" +msgid "* Information shown is based on available trend data going back %{weeks}." +msgstr "* 表示されている情報は %{weeks} 前からの入手可能なトレンドデータに基づいています。" -#: ../app/controllers/application_controller/ci_processing.rb:1855 -#: ../app/controllers/application_controller/ci_processing.rb:2251 -#: ../app/controllers/application_controller/ci_processing.rb:2542 -#: ../app/controllers/application_controller/ci_processing.rb:2630 -#: ../app/controllers/application_controller/ci_processing.rb:2698 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:1357 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:62 -#: ../app/controllers/mixins/containers_common_mixin.rb:179 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:380 -#: ../app/controllers/provider_foreman_controller.rb:84 -msgid "No %{model} were selected for %{task}" -msgstr "%{task}する%{model}が選択されていません" +msgid "* Items in" +msgstr "* 次の項目" -#: ../app/controllers/application_controller/ci_processing.rb:1868 -#: ../app/controllers/application_controller/ci_processing.rb:1941 -#: ../app/controllers/application_controller/ci_processing.rb:2263 -#: ../app/controllers/application_controller/ci_processing.rb:2554 -#: ../app/controllers/application_controller/ci_processing.rb:2642 -#: ../app/controllers/application_controller/ci_processing.rb:2713 -#: ../app/controllers/application_controller/ci_processing.rb:2746 -#: ../app/controllers/chargeback_controller.rb:219 -#: ../app/controllers/ems_common.rb:642 ../app/controllers/ems_common.rb:1065 -#: ../app/controllers/ems_common.rb:1100 ../app/controllers/ems_common.rb:1141 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:1365 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:83 -#: ../app/controllers/miq_policy_controller.rb:239 -msgid "%{record} no longer exists" -msgstr "%{record}は存在しません" +msgid "* Items in red italics do not change the outcome of the scope or expression." +msgstr "* 赤字イタリック の項目はスコープまたは数式の結果を変更しません。" -#: ../app/controllers/application_controller/ci_processing.rb:1926 -msgid "Error during '%{task}': %{error_message}" -msgstr "'%{task}' の実行中にエラーが発生しました: %{error_message}" +msgid "* No Actions are configured for this Event." +msgstr "* このイベントにはアクションが設定されていません。" -#: ../app/controllers/application_controller/ci_processing.rb:1928 -msgid "%{task} initiated for %{number} %{model} from the %{product} Database" -msgid_plural "%{task} initiated for %{number} %{models} from the %{product} Database" -msgstr[0] "%{task}が %{product} データベースの %{number} %{model}に対して実行されました" -msgstr[1] "%{task}が %{product} データベースの %{number} %{models}に対して実行されました" +msgid "* No Reports available." +msgstr "* 利用できるレポートはありません。" -#: ../app/controllers/application_controller/ci_processing.rb:1950 -msgid "No providers were selected for %{task}" -msgstr "%{task}に選択したプロバイダーはありません" +msgid "* Only a single value can be assigned from these Tag Categories" +msgstr "* タグカテゴリーでは 1 つの値のみを割り当てることができます" -#: ../app/controllers/application_controller/ci_processing.rb:1964 -#: ../app/controllers/storage_manager_controller.rb:417 -msgid "Error during '%{task}': %{message}" -msgstr "'%{task}' の実行中にエラーが発生しました: %{message}" +msgid "* Only a single value can be assigned from these categories" +msgstr "* 上記のカテゴリーでは 1 つの値のみを割り当てることができます" -#: ../app/controllers/application_controller/ci_processing.rb:1966 -msgid "%{task} initiated for %{count} provider (%{controller})" -msgid_plural "%{task} initiated for %{count} providers (%{controller})" -msgstr[0] "%{task}が %{count} プロバイダー (%{controller}) に対して実行されました" -msgstr[1] "%{task}が %{count} プロバイダー (%{controller}) に対して実行されました" +msgid "* Performance Interval" +msgstr "* パフォーマンス間隔" -#: ../app/controllers/application_controller/ci_processing.rb:2157 -msgid "At least 1 %{model} must be selected for Policy Simulation" -msgstr "ポリシーのシュミレーションには 1 つ以上の%{model}を選択してください" +msgid "* Policy Profile is only applied to some of the items below." +msgstr "* ポリシープロファイルは以下の項目の一部にのみ適用されます。" -#: ../app/controllers/application_controller/ci_processing.rb:2184 -#: ../app/helpers/application_helper.rb:1538 -#: ../app/helpers/application_helper.rb:1551 -msgid "Cluster" -msgstr "クラスター" +msgid "* Primary Server Roles shown as %{bold} text." +msgstr "*プライマリーサーバーは %{bold} テキストで表示されます。" -#: ../app/controllers/application_controller/ci_processing.rb:2201 -#: ../app/controllers/application_controller/ci_processing.rb:2232 -#: ../app/controllers/application_controller/ci_processing.rb:2602 -#: ../app/controllers/catalog_controller.rb:631 -#: ../app/controllers/ems_common.rb:1031 -msgid "%{model} \"%{name}\": Error during '%{task}': %{error_message}" -msgstr "%{model} \"%{name}\": '%{task}' の実行中にエラーが発生しました : %{error_message}" +msgid "* Recommendations are subject to minimum of CPU: %{cpu} and Memory: %{memory}." +msgstr "* 推奨内容には少なくとも CPU ( %{cpu} ) およびメモリー ( %{memory} ) が必要です。" -#: ../app/controllers/application_controller/ci_processing.rb:2207 -msgid "%{model}: %{task} successfully initiated" -msgstr "%{model}: %{task}が正常に実行されました" +msgid "* Report is not owned by your group so it cannot be removed" +msgstr "* レポートはお使いのグループにより所有されていないため、削除することができません" -#: ../app/controllers/application_controller/ci_processing.rb:2290 -#: ../app/controllers/application_controller/ci_processing.rb:2478 -#: ../app/controllers/application_controller/ci_processing.rb:2669 -#: ../app/helpers/application_helper/tasks.rb:14 -#: ../app/views/ops/_schedule_show.html.haml:49 -msgid "Analysis" -msgstr "分析" +msgid "* Requirements: CSV formatted file." +msgstr "* [要件] CSV 形式ファイル。" -#: ../app/controllers/application_controller/ci_processing.rb:2298 -#: ../app/controllers/miq_request_controller.rb:560 -#: ../app/controllers/miq_task_controller.rb:211 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:514 -#: ../app/controllers/storage_manager_controller.rb:445 -msgid "%{model} \"%{name}\": Error during '%{task}': %{message}" -msgstr "%{model} \"%{name}\": '%{task}' の実行中にエラーが発生しました: %{message}" +msgid "* Requirements: File-type - PNG; Dimensions - 1280x1000." +msgstr "* [要件] ファイルタイプ: PNG、寸法: 1280x1000" -#: ../app/controllers/application_controller/ci_processing.rb:2311 -#: ../app/controllers/infra_networking_controller.rb:579 -#: ../app/helpers/application_helper.rb:1523 -#: ../app/helpers/application_helper.rb:1547 -#: ../app/views/configuration/_ui_1.html.haml:25 -#: ../app/views/host/_form.html.haml:166 -#: ../app/views/host_aggregate/add_host_select.html.haml:16 -#: ../app/views/host_aggregate/remove_host_select.html.haml:16 -#: ../app/views/ops/_settings_replication_tab.html.haml:138 -#: ../app/views/ops/_settings_server_tab.html.haml:386 -msgid "Host" -msgid_plural "Hosts" -msgstr[0] "ホスト" -msgstr[1] "ホスト" +msgid "* Requirements: File-type - PNG; Dimensions - 350x70." +msgstr "* [要件] ファイルタイプ : PNG、寸法 - 350x70" -#: ../app/controllers/application_controller/ci_processing.rb:2318 -msgid "%{task} initiated for %{count} Host from the %{product} Database" -msgid_plural "%{task} initiated for %{count} Hosts from the %{product} Database" -msgstr[0] "%{task}が %{product} データベースの %{count} ホストに対して実行されました" -msgstr[1] "%{task}が %{product} データベースの %{count} ホストに対して実行されました " +msgid "* Requires image file in .png or .jpg format" +msgstr "* .png or .jpg 形式のイメージファイルが必要です。" -#: ../app/controllers/application_controller/ci_processing.rb:2347 -#: ../app/controllers/application_controller/ci_processing.rb:2358 -#: ../app/controllers/application_controller/ci_processing.rb:2366 -msgid "\"%{task}\": not supported for %{hostname}" -msgstr "\"%{task}\": %{hostname}にはサポートされていません" +msgid "* Saving a blank date will remove all retirement dates" +msgstr "* 日付をブランクにして保存すると、リタイア日がすべて削除されます。" -#: ../app/controllers/application_controller/ci_processing.rb:2378 -#: ../app/controllers/application_controller/ci_processing.rb:2383 -msgid "\"%{record}\": Scheduling is %{status} now." -msgstr "\"%{record}\": スケジューリングは%{status}になっています。" +msgid "* Select one or more consecutive fields to move up or down." +msgstr "* 1 つ以上の連続するフィールドを選択して上下に移動します。" -#: ../app/controllers/application_controller/ci_processing.rb:2385 -msgid "\"%{record}\": %{task} invalid" -msgstr "\"%{record}\": %{task}が無効です" +msgid "* Select one or more consecutive groups to move up or down." +msgstr "* 1 つ以上の連続するグループを選択して上下に移動します。" -#: ../app/controllers/application_controller/ci_processing.rb:2396 -msgid "" -"\"%{task}\": not available for %{hostname}. %{hostname}'s provision state must b" -"e in \"available\", \"adoptfail\", \"cleanfail\", or \"inspectfail\"" -msgstr "" -"\"%{task}\": %{hostname} には利用できません。%{hostname} のプロビジョニング状態は \"available\"、\"adoptfa" -"il\"、\"cleanfail\"、または \"inspectfail\" である必要があります" +msgid "* Set in Time Profile" +msgstr "* タイムプロファイルで設定してください" -#: ../app/controllers/application_controller/ci_processing.rb:2405 -#: ../app/controllers/application_controller/ci_processing.rb:2414 -msgid "" -"\"%{task}\": not available for %{hostname}. %{hostname}'s provision state needs " -"to be in \"manageable\"" -msgstr "" -"\"%{task}\": %{hostname} には利用できません。%{hostname} のプロビジョニング状態は \"manageable\" である必要があ" -"ります" +msgid "* Some charts my not produce desired results with a single sort field" +msgstr "* 一部のチャートの場合、単一ソートフィールドで必要な結果が生成されない可能性があります" -#: ../app/controllers/application_controller/ci_processing.rb:2423 -msgid "\"%{task}\": not available for %{hostname}" -msgstr "\"%{task}\": %{hostname}には利用できません" +msgid "* Specified NTP settings apply to this zone only and are not global." +msgstr "* 指定された NTP 設定はこのゾーンにのみ適用されるものでグローバル設定ではありません。" -#: ../app/controllers/application_controller/ci_processing.rb:2472 -#: ../app/controllers/application_controller/ci_processing.rb:2663 -#: ../app/controllers/provider_foreman_controller.rb:107 -#: ../app/views/ems_container/_show_ad_hoc_metrics.html.haml:163 -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:92 -#: ../app/views/ops/_settings_workers_tab.html.haml:418 -#: ../app/views/shared/_topology_header.html.haml:19 -#: ../app/views/shared/_topology_header_toolbar.html.haml:17 -#: ../app/views/shared/dialogs/_dialog_field_check_box.html.haml:14 -#: ../app/views/shared/dialogs/_dialog_field_date_and_date_time_control.html.haml:45 -#: ../app/views/shared/dialogs/_dialog_field_drop_down_list.html.haml:33 -#: ../app/views/shared/dialogs/_dialog_field_radio_button.html.haml:41 -#: ../app/views/shared/dialogs/_dialog_field_text_area_box.html.haml:18 -#: ../app/views/shared/dialogs/_dialog_field_text_box.html.haml:19 -msgid "Refresh" -msgstr "更新" +msgid "* Style \"If\" conditions are evaluated top to bottom for each column" +msgstr "* スタイル \"If\" 条件の評価は、1 列ごとに上から下に実行されます。" -#: ../app/controllers/application_controller/ci_processing.rb:2484 -msgid "Toggle Maintenance" -msgstr "メンテナンスの切り替え" +msgid ", Connect at Power On = No" +msgstr "、電源オンで接続 = No" -#: ../app/controllers/application_controller/ci_processing.rb:2490 -msgid "Toggle Scheduling for Cloud Service" -msgstr "クラウドサービスのスケジューリングを切り替え" +msgid ", Connect at Power On = Yes" +msgstr "、電源オンで接続 = Yes" -#: ../app/controllers/application_controller/ci_processing.rb:2495 -#: ../app/views/ops/_schedule_show.html.haml:38 -msgid "Compliance Check" -msgstr "コンプライアンスチェック" +msgid ", Mode: %{mode}" +msgstr "、モード: %{mode}" -#: ../app/controllers/application_controller/ci_processing.rb:2500 -msgid "Analyze and Compliance Check" -msgstr " 分析とコンプライアンスチェック" +msgid ", Percent Used Provisioned Space: %{number}%%" +msgstr "、プロビジョニングされた領域の使用率: %{number}%%" -#: ../app/controllers/application_controller/ci_processing.rb:2506 -msgid "Manageable" -msgstr "管理可能" +msgid ", Size on disk: %{number}" +msgstr "、ディスクのサイズ: %{number}" -#: ../app/controllers/application_controller/ci_processing.rb:2512 -msgid "Introspect" -msgstr "イントロスペクト" +msgid ", Size: %{number}" +msgstr "、サイズ: %{number}" -#: ../app/controllers/application_controller/ci_processing.rb:2518 -msgid "Provide" -msgstr "提供" +msgid "-- OR --" +msgstr "-- OR --" -#: ../app/controllers/application_controller/ci_processing.rb:2523 -#: ../app/controllers/middleware_server_controller.rb:46 -#: ../app/controllers/middleware_server_controller.rb:81 -#: ../app/helpers/application_helper/toolbar/host_center.rb:187 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:204 -#: ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:30 -#: ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:36 -msgid "Restart" -msgstr "再起動" +msgid "1 - Select a Reference VM." +msgstr "1 - 参照する仮想マシンを選択してください。" -#: ../app/controllers/application_controller/ci_processing.rb:2524 -#: ../app/helpers/application_helper/toolbar/host_center.rb:197 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:217 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:235 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:198 -#: ../app/views/catalog/_form_resources_info.html.haml:119 -msgid "Power On" -msgstr "電源オン" +msgid "1 Day" +msgstr "1 日" -#: ../app/controllers/application_controller/ci_processing.rb:2525 -#: ../app/helpers/application_helper/toolbar/host_center.rb:206 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:227 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:245 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:207 -#: ../app/views/catalog/_form_resources_info.html.haml:120 -msgid "Power Off" -msgstr "電源オフ" +msgid "1 Day Ago" +msgstr "1 日前" -#: ../app/controllers/application_controller/ci_processing.rb:2526 -#: ../app/helpers/application_helper/toolbar/host_center.rb:151 -msgid "Enter Maintenance Mode" -msgstr "メンテナンスモードの開始" +msgid "1 Hour" +msgstr "1 時間" -#: ../app/controllers/application_controller/ci_processing.rb:2527 -#: ../app/helpers/application_helper/toolbar/host_center.rb:160 -msgid "Exit Maintenance Mode" -msgstr "メンテナンスモードの終了" +msgid "1 Minute" +msgstr "1 分" -#: ../app/controllers/application_controller/ci_processing.rb:2528 -msgid "Shutdown to Standby Mode" -msgstr "スタンバイモードにシャットダウン" +msgid "1 Week" +msgstr "1 週間" -#: ../app/controllers/application_controller/ci_processing.rb:2579 -#: ../app/controllers/miq_ae_class_controller.rb:80 -#: ../app/controllers/miq_ae_class_controller.rb:88 -#: ../app/controllers/miq_ae_class_controller.rb:176 -#: ../app/controllers/miq_ae_class_controller.rb:1600 -#: ../app/controllers/miq_ae_class_controller.rb:2557 -#: ../app/presenters/tree_builder_ae_class.rb:17 -#: ../app/presenters/tree_builder_automate.rb:25 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:65 -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:63 -#: ../app/views/shared/views/_prov_dialog.html.haml:143 -msgid "Datastore" -msgstr "データストア" +msgid "1 Week Ago" +msgstr "1 週間前" -#: ../app/controllers/application_controller/ci_processing.rb:2590 -msgid "Delete initiated for Datastore from the %{product} Database" -msgid_plural "Delete initiated for Datastores from the %{product} Database" -msgstr[0] "削除が%{product}データベースのデータストアに対して実行されました" -msgstr[1] "削除が%{product}データベースのデータストアに対して実行されました" +msgid "1 Week before retirement" +msgstr "リタイアの 1 週間前" -#: ../app/controllers/application_controller/ci_processing.rb:2609 -msgid "\"%{record}\": Refresh successfully initiated" -msgstr "\"%{record}\": 更新が正常に実行されました" +msgid "1-2" +msgstr "1-2" -#: ../app/controllers/application_controller/ci_processing.rb:2626 -msgid "Smartstate Analysis" -msgstr "Smartstate 分析" +msgid "10 Hours Ago" +msgstr "10 時間前" -#: ../app/controllers/application_controller/ci_processing.rb:2706 -msgid "\"%{datastore_name}\": cannot be removed, has vms or hosts" -msgstr "\"%{datastore_name}\": 削除できません、仮想マシンまたはホストがあります" +msgid "10 Minutes" +msgstr "10 分" -#: ../app/controllers/application_controller/ci_processing.rb:2719 -#: ../app/controllers/application_controller/ci_processing.rb:2752 -#: ../app/controllers/catalog_controller.rb:274 -#: ../app/controllers/ems_common.rb:1071 -msgid "The selected %{record} was deleted" -msgstr "選択した%{record}は削除されました" +msgid "10 items" +msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2734 -#: ../app/controllers/catalog_controller.rb:280 -#: ../app/controllers/catalog_controller.rb:1195 -#: ../app/controllers/miq_request_controller.rb:525 -#: ../app/controllers/miq_task_controller.rb:130 -#: ../app/controllers/miq_task_controller.rb:155 -#: ../app/controllers/ops_controller/settings/ldap.rb:111 -#: ../app/controllers/ops_controller/settings/schedules.rb:197 -#: ../app/controllers/service_controller.rb:168 -msgid "No %{model} were selected for deletion" -msgstr "削除する%{model}が選択されていません" +msgid "10-11" +msgstr "10-11" -#: ../app/controllers/application_controller/ci_processing.rb:2738 -#: ../app/controllers/ems_common.rb:1018 ../app/controllers/ems_common.rb:1057 -msgid "Delete initiated for %{count} %{model} from the %{product} Database" -msgid_plural "Delete initiated for %{count} %{models} from the %{product} Database" -msgstr[0] "削除が%{product}データベースの%{count} %{model}に対して実行されました" -msgstr[1] "削除が%{product}データベースの%{count} %{models}に対して実行されました" +msgid "100 items" +msgstr "" -#: ../app/controllers/application_controller/compare.rb:50 -#: ../app/controllers/application_controller/compare.rb:108 -msgid "Compare %{name}" -msgstr "%{name}の比較" +msgid "1000 items" +msgstr "" -#: ../app/controllers/application_controller/compare.rb:416 -msgid "%{name} Compare Report (* = Value does not match base)" -msgstr "%{name}のレポートの比較 (* = 値はベースと一致しません)" +msgid "11 Hours Ago" +msgstr "11 時間前" -#: ../app/controllers/application_controller/compare.rb:420 -msgid "%{name} '%{vm_name}' Drift Report" -msgstr "%{name} '%{vm_name}' ドリフトレポート" +msgid "11-12" +msgstr "11-12" -#: ../app/controllers/application_controller/compare.rb:564 -#: ../app/controllers/application_controller/compare.rb:592 -msgid "'%{name}' Drift Analysis" -msgstr "'%{name}' ドリフト分析" +msgid "12 Hours" +msgstr "12 時間" -#: ../app/controllers/application_controller/compare.rb:753 -#: ../app/controllers/vm_common.rb:1620 -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:190 -#: ../app/helpers/host_helper/textual_summary.rb:288 -#: ../app/helpers/textual_mixins/textual_drift.rb:4 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:86 -#: ../app/views/layouts/listnav/_host.html.haml:144 -msgid "Drift History" -msgid_plural "Drift History" -msgstr[0] "ドリフト履歴" -msgstr[1] "ドリフト履歴" +msgid "12 Hours Ago" +msgstr "12 時間前" -#: ../app/controllers/application_controller/compare.rb:869 -#: ../app/controllers/vm_common.rb:244 ../app/controllers/vm_controller.rb:22 -#: ../app/helpers/ems_infra_helper/textual_summary.rb:149 -#: ../app/presenters/menu/default_menu.rb:68 -msgid "Virtual Machines" -msgstr "仮想マシン" +msgid "12-1" +msgstr "12-1" -#: ../app/controllers/application_controller/compare.rb:871 -msgid "VM Templates" -msgstr "仮想マシンのテンプレート" +msgid "13 Hours Ago" +msgstr "13 時間前" -#: ../app/controllers/application_controller/compare.rb:876 -msgid "At least 2 %{model} must be selected for Compare" -msgstr "比較には 2 つ以上の%{model}を選択してください" +msgid "14 Days Ago" +msgstr "14 日前" -#: ../app/controllers/application_controller/compare.rb:882 -msgid "No more than 32 %{model} can be selected for Compare" -msgstr "32 を超える%{model}を比較用に選択できません" +msgid "14 Hours Ago" +msgstr "14 時間前" -#: ../app/controllers/application_controller/compare.rb:925 -msgid "At least 2 Analyses must be selected for Drift" -msgstr "ドリフトには 2 つ以上の分析を選択してください" +msgid "15 Hours Ago" +msgstr "15 時間前" -#: ../app/controllers/application_controller/compare.rb:929 -msgid "No more than 10 Analyses can be selected for Drift" -msgstr "10 を超える分析をドリフト用に選択できません" +msgid "15 Minutes" +msgstr "15 分" -#: ../app/controllers/application_controller/compare.rb:993 -msgid "All Sections" -msgstr "すべてのセクション" +msgid "16 Hours Ago" +msgstr "16 時間前" -#: ../app/controllers/application_controller/compare.rb:999 -#: ../app/controllers/application_controller/compare.rb:1002 -#: ../app/controllers/application_controller/compare.rb:1043 -msgid "Same as previous" -msgstr "変更なし" +msgid "17 Hours Ago" +msgstr "17 時間前" -#: ../app/controllers/application_controller/compare.rb:1004 -#: ../app/controllers/application_controller/compare.rb:1045 -msgid "Changed from previous" -msgstr "変更あり" +msgid "18 Hours Ago" +msgstr "18 時間前" -#: ../app/controllers/application_controller/compare.rb:1037 -msgid "Starting values" -msgstr "開始値" +msgid "19 Hours Ago" +msgstr "19 時間前" -#: ../app/controllers/application_controller/compare.rb:1309 -#: ../app/controllers/application_controller/compare.rb:1933 -msgid "No Value Found" -msgstr "値が見つかりませんでした" +msgid "2 - Specify the VM Options to define the source of the values used for the plan calculations." +msgstr "2 - 計画の計算に使用する値のソースを定義するために仮想マシンのオプションを指定してください。" -#: ../app/controllers/application_controller/compare.rb:1471 -#: ../app/views/shared/_compare_header_expanded.html.haml:2 -msgid "%{name} is the base" -msgstr "%{name}がベースです" +msgid "2 Days" +msgstr "2 日" -#: ../app/controllers/application_controller/compare.rb:1475 -#: ../app/views/shared/_compare_header_expanded.html.haml:11 -msgid "Make %{name} the base" -msgstr "%{name}がベース" +msgid "2 Days Ago" +msgstr "2 日前" -#: ../app/controllers/application_controller/compare.rb:1506 -msgid "Remove this %{title} from the comparison" -msgstr "比較からこの %{title}を削除" +msgid "2 Hours" +msgstr "2 時間" -#: ../app/controllers/application_controller/compare.rb:1555 -msgid "Total Matches" -msgstr "一致件数の合計" +msgid "2 Hours Ago" +msgstr "2 時間前" -#: ../app/controllers/application_controller/compare.rb:1561 -#: ../app/controllers/application_controller/compare.rb:1599 -#: ../app/controllers/application_controller/compare.rb:1682 -msgid "% Matched" -msgstr "% 一致" +msgid "2 Minutes" +msgstr "2 分" -#: ../app/controllers/application_controller/compare.rb:1561 -#: ../app/controllers/application_controller/compare.rb:1599 -msgid "% Matched:" -msgstr "% 一致:" +msgid "2 Months" +msgstr "2 カ月" -#: ../app/controllers/application_controller/compare.rb:1896 -#: ../app/controllers/application_controller/compare.rb:1899 -msgid "(missing)" -msgstr "(見つかりません)" +msgid "2 Months Ago" +msgstr "2 カ月前" -#: ../app/controllers/application_controller/dialog_runner.rb:27 -msgid "%{model} Order was cancelled by the user" -msgstr "%{model}ユーザーにより命令が取り消されました" +msgid "2 Quarters Ago" +msgstr "2 半期前" -#: ../app/controllers/application_controller/dialog_runner.rb:34 -msgid "Error during 'Provisioning': %{error_message}" -msgstr "'プロビジョニング' の実行中にエラーが発生しました: %{error_message}" +msgid "2 Weeks" +msgstr "2 週間" -#: ../app/controllers/application_controller/dialog_runner.rb:44 -msgid "Order Request was Submitted" -msgstr "オーダー要求が送信されました" +msgid "2 Weeks Ago" +msgstr "2 週間前" -#: ../app/controllers/application_controller/dialog_runner.rb:76 -msgid "%{button_name} Button not yet implemented" -msgstr "%{button_name}のボタンはまだ実装されていません" +msgid "2 Weeks before retirement" +msgstr "リタイアの 2 週間前" -#: ../app/controllers/application_controller/explorer.rb:74 -#: ../app/controllers/application_controller/explorer.rb:176 -msgid "invalid button action" -msgstr "無効なボタンアクション" +msgid "2 Years Ago" +msgstr "2 年前" -#: ../app/controllers/application_controller/explorer.rb:130 -msgid "Button not yet implemented %{model}:%{action}" -msgstr "ボタンの未実装、%{model}:%{action}" +msgid "2-3" +msgstr "2-3" -#: ../app/controllers/application_controller/explorer.rb:228 -#: ../app/controllers/application_controller/tags.rb:187 -#: ../app/controllers/ops_controller/ops_rbac.rb:615 -msgid "Tag Edit was cancelled by the user" -msgstr "タグの編集がユーザーにより取り消されました" +msgid "20 Hours Ago" +msgstr "20 時間前" -#: ../app/controllers/application_controller/explorer.rb:246 -msgid "No Class found for explorer tree node id '%{number}'" -msgstr "エクスプローラーツリーノード ID が '%{number}' のクラスが見つかりませんでした。" +msgid "20 items" +msgstr "" -#: ../app/controllers/application_controller/explorer.rb:253 -msgid "Last selected %{record_name} no longer exists" -msgstr "最後に選択した%{record_name}はありません" +msgid "200 items" +msgstr "" -#: ../app/controllers/application_controller/feature.rb:27 -msgid "No TreeBuilder found for feature '%{name}'" -msgstr "機能 '%{name}' の TreeBuilder が見つかりません" +msgid "21 Hours Ago" +msgstr "21 時間前" -#: ../app/controllers/application_controller/filter.rb:46 -#: ../app/controllers/application_controller/policy_support.rb:145 -#: ../app/controllers/availability_zone_controller.rb:109 -#: ../app/controllers/cim_instance_controller.rb:82 -#: ../app/controllers/configuration_controller.rb:56 -#: ../app/controllers/configuration_job_controller.rb:68 -#: ../app/controllers/ems_cluster_controller.rb:189 -#: ../app/controllers/host_aggregate_controller.rb:157 -#: ../app/controllers/host_controller.rb:520 -#: ../app/controllers/infra_networking_controller.rb:85 -#: ../app/controllers/miq_ae_tools_controller.rb:25 -#: ../app/controllers/miq_policy_controller.rb:84 -#: ../app/controllers/miq_request_controller.rb:23 -#: ../app/controllers/orchestration_stack_controller.rb:137 -#: ../app/controllers/storage_controller.rb:175 -#: ../app/controllers/storage_manager_controller.rb:21 -#: ../app/controllers/vm_common.rb:26 ../app/controllers/vm_common.rb:827 -#: ../app/helpers/application_helper.rb:698 -msgid "Button not yet implemented" -msgstr "ボタンの未実装" +msgid "22 Hours Ago" +msgstr "22 時間前" -#: ../app/controllers/application_controller/filter.rb:100 -msgid "" -"There is an error in the selected expression element, perhaps it was imported " -"or edited manually." -msgstr "選択した式要素にエラーがあります。手動によりインポートまたは編集された可能性があります。" +msgid "23 Hours Ago" +msgstr "23 時間前" -#: ../app/controllers/application_controller/filter.rb:101 -msgid "" -"This element should be removed and recreated or you can report the error to yo" -"ur %{product} administrator." -msgstr "この要素は削除されるか、または再作成される必要があります。または、%{product} 管理者にエラーを報告することができます。" +msgid "24 Hour Time Period" +msgstr "24 時間単位の期間" -#: ../app/controllers/application_controller/filter.rb:102 -msgid "Error details: %{message}" -msgstr "エラー詳細: %{message}" +msgid "3 - Specify Target Options to qualify target %{hosts} or %{clusters}." +msgstr "3 - ターゲット%{hosts}または%{clusters}を限定するにはターゲットオプションを指定します。" -#: ../app/controllers/application_controller/filter.rb:300 -msgid "Search Name is required" -msgstr "検索名が必要です" +msgid "3 Days" +msgstr "3 日" -#: ../app/controllers/application_controller/filter.rb:306 -msgid "%{model} search \"%{name}\" was saved" -msgstr "%{model}の検索 \"%{name}\" を保存しました" +msgid "3 Days Ago" +msgstr "3 日前" -#: ../app/controllers/application_controller/filter.rb:343 -msgid "%{model} search \"%{name}\" was successfully loaded" -msgstr "%{model}の検索 \"%{name}\" が正常に読み込まれました" +msgid "3 Hours" +msgstr "3 時間" -#: ../app/controllers/application_controller/filter.rb:353 -msgid "%{model} \"%{name}\": Error during 'delete': %{error_message}" -msgstr "%{model} \"%{name}\": 「削除」の実行中にエラーが発生しました: %{error_message}" +msgid "3 Hours Ago" +msgstr "3 時間前" -#: ../app/controllers/application_controller/filter.rb:365 -msgid "%{model} search \"%{name}\": Delete successful" -msgstr "%{model}の検索 \"%{name}\": 削除が正常に実行されました" +msgid "3 Minutes" +msgstr "3 分" -#: ../app/controllers/application_controller/filter.rb:376 -msgid "The current search details have been reset" -msgstr "現在の検索詳細がリセットされました" +msgid "3 Months" +msgstr "3 カ月" -#: ../app/controllers/application_controller/filter.rb:555 -msgid "The selected Filter record was not found" -msgstr "選択したフィルターのレコードが見つかりませんでした" +msgid "3 Months Ago" +msgstr "3 カ月前" -#: ../app/controllers/application_controller/filter.rb:557 -msgid "The selected Filter can not be set as Default because it requires user input" -msgstr "ユーザー入力が必要であるため、選択したフィルターはデフォルトに設定することができません" +msgid "3 Quarters Ago" +msgstr "3 四半期前" -#: ../app/controllers/application_controller/filter.rb:673 -msgid " - Filtered by \"%{text}\"" -msgstr " - \"%{text}\" でフィルター" +msgid "3 Weeks" +msgstr "3 週間" -#: ../app/controllers/application_controller/filter.rb:675 -msgid " - Filtered by \"%{text}\" report" -msgstr " - \"%{text}\" レポートでフィルター" +msgid "3 Weeks Ago" +msgstr "3 週間前" -#: ../app/controllers/application_controller/filter.rb:680 -msgid " - Filtered by custom search" -msgstr " - カスタム検索でフィルター" +msgid "3 Years Ago" +msgstr "3 年前" -#: ../app/controllers/application_controller/filter.rb:774 -msgid "A field must be chosen to commit this expression element" -msgstr "この式要素をコミットする場合はフィールドを選択してください。" +msgid "3-4" +msgstr "3-4" -#: ../app/controllers/application_controller/filter.rb:782 -#: ../app/controllers/application_controller/filter.rb:803 -msgid "Field Value Error: %{msg}" -msgstr "フィールドの値エラー: %{msg}" +msgid "30 Days before retirement" +msgstr "リタイアの 30 日前" -#: ../app/controllers/application_controller/filter.rb:813 -msgid "A tag category must be chosen to commit this expression element" -msgstr "この式要素をコミットする場合はタグカテゴリーを選択してください。" +msgid "30 Minutes" +msgstr "30 分" -#: ../app/controllers/application_controller/filter.rb:815 -msgid "A tag value must be chosen to commit this expression element" -msgstr "この式要素をコミットする場合はタグ値を選択してください。" +msgid "32 Bit Architecture" +msgstr "32 ビットアーキテクチャー" -#: ../app/controllers/application_controller/filter.rb:827 -msgid "A registry key name must be entered to commit this expression element" -msgstr "この式要素をコミットする場合はレジストリーキー名を入力してください。" +msgid "4 - Change the Trend Options used to calculate the daily trends, if desired." +msgstr "4 - 日次トレンドを計算するためのトレンドオプションは変更できます。" -#: ../app/controllers/application_controller/filter.rb:829 -msgid "A registry value name must be entered to commit this expression element" -msgstr "この式要素をコミットする場合はレジストリー値名を入力してください。" +msgid "4 Days" +msgstr "4 日" -#: ../app/controllers/application_controller/filter.rb:831 -msgid "Registry Value Error: %{msg}" -msgstr "レジストリー値エラー: %{msg}" +msgid "4 Days Ago" +msgstr "4 日前" -#: ../app/controllers/application_controller/filter.rb:847 -msgid "A find field must be chosen to commit this expression element" -msgstr "この式要素をコミットする場合は検索フィールドを選択してください。" +msgid "4 Hours" +msgstr "4 時間" -#: ../app/controllers/application_controller/filter.rb:850 -msgid "A check field must be chosen to commit this expression element" -msgstr "この式要素をコミットする場合はチェックフィールドを選択してください。" +msgid "4 Hours Ago" +msgstr "4 時間前" -#: ../app/controllers/application_controller/filter.rb:853 -msgid "The check count value must be an integer to commit this expression element" -msgstr "この式要素をコミットするために、このチェックカウント値は整数でなければなりません" +msgid "4 Minutes" +msgstr "4 分" -#: ../app/controllers/application_controller/filter.rb:860 -msgid "Find Value Error: %{msg}" -msgstr "値エラーの検索: %{msg}" +msgid "4 Months" +msgstr "4 カ月" -#: ../app/controllers/application_controller/filter.rb:867 -msgid "Check Value Error: %{msg}" -msgstr "値チェックのエラー: %{msg}" +msgid "4 Months Ago" +msgstr "4 カ月前" -#: ../app/controllers/application_controller/filter.rb:903 -msgid "Select an expression element type" -msgstr "式要素タイプを選択してください" +msgid "4 Quarters Ago" +msgstr "4 半期前" -#: ../app/controllers/application_controller/filter.rb:992 -#: ../app/views/miq_capacity/_bottlenecks_options.html.haml:20 -#: ../app/views/miq_request/_prov_field.html.haml:31 -msgid "ALL" -msgstr "すべて" +msgid "4 Weeks" +msgstr "4 週間" -#: ../app/controllers/application_controller/miq_request_methods.rb:74 -msgid "Add of new %{type} Request was cancelled by the user" -msgstr "新規の%{type}要求の追加はユーザーにより取り消されました" +msgid "4 Weeks Ago" +msgstr "4 週間前" -#: ../app/controllers/application_controller/miq_request_methods.rb:197 -msgid "Edit of %{model} Request \"%{name}\" was cancelled by the user" -msgstr "%{model}の要求 \"%{name}\" の編集がユーザーにより取り消されました" +msgid "4 Years Ago" +msgstr "4 年前" -#: ../app/controllers/application_controller/miq_request_methods.rb:200 -msgid "Provision %{type} Request was cancelled by the user" -msgstr "%{type}のプロビジョニング要求はユーザーにより取り消されました" +msgid "4-5" +msgstr "4-5" -#: ../app/controllers/application_controller/miq_request_methods.rb:226 -msgid "Edit %{type}" -msgstr " %{type}の編集" +msgid "45 Minutes" +msgstr "45 分" -#: ../app/controllers/application_controller/miq_request_methods.rb:228 -msgid "Add %{type}" -msgstr "%{type}の追加" +msgid "5 - Press the Submit button." +msgstr "5 - 「送信」ボタンを押してください。" -#: ../app/controllers/application_controller/miq_request_methods.rb:308 -#: ../app/helpers/provider_configuration_manager_helper.rb:14 -#: ../app/helpers/provider_foreman_helper.rb:15 -#: ../app/helpers/storage_manager_helper/textual_summary.rb:15 -#: ../app/helpers/vm_helper/textual_summary.rb:95 -#: ../app/views/host/_config.html.haml:47 -#: ../app/views/ops/_diagnostics_database_tab.html.haml:35 -#: ../app/views/ops/_ldap_domain_show.html.haml:255 -#: ../app/views/ops/_ldap_server_entries.html.haml:17 -#: ../app/views/ops/_selected_by_servers.html.haml:22 -#: ../app/views/ops/_server_desc.html.haml:9 -#: ../app/views/ops/_settings_server_tab.html.haml:16 -#: ../app/views/storage_manager/_form.html.haml:65 -msgid "Hostname" -msgid_plural "Hostnames" -msgstr[0] "ホスト名" -msgstr[1] "ホスト名" +msgid "5 Days" +msgstr "5 日" -#: ../app/controllers/application_controller/miq_request_methods.rb:309 -#: ../app/helpers/provider_foreman_helper.rb:107 -#: ../app/helpers/provider_foreman_helper.rb:188 -msgid "Configuration Location" -msgstr "構成場所" +msgid "5 Days Ago" +msgstr "5 日前" -#: ../app/controllers/application_controller/miq_request_methods.rb:310 -#: ../app/helpers/provider_foreman_helper.rb:113 -#: ../app/helpers/provider_foreman_helper.rb:194 -msgid "Configuration Organization" -msgstr "構成組織" +msgid "5 Hours Ago" +msgstr "5 時間前" -#: ../app/controllers/application_controller/miq_request_methods.rb:312 -#: ../app/helpers/configuration_job_helper/textual_summary.rb:46 -#: ../app/helpers/provider_configuration_manager_helper.rb:33 -#: ../app/helpers/provider_foreman_helper.rb:44 -#: ../app/views/auth_key_pair_cloud/_form.html.haml:68 -#: ../app/views/catalog/_form_basic_info.html.haml:152 -#: ../app/views/catalog/_form_basic_info.html.haml:174 -#: ../app/views/catalog/_ot_add.html.haml:80 -#: ../app/views/catalog/_ot_copy.html.haml:63 -#: ../app/views/catalog/_ot_edit.html.haml:56 -#: ../app/views/catalog/_sandt_tree_show.html.haml:120 -#: ../app/views/host_aggregate/new.html.haml:59 -#: ../app/views/report/_form_filter_chargeback.html.haml:132 -msgid "Provider" -msgstr "プロバイダー" +msgid "5 Minutes" +msgstr "5 分" -#: ../app/controllers/application_controller/miq_request_methods.rb:324 -#: ../app/controllers/application_controller/miq_request_methods.rb:347 -#: ../app/controllers/application_controller/miq_request_methods.rb:376 -#: ../app/controllers/application_controller/miq_request_methods.rb:391 -#: ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:29 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:53 -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:43 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:46 -#: ../app/helpers/pxe_helper/textual_summary.rb:52 -#: ../app/helpers/pxe_helper/textual_summary.rb:76 -#: ../app/helpers/pxe_helper/textual_summary.rb:100 -#: ../app/views/alert/_rss_list.html.haml:41 -#: ../app/views/catalog/_ot_add.html.haml:34 -#: ../app/views/catalog/_ot_copy.html.haml:41 -#: ../app/views/catalog/_ot_edit.html.haml:34 -#: ../app/views/catalog/_ot_tree_show.html.haml:24 -#: ../app/views/catalog/_sandt_tree_show.html.haml:261 -#: ../app/views/catalog/_stcat_form.html.haml:43 -#: ../app/views/catalog/_stcat_tree_show.html.haml:27 -#: ../app/views/catalog/_svccat_tree_show.html.haml:44 -#: ../app/views/chargeback/_cb_rate_edit.html.haml:16 -#: ../app/views/chargeback/_cb_rate_edit_table.html.haml:10 -#: ../app/views/chargeback/_cb_rate_show.html.haml:15 -#: ../app/views/chargeback/_cb_rate_show.html.haml:40 -#: ../app/views/configuration/_timeprofile_form.html.haml:24 -#: ../app/views/configuration/_ui_4.html.haml:16 -#: ../app/views/generic_object/explorer.html.haml:26 -#: ../app/views/generic_object/explorer.html.haml:72 -#: ../app/views/generic_object/explorer.html.haml:122 -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_class_form.html.haml:61 -#: ../app/views/miq_ae_class/_class_props.html.haml:55 -#: ../app/views/miq_ae_class/_instance_form.html.haml:63 -#: ../app/views/miq_ae_class/_ns_list.html.haml:22 -#: ../app/views/miq_ae_class/_ns_list.html.haml:124 -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:52 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:252 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:350 -#: ../app/views/miq_ae_customization/_dialog_group_form.html.haml:32 -#: ../app/views/miq_ae_customization/_dialog_info.html.haml:28 -#: ../app/views/miq_ae_customization/_dialog_info_form.html.haml:33 -#: ../app/views/miq_ae_customization/_dialog_tab_form.html.haml:31 -#: ../app/views/miq_ae_customization/_field_values.html.haml:20 -#: ../app/views/miq_ae_customization/_old_dialogs_details.html.haml:36 -#: ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:36 -#: ../app/views/miq_ae_customization/_tag_field_values.html.haml:13 -#: ../app/views/miq_policy/_action_details.html.haml:21 -#: ../app/views/miq_policy/_alert_details.html.haml:23 -#: ../app/views/miq_policy/_alert_profile_details.html.haml:21 -#: ../app/views/miq_policy/_condition_details.html.haml:20 -#: ../app/views/miq_policy/_event_details.html.haml:15 -#: ../app/views/miq_policy/_event_details.html.haml:214 -#: ../app/views/miq_policy/_event_details.html.haml:394 -#: ../app/views/miq_policy/_policy_details.html.haml:24 -#: ../app/views/miq_policy/_policy_details.html.haml:225 -#: ../app/views/miq_policy/_policy_details.html.haml:317 -#: ../app/views/miq_policy/_profile_details.html.haml:22 -#: ../app/views/miq_request/_ae_prov_show.html.haml:16 -#: ../app/views/miq_request/_request.html.haml:87 -#: ../app/views/ops/_ap_form.html.haml:38 -#: ../app/views/ops/_ap_show.html.haml:32 -#: ../app/views/ops/_category_form.html.haml:136 -#: ../app/views/ops/_classification_entries.html.haml:15 -#: ../app/views/ops/_ldap_region_form.html.haml:38 -#: ../app/views/ops/_ldap_region_show.html.haml:31 -#: ../app/views/ops/_rbac_group_details.html.haml:23 -#: ../app/views/ops/_rbac_tenant_details.html.haml:30 -#: ../app/views/ops/_schedule_form.html.haml:45 -#: ../app/views/ops/_schedule_show.html.haml:9 -#: ../app/views/ops/_settings_co_categories_tab.html.haml:12 -#: ../app/views/ops/_settings_details_tab.html.haml:19 -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:29 -#: ../app/views/ops/_settings_server_tab.html.haml:678 -#: ../app/views/ops/_tenant_form.html.haml:42 -#: ../app/views/ops/_tenant_quota_form.html.haml:27 -#: ../app/views/ops/_zone_form.html.haml:37 -#: ../app/views/orchestration_stack/_copy_orchestration_template.html.haml:34 -#: ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 -#: ../app/views/pxe/_pxe_server_details.html.haml:61 -#: ../app/views/pxe/_pxe_server_details.html.haml:108 -#: ../app/views/pxe/_template_form.html.haml:34 -#: ../app/views/report/_db_list.html.haml:51 -#: ../app/views/report/_db_list.html.haml:90 -#: ../app/views/report/_report_info.html.haml:129 -#: ../app/views/report/_report_info.html.haml:248 -#: ../app/views/report/_schedule_form.html.haml:35 -#: ../app/views/report/_show_schedule.html.haml:9 -#: ../app/views/report/_widget_form.html.haml:37 -#: ../app/views/report/_widget_show.html.haml:29 -#: ../app/views/service/_service_form.html.haml:52 -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:32 -#: ../app/views/vm_common/_config.html.haml:202 -#: ../app/views/vm_common/_form.html.haml:36 -#: ../app/views/vm_common/_snap.html.haml:30 -#: ../app/views/vm_common/_snapshots_desc.html.haml:15 -msgid "Description" -msgstr "説明" +msgid "5 Months" +msgstr "5 カ月" -#: ../app/controllers/application_controller/miq_request_methods.rb:359 -#: ../app/helpers/storage_helper/textual_summary.rb:42 -msgid "Free Space" -msgstr "空き領域" - -#: ../app/controllers/application_controller/miq_request_methods.rb:360 -#: ../app/helpers/storage_helper/textual_summary.rb:55 -msgid "Total Space" -msgstr "領域の合計" +msgid "5 items" +msgstr "" -#: ../app/controllers/application_controller/miq_request_methods.rb:361 -msgid "Storage Clusters" -msgstr "ストレージクラスター" +msgid "5-6" +msgstr "5-6" -#: ../app/controllers/application_controller/miq_request_methods.rb:377 -#: ../app/controllers/application_controller/miq_request_methods.rb:392 -#: ../app/views/miq_policy/_policy_details.html.haml:91 -msgid "Last Updated" -msgstr "最終更新日" +msgid "50 items" +msgstr "" -#: ../app/controllers/application_controller/miq_request_methods.rb:408 -#: ../app/controllers/application_controller/miq_request_methods.rb:445 -msgid "Platform" -msgstr "プラットフォーム" +msgid "500 items" +msgstr "" -#: ../app/controllers/application_controller/miq_request_methods.rb:409 -#: ../app/helpers/flavor_helper/textual_summary.rb:35 -msgid "CPUs" -msgstr "CPU" +msgid "6 Days" +msgstr "6 日" -#: ../app/controllers/application_controller/miq_request_methods.rb:412 -msgid "Deprecated" -msgstr "非推奨" +msgid "6 Days Ago" +msgstr "6 日前" -#: ../app/controllers/application_controller/miq_request_methods.rb:414 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:100 -#: ../app/helpers/vm_helper/textual_summary.rb:160 -#: ../app/helpers/vm_helper/textual_summary.rb:627 -msgid "Snapshots" -msgstr "スナップショット" +msgid "6 Hours" +msgstr "6 時間" -#: ../app/controllers/application_controller/miq_request_methods.rb:438 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:70 -#: ../app/views/host/_form.html.haml:139 -msgid "MAC Address" -msgid_plural "MAC Addresses" -msgstr[0] "MAC アドレス" -msgstr[1] "MAC アドレス" +msgid "6 Hours Ago" +msgstr "6 時間前" -#: ../app/controllers/application_controller/miq_request_methods.rb:444 -msgid "Total VMs" -msgstr "仮想マシンの合計数" +msgid "6 Months" +msgstr "6 カ月" -#: ../app/controllers/application_controller/miq_request_methods.rb:447 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:118 -#: ../app/views/miq_request/_ae_prov_show.html.haml:18 -msgid "State" -msgstr "状態" +msgid "6 Months Ago" +msgstr "6 カ月前" -#: ../app/controllers/application_controller/miq_request_methods.rb:619 -msgid "" -"%{typ} Request was Submitted, you will be notified when your %{title} are read" -"y" -msgstr "%{typ}要求が送信されました。%{title}の準備ができた時点で通知が送信されます" +msgid "6-7" +msgstr "6-7" -#: ../app/controllers/application_controller/miq_request_methods.rb:619 -msgid "" -"%{typ} Request was re-submitted, you will be notified when your %{title} are r" -"eady" -msgstr "%{typ}要求が再送信されました。%{title}の準備ができた時点で通知が送信されます" +msgid "64 Bit Architecture" +msgstr "64 ビットアーキテクチャー" -#: ../app/controllers/application_controller/miq_request_methods.rb:781 -#: ../app/controllers/application_controller/miq_request_methods.rb:969 -msgid "Cannot create Request Info, error: %{error_message}" -msgstr "要求情報を作成できません、エラー: %{error_message}" +msgid "7 Days Ago" +msgstr "7 日前" -#: ../app/controllers/application_controller/performance.rb:48 -msgid "" -"No Hourly or Daily data is available, real time data from the Most Recent Hour" -" is being displayed" -msgstr "毎時データと日次データは使用できません。最近の時間に基づくリアルタイムのデータが表示されます。" +msgid "7 Hours Ago" +msgstr "7 時間前" -#: ../app/controllers/application_controller/performance.rb:52 -msgid "No Daily data is available" -msgstr "日次データは利用できません。" +msgid "7-8" +msgstr "7-8" -#: ../app/controllers/application_controller/performance.rb:175 -msgid "Refresh of recent C&U data has been initiated" -msgstr "最近の C&U データの更新が開始されました" +msgid "8 Hours" +msgstr "8 時間" -#: ../app/controllers/application_controller/performance.rb:186 -msgid "No Utilization data available" -msgstr "利用可能な使用状況データはありません" +msgid "8 Hours Ago" +msgstr "8 時間前" -#: ../app/controllers/application_controller/performance.rb:271 -msgid "No %{tag} %{model} were running %{time}" -msgstr "%{time}を実行している%{tag} %{model}はありません" +msgid "8-9" +msgstr "8-9" -#: ../app/controllers/application_controller/performance.rb:276 -msgid "%{model} (%{tag} running %{time})" -msgstr "%{model} (%{tag} 実行中、%{time})" +msgid "9 Hours Ago" +msgstr "9 時間前" -#: ../app/controllers/application_controller/performance.rb:289 -msgid "running" -msgstr "実行中" +msgid "9-10" +msgstr "9-10" -#: ../app/controllers/application_controller/performance.rb:289 -msgid "stopped" -msgstr "停止" +msgid ": About" +msgstr "" -#: ../app/controllers/application_controller/performance.rb:291 -msgid "No %{model} were %{state} %{time}" -msgstr "%{state} %{time}の%{model}はありません" +msgid ": All UI Tasks" +msgstr ": すべての UI タスク" -#: ../app/controllers/application_controller/performance.rb:318 -#: ../app/controllers/application_controller/performance.rb:355 -msgid "No events available for this Cluster" -msgstr "このクラスターに利用できるイベントはありません" +msgid ": Analysis Profiles" +msgstr ": 分析プロファイル" -#: ../app/controllers/application_controller/performance.rb:320 -#: ../app/controllers/application_controller/performance.rb:357 -msgid "No events available for this %{model}" -msgstr "この%{model}に利用できるイベントはありません" +msgid ": Automation" +msgstr "" -#: ../app/controllers/application_controller/performance.rb:512 -msgid "No %{model} were running %{time}" -msgstr "%{time}を実行している%{model}はありません" +msgid ": Chargeback" +msgstr "" -#: ../app/controllers/application_controller/performance.rb:523 -msgid "Chart menu selection not yet implemented" -msgstr "チャートメニューの選択が実装されていません" +msgid ": Configuration" +msgstr ": 構成" -#: ../app/controllers/application_controller/performance.rb:526 -msgid "Unknown error has occurred" -msgstr "不明のエラーが発生しました" +msgid ": Configuration Management" +msgstr ": 構成管理" -#: ../app/controllers/application_controller/performance.rb:596 -#: ../app/controllers/application_controller/performance.rb:609 -msgid "%{name} Capacity & Utilization (by %{option}:%{model})" -msgstr "%{name}の容量 & 使用状況 (%{option}別:%{model})" +msgid ": Control" +msgstr ": コントロール" -#: ../app/controllers/application_controller/performance.rb:600 -#: ../app/controllers/application_controller/performance.rb:615 -#: ../app/controllers/availability_zone_controller.rb:31 -#: ../app/controllers/cim_instance_controller.rb:127 -#: ../app/controllers/ems_cluster_controller.rb:74 -#: ../app/controllers/ems_common.rb:53 ../app/controllers/ems_common.rb:497 -#: ../app/controllers/host_aggregate_controller.rb:32 -#: ../app/controllers/host_controller.rb:58 -#: ../app/controllers/mixins/containers_common_mixin.rb:72 -#: ../app/controllers/storage_controller.rb:89 -#: ../app/controllers/vm_common.rb:304 -msgid "%{name} Capacity & Utilization" -msgstr "%{name} 容量 & 使用状況" +msgid ": Credentials" +msgstr "" -#: ../app/controllers/application_controller/performance.rb:725 -msgid "%{date_from} to %{date_to}" -msgstr "%{date_from} から %{date_to} まで" +msgid ": Dashboard" +msgstr "" -#: ../app/controllers/application_controller/performance.rb:1102 -msgid "Error while generating report: %{error_message}" -msgstr "レポート生成中のエラー: %{error_message}" +msgid ": Instances" +msgstr ": インスタンス" -#: ../app/controllers/application_controller/policy_support.rb:29 -msgid "Edit policy assignments was cancelled by the user" -msgstr "ポリシー割り当ての編集がユーザーにより取り消されました" +msgid ": Login" +msgstr ": ログイン" -#: ../app/controllers/application_controller/policy_support.rb:57 -msgid "Policy assignments successfully changed" -msgstr "ポリシーの割り当てが正常に変更されました" +msgid ": My UI Tasks" +msgstr ": マイ UI タスク" -#: ../app/controllers/application_controller/policy_support.rb:84 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:62 -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:78 -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:100 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:122 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:87 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:98 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:114 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:79 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:61 -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:87 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:86 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:65 -msgid "Policy Simulation" -msgstr "ポリシーシミュレーション" +msgid ": Optimize" +msgstr ": 最適化" -#: ../app/controllers/application_controller/policy_support.rb:161 -msgid "One or more %{model} must be selected to Policy assignment" -msgstr "ポリシー割り当てには 1 つ以上の%{model}が選択されている必要があります" +msgid ": PXE" +msgstr ": PXE" -#: ../app/controllers/application_controller/policy_support.rb:185 -msgid "'%{model}' Policy Assignment" -msgstr "'%{model}' ポリシーの割り当て" +msgid ": Playbooks (Ansible Tower)" +msgstr "" -#: ../app/controllers/application_controller/policy_support.rb:218 -msgid "[%{name}] Policy Profile %{mode} (db:[%{db}]" -msgstr "[%{name}] ポリシープロファイル %{mode} (db:[%{db}]" +msgid ": Policy Simulation" +msgstr ": ポリシーのシュミレーション" -#: ../app/controllers/application_controller/policy_support.rb:266 -msgid "No Policy Profiles are available" -msgstr "利用可能なポリシープロファイルはありません" +msgid ": RSS" +msgstr ": RSS" -#: ../app/controllers/application_controller/report_downloads.rb:64 -msgid "Report generation returned: Status [%{status}] Message [%{message}]" -msgstr "レポート生成が返されました: 状態 [%{status}] メッセージ [%{message}]" +msgid ": Repositories" +msgstr "" -#: ../app/controllers/application_controller/sysprep_answer_file.rb:12 -msgid "Sysprep \"%{params}\" upload was successful" -msgstr "Sysprep \"%{params}\" アップロードが正常に実行されました" +msgid ": Requests" +msgstr ": 要求" -#: ../app/controllers/application_controller/sysprep_answer_file.rb:16 -msgid "Error during Sysprep \"%{params}\" file upload: %{message}" -msgstr "Sysprep \"%{params}\" ファイルのアップロードの実行中にエラーが発生しました: %{message}" +msgid ": Servers" +msgstr ": サーバー" -#: ../app/controllers/application_controller/sysprep_answer_file.rb:22 -msgid "Use the Choose file button to locate an Upload file" -msgstr "「Choose file」ボタンを使用して Upload ファイルを検索" +msgid ": Storage - Storage Managers" +msgstr ": ストレージ - ストレージマネージャー" -#: ../app/controllers/application_controller/tags.rb:136 -msgid "One or more %{model} must be selected to Smart Tagging" -msgstr "Smart Tagging には 1 つ以上の%{model}が選択されている必要があります" +msgid ": VM Usage" +msgstr ": 仮想マシンの使用状況" -#: ../app/controllers/application_controller/tags.rb:162 -#: ../app/controllers/application_controller/tags.rb:384 -#: ../app/views/layouts/_tag_edit.html.haml:8 -msgid "Tag Assignment" -msgstr "タグの割り当て" +msgid ": Virtual Machines" +msgstr ": 仮想マシン" -#: ../app/controllers/application_controller/tags.rb:236 -msgid "Error during 'Save Tags': %{error_message}" -msgstr "'タグの保存' の実行中にエラーが発生しました: %{error_message}" +msgid ": Workloads" +msgstr ": ワークロード" -#: ../app/controllers/application_controller/tags.rb:238 -msgid "Tag edits were successfully saved" -msgstr "タグの編集が正常に保存されました" +msgid "< Back" +msgstr "< 戻る" -#: ../app/controllers/application_controller/timelines.rb:24 -msgid "No events available for this timeline" -msgstr "このタイムラインに利用できるイベントはありません" +msgid "" +msgstr "<すべての値が割り当てられています>" -#: ../app/controllers/application_controller/timelines.rb:65 -msgid "Group: %{name}" -msgstr "グループ: %{name}" +msgid "" +msgstr "" -#: ../app/controllers/application_controller/timelines.rb:106 -msgid "Report: %{name}" -msgstr "レポート: %{name}" +msgid "" +msgstr "<アーカイブ>" -#: ../app/controllers/application_controller/timelines.rb:232 -#: ../app/controllers/miq_capacity_controller.rb:724 -msgid "Error building timeline %{error_message}" -msgstr "タイムライン構築エラー %{error_message}" +msgid "" +msgstr "<グループ別>" -#: ../app/controllers/application_controller/timelines.rb:236 -#: ../app/controllers/dashboard_controller.rb:619 -#: ../app/controllers/dashboard_controller.rb:747 -#: ../app/controllers/miq_capacity_controller.rb:735 -msgid "No records found for this timeline" -msgstr "このタイムラインのレコードが見つかりませんでした" +msgid "" +msgstr "<ロール別>" -#: ../app/controllers/application_controller/timelines/options.rb:2 -msgid "Management Events" -msgstr "管理イベント" +msgid "" +msgstr "<グループの選択>" -#: ../app/controllers/application_controller/timelines/options.rb:2 -msgid "Policy Events" -msgstr "ポリシーイベント" +msgid "" +msgstr "<プロジェクト/テナントの選択>" -#: ../app/controllers/application_controller/tree_support.rb:131 -msgid "Datacenter: %{name}" -msgstr "データセンター: %{name}" +msgid "" +msgstr "<選択>" -#: ../app/controllers/application_controller/tree_support.rb:189 -msgid "Folder: %{name}" -msgstr "フォルダー: %{name}" +msgid "" +msgstr "<この行をクリックして新規 LDAP サーバーを作成する>" -#: ../app/controllers/application_controller/tree_support.rb:226 -#: ../app/presenters/tree_builder_clusters.rb:75 -#: ../app/presenters/tree_builder_network.rb:32 -#: ../app/presenters/tree_builder_storage_adapters.rb:23 -msgid "Host: %{name}" -msgstr "ホスト: %{name}" +msgid "" +msgstr "<この行をクリックして新規カテゴリーを作成する>" -#: ../app/controllers/application_controller/tree_support.rb:248 -#: ../app/presenters/tree_builder_datacenter.rb:36 -msgid "Cluster: %{name}" -msgstr "クラスター: %{name}" +msgid "" +msgstr "<この行をクリックして新規エントリーを作成する>" -#: ../app/controllers/application_controller/tree_support.rb:278 -msgid "Resource Pool: #%{name}" -msgstr "リソースプール: #%{name}" +msgid "" +msgstr "<この行をクリックして新規フォレストを作成する>" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:91 -#: ../app/controllers/auth_key_pair_cloud_controller.rb:134 -#: ../app/controllers/cloud_tenant_controller.rb:71 -#: ../app/controllers/cloud_volume_controller.rb:246 -#: ../app/controllers/cloud_volume_controller.rb:283 -msgid "Add New %{model}" -msgstr "新規%{model}の追加" +msgid "" +msgstr "<この行をクリックして新規マッピングルールを作成する>" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:109 -#: ../app/controllers/catalog_controller.rb:92 -#: ../app/controllers/catalog_controller.rb:561 -#: ../app/controllers/chargeback_controller.rb:107 -#: ../app/controllers/cloud_tenant_controller.rb:81 -#: ../app/controllers/cloud_volume_controller.rb:256 -#: ../app/controllers/host_controller.rb:266 -#: ../app/controllers/miq_ae_class_controller.rb:617 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:196 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:11 -#: ../app/controllers/miq_policy_controller/conditions.rb:13 -#: ../app/controllers/ops_controller/ops_rbac.rb:108 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:228 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:9 -#: ../app/controllers/ops_controller/settings/ldap.rb:37 -#: ../app/controllers/ops_controller/settings/ldap.rb:154 -#: ../app/controllers/ops_controller/settings/schedules.rb:48 -#: ../app/controllers/ops_controller/settings/tags.rb:41 -#: ../app/controllers/pxe_controller/iso_datastores.rb:43 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:103 -#: ../app/controllers/pxe_controller/pxe_image_types.rb:31 -#: ../app/controllers/pxe_controller/pxe_servers.rb:48 -#: ../app/controllers/report_controller/reports/editor.rb:44 -#: ../app/controllers/report_controller/schedules.rb:225 -#: ../app/controllers/report_controller/widgets.rb:47 -#: ../app/controllers/storage_manager_controller.rb:65 -msgid "Add of new %{model} was cancelled by the user" -msgstr "新規%{model}の追加はユーザーにより取り消されました" +msgid "" +msgstr "<新規エントリー>" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:117 -msgid "Creating %{model} %{name}" -msgstr "%{model} %{name}の作成" +msgid "" +msgstr "<新規 LDAP サーバー>" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:121 -msgid "Unable to create %{model} %{name}. %{error}" -msgstr "%{model} %{name} を作成できません。%{error}" +msgid "" +msgstr "<デポなし>" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:144 -#: ../app/controllers/cloud_volume_controller.rb:295 -#: ../app/controllers/cloud_volume_controller.rb:356 -msgid "Validation successful" -msgstr "検証に成功しました" +msgid "" +msgstr "<イベントが設定されていません>" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:163 -msgid "No Key Pairs were selected for deletion" -msgstr "" +msgid "" +msgstr "<図表がありません>" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:169 -#: ../app/controllers/cloud_tenant_controller.rb:214 -#: ../app/controllers/cloud_volume_controller.rb:385 -#: ../app/controllers/host_aggregate_controller.rb:333 -msgid "%{model} no longer exists." -msgstr "%{model}は存在しません。" +msgid "" +msgstr "<この仮想マシンにはメモが入力されていません>" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:174 -#: ../app/controllers/cloud_volume_controller.rb:397 -#: ../app/controllers/cloud_volume_controller.rb:403 -msgid "Couldn't initiate deletion of %{model} \"%{name}\": %{details}" -msgstr "%{model} \"%{name}\" の削除を実行できませんでした: %{details}" +msgid "" +msgstr "<なし>" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:190 -#: ../app/controllers/cloud_volume_controller.rb:420 -#: ../app/controllers/host_aggregate_controller.rb:352 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:418 -msgid "The selected %{model} was deleted" -msgstr "選択した%{model}は削除されました" +msgid "" +msgstr "<孤立状態>" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:211 -msgid "Delete initiated for %{number} Key Pair" -msgid_plural "Delete initiated for %{number} Key Pairs" -msgstr[0] "削除が %{number} キーペアに対して実行されました" -msgstr[1] "削除が %{number} キーペアに対して実行されました" - -#: ../app/controllers/availability_zone_controller.rb:19 -msgid "Availabilty Zones" -msgstr "アベイラビリティーゾーン" +msgid "" +msgstr "<インポート元と同じ>" -#: ../app/controllers/availability_zone_controller.rb:24 -#: ../app/controllers/cim_instance_controller.rb:120 -#: ../app/controllers/cloud_object_store_object_controller.rb:38 -#: ../app/controllers/cloud_volume_controller.rb:86 -#: ../app/controllers/configuration_job_controller.rb:35 -#: ../app/controllers/host_aggregate_controller.rb:25 -#: ../app/controllers/host_controller.rb:32 -#: ../app/controllers/infra_networking_controller.rb:60 -#: ../app/controllers/mixins/containers_common_mixin.rb:58 -#: ../app/controllers/mixins/generic_show_mixin.rb:33 -#: ../app/controllers/mixins/generic_show_mixin.rb:83 -#: ../app/controllers/orchestration_stack_controller.rb:29 -#: ../app/controllers/storage_manager_controller.rb:218 -msgid "%{name} (Summary)" -msgstr "%{name} (概要)" +msgid "" -msgstr "<割り当てる値の選択>" +msgid "Scale Infrastructure Provider Down" +msgstr "インフラストラクチャープロバイダーのスケールダウン" -#: ../app/views/layouts/_tag_edit_items.html.haml:5 -msgid "%{amount} %{object} Being Tagged" -msgid_plural "%{amount} %{objects} Being Tagged" -msgstr[0] "%{amount} %{object}にタグが付けられます" -msgstr[1] "%{amount} %{objects}にタグが付けられます" +msgid "Scale this Infrastructure Provider" +msgstr "このインフラストラクチャープロバイダーのスケーリング" -#: ../app/views/layouts/_tl_detail.html.haml:20 -msgid "Timeline View" -msgstr "タイムラインビュー" +msgid "Scale this Infrastructure Provider down" +msgstr "このインフラストラクチャープロバイダーのスケールダウン" -#: ../app/views/layouts/_tl_detail.html.haml:25 -msgid "Select your desired settings and click the apply button to view timeline data." -msgstr "必要な設定を選択し、適用のボタンをクリックしてタイムラインデータを表示します。" +msgid "Scaling" +msgstr "サイズ調整" -#: ../app/views/layouts/_tl_options.html.haml:13 -msgid "Options %{model}: %{name}" -msgstr "オプションの%{model}: %{name}" +msgid "Scan History" +msgid_plural "Scan History" +msgstr[0] "スキャン履歴" +msgstr[1] "スキャン履歴" -#: ../app/views/layouts/_tl_options.html.haml:68 -msgid "Show Detailed Events" -msgstr "詳細イベントの表示" +msgid "Scanning" +msgstr "スキャン中" -#: ../app/views/layouts/_tl_options.html.haml:78 -msgid "Successful Events" -msgstr "成功したイベント" +msgid "Schedule Info" +msgstr "スケジュール情報" -#: ../app/views/layouts/_tl_options.html.haml:85 -msgid "Failed Events" -msgstr "失敗したイベント" +msgid "Schedules" +msgstr "スケジュール" -#: ../app/views/layouts/_tl_options.html.haml:92 -msgid "Both" -msgstr "両方" +msgid "Schema" +msgstr "スキーマ" -#: ../app/views/layouts/_tl_options.html.haml:116 -msgid "Months" -msgstr "カ月" +msgid "Schema for %{model} \"%{name}\" was saved" +msgstr " %{model} \"%{name}\" のスキーマが保存されました" -#: ../app/views/layouts/_tl_options.html.haml:116 -msgid "Weeks" -msgstr "週" +msgid "Scope" +msgstr "スコープ" -#: ../app/views/layouts/_tl_options.html.haml:124 -msgid "centered" -msgstr "中間" +msgid "Scope (Choose an element of the Policy scope to edit)" +msgstr "スコープ (編集するポリシーの要素を選んでください)" -#: ../app/views/layouts/_tl_options.html.haml:124 -msgid "ending" -msgstr "終了" +msgid "Scope (Choose an element of the scope to edit)" +msgstr "スコープ (編集するスコープの要素を選んでください)" -#: ../app/views/layouts/_tl_show.html.haml:15 -msgid "* Dates/Times on this page are based on time zone: %{time_zone}." -msgstr "* このページの日付/時間は、タイムゾーン %{time_zone} に基づいています。" +msgid "Scope (Press the \"Edit\" button to edit the scope)" +msgstr "スコープ (スコープを編集するには \"編集\" ボタンを押してください)" -#: ../app/views/layouts/_user_input_filter.html.haml:110 -msgid "Apply the current filter (Enter)" -msgstr "現在のフィルターの適用 (入力)" +msgid "Scopes / Expressions" +msgstr "スコープ / 式" -#: ../app/views/layouts/_user_input_filter.html.haml:123 -msgid "Cancel (Esc)" -msgstr "取り消し (Esc)" +msgid "Script" +msgstr "スクリプト" -#: ../app/views/layouts/_user_options.html.haml:22 -msgid "Server: %{appliance_name}" -msgstr "サーバー: %{appliance_name}" +msgid "Search" +msgstr "検索" -#: ../app/views/layouts/_user_options.html.haml:32 -msgid "Change Group" -msgstr "グループの変更" +msgid "Search Expression" +msgstr "検索式" -#: ../app/views/layouts/_user_options.html.haml:40 -msgid "Currently Selected Group" -msgstr "現在選択されているグループ" +msgid "Search Expression Preview" +msgstr "検索式のプレビュー" -#: ../app/views/layouts/_user_options.html.haml:45 -msgid "Current Group" -msgstr "現在のグループ" +msgid "Search Name is required" +msgstr "検索名が必要です" -#: ../app/views/layouts/_user_options.html.haml:52 -msgid "Change to this Group" -msgstr "このグループに変更する" +msgid "Search by Name within results" +msgstr "結果内の名前で検索" -#: ../app/views/layouts/_user_options.html.haml:83 -msgid "Click to Logout" -msgstr "クリックしてログアウトする" +msgid "Second" +msgstr "秒" -#: ../app/views/layouts/_user_options.html.haml:85 -msgid "Logout" -msgstr "ログアウト" +msgid "Secondary (Display) Filter" +msgstr "セカンダリー (表示) フィルター" -#: ../app/views/layouts/_user_options.html.haml:93 -msgid "Logging into" -msgstr "ログイン" +msgid "Secondary (Display) Filter - Filters the rows based on child table fields" +msgstr "セカンダリー (表示) フィルター - 子テーブルフィールドに基づく行のフィルタリング" -#: ../app/views/layouts/_x_edit_buttons.html.haml:62 -#: ../app/views/layouts/_x_edit_buttons.html.haml:201 -msgid "Download Report to YAML" -msgstr "レポートを YAML にダウンロード" +msgid "Secret Access Key" +msgstr "シークレットアクセスキー" -#: ../app/views/layouts/_x_edit_buttons.html.haml:63 -#: ../app/views/layouts/_x_edit_buttons.html.haml:201 -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:100 -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:106 -#: ../app/views/miq_ae_tools/_import_export.html.haml:138 -#: ../app/views/miq_policy/_export.html.haml:84 -#: ../app/views/miq_policy/_export.html.haml:149 -#: ../app/views/report/_export_custom_reports.html.haml:63 -#: ../app/views/report/_export_widgets.html.haml:112 -#: ../app/views/report/_export_widgets.html.haml:139 -msgid "Export" -msgstr "エクスポート" +msgid "Secret Access Keys do not match" +msgstr "シークレットアクセスキーが一致しません" -#: ../app/views/layouts/_x_edit_buttons.html.haml:85 -#: ../app/views/vm_common/_snap.html.haml:63 -msgid "Create" -msgstr "作成" +msgid "Secret Key" +msgstr "シークレットキー" -#: ../app/views/layouts/_x_edit_buttons.html.haml:123 -#: ../app/views/layouts/_x_edit_buttons.html.haml:165 -msgid "Reset All menus to %{product} defaults" -msgstr "すべてのメニューを %{product} デフォルトにリセット" +msgid "Secret Name" +msgstr "シークレット名" -#: ../app/views/layouts/_x_pagingcontrols.html.haml:18 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:151 -#: ../app/views/miq_ae_class/_class_instances.html.haml:14 -#: ../app/views/miq_ae_class/_class_methods.html.haml:14 -#: ../app/views/miq_ae_class/_ns_details.html.haml:13 -#: ../app/views/miq_ae_class/_ns_list.html.haml:15 -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:59 -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:112 -msgid "Check All" -msgstr "すべてをチェック" +msgid "Section" +msgstr "セクション" -#: ../app/views/layouts/_x_pagingcontrols.html.haml:96 -#: ../app/views/layouts/_x_pagingcontrols.html.haml:99 -msgid "%{start_number}-%{end_number} of %{total_items}" -msgstr "" +msgid "Security" +msgstr "セキュリティー" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:6 -#: ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:6 -msgid "New " -msgstr "新規" +msgid "Security Domain" +msgstr "セキュリティードメイン" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:7 -#: ../app/views/ops/_rbac_user_details.html.haml:116 -#: ../app/views/storage_manager/_form.html.haml:205 -msgid "Confirm Password" -msgstr "パスワードの確認" +msgid "Security Group \"%{name}\" created" +msgstr "" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:13 -#: ../app/views/layouts/angular/_auth_credentials_angular.html.haml:83 -msgid "Passwords do not match" -msgstr "パスワードが一致しません" +msgid "Security Group \"%{name}\" updated" +msgstr "" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:16 -#: ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:6 -msgid "" -"Server information, Username and matching password fields are needed to perfor" -"m verification of credentials" -msgstr "サーバー情報、ユーザー名および一致するパスワードフィールドは認証情報の検証を実行する際に必要です。" +msgid "Security Group Description" +msgstr "" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:54 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:36 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:88 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:124 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:212 -#: ../app/views/layouts/angular/_auth_service_account_angular.html.haml:33 -#: ../app/views/provider_foreman/_form.html.haml:130 -msgid "Spaces are prohibited" -msgstr "スペースは禁止されています" +msgid "Security Group Information" +msgstr "" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:59 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:146 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:172 -msgid "Invalid input format, please enter a GUID" -msgstr "無効な入力形式です。GUID を入力してください。" +msgid "Security Group Name" +msgstr "" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:11 -msgid "Change stored private key" -msgstr "保存された秘密鍵の変更" +msgid "Security Group creation: Task start failed: ID [%{id}]" +msgstr "" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:12 -msgid "Cancel private key change" -msgstr "秘密鍵の変更を取り消し" +msgid "Security Group no longer exists." +msgstr "" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:13 -msgid "" -"Server information, username and private key fields are needed to perform veri" -"fication of credentials" -msgstr "サーバー情報、ユーザー名および秘密鍵フィールドは認証情報の検証を実行する際に必要です。" +msgid "Security Group update failed: Task start failed: ID [%{id}]" +msgstr "" -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:78 -msgid "Must be a number (greater than 0)" -msgstr "数字 (1 以上) にする必要があります" +msgid "Security Groups" +msgstr "セキュリティーグループ" -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:102 -#: ../app/views/ops/_diagnostics_database_tab.html.haml:51 -msgid "Database Name" -msgstr "データベース名" +msgid "Security Protocol" +msgstr "セキュリティープロトコル" -#: ../app/views/layouts/angular/_auth_credentials_angular.html.haml:55 -msgid "Verify %{password_label}" -msgstr "%{password_label}の検証" +msgid "Select" +msgstr "選択" -#: ../app/views/layouts/angular/_auth_service_account_angular.html.haml:13 -msgid "Service Account JSON" -msgstr "サービスアカウント JSON" +msgid "Select %{host} to validate against" +msgstr "検証対象の %{host} を選択" -#: ../app/views/layouts/angular/_form_button_submit_angular.html.haml:1 -msgid "Run a Database backup now" -msgstr "データベースのバックアップを今すぐ実行" +msgid "Select Alerts to be Evaluated" +msgstr "評価するアラートを選択" -#: ../app/views/layouts/angular/_form_button_submit_angular.html.haml:2 -msgid "Username and matching password fields are needed to run a database backup" -msgstr "データベースバックアップを実行するには、ユーザー名フィールドと、一致するパスワードフィールドが必要です" +msgid "Select All" +msgstr "すべてを選択" -#: ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:2 -msgid "Validate the credentials by logging into the selected %{title_for_host}" -msgstr "選択した %{title_for_host} にログインして認証情報を検証" +msgid "Select Ceilometer if eventing is not enabled on AMQP." +msgstr "AMQP で有効にされているものがない場合は Ceilometer を選択します。" -#: ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:3 -msgid "" -"%{host} to validate against, Username and matching password fields are needed " -"to perform verification of credentials" -msgstr "検証対象の%{host} 、ユーザー名および一致するパスワードフィールドが認証情報を確認するために必要です" +msgid "Select Classes to copy" +msgstr "コピーするクラスの選択" -#: ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:44 -msgid "Validation Required" -msgstr "検証が必要です" +msgid "Select Destination Host" +msgstr "宛先ホストの選択" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:38 -msgid "Hawkular" -msgstr "Hawkular" +msgid "Select Dialogs to import" +msgstr "インポートするダイアログの選択" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 -msgid "" -"Access Key ID and matching Secret Access Key fields are needed to perform veri" -"fication of credentials" -msgstr "認証情報の確認を行う場合はアクセスキー ID フィールドおよび一致する秘密のアクセスキーフィールドが必要になります。" +msgid "Select Entry Point %{entry_point}" +msgstr "エントリーポイント %{entry_point} の選択" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 -msgid "Cancel secret access key change" -msgstr "シークレットアクセスキーの変更を取り消し" +msgid "Select Host to validate against" +msgstr "検証対象のホストを選択" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 -msgid "Change stored secret access key" -msgstr "保存されたシークレットアクセスキーの変更" +msgid "Select Instances to copy" +msgstr "コピーするインスタンスの選択" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 -msgid "Confirm Secret Access Key" -msgstr "シークレットアクセスキーの確認" +msgid "Select Methods to copy" +msgstr "コピーするメソッドの選択" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 -msgid "Secret Access Keys do not match" -msgstr "シークレットアクセスキーが一致しません" +msgid "Select Policy Profiles" +msgstr "ポリシープロファイルの選択" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:136 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:155 -msgid "Cancel stored token" -msgstr "保存済みトークンの取り消し" +msgid "Select Server:" +msgstr "サーバーの選択:" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:136 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:155 -msgid "Change stored token" -msgstr "保存されたトークンの変更" +msgid "Select Start date and End date to Collect C & U Data" +msgstr "C & U データを収集する開始日と終了日を選択" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:136 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:155 -msgid "Confirm Token" -msgstr "トークンの確認" +msgid "Select Tags to apply" +msgstr "適用するタグの選択" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:136 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:155 -msgid "Tokens do not match" -msgstr "トークンが一致しません" +msgid "Select a Group:" +msgstr "グループの選択:" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:180 -msgid "Copy and paste the contents of your Service Account JSON file above." -msgstr "サービスアカウント JSON ファイルの内容がコピー&ペーストされます。" +msgid "Select a Policy Profile to add:" +msgstr "追加するポリシープロファイルの選択:" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:191 -msgid "Used to authenticate as a service account against your provider." -msgstr "プロバイダーに対するサービスアカウントの認証に使用されます。" +msgid "Select a Tag to Apply" +msgstr "適用するタグの選択" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:207 -msgid "Required. Used to gather Utilization data." -msgstr "必須: 使用状況データの収集に使用されます。" +msgid "Select a VM to Submit the Simulation Options" +msgstr "仮想マシンを選択してシミュレーションのオプションを送信" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:335 -msgid "Select Ceilometer if eventing is not enabled on AMQP." -msgstr "AMQP で有効にされているものがない場合は Ceilometer を選択します。" +msgid "Select a customer tag to assign:" +msgstr "割り当てるカスタマータグの選択:" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:346 -msgid "" -"Enable event monitoring. Used to automatically resync state when changes are p" -"erformed on VMware vCloud Director directly." -msgstr "エベント監視を有効にします。VMware vCloud Director で直接変更が行われたときに状態を自動的に再同期するために使用されます。" +msgid "Select a filter to set it as my default" +msgstr "デフォルトに設定するフィルターの選択" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:351 -msgid "Disable event monitoring." -msgstr "イベント監視を無効にします。" +msgid "Select a node on the left to view Bottlenecks report." +msgstr "左側のノードを選択してボトルネックレポートを表示します。" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:413 -msgid "hawkular URL and API port fields are needed to perform validation." -msgstr "Hawkular URL および API ポートフィールドは、検証を実行するために必要です。" +msgid "Select a node on the left to view Bottlenecks timeline." +msgstr "左側のノードを選択してボトルネックタイムラインを表示します。" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:493 -msgid "" -"IPMI IP Address, Username and matching password fields are needed to perform v" -"erification of credentials" -msgstr "IPMI IP アドレス、ユーザー名および一致するパスワードフィールドは認証情報の検証を実行する際に必要です。" +msgid "Select a node on the left to view Utilization information." +msgstr "左側のノードを選択して使用状況についての情報を表示します。" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:627 -msgid "Select Host to validate against" -msgstr "検証対象のホストを選択" +msgid "Select a node on the left to view Utilization report." +msgstr "左側のノードを選択して使用状況についてのレポートを表示します。" -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:19 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:19 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:27 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:27 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:35 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:35 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:43 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:43 -#: ../app/views/ops/_settings_replication_tab.html.haml:500 -#: ../app/views/ops/_settings_replication_tab.html.haml:506 -#: ../app/views/static/buttons.html.haml:41 -#: ../app/views/static/buttons.html.haml:42 -#: ../app/views/vm_common/_reconfigure.html.haml:413 -#: ../app/views/vm_common/_reconfigure.html.haml:413 -msgid "Reset changes" -msgstr "変更のリセット" +msgid "Select a reference VM or Manual Input source to Submit the Planning Options" +msgstr "参照する仮想マシンまたは手動入力情報源を選択して計画オプションを送信" -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:19 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:19 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:27 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:27 -#: ../app/views/static/buttons.html.haml:22 -#: ../app/views/static/buttons.html.haml:23 -#: ../app/views/static/buttons.html.haml:32 -#: ../app/views/static/buttons.html.haml:33 -msgid "Save changes" -msgstr "変更の保存" +msgid "Select a single Arbitration Profile to edit" +msgstr "編集する単一のアービトレーションプロファイルを選択" -#: ../app/views/layouts/exp_atom/_edit_count.html.haml:24 -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:31 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:27 -#: ../app/views/layouts/exp_atom/_edit_tag.html.haml:34 -msgid "Use Alias" -msgstr "エイリアスの使用" +msgid "Select a single Cloud Provider to edit" +msgstr "編集する単一クラウドプロバイダーの選択" -#: ../app/views/layouts/exp_atom/_edit_count.html.haml:46 -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:157 -#: ../app/views/layouts/exp_atom/_edit_tag.html.haml:54 -msgid "user input" -msgstr "ユーザー入力" +msgid "Select a single Cloud Tenant to edit" +msgstr "編集する単一クラウドテナントの選択" -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:63 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:48 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:178 -#: ../app/views/miq_request/_pre_prov.html.haml:81 -#: ../app/views/miq_request/_prov_vm_grid.html.haml:91 -#: ../app/views/miq_request/_prov_vm_grid.html.haml:161 -#: ../app/views/report/_form_styling.html.haml:79 -msgid "false" -msgstr "false" +msgid "Select a single Containers Provider to edit" +msgstr "編集する単一コンテナープロバイダーの選択" -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:63 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:48 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:178 -#: ../app/views/miq_request/_pre_prov.html.haml:81 -#: ../app/views/miq_request/_prov_vm_grid.html.haml:91 -#: ../app/views/miq_request/_prov_vm_grid.html.haml:161 -#: ../app/views/report/_form_styling.html.haml:79 -msgid "true" -msgstr "true" +msgid "Select a single Customization Templates to copy" +msgstr "コピーする単一のカスタマイズテンプレートを選択" -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:103 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:216 -msgid "THROUGH" -msgstr "スルー" +msgid "Select a single Customization Templates to edit" +msgstr "編集する単一のカスタマイズテンプレートを選択" -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:134 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:115 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:247 -msgid "Click to change to a relative Date/Time format" -msgstr "クリックして相対的な日付/時間の形式に変更する" +msgid "Select a single Datawarehouse Providers to edit" +msgstr "" -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:144 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:125 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:257 -msgid "Click to change to a specific Date/Time format" -msgstr "クリックして特定の日付/時間の形式に変更する" +msgid "Select a single Domains to edit" +msgstr "編集する単一のドメインを選択" -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:151 -msgid "Check Any" -msgstr "いずれかをチェック" +msgid "Select a single Group to edit" +msgstr "編集する単一のグループを選択" -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:151 -msgid "Check Count" -msgstr "vCPU 数" +msgid "Select a single Host Aggregate to Add Host" +msgstr "ホストを追加する単一ホストアグリゲートの選択" -#: ../app/views/layouts/exp_atom/_edit_regkey.html.haml:6 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review.html.haml:9 -msgid "Key:" -msgstr "キー:" +msgid "Select a single Host Aggregate to Remove Host" +msgstr "ホストを削除する単一ホストアグリゲートの選択" -#: ../app/views/layouts/exp_atom/_edit_regkey.html.haml:14 -msgid "Value:" -msgstr "値:" +msgid "Select a single Host Aggregate to edit" +msgstr "編集する単一ホストアグリゲートの選択" -#: ../app/views/layouts/exp_atom/_edit_regkey.html.haml:30 -msgid "Data:" -msgstr "データ:" +msgid "Select a single Image to Provision Instances" +msgstr "インスタンスをプロビジョニングするための単一のイメージを選択" -#: ../app/views/layouts/exp_atom/_editor.html.haml:29 -#: ../app/views/report/_menu_form1.html.haml:79 -msgid "Commit expression element changes" -msgstr "式要素の変更のコミット" +msgid "Select a single Infrastructure Provider to edit" +msgstr "編集する単一インフラストラクチャープロバイダーの選択" -#: ../app/views/layouts/exp_atom/_editor.html.haml:41 -#: ../app/views/report/_menu_form1.html.haml:92 -msgid "Discard expression element changes" -msgstr "式要素の変更を破棄" +msgid "Select a single Instance to edit" +msgstr "編集する単一のインスタンスを選択" -#: ../app/views/layouts/exp_atom/_editor.html.haml:57 -msgid "NOT" -msgstr "NOT" +msgid "Select a single Item to edit" +msgstr "編集する単一の項目を選択" -#: ../app/views/layouts/exp_atom/_editor.html.haml:94 -msgid "User will input the value" -msgstr "ユーザーによる値の入力" +msgid "Select a single LDAP Region to edit" +msgstr "編集する単一の LDAP リージョンを選択" -#: ../app/views/layouts/gtl/_list.html.haml:117 -#: ../app/views/layouts/gtl/_list.html.haml:196 -#: ../app/views/ops/_settings_server_tab.html.haml:56 -msgid "Click to view this VM" -msgstr "クリックしてこの仮想マシンを表示する" +msgid "Select a single Method to edit" +msgstr "編集する単一のメソッドを選択" -#: ../app/views/layouts/gtl/_list.html.haml:202 -#: ../app/views/layouts/gtl/_list.html.haml:313 -msgid "%{agent} record no longer exists" -msgstr "%{agent}レコードは存在しません" +msgid "Select a single Middleware Providers to edit" +msgstr "編集する単一ミドルウェアプロバイダーの選択" -#: ../app/views/layouts/gtl/_list.html.haml:206 -msgid "Click to view %{record}" -msgstr "クリックして%{record}を表示する" +msgid "Select a single Namespace to edit" +msgstr "編集する単一のネームスペースを選択" -#: ../app/views/layouts/gtl/_list.html.haml:209 -msgid "No task target captured" -msgstr "キャプチャーされたタスクのターゲットがありません" +msgid "Select a single Network Provider to edit" +msgstr "編集する単一ネットワークプロバイダーの選択" -#: ../app/views/layouts/gtl/_list.html.haml:214 -msgid "Click to view target %{model}" -msgstr "クリックしてターゲット%{model}を表示する" +msgid "Select a single PXE Servers to edit" +msgstr "編集する単一の PXE サーバーを選択" -#: ../app/views/layouts/gtl/_list.html.haml:216 -msgid "%{number} bytes" -msgstr "%{number} バイト" +msgid "Select a single Role to copy" +msgstr "コピーする単一のロールを選択" -#: ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:12 -#: ../app/views/layouts/listnav/_availability_zone.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_network.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_object_store_object.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_subnet.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:12 -#: ../app/views/layouts/listnav/_configuration_job.html.haml:12 -#: ../app/views/layouts/listnav/_container_build.html.haml:12 -#: ../app/views/layouts/listnav/_container_group.html.haml:12 -#: ../app/views/layouts/listnav/_container_image.html.haml:12 -#: ../app/views/layouts/listnav/_container_image_registry.html.haml:12 -#: ../app/views/layouts/listnav/_container_node.html.haml:12 -#: ../app/views/layouts/listnav/_container_project.html.haml:12 -#: ../app/views/layouts/listnav/_container_replicator.html.haml:12 -#: ../app/views/layouts/listnav/_container_route.html.haml:12 -#: ../app/views/layouts/listnav/_container_service.html.haml:12 -#: ../app/views/layouts/listnav/_container_template.html.haml:12 -#: ../app/views/layouts/listnav/_ems_cloud.html.haml:12 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:13 -#: ../app/views/layouts/listnav/_ems_container.html.haml:12 -#: ../app/views/layouts/listnav/_ems_datawarehouse.html.haml:10 -#: ../app/views/layouts/listnav/_ems_infra.html.haml:14 -#: ../app/views/layouts/listnav/_ems_middleware.html.haml:10 -#: ../app/views/layouts/listnav/_ems_network.html.haml:10 -#: ../app/views/layouts/listnav/_ems_storage.html.haml:10 -#: ../app/views/layouts/listnav/_flavor.html.haml:12 -#: ../app/views/layouts/listnav/_floating_ip.html.haml:12 -#: ../app/views/layouts/listnav/_host.html.haml:36 -#: ../app/views/layouts/listnav/_host_aggregate.html.haml:12 -#: ../app/views/layouts/listnav/_load_balancer.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_datasource.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_deployment.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_domain.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_messaging.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_server.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_server_group.html.haml:12 -#: ../app/views/layouts/listnav/_miq_ae_class.html.haml:12 -#: ../app/views/layouts/listnav/_network_port.html.haml:12 -#: ../app/views/layouts/listnav/_network_router.html.haml:12 -#: ../app/views/layouts/listnav/_ontap_file_share.html.haml:12 -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:13 -#: ../app/views/layouts/listnav/_ontap_storage_system.html.haml:12 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:12 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:12 -#: ../app/views/layouts/listnav/_persistent_volume.html.haml:12 -#: ../app/views/layouts/listnav/_pxe_server.html.haml:12 -#: ../app/views/layouts/listnav/_resource_pool.html.haml:13 -#: ../app/views/layouts/listnav/_security_group.html.haml:12 -#: ../app/views/layouts/listnav/_service.html.haml:12 -#: ../app/views/layouts/listnav/_storage.html.haml:13 -#: ../app/views/layouts/listnav/_storage_manager.html.haml:12 -msgid "Show Summary" -msgstr "概要の表示" +msgid "Select a single Role to edit" +msgstr "編集する単一のロールを選択" -#: ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:23 -#: ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:29 -#: ../app/views/layouts/listnav/_miq_ae_class.html.haml:19 -msgid "Instances (%{count})" -msgstr "インスタンス (%{count})" +msgid "Select a single Storage Manager to edit" +msgstr "編集する単一のストレージマネージャーを選択" -#: ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:29 -#: ../app/views/layouts/listnav/_availability_zone.html.haml:28 -#: ../app/views/layouts/listnav/_cloud_network.html.haml:25 -#: ../app/views/layouts/listnav/_cloud_subnet.html.haml:25 -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:35 -#: ../app/views/layouts/listnav/_flavor.html.haml:31 -#: ../app/views/layouts/listnav/_host_aggregate.html.haml:28 -#: ../app/views/layouts/listnav/_load_balancer.html.haml:25 -#: ../app/views/layouts/listnav/_network_router.html.haml:25 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:38 -#: ../app/views/layouts/listnav/_security_group.html.haml:25 -msgid "Show all Instances" -msgstr "すべてのインスタンスの表示" +msgid "Select a single System Image Type to edit" +msgstr "編集する単一のシステムイメージタイプを選択" -#: ../app/views/layouts/listnav/_availability_zone.html.haml:22 -msgid "Show this Availability Zone's parent Cloud Provider" -msgstr "このアベイラビリティーゾーンの親クラウドプロバイダーの表示" +msgid "Select a single Template to Provision VMs" +msgstr "仮想マシンをプロビジョニングするための単一のテンプレートを選択" -#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:28 -#: ../app/views/layouts/listnav/_cloud_object_store_object.html.haml:28 -msgid "%{table}: %{name}" -msgstr "%{table}: %{name}" +msgid "Select a single Template to edit" +msgstr "編集する単一のテンプレートを選択" -#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:37 -#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:44 -msgid "%{table} (%{count})" -msgstr "%{table} (%{count})" +msgid "Select a single Time Profile to copy" +msgstr "コピーする単一の時間プロファイルを選択" -#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:44 -msgid "Show this Cloud Object Store's child %{children}'" -msgstr "このクラウドオブジェクトストアの子%{children}の表示" +msgid "Select a single Time Profile to edit" +msgstr "編集する単一の時間プロファイルを選択" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:22 -msgid "Show this Cloud Tenant's parent Cloud Provider" -msgstr "このクラウドテナントの親クラウドプロバイダーの表示" +msgid "Select a single User to copy" +msgstr "コピーする単一のユーザーを選択" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:28 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:46 -msgid "Show all Security Groups" -msgstr "すべてのセキュリティーグループの表示" +msgid "Select a single User to edit" +msgstr "編集する単一のユーザーを選択" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:42 -msgid "Show all Images" -msgstr "すべてのイメージの表示" +msgid "Select a single Volume to edit" +msgstr "編集する単一ボリュームの選択" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:49 -msgid "Show all Volumes" -msgstr "すべてのボリュームの表示" +msgid "Select a single item to edit" +msgstr "編集する単一の項目を選択" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:56 -msgid "Show all Volume Snapshots" -msgstr "すべてのボリュームスナップショットの表示" +msgid "Select a single item to manage quotas" +msgstr "クォータを管理する単一の項目を選択" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:63 -msgid "Cloud Object Stores" -msgstr "クラウドオブジェクトストア" +msgid "Select a single service to edit" +msgstr "編集する単一のサービスを選択" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:63 -msgid "Show all Cloud Object Stores" -msgstr "すべてのクラウドオブジェクトストアの表示" +msgid "Select a worker to restart" +msgstr "再起動するワーカーを選択" -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:28 -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:36 -msgid "Show this Cloud Volume's parent %{parent}" -msgstr "このクラウドボリュームの親%{parent}の表示" +msgid "Select an Owner:" +msgstr "所有者の選択:" -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:45 -msgid "%{children} (0)" -msgstr "%{children} (0)" +msgid "Select an expression element type" +msgstr "式要素タイプを選択してください" -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:51 -msgid "%{children} (%{count})" -msgstr "%{children} (%{count})" +msgid "Select authenticaton type" +msgstr "認証タイプの選択" -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:51 -msgid "Show all %{children}" -msgstr "すべての%{children}の表示" +msgid "Select currency: " +msgstr "通貨の選択:" -#: ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:22 -#: ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:30 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:22 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:30 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:53 -msgid "%{model}: %{name}" -msgstr "%{model}: %{name}" +msgid "Select domain you wish to import from:" +msgstr "インポート元となるドメインの選択:" -#: ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:22 -#: ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:30 -msgid "Show this Backup's parent %{parent}" -msgstr "このバックアップの親 %{parent} の表示" +msgid "Select existing domain to import into:" +msgstr "情報をインポートする既存ドメインの選択:" -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:22 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:30 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:53 -msgid "Show this Snapshot's parent %{parent}" -msgstr "このスナップショットの親%{parent}の表示" +msgid "Select items to configure" +msgstr "設定する項目の選択" -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:39 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:45 -msgid "Cloud Volumes based on Snapshot (%{count})" -msgstr "スナップショットをベースとするクラウドボリューム (%{count})" +msgid "Select namespaces you wish to import:" +msgstr "インポートする名前空間の選択:" -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:45 -msgid "Show all Cloud Volumes based on this Snapshot" -msgstr "このスナップショットをベースとするすべてのクラウドボリュームの表示" +msgid "Select one or more Groups to delete" +msgstr "1 つ以上のグループを選択して削除します" -#: ../app/views/layouts/listnav/_compare_sections.html.haml:153 -msgid "Comparison Sections" -msgstr "比較セクション" +msgid "Select one or more LDAP Regions to delete" +msgstr "1 つ以上の LDAP リージョンを選択して削除します" -#: ../app/views/layouts/listnav/_compare_sections.html.haml:153 -msgid "Drift Sections" -msgstr "ドリフトセクション" +msgid "Select one or more Users to delete" +msgstr "1 人以上のユーザーを選択して削除します" -#: ../app/views/layouts/listnav/_compare_sections.html.haml:163 -#: ../app/views/layouts/listnav/_compare_sections.html.haml:163 -msgid "Apply sections" -msgstr "セクションの適用" +msgid "Select one or more consecutive groups to move up or down." +msgstr "1 つ以上の連続するグループを選択して上下に移動します。" -#: ../app/views/layouts/listnav/_configuration_job.html.haml:24 -msgid "Show parent %s for this Job" -msgstr "このジョブの親%sの表示" +msgid "Select one or more items to delete" +msgstr "1 つ以上の項目を選択して削除します" -#: ../app/views/layouts/listnav/_configuration_job.html.haml:32 -msgid "Show service %s for this Job" -msgstr "このジョブのサービス%sの表示" +msgid "Select only one or consecutive %{member} to move down" +msgstr "1 つまたは連続する%{member}のみを選択して下に移動します" -#: ../app/views/layouts/listnav/_configuration_job.html.haml:37 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:58 -msgid "Show all Parameters" -msgstr "すべてのパラメーターの表示" +msgid "Select only one or consecutive %{member} to move up" +msgstr "1 つまたは連続する%{member}のみを選択して上に移動します" -#: ../app/views/layouts/listnav/_container_group.html.haml:19 -#: ../app/views/layouts/listnav/_container_group.html.haml:27 -#: ../app/views/layouts/listnav/_container_node.html.haml:19 -#: ../app/views/layouts/listnav/_container_node.html.haml:27 -#: ../app/views/layouts/listnav/_container_project.html.haml:19 -#: ../app/views/layouts/listnav/_container_project.html.haml:27 -#: ../app/views/layouts/listnav/_container_replicator.html.haml:19 -#: ../app/views/layouts/listnav/_container_replicator.html.haml:27 -#: ../app/views/layouts/listnav/_container_service.html.haml:19 -#: ../app/views/layouts/listnav/_container_service.html.haml:27 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:26 -#: ../app/views/layouts/listnav/_ems_container.html.haml:19 -#: ../app/views/layouts/listnav/_ems_container.html.haml:27 -#: ../app/views/layouts/listnav/_host.html.haml:71 -#: ../app/views/layouts/listnav/_storage.html.haml:18 -msgid "Capacity & Utilization" -msgstr "容量 & 使用状況" +msgid "Select only one or consecutive %{name} to move down" +msgstr "1 つまたは連続する%{name}のみを選択して下に移動します" -#: ../app/views/layouts/listnav/_container_group.html.haml:19 -#: ../app/views/layouts/listnav/_container_node.html.haml:19 -#: ../app/views/layouts/listnav/_container_project.html.haml:19 -#: ../app/views/layouts/listnav/_container_replicator.html.haml:19 -#: ../app/views/layouts/listnav/_container_service.html.haml:19 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:26 -#: ../app/views/layouts/listnav/_ems_container.html.haml:19 -#: ../app/views/layouts/listnav/_host.html.haml:71 -#: ../app/views/layouts/listnav/_storage.html.haml:18 -msgid "Show Capacity & Utilization" -msgstr "容量 & 使用状況の表示" +msgid "Select only one or consecutive %{name} to move up" +msgstr "1 つまたは連続する%{name}のみを選択して上に移動します" -#: ../app/views/layouts/listnav/_container_group.html.haml:34 -#: ../app/views/layouts/listnav/_container_node.html.haml:34 -#: ../app/views/layouts/listnav/_container_project.html.haml:34 -#: ../app/views/layouts/listnav/_container_replicator.html.haml:34 -#: ../app/views/layouts/listnav/_ems_cloud.html.haml:14 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:32 -#: ../app/views/layouts/listnav/_ems_container.html.haml:34 -#: ../app/views/layouts/listnav/_ems_infra.html.haml:17 -#: ../app/views/layouts/listnav/_ems_network.html.haml:15 -#: ../app/views/layouts/listnav/_ems_storage.html.haml:16 -#: ../app/views/layouts/listnav/_host.html.haml:77 -msgid "Show Timelines" -msgstr "タイムラインの表示" +msgid "Select only one or consecutive fields to move down" +msgstr "1 つまたは連続するフィールドのみを選択して下に移動します" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:19 -msgid "Show configuration" -msgstr "構成の表示" +msgid "Select only one or consecutive fields to move to the bottom" +msgstr "1 つまたは連続するフィールドのみを選択して一番下に移動します" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:44 -msgid "Show %{host_title}" -msgstr "%{host_title}の表示" +msgid "Select only one or consecutive fields to move to the top" +msgstr "1 つまたは連続するフィールドのみを選択して一番上に移動します" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:51 -msgid "Show VMs in this %{cluster_title}, but not in Resource Pools below" -msgstr "以下のリソースプールではなく、この%{cluster_title}に仮想マシンを表示" +msgid "Select only one or consecutive fields to move up" +msgstr "1 つまたは連続するフィールドのみを選択して上に移動します" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:58 -msgid "Show all VMs in this %{cluster_title}" -msgstr "この%{cluster_title}のすべての仮想マシンの表示" +msgid "Select the file to deploy" +msgstr "デプロイするファイルの設定" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:65 -msgid "Show all Templates in this %{cluster_title}" -msgstr "この%{cluster_title}のすべてのテンプレートの表示" +msgid "Select this Host Aggregate" +msgstr "このホストアグリゲートの選択" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:72 -msgid "Show tree of all VMs by Resource Pool in this %{cluster_title}" -msgstr "この%{cluster_title}のリソースプール別にすべての仮想マシンのツリーを表示" +msgid "Select two or more Templates to compare" +msgstr "比較する 2 つ以上のテンプレートを選択" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:79 -#: ../app/views/layouts/listnav/_host.html.haml:120 -msgid "Show Resource Pools" -msgstr "リソースプールの表示" +msgid "Select two or more items to compare" +msgstr "比較する 2 つ以上の項目を選択" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:86 -msgid "Show %{cluster_title} drift history" -msgstr "%{cluster_title} ドリフト履歴の表示" +msgid "Select up to 10 timestamps for Drift Analysis" +msgstr "ドリフト分析のために最大 10 個までのタイムスタンプを選択" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:97 -msgid "Show all %{ontap_storage_system}" -msgstr "すべての%{ontap_storage_system}の表示" +msgid "Select your desired settings and click the apply button to view timeline data." +msgstr "必要な設定を選択し、適用のボタンをクリックしてタイムラインデータを表示します。" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:113 -msgid "Show all %{ontap_file_share}" -msgstr "すべての%{ontap_file_share}の表示" +msgid "Selected" +msgstr "選択" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:121 -msgid "Show all %{base_storage_extent}" -msgstr "すべての%{base_storage_extent}の表示" +msgid "Selected %{model_name} no longer exists" +msgstr "選択した%{model_name}は存在しません" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:28 -msgid "%{hosts} & %{clusters}" -msgstr "%{hosts} & %{clusters}" +msgid "Selected Chargeback Report no longer exists" +msgstr "選択したチャージバックレポートは存在しません" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:28 -msgid "Show %{hosts} & %{clusters}" -msgstr "%{hosts} & %{clusters}の表示" +msgid "Selected Cluster / Deployment Roles" +msgstr "" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:34 -msgid "Show VMs & Templates" -msgstr "仮想マシン & テンプレートの表示" +msgid "Selected Containers Providers" +msgstr "" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:42 -msgid "Show all managed %{cluster}" -msgstr "管理されたすべての%{cluster}の表示" +msgid "Selected Custom Button Group cannot be deleted" +msgstr "選択したカスタムボタングループは削除できません" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:49 -msgid "Show all managed %{hosts}" -msgstr "管理されたすべての%{hosts}の表示" +msgid "Selected Custom Button Group cannot be edited" +msgstr "選択したカスタムボタングループは編集できません" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:56 -msgid "Show all managed %{storages}" -msgstr "管理されたすべての%{storages}の表示" +msgid "Selected Datastores" +msgstr "" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:63 -#: ../app/views/layouts/listnav/_host.html.haml:128 -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:61 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:40 -msgid "Show all VMs" -msgstr "すべての仮想マシンの表示" +msgid "Selected Day" +msgstr "選択日" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:70 -#: ../app/views/layouts/listnav/_host.html.haml:136 -msgid "Show all Templates" -msgstr "すべてのテンプレートの表示" +msgid "Selected Fields:" +msgstr " 選択フィールド:" -#: ../app/views/layouts/listnav/_flavor.html.haml:24 -msgid "Show this Flavor's parent Cloud Provider" -msgstr "このフレーバーの親クラウドプロバイダーの表示" +msgid "Selected Folders" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:41 -msgid "Show %{host} devices" -msgstr "%{host}のデバイスの表示" +msgid "Selected Host / Nodes" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:47 -msgid "Show %{host} network" -msgstr "%{host}のネットワークの表示" +msgid "Selected Item" +msgstr "選択した項目" -#: ../app/views/layouts/listnav/_host.html.haml:53 -msgid "Show %{host} storage adapters" -msgstr "%{host}のストレージアダプターの表示" +msgid "Selected Middleware Servers" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:59 -msgid "Show %{host} OS information" -msgstr "%{host}の OS 情報の表示" +msgid "Selected Providers" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:65 -msgid "Show VMM information" -msgstr "VMM 情報の表示" +msgid "Selected Reports:" +msgstr "選択したレポート:" -#: ../app/views/layouts/listnav/_host.html.haml:84 -msgid "Show esx logs on this VM" -msgstr "この仮想マシンの ESX ログの表示" +msgid "Selected Resource Pools" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:95 -msgid "Show this parent %{provider} for this %{host}" -msgstr "この%{host}の親%{provider}の表示 " +msgid "Selected Resources" +msgstr "選択したリソース" -#: ../app/views/layouts/listnav/_host.html.haml:105 -msgid "Show parent %{cluster} for this %{host}" -msgstr "この%{host}の親%{cluster}の表示 " +msgid "Selected Saved Chargeback Report no longer exists" +msgstr "選択した保存済みチャージバックレポートは存在しません" -#: ../app/views/layouts/listnav/_host.html.haml:144 -msgid "Show %{host} drift history" -msgstr "%{host}のドリフト履歴の表示" +msgid "Selected Servers" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:185 -msgid "Show the users defined on this %{host}" -msgstr "この%{host}で定義されたユーザーの表示" +msgid "Selected Template Contents" +msgstr "選択したテンプレートコンテンツ" -#: ../app/views/layouts/listnav/_host.html.haml:192 -msgid "Show the groups defined on this %{host}" -msgstr "この%{host}での定義されたグループの表示" +msgid "Selected VM" +msgstr "選択した仮想マシン" -#: ../app/views/layouts/listnav/_host.html.haml:200 -msgid "Show the patches installed on this %{host}" -msgstr "この%{host}でのインストールされたパッチの表示" +msgid "Selected branch or tag does not contain a valid domain" +msgstr "選択されたブランチまたはタグには有効なドメインが含まれません" -#: ../app/views/layouts/listnav/_host.html.haml:207 -msgid "Show the firewall rules on this %{host}" -msgstr "この%{host}でのファイアウォールルールの表示" +msgid "Selected:" +msgstr "選択内容:" -#: ../app/views/layouts/listnav/_host.html.haml:218 -msgid "Show the packages installed on this %{host}" -msgstr "この%{host}でのインストールされたパッケージの表示" +msgid "Selection" +msgstr "選択" -#: ../app/views/layouts/listnav/_host.html.haml:224 -msgid "Show the services installed on this %{host}" -msgstr "この%{host}でのインストールされたサービスの表示" +msgid "Selections" +msgstr "選択" -#: ../app/views/layouts/listnav/_host.html.haml:230 -msgid "Show the files on this %{host}" -msgstr "この%{host}でのファイルの表示" +msgid "Send CTRL+ALT+DEL" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:236 -msgid "Show the advanced settings on this %{host}" -msgstr "この%{host}での詳細設定の表示" +msgid "Send E-mail" +msgstr "メールの送信" -#: ../app/views/layouts/listnav/_host_aggregate.html.haml:22 -msgid "Show this Host Aggregate's parent Cloud Provider" -msgstr "このホストアグリゲートの親クラウドプロバイダーの表示" +msgid "Send Management Event" +msgstr "管理イベントの送信" -#: ../app/views/layouts/listnav/_miq_ae_class.html.haml:19 -msgid "View Instances" -msgstr "インスタンスの表示" +msgid "Send SNMP Trap" +msgstr "SNMP トラップの送信" -#: ../app/views/layouts/listnav/_ontap_file_share.html.haml:53 -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:58 -#: ../app/views/layouts/listnav/_ontap_storage_system.html.haml:56 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:37 -#: ../app/views/ontap_file_share/_main.html.haml:16 -#: ../app/views/ontap_logical_disk/_main.html.haml:11 -#: ../app/views/ontap_storage_system/_main.html.haml:16 -#: ../app/views/ontap_storage_volume/_main.html.haml:16 -msgid "Infrastructure Relationships" -msgstr "インフラストラクチャーのリレーションシップ" - -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:32 -msgid "Show all File Shares" -msgstr "すべてのファイル共有の表示" - -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:50 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:30 -#: ../app/views/layouts/listnav/_storage.html.haml:75 -msgid "Show all Base Extents" -msgstr "すべてのベース範囲の表示" - -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:70 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:48 -msgid "Show all Hosts" -msgstr "すべてのホストの表示" - -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:79 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:56 -msgid "Show all Datastores" -msgstr "すべてのデータストアの表示" - -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:22 -msgid "Show Filer" -msgstr "ファイラーの表示" - -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:24 -msgid "Show parent Cloud Provider for this Stack" -msgstr "このスタックの親クラウドプロバイダーの表示" +msgid "Send a Management Event" +msgstr "管理イベントの送信" -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:52 -msgid "Show all Cloud Networks" -msgstr "すべてのクラウドネットワークの表示" +msgid "Send an E-mail" +msgstr "メールの送信" -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:64 -msgid "Show all Outputs" -msgstr "すべての出力の表示" +msgid "Send an SNMP Trap" +msgstr "SNMPトラップの送信" -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:70 -msgid "Show all Resources" -msgstr "すべてのリソースの表示" +msgid "Send if Report is Empty" +msgstr "レポートが空の場合に送信" -#: ../app/views/layouts/listnav/_persistent_volume.html.haml:22 -msgid "Show this container volume's parent Containers Provider" -msgstr "このコンテナーボリュームの親コンテナープロバイダーの表示" +msgid "Send test email" +msgstr "テストメールの送信" -#: ../app/views/layouts/listnav/_resource_pool.html.haml:23 -#: ../app/views/layouts/listnav/_resource_pool.html.haml:33 -msgid "Parent %{title}: %{name}" -msgstr "親%{title}: %{name}" +msgid "Server" +msgstr "サーバー" -#: ../app/views/layouts/listnav/_resource_pool.html.haml:23 -msgid "Show VMs" -msgstr "仮想マシンの表示" +msgid "Server %{server_name} [%{server_id}] can only be deleted if it is stopped or has not responded for a while" +msgstr "サーバー %{server_name} [%{server_id}] は、停止状態またはしばらく応答がない場合にのみ削除できます" -#: ../app/views/layouts/listnav/_resource_pool.html.haml:33 -msgid "Show Parent %{host}" -msgstr "親%{host}の表示" +msgid "Server '%{name}' restarted" +msgstr "サーバー '%{name}' が再起動されました" -#: ../app/views/layouts/listnav/_security_group.html.haml:34 -msgid "Show parent Orchestration Stack for this Security Group" -msgstr "このセキュリティーグループの親オーケストレーションスタックの表示" +msgid "Server Address" +msgstr "MiqServer" -#: ../app/views/layouts/listnav/_service.html.haml:24 -#: ../app/views/layouts/listnav/_service.html.haml:30 -msgid "Member VMs (%{count})" -msgstr "メンバー仮想マシン (%{count})" +msgid "Server Control" +msgstr "サーバー制御" -#: ../app/views/layouts/listnav/_service.html.haml:30 -msgid "Show member VMs" -msgstr "メンバー仮想マシンの表示" +msgid "Server Groups" +msgstr "サーバーグループ" -#: ../app/views/layouts/listnav/_show_list.html.haml:4 -msgid "No filters defined." -msgstr "フィルターが定義されていません。" +msgid "Server License" +msgstr "サーバーライセンス" -#: ../app/views/layouts/listnav/_show_list.html.haml:26 -#: ../app/views/layouts/listnav/_show_list.html.haml:52 -msgid "Apply this filter" -msgstr "このフィルターの適用" +msgid "Server Name" +msgstr "サーバー名" -#: ../app/views/layouts/listnav/_show_list.html.haml:63 -msgid "Set the current filter as my default" -msgstr "現在のフィルターをデフォルトに設定" +msgid "Server Roles" +msgstr "サーバーロール" -#: ../app/views/layouts/listnav/_show_list.html.haml:64 -#: ../app/views/layouts/listnav/_show_list.html.haml:75 -msgid "Set Default" -msgstr "デフォルトの設定" +msgid "Server State" +msgstr "サーバーの状態" -#: ../app/views/layouts/listnav/_show_list.html.haml:75 -msgid "Select a filter to set it as my default" -msgstr "デフォルトに設定するフィルターの選択" +msgid "Server information, Username and matching password fields are needed to perform verification of credentials" +msgstr "サーバー情報、ユーザー名および一致するパスワードフィールドは認証情報の検証を実行する際に必要です。" -#: ../app/views/layouts/listnav/_storage.html.haml:29 -msgid "Show all registered %{hosts}" -msgstr "登録されたすべての%{hosts}の表示" +msgid "Server information, username and private key fields are needed to perform verification of credentials" +msgstr "サーバー情報、ユーザー名および秘密鍵フィールドは認証情報の検証を実行する際に必要です。" -#: ../app/views/layouts/listnav/_storage.html.haml:37 -msgid "Show registered VMs" -msgstr "登録済み仮想マシンの表示" +msgid "Server:" +msgstr "サーバー:" -#: ../app/views/layouts/listnav/_storage.html.haml:48 -msgid "Show all Filers" -msgstr "すべてのファイラーの表示" +msgid "Server: %{appliance_name}" +msgstr "サーバー: %{appliance_name}" -#: ../app/views/layouts/listnav/_storage.html.haml:60 -msgid "Show File Shares" -msgstr "ファイル共有の表示" +msgid "Servers" +msgstr "サーバー" -#: ../app/views/layouts/listnav/_storage.html.haml:67 -msgid "Show all LUNs" -msgstr "すべての LUN の表示" +msgid "Servers by Roles" +msgstr "ロール別サーバー" -#: ../app/views/layouts/listnav/_storage.html.haml:83 -#: ../app/views/miq_ae_customization/_old_dialogs_details.html.haml:53 -#: ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:77 -#: ../app/views/storage/_main.html.haml:19 -msgid "Content" -msgstr "コンテンツ" +msgid "Service" +msgstr "サービス" -#: ../app/views/layouts/listnav/_storage.html.haml:86 -msgid "Show all files on this Datastore" -msgstr "このデータストアにすべてのファイルを表示" +msgid "Service \"%{name}\" was saved" +msgstr "サービス \"%{name}\" が保存されました" -#: ../app/views/layouts/listnav/_storage.html.haml:94 -msgid "Show VM Provisioned Disk Files on this Datastore" -msgstr "このデータストアについて仮想マシンのプロビジョニングされたディスクの表示" +msgid "Service Account JSON" +msgstr "サービスアカウント JSON" -#: ../app/views/layouts/listnav/_storage.html.haml:102 -msgid "Show VM snapshot files on this Datastore" -msgstr "このデータソースに仮想マシンスナップショットファイルを表示" +msgid "Service Catalogs" +msgstr "サービスカタログ" -#: ../app/views/layouts/listnav/_storage.html.haml:110 -msgid "Show VM memory files on this Datastore" -msgstr "このデータソースに仮想マシンメモリーファイルを表示" +msgid "Service Dialog \"%{name}\" was successfully created" +msgstr "サービスダイアログ \"%{name}\" が正常に作成されました" -#: ../app/views/layouts/listnav/_storage.html.haml:118 -msgid "Show Other VM files on this Datastore" -msgstr "このデータソースに他の仮想マシンファイルの表示" +msgid "Service Dialog Import / Export" +msgstr "サービスダイアログインポート/エクスポート" -#: ../app/views/layouts/listnav/_storage.html.haml:126 -msgid "Show non-VM files on this Datastore" -msgstr "このデータストアに仮想マシン以外のファイルを表示" +msgid "Service Dialog Import/Export" +msgstr "サービスダイアログのインポート/エクスポート" -#: ../app/views/middleware_server/_add_datasource.html.haml:35 -msgid "Create Datasource" -msgstr "データソースの作成" +msgid "Service Dialog Name" +msgstr "サービスダイアログ名" -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:5 -msgid "Step 1/3: Datasource Attributes" -msgstr "手順 1/3: データソース属性" +msgid "Service Dialogs" +msgstr "サービスダイアログ" -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:22 -msgid "Enter Datasource name" -msgstr "データソース名の入力" +msgid "Service Pack" +msgstr "サービスパック" -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:38 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:37 -msgid "Maximum length is 100" -msgstr "最大長は 100 です" +msgid "Service Selection" +msgstr "サービス選択" -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:55 -msgid "Enter JNDI name" -msgstr "JNDI 名の入力" +msgid "Service dialog import cancelled" +msgstr "サービスダイアログインポートが取り消されました" -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:71 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:71 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:105 -msgid "Maximum length is 256" -msgstr "最大長は 256 です" +msgid "Service dialogs imported successfully" +msgstr "サービスダイアログが正常にインポートされました" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:5 -msgid "Step 2/3: JDBC Driver" -msgstr "手順 2/3: JDBC ドライバー" +msgid "Service is already retired" +msgstr "サービスはすでにリタイアしています" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:24 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:72 -msgid "Enter JDBC Driver name" -msgstr "JDBC ドライバー名の入力" +msgid "Services" +msgstr "サービス" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:48 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:92 -msgid "Module Name" -msgstr "モジュール名" +msgid "Session Timeout" +msgstr "セッションタイムアウト" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:57 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:101 -msgid "Enter JDBC Module name" -msgstr "JDBC モジュール名の入力" +msgid "Session was timed out due to inactivity. Please log in again." +msgstr "停止状態によりセッションがタイムアウトしました。もう一度ログインしてください。" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:82 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:122 -msgid "Driver Class" -msgstr "ドライバークラス" +msgid "Set Custom Attribute Settings" +msgstr "カスタム属性設定の設定" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:91 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:131 -msgid "Enter JDBC Driver Class" -msgstr "JDBC ドライバークラスの入力" +msgid "Set Default" +msgstr "デフォルトの設定" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:5 -msgid "Step 3/3: Connection Settings" -msgstr "手順 3/3: 接続設定" +msgid "Set Node to Manageable" +msgstr "ノードを管理可能に設定" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:37 -msgid "Must start with 'jdbc:'" -msgstr "「jdbc:」で開始してください" +msgid "Set Nodes to Manageable" +msgstr "ノードを管理可能に設定" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:55 -msgid "Enter Username" -msgstr "ユーザ名の入力" +msgid "Set Ownership" +msgstr "所有権の設定" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:81 -msgid "Enter Password" -msgstr "パスワードの入力" +msgid "Set Ownership for %{vms_or_templates}" +msgstr "%{vms_or_templates}の所有権の設定" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:92 -msgid "Security Domain" -msgstr "セキュリティードメイン" +msgid "Set Ownership for Service" +msgstr "" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:98 -msgid "Enter Security Domain" -msgstr "セキュリティードメインの入力" +msgid "Set Ownership for the selected Services" +msgstr "選択したサービスの所有権の設定" -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:48 -#: ../app/views/middleware_server/_deploy.html.haml:48 -msgid "Select the file to deploy" -msgstr "デプロイするファイルの設定" +msgid "Set Ownership for the selected Templates" +msgstr "選択したテンプレートの所有権の設定" -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:152 -msgid "Major Version" -msgstr "メジャーバージョン" +msgid "Set Ownership for the selected items" +msgstr "選択した項目の所有権の設定" -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:160 -msgid "Enter Major Version" -msgstr "メジャーバージョンの入力" +msgid "Set Ownership for this Image" +msgstr "このイメージの所有権の設定" -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:170 -msgid "Minor Version" -msgstr "マイナーバージョン" +msgid "Set Ownership for this Instance" +msgstr "このインスタンスの所有権の設定" -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:178 -msgid "Enter Minor Version" -msgstr "マイナーバージョンの入力" +msgid "Set Ownership for this Service" +msgstr "このサービスの所有権の設定" -#: ../app/views/middleware_server/_choose_datasource.html.haml:5 -msgid "Choose Datasource:" -msgstr "データソースの選択:" +msgid "Set Ownership for this Template" +msgstr "このテンプレートの所有権の設定" -#: ../app/views/middleware_server/_choose_datasource.html.haml:15 -msgid "Datasource:" -msgstr "データソース:" +msgid "Set Ownership for this VM" +msgstr "この仮想マシンの所有権の設定" -#: ../app/views/middleware_server/_deploy.html.haml:36 -msgid "Add Middleware Deployment" -msgstr "ミドルウェアデプロイメントの追加" +msgid "Set Ownership was cancelled by the user" +msgstr "所有権の設定がユーザーにより取り消されました" -#: ../app/views/middleware_server/_deploy.html.haml:62 -msgid "Enable Deployment" -msgstr "デプロイメントの有効化" +msgid "Set Retirement Date" +msgstr "リタイア日の設定" -#: ../app/views/middleware_server/_deploy.html.haml:81 -msgid "Runtime Name" -msgstr "ランタイム名" +msgid "Set Retirement Date does not apply to selected %{model}" +msgstr "選択した%{model}に対してリタイア日が適用されません" -#: ../app/views/middleware_server/_deploy.html.haml:87 -#: ../app/views/shared/_file_chooser.html.haml:8 -msgid "No file chosen" -msgstr "ファイルが選択されていません" +msgid "Set Retirement Date for this Service" +msgstr "" -#: ../app/views/middleware_server/_deploy.html.haml:97 -msgid "Overwrite (if exists)" -msgstr "上書き (存在する場合)" +msgid "Set Retirement Dates" +msgstr "リタイア日の設定" -#: ../app/views/middleware_server/_ops_params.html.haml:49 -msgid "Timeout" -msgstr "タイムアウト" +msgid "Set Retirement Dates for the selected Orchestration Stacks" +msgstr "選択したオーケストレーションスタックのリタイア日の設定" -#: ../app/views/middleware_server/_ops_params.html.haml:64 -msgid "seconds" -msgstr "秒" +msgid "Set Retirement Dates for the selected items" +msgstr "選択した項目のリタイア日の設定" -#: ../app/views/middleware_server/_ops_params.html.haml:74 -msgid "Timeout is required" -msgstr "タイムアウトが必要です" +msgid "Set Retirement Dates for this Instance" +msgstr "このインスタンスのリタイア日の設定" -#: ../app/views/middleware_server/_ops_params.html.haml:79 -msgid "Timeout min is 0" -msgstr "最小タイムアウト値は 0 です" +msgid "Set Retirement Dates for this Orchestration Stack" +msgstr "このオーケストレーションスタックのリタイア日の設定" -#: ../app/views/middleware_server/_ops_params.html.haml:84 -msgid "Timeout max is 60" -msgstr "最大タイムアウト値は 60 です" +msgid "Set Retirement Dates for this VM" +msgstr "この仮想マシンのリタイア日の設定" -#: ../app/views/middleware_topology/show.html.haml:89 -msgid "Messaging" -msgstr "メッセージング" +msgid "Set Retirement this Service?" +msgstr "" -#: ../app/views/middleware_topology/show.html.haml:144 -msgid "Server Groups" -msgstr "サーバーグループ" +msgid "Set Tenant" +msgstr "" -#: ../app/views/middleware_topology/show.html.haml:162 -msgid "" -"Click on the legend to show/hide entities, and double click on the entities in" -" the graph to navigate to their summary pages." -msgstr "凡例をクリックするとエンティティーを表示または非表示にできます。また、グラフ内のエンティティーをダブルクリックするとそれぞれの概要ページに移動できます。" +msgid "Set filters to default" +msgstr "フィルターをデフォルトに設定" -#: ../app/views/miq_ae_class/_all_tabs.html.haml:11 -#: ../app/views/miq_ae_class/_class_methods.html.haml:5 -msgid "Methods" -msgstr "メソッド" +msgid "Set selected Actions to Asynchronous" +msgstr "選択したアクションを非同期に設定" -#: ../app/views/miq_ae_class/_all_tabs.html.haml:17 -#: ../app/views/miq_ae_class/_class_fields.html.haml:8 -#: ../app/views/miq_ae_class/_class_fields.html.haml:69 -msgid "Schema" -msgstr "スキーマ" +msgid "Set selected Actions to Synchronous" +msgstr "選択したアクションを同期に設定" -#: ../app/views/miq_ae_class/_all_tabs.html.haml:44 -msgid "Method Inputs" -msgstr "メソッドの入力" +msgid "Set selected items to manageable state." +msgstr "選択された項目を管理可能な状態に設定します。" -#: ../app/views/miq_ae_class/_all_tabs.html.haml:64 -msgid "Namespace Details" -msgstr "名前空間の詳細" +msgid "Set selected items to manageable state?" +msgstr "選択された項目を管理可能な状態に設定しますか?" -#: ../app/views/miq_ae_class/_all_tabs.html.haml:78 -msgid "Namespaces" -msgstr "名前空間" +msgid "Set the current filter as my default" +msgstr "現在のフィルターをデフォルトに設定" -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_inputs.html.haml:16 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:130 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:36 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:204 -msgid "Default Value" -msgstr "デフォルト値" +msgid "Set this item to manageable state" +msgstr "この項目を管理可能な状態に設定" -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:27 -msgid "Max Retries" -msgstr "再試行の最大回数" +msgid "Set this item to manageable?" +msgstr "この項目を管理可能に設定しますか?" -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:29 -msgid "Max Time" -msgstr "最大時間" +msgid "Set to blank" +msgstr "空白に設定" -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:19 -#: ../app/views/miq_ae_class/_instance_form.html.haml:91 -msgid "On Entry" -msgstr "開始時" +msgid "Set/Remove Retirement Date" +msgstr "リタイア日の設定/削除" -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:23 -#: ../app/views/miq_ae_class/_instance_form.html.haml:95 -msgid "On Error" -msgstr "エラー時" +msgid "Set/Remove retirement date for %{vm_or_template}" +msgstr "%{vm_or_template}のリタイア日の設定/削除" -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:21 -#: ../app/views/miq_ae_class/_instance_form.html.haml:93 -msgid "On Exit" -msgstr "終了時" +msgid "Set/Remove retirement date for Service" +msgstr "" -#: ../app/views/miq_ae_class/_class_fields.html.haml:30 -#: ../app/views/miq_ae_class/_instance_form.html.haml:109 -#: ../app/views/miq_policy/_rsop_form.html.haml:17 -#: ../app/views/miq_request/_prov_options.html.haml:62 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general-review.html.haml:19 -msgid "Type:" -msgstr "タイプ:" +msgid "Set/remove retirement date was cancelled by the user" +msgstr "リタイア日の設定/削除がユーザーにより取り消されました" -#: ../app/views/miq_ae_class/_class_fields.html.haml:35 -#: ../app/views/miq_ae_class/_instance_form.html.haml:114 -msgid "Data Type:" -msgstr "データタイプ:" +msgid "Setting priority is not allowed for the selected item" +msgstr "選択した項目は優先順位の設定が許可されていません" -#: ../app/views/miq_ae_class/_class_fields.html.haml:39 -#: ../app/views/miq_ae_class/_instance_form.html.haml:119 -msgid "Substitution:" -msgstr "置換:" +msgid "Setting tracing to true may cause excessive log lines to be written" +msgstr "トレースを true に設定すると、過剰なログ行の書き込みが生じる可能性があります" -#: ../app/views/miq_ae_class/_class_fields.html.haml:56 -msgid "No schema found" -msgstr "スキーマが見つかりませんでした" +msgid "Settings" +msgstr "設定" -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_inputs.html.haml:18 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:132 -msgid "Data Type" -msgstr "データタイプ" +msgid "Settings %{model}" +msgstr "設定: %{model}" -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_class_form.html.haml:45 -#: ../app/views/miq_ae_class/_class_props.html.haml:42 -#: ../app/views/miq_ae_class/_instance_form.html.haml:46 -#: ../app/views/miq_ae_class/_method_form.html.haml:48 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:48 -msgid "Display Name" -msgstr "表示名" +msgid "Settings %{model} \"%{name}\"" +msgstr "設定: %{model} \"%{name}\"" -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -msgid "Sub" -msgstr "サブ" +msgid "Settings %{model} \"%{name}\" (current)" +msgstr "設定: %{model} \"%{name}\" (現在)" -#: ../app/views/miq_ae_class/_class_fields.html.haml:93 -msgid "Are you sure you want to delete field from schema?" -msgstr "スキーマからフィールドを削除してもよいですか?" +msgid "Settings %{text}" +msgstr "設定: %{text}" -#: ../app/views/miq_ae_class/_class_fields.html.haml:93 -msgid "Click to delete this field from schema" -msgstr "クリックしてこのフィールドをスキーマから削除する" +msgid "Severity" +msgstr "" -#: ../app/views/miq_ae_class/_class_fields.html.haml:150 -msgid "New Field" -msgstr "新規フィールド" +msgid "Shared" +msgstr "共有" -#: ../app/views/miq_ae_class/_class_fields.html.haml:160 -#: ../app/views/miq_ae_class/_inputs.html.haml:98 -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:7 -#: ../app/views/ops/_ap_form_file.html.haml:55 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:99 -#: ../app/views/ops/_ap_form_registry.html.haml:74 -#: ../app/views/ops/_classification_entry.html.haml:18 -#: ../app/views/ops/_ldap_forest_entries.html.haml:63 -#: ../app/views/ops/_ldap_forest_entries.html.haml:63 -msgid "Add this entry" -msgstr "このエントリーの追加" +msgid "Shelve" +msgstr "退避" -#: ../app/views/miq_ae_class/_class_instances.html.haml:50 -msgid "No instances found" -msgstr "インスタンスが見つかりません" +msgid "Shelve Offload" +msgstr "退避オフロード" -#: ../app/views/miq_ae_class/_class_methods.html.haml:50 -msgid "No methods found" -msgstr "メソッドが見つかりません" +msgid "Shelve Offload the selected items" +msgstr "選択した項目の退避オフロード (Shelve Offload)" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:18 -msgid "From Domain" -msgstr "開始ドメイン" +msgid "Shelve Offload the selected items?" +msgstr "選択した項目を退避オフロード (Shelve Offload) しますか?" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:34 -msgid "To Domain" -msgstr "終了ドメイン" +msgid "Shelve Offload this Instance" +msgstr "このインスタンスの退避オフロード (Shelve Offload)" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:62 -msgid "New Name" -msgstr "新規の名前" +msgid "Shelve Offload this Instance?" +msgstr "このインスタンスを退避オフロード (Shelve Offload) しますか?" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:78 -msgid "Copy to same path" -msgstr "同じパスへコピー" +msgid "Shelve the selected items" +msgstr "選択した項目の退避" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:96 -msgid "Replace items if they already exist?" -msgstr "すでに存在する項目を置換してもよろしいですか?" +msgid "Shelve the selected items?" +msgstr "選択した項目を退避しますか?" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:114 -msgid "Namespace" -msgstr "名前空間" +msgid "Shelve this Instance" +msgstr "このインスタンスの退避" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:132 -msgid "selected to copy" -msgstr "コピーするために選択" +msgid "Shelve this Instance?" +msgstr "このインスタンスを退避しますか?" -#: ../app/views/miq_ae_class/_domain_overrides.html.haml:2 -msgid "Domain Overrides (by priority)" -msgstr "ドメインオーバーライド (優先順位別)" +msgid "Shortcut description is required" +msgstr "ショートカットの説明が必要です" -#: ../app/views/miq_ae_class/_domain_overrides.html.haml:13 -msgid "Click to view this %{model} in the \"%{domain_name}\" Domain" -msgstr "クリックしてこの%{model}を \"%{domain_name}\" ドメインに表示する" +msgid "Shortcuts" +msgstr "ショートカット" -#: ../app/views/miq_ae_class/_domains_priority_form.html.haml:9 -msgid "Domains:" -msgstr "ドメイン:" +msgid "Show" +msgstr "表示" -#: ../app/views/miq_ae_class/_domains_priority_form.html.haml:25 -#: ../app/views/miq_ae_class/_fields_seq_form.html.haml:27 -#: ../app/views/ops/_ldap_seq_form.html.haml:46 -#: ../app/views/ops/_ldap_seq_form.html.haml:46 -#: ../app/views/report/_db_seq_form.html.haml:35 -#: ../app/views/shared/buttons/_column_lists.html.haml:99 -#: ../app/views/shared/buttons/_group_order_form.html.haml:41 -msgid "Move selected fields up" -msgstr "選択したフィールドを上に移動する" +msgid "Show %{cluster_title} drift history" +msgstr "%{cluster_title} ドリフト履歴の表示" -#: ../app/views/miq_ae_class/_domains_priority_form.html.haml:32 -#: ../app/views/miq_ae_class/_fields_seq_form.html.haml:39 -#: ../app/views/ops/_ldap_seq_form.html.haml:57 -#: ../app/views/ops/_ldap_seq_form.html.haml:57 -#: ../app/views/report/_db_seq_form.html.haml:47 -#: ../app/views/shared/buttons/_column_lists.html.haml:115 -#: ../app/views/shared/buttons/_group_order_form.html.haml:57 -msgid "Move selected fields down" -msgstr "選択したフィールドを下に移動する" +msgid "Show %{host_title}" +msgstr "%{host_title}の表示" -#: ../app/views/miq_ae_class/_domains_priority_form.html.haml:42 -#: ../app/views/report/_db_seq_form.html.haml:59 -#: ../app/views/shared/buttons/_group_order_form.html.haml:73 -msgid "* Select one or more consecutive groups to move up or down." -msgstr "* 1 つ以上の連続するグループを選択して上下に移動します。" +msgid "Show %{hosts} & %{clusters}" +msgstr "%{hosts} & %{clusters}の表示" -#: ../app/views/miq_ae_class/_fields_seq_form.html.haml:11 -msgid "Class Schema Sequencing:" -msgstr "クラススキーマの順序:" +msgid "Show %{host} OS information" +msgstr "%{host}の OS 情報の表示" -#: ../app/views/miq_ae_class/_fields_seq_form.html.haml:54 -msgid "* Select one or more consecutive fields to move up or down." -msgstr "* 1 つ以上の連続するフィールドを選択して上下に移動します。" +msgid "Show %{host} devices" +msgstr "%{host}のデバイスの表示" -#: ../app/views/miq_ae_class/_git_domain_refresh.html.haml:17 -#: ../app/views/miq_ae_tools/_import_export.html.haml:186 -msgid "Branch/Tag" -msgstr "ブランチ/タグ" +msgid "Show %{host} drift history" +msgstr "%{host}のドリフト履歴の表示" -#: ../app/views/miq_ae_class/_git_domain_refresh.html.haml:33 -#: ../app/views/miq_ae_tools/_import_export.html.haml:201 -msgid "Branches" -msgstr "ブランチ" +msgid "Show %{host} network" +msgstr "%{host}のネットワークの表示" -#: ../app/views/miq_ae_class/_inputs.html.haml:30 -msgid "Are you sure you want to delete input field from method?" -msgstr "メソッドから入力フィールドを削除してもよいですか?" +msgid "Show %{host} storage adapters" +msgstr "%{host}のストレージアダプターの表示" -#: ../app/views/miq_ae_class/_inputs.html.haml:30 -#: ../app/views/miq_ae_class/_inputs.html.haml:30 -msgid "Click to delete this input field from method" -msgstr "クリックしてこの入力フィールドをメソッドから削除する" +msgid "Show %{label}" +msgstr "%{label}の表示" -#: ../app/views/miq_ae_class/_inputs.html.haml:69 -msgid "Click to add a new parameter" -msgstr "クリックして新しいパラメーターを追加する" +msgid "Show %{label} '%{value}'" +msgstr "%{label} '%{value}' の表示" -#: ../app/views/miq_ae_class/_inputs.html.haml:79 -msgid "New Parameter" -msgstr "新規パラメーター" +msgid "Show %{name}" +msgstr "%{name}の表示" -#: ../app/views/miq_ae_class/_instance_fields.html.haml:42 -msgid "Type: %{automation_type}" -msgstr "タイプ: %{automation_type}" +msgid "Show %{object_name} Summary" +msgstr "%{object_name}概要の表示" -#: ../app/views/miq_ae_class/_instance_fields.html.haml:45 -msgid "Data type: %{data_type}" -msgstr "データタイプ: %{data_type}" +msgid "Show %{plural_linked_name}" +msgstr "%{plural_linked_name} の表示" -#: ../app/views/miq_ae_class/_instance_fields.html.haml:47 -msgid "Substitute: %{substitute}" -msgstr "置換: %{substitute}" +msgid "Show %{title} Network" +msgstr "%{title}ネットワークの表示" -#: ../app/views/miq_ae_class/_instance_form.html.haml:5 -#: ../app/views/miq_ae_class/_method_form.html.haml:6 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:7 -msgid "Main Info" -msgstr "主な情報" +msgid "Show %{title} Quadrants" +msgstr "%{title}の 4 分割表示" -#: ../app/views/miq_ae_class/_method_data.html.haml:18 -msgid "Optional, if not specified, method name is used." -msgstr "オプションです。指定されていない場合はメソッド名が使用されます。" +msgid "Show %{title} Storage Adapters" +msgstr "%{title}のストレージアダプターの表示" -#: ../app/views/miq_ae_class/_method_form.html.haml:65 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:64 -msgid "Location" -msgstr "場所" +msgid "Show %{title} devices" +msgstr "%{title}のデバイスの表示" -#: ../app/views/miq_ae_class/_method_form.html.haml:100 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:95 -msgid "Builtin name" -msgstr "ビルトイン名" +msgid "Show %{title} drift history" +msgstr "%{title}のドリフト履歴の表示" -#: ../app/views/miq_ae_class/_method_form.html.haml:100 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:95 -msgid "Data" -msgstr "データ" +msgid "Show Ad hoc Metrics for this Provider" +msgstr "" -#: ../app/views/miq_ae_class/_method_form.html.haml:106 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:120 -msgid "Input Parameters" -msgstr "入力パラメーター" +msgid "Show Capacity & Utilization" +msgstr "容量 & 使用状況の表示" -#: ../app/views/miq_ae_class/_method_form.html.haml:118 -msgid "Hide Input Parameters" -msgstr "入力パラメーターを非表示にする" +msgid "Show Capacity & Utilization data for this Availability Zone" +msgstr "このアベイラビリティーゾーンの容量 & 使用状況データの表示" -#: ../app/views/miq_ae_class/_method_form.html.haml:118 -msgid "Show Input Parameters" -msgstr "入力パラメーターの表示" +msgid "Show Capacity & Utilization data for this Container" +msgstr "このコンテナーの容量 & 使用状況データの表示" -#: ../app/views/miq_ae_class/_method_inputs.html.haml:128 -msgid "Input Name" -msgstr "入力名" +msgid "Show Capacity & Utilization data for this Datasource" +msgstr "このデータソースの容量 & 使用状況データの表示" -#: ../app/views/miq_ae_class/_ns_list.html.haml:81 -#: ../app/views/miq_policy/_alert_details.html.haml:13 -#: ../app/views/ops/_ap_show.html.haml:7 -#: ../app/views/resource_pool/_config.html.haml:11 -msgid "Info" -msgstr "情報" +msgid "Show Capacity & Utilization data for this Datastore" +msgstr "このデータストアの容量 & 使用状況データの表示" -#: ../app/views/miq_ae_customization/_dialog_details.html.haml:15 -#: ../app/views/report/_form_styling.html.haml:126 -msgid "Sample" -msgstr "サンプル" +msgid "Show Capacity & Utilization data for this Group" +msgstr "このグループの容量 & 使用状況データの表示" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:6 -msgid "Element Information" -msgstr "要素情報" +msgid "Show Capacity & Utilization data for this Instance" +msgstr "このインスタンスの容量 & 使用状況データの表示" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:15 -#: ../app/views/miq_ae_customization/_dialog_group_form.html.haml:13 -#: ../app/views/miq_ae_customization/_dialog_info.html.haml:15 -#: ../app/views/miq_ae_customization/_dialog_info_form.html.haml:14 -#: ../app/views/miq_ae_customization/_dialog_tab_form.html.haml:13 -#: ../app/views/ops/_label_tag_mapping_form.html.haml:43 -msgid "Label" -msgstr "ラベル" +msgid "Show Capacity & Utilization data for this Middleware messaging" +msgstr "このミドルウェアメッセージングの容量 & 使用状況データの表示" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:88 -msgid "Only 1 Date or Date/Time element can be present in a Dialog" -msgstr "ダイアログには 1 つの日付または日付/時間要素しか使用できません" +msgid "Show Capacity & Utilization data for this Node" +msgstr "このノードの容量 & 使用状況データの表示" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:96 -msgid "Dynamic" -msgstr "ダイナミック" +msgid "Show Capacity & Utilization data for this Project" +msgstr "このプロジェクトの容量 & 使用状況データの表示" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:126 -msgid "Auto Refresh other fields when modified" -msgstr "変更時の他のフィールドの自動更新" +msgid "Show Capacity & Utilization data for this Provider" +msgstr "このプロバイダーの容量 & 使用状況データの表示" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:149 -#: ../app/views/ops/_all_tabs.html.haml:37 -msgid "Advanced" -msgstr "詳細" +msgid "Show Capacity & Utilization data for this Replicator" +msgstr "このレプリケーターの容量 & 使用状況データの表示" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:158 -msgid "Reconfigurable" -msgstr "再設定可能" +msgid "Show Capacity & Utilization data for this Server" +msgstr "このサーバーの容量 & 使用状況データの表示" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_dynamic_options.html.haml:5 -msgid "Entry Point (NS/Cls/Inst)" -msgstr "エントリーポイント (名前空間/クラス/インスタンス)" +msgid "Show Capacity & Utilization data for this Service" +msgstr "このサービスの容量 & 使用状況データの表示" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_dynamic_options.html.haml:21 -msgid "Show Refresh Button" -msgstr "更新ボタンの表示" +msgid "Show Capacity & Utilization data for this Template" +msgstr "このテンプレートの容量 & 使用状況データの表示" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_dynamic_options.html.haml:37 -msgid "Load Values on Init" -msgstr "Init で値をロード" +msgid "Show Capacity & Utilization data for this VM" +msgstr "この仮想マシンの容量 & 使用状況データの表示" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_dynamic_options.html.haml:52 -msgid "Auto refresh" -msgstr "自動更新" +msgid "Show Capacity & Utilization data for this item" +msgstr "この項目の容量 & 使用状況データの表示" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:5 -msgid "Read only" -msgstr "読み取り専用" +msgid "Show Chargeback preview" +msgstr "" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:19 -msgid "Visible" -msgstr "表示" +msgid "Show Compliance History of this %{model} (Last 10 Checks)" +msgstr "この %{model}のコンプライアンス履歴の表示 (最後の 10 件のチェック)" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:71 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:226 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:324 -msgid "Value Type" -msgstr "値タイプ" +msgid "Show Compliance History of this %{title} (Last 10 Checks)" +msgstr "この %{title}のコンプライアンス履歴の表示 (最後の 10 件のチェック)" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:76 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:231 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:329 -msgid "String" -msgstr "文字列" +msgid "Show Compliance History of this Container Image (Last 10 Checks)" +msgstr "このコンテナーイメージのコンプライアンス履歴の表示 (最後の 10 件のチェック)" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:92 -msgid "Protected" -msgstr "保護" +msgid "Show Compliance History of this Node (Last 10 Checks)" +msgstr "このノードのコンプライアンス履歴の表示 (最後の 10 件のチェック)" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:121 -msgid "Validator Type" -msgstr "検証タイプ" +msgid "Show Compliance History of this Replicator (Last 10 Checks)" +msgstr "このレプリケーターのコンプライアンス履歴の表示 (最後の 10 件のチェック)" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:126 -msgid "Regular Expression" -msgstr "正規表現" +msgid "Show Compliance History of this VM (Last 10 Checks)" +msgstr "この仮想マシンのコンプライアンス履歴の表示 (最後の 10 件のチェック)" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:142 -msgid "Validator Rule" -msgstr "検証ルール" +msgid "Show Costs by" +msgstr "コストの表示" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:166 -msgid "Show Past Dates" -msgstr "過去の日付の表示" +msgid "Show Costs by must be selected" +msgstr "コスト別表示を選択する必要があります" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:247 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:345 -#: ../app/views/report/_report_info.html.haml:45 -#: ../app/views/report/_report_list.html.haml:127 -msgid "Sort By" -msgstr "並べ替え" +msgid "Show Credential" +msgstr "" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:267 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:365 -#: ../app/views/report/_form_sort.html.haml:51 -msgid "Sort Order" -msgstr "並べ替え順序" +msgid "Show Detailed Events" +msgstr "詳細イベントの表示" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:272 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:370 -#: ../app/views/report/_form_sort.html.haml:56 -msgid "Ascending" -msgstr "昇順" +msgid "Show Details of Compliance Check on %{date}" +msgstr "%{date} のコンプライアンスチェックの詳細の表示" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:272 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:370 -#: ../app/views/report/_form_sort.html.haml:56 -msgid "Descending" -msgstr "降順" +msgid "Show Event Log on this VM" +msgid_plural "Show Event Logs on this VM" +msgstr[0] "この仮想マシンのイベントログの表示" +msgstr[1] "この仮想マシンのイベントログの表示" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:308 -msgid "Single Select" -msgstr "単一選択" +msgid "Show Event Logs on this VM" +msgstr "この仮想マシンのイベントログの表示" -#: ../app/views/miq_ae_customization/_dialog_group_form.html.haml:4 -msgid "Box Information" -msgstr "ボックス情報" +msgid "Show Host Events" +msgstr "ホストイベントの表示" -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:7 -msgid "Import Service Dialogs" -msgstr "サービスダイアログのインポート" +msgid "Show Input Parameters" +msgstr "入力パラメーターの表示" -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:24 -msgid "Dialog name" -msgstr "ダイアログ名" +msgid "Show Non-VM Files installed on this %{storage}" +msgstr "この%{storage}にインストールされた仮想マシン以外のファイルの表示" -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:65 -#: ../app/views/report/_export_widgets.html.haml:66 -msgid "Commit Changes" -msgstr "変更のコミット" +msgid "Show OS container information" +msgstr "OS コンテナー情報の表示" -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:74 -#: ../app/views/miq_policy/_export.html.haml:8 -#: ../app/views/ops/_ldap_server_entry.html.haml:7 -#: ../app/views/ops/_ldap_server_entry.html.haml:44 -#: ../app/views/report/_export_custom_reports.html.haml:12 -#: ../app/views/report/_export_widgets.html.haml:80 -msgid "Import" -msgstr "インポート" +msgid "Show Other VM Files installed on this %{storage}" +msgstr "この%{storage}にインストールされた他の仮想マシンファイルの表示" -#: ../app/views/miq_ae_customization/_dialog_info_form.html.haml:5 -msgid "Dialog Information" -msgstr "ダイアログ情報" +msgid "Show Other VM files on this Datastore" +msgstr "このデータソースに他の仮想マシンファイルの表示" -#: ../app/views/miq_ae_customization/_dialog_res_remove.html.haml:4 -msgid "Remove this %{type}" -msgstr "この%{type}の削除" +msgid "Show Parent %{host}" +msgstr "親%{host}の表示" -#: ../app/views/miq_ae_customization/_dialog_resource.html.haml:5 -msgid "Drag this Tab to a new location" -msgstr "このタブを新しい場所にドラッグする" +msgid "Show Parent %{title} %{name}" +msgstr "親%{title} %{name}の表示" -#: ../app/views/miq_ae_customization/_dialog_resources.html.haml:24 -msgid "No %{types} found." -msgstr "%{types}が見つかりません。" +msgid "Show Parent %{title} '%{name}'" +msgstr "親%{title} '%{name}' の表示" -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:65 -msgid "at" -msgstr "時間" +msgid "Show Past Dates" +msgstr "過去の日付の表示" -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:88 -msgid "Option 1" -msgstr "オプション 1" +msgid "Show Refresh Button" +msgstr "更新ボタンの表示" -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:88 -msgid "Option 2" -msgstr "オプション 2" +msgid "Show Repository" +msgstr "" -#: ../app/views/miq_ae_customization/_dialog_tab_form.html.haml:4 -msgid "Tab Information" -msgstr "タブ情報" +msgid "Show Resource Pools" +msgstr "リソースプールの表示" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:28 -#: ../app/views/ops/_ap_form_file.html.haml:112 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:166 -#: ../app/views/ops/_ap_form_registry.html.haml:121 -#: ../app/views/ops/_classification_entry.html.haml:51 -#: ../app/views/ops/_ldap_forest_entries.html.haml:108 -#: ../app/views/ops/_ldap_forest_entries.html.haml:108 -msgid "Update this entry" -msgstr "このエントリーの更新" +msgid "Show Running Processes on this VM" +msgstr "この仮想マシンで実行されているプロセスの表示" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:48 -#: ../app/views/ops/_ap_form_file.html.haml:23 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:29 -#: ../app/views/ops/_ap_form_registry.html.haml:25 -#: ../app/views/ops/_classification_entry.html.haml:65 -#: ../app/views/ops/_ldap_server_entry.html.haml:84 -msgid "Click to add a new entry" -msgstr "クリックして新しいエントリーを追加する" +msgid "Show Sort Breaks" +msgstr "並べ替え分割の表示" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:58 -msgid "New Entry" -msgstr "新規入力" +msgid "Show Summary" +msgstr "概要の表示" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:61 -msgid "Click on this row to create a new entry" -msgstr "この行をクリックして新しいエントリーを作成する" +msgid "Show Timelines" +msgstr "タイムラインの表示" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:74 -msgid "Move selected field up" -msgstr "選択したフィールドを上に移動する" +msgid "Show Timelines for this Availability Zone" +msgstr "このアベイラビリティーゾーンのタイムラインの表示" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:89 -msgid "Move selected field down" -msgstr "選択したフィールドを下に移動する" +msgid "Show Timelines for this Cloud Provider" +msgstr "このクラウドプロバイダーのタイムラインの表示" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:99 -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:114 -#: ../app/views/ops/_ap_form_file.html.haml:82 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:216 -#: ../app/views/ops/_ap_form_registry.html.haml:166 -#: ../app/views/ops/_classification_entry.html.haml:101 -msgid "Click to delete this entry" -msgstr "クリックしてこのエントリーを削除する" +msgid "Show Timelines for this Container" +msgstr "このコンテナーのタイムラインの表示" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:120 -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:126 -#: ../app/views/ops/_ap_form_file.html.haml:71 -#: ../app/views/ops/_ap_form_file.html.haml:76 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:185 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:190 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:195 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:201 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:206 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:211 -#: ../app/views/ops/_ap_form_registry.html.haml:149 -#: ../app/views/ops/_ap_form_registry.html.haml:154 -#: ../app/views/ops/_ap_form_registry.html.haml:159 -#: ../app/views/ops/_classification_entry.html.haml:86 -#: ../app/views/ops/_classification_entry.html.haml:91 -msgid "Click to update this entry" -msgstr "クリックしてこのエントリーを更新する" +msgid "Show Timelines for this Containers Provider" +msgstr "このコンテナープロバイダーのタイムラインの表示" -#: ../app/views/miq_ae_customization/_field_values.html.haml:6 -msgid "Entries" -msgstr "エントリー" +msgid "Show Timelines for this Datawarehouse Provider" +msgstr "" -#: ../app/views/miq_ae_customization/_old_dialogs_folders.html.haml:9 -msgid "View %{name} Folder" -msgstr "%{name} フォルダーの表示" +msgid "Show Timelines for this Group" +msgstr "このグループのタイムラインの表示" -#: ../app/views/miq_ae_customization/_tag_field_values.html.haml:3 -msgid "Category Tag Entries" -msgstr "カテゴリータグエントリー" +msgid "Show Timelines for this Infrastructure Provider" +msgstr "このインフラストラクチャープロバイダーのタイムラインの表示" -#: ../app/views/miq_ae_tools/_import_export.html.haml:26 -msgid "Import Datastore classes (*.zip)" -msgstr "データストアクラスのインポート (*.zip)" +msgid "Show Timelines for this Instance" +msgstr "このインスタンスのタイムラインの表示" -#: ../app/views/miq_ae_tools/_import_export.html.haml:55 -msgid "Import Datastore via git" -msgstr "git でデータストアをインポート" +msgid "Show Timelines for this Middleware Provider" +msgstr "このミドルウェアプロバイダーのタイムラインの表示" -#: ../app/views/miq_ae_tools/_import_export.html.haml:68 -msgid "Git URL:" -msgstr "Git URL:" +msgid "Show Timelines for this Network Provider" +msgstr "このネットワークプロバイダーのタイムラインの表示" -#: ../app/views/miq_ae_tools/_import_export.html.haml:81 -msgid "Username (optional):" -msgstr "ユーザー名 (オプション):" +msgid "Show Timelines for this Node" +msgstr "このノードのタイムラインの表示" -#: ../app/views/miq_ae_tools/_import_export.html.haml:94 -msgid "Password (optional):" -msgstr "パスワード (オプション):" +msgid "Show Timelines for this Physical Infrastructure Provider" +msgstr "" -#: ../app/views/miq_ae_tools/_import_export.html.haml:107 -#: ../app/views/provider_foreman/_form.html.haml:139 -msgid "Verify Peer Certificate" -msgstr "ピア証明書の検証" +msgid "Show Timelines for this Project" +msgstr "このプロジェクトのタイムラインの表示" -#: ../app/views/miq_ae_tools/_import_export.html.haml:143 -msgid "Export all classes and instances" -msgstr "すべてのクラスとインスタンスのエクスポート" +msgid "Show Timelines for this Replicator" +msgstr "このレプリケーターのタイムラインの表示" -#: ../app/views/miq_ae_tools/_import_export.html.haml:147 -msgid "Export all classes and instances to a file" -msgstr "すべてのクラスとインスタンスのファイルへのエクスポート" +msgid "Show Timelines for this Storage Manager" +msgstr "" -#: ../app/views/miq_ae_tools/_import_export.html.haml:155 -msgid "Reset all components in the following domains: %{domains}" -msgstr "以下のドメインのすべてのコンポーネントをリセット: %{domains}" +msgid "Show Timelines for this Template" +msgstr "このテンプレートのタイムラインの表示" -#: ../app/views/miq_ae_tools/_import_export.html.haml:158 -msgid "" -"All Datastore customizations will be lost. Are you sure you want to reset all " -"classes and instances to default?" -msgstr "カスタマイズされたデータストアがすべて削除されます。すべてのクラスとインスタンスをデフォルトにリセットしますか?" +msgid "Show Timelines for this VM" +msgstr "この仮想マシンのタイムラインの表示" -#: ../app/views/miq_ae_tools/_import_export.html.haml:173 -msgid "Choose the branch or tag you would like to import" -msgstr "インポートするブランチまたはタグを選択" +msgid "Show Timelines for this item" +msgstr "この項目のタイムラインの表示" -#: ../app/views/miq_ae_tools/_import_export.html.haml:248 -msgid "Import Datastore classes" -msgstr "データストアクラスのインポート" +msgid "Show VM Memory Files installed on this %{storage}" +msgstr "この%{storage}にインストールされた仮想マシンメモリーファイルの表示" -#: ../app/views/miq_ae_tools/_import_export.html.haml:257 -msgid "Select existing domain to import into:" -msgstr "情報をインポートする既存ドメインの選択:" +msgid "Show VM Provisioned Disk Files installed on this %{table}" +msgstr "この%{table}にインストールされた仮想マシンのプロビジョニングディスクファイルの表示" -#: ../app/views/miq_ae_tools/_import_export.html.haml:273 -msgid "Select domain you wish to import from:" -msgstr "インポート元となるドメインの選択:" +msgid "Show VM Provisioned Disk Files on this Datastore" +msgstr "このデータストアについて仮想マシンのプロビジョニングされたディスクの表示" -#: ../app/views/miq_ae_tools/_import_export.html.haml:286 -msgid "Select namespaces you wish to import:" -msgstr "インポートする名前空間の選択:" +msgid "Show VM Snapshot Files installed on this %{storage}" +msgstr "この%{storage}にインストールされた仮想マシンのスナップショットファイルの表示" -#: ../app/views/miq_ae_tools/_import_export.html.haml:293 -msgid "Toggle All/None" -msgstr "すべて/なしを切り替え" +msgid "Show VM Types" +msgstr "仮想マシンタイプの表示" -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:5 -msgid "Submit Automation Simulation with the specified options" -msgstr "指定オプション付きで自動化シミュレーションを送信" +msgid "Show VM memory files on this Datastore" +msgstr "このデータソースに仮想マシンメモリーファイルを表示" -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:16 -msgid "Retry state machine simulation, with preserved attributes" -msgstr "保持された属性で状態マシンシミュレーションを再試行します" +msgid "Show VM snapshot files on this Datastore" +msgstr "このデータソースに仮想マシンスナップショットファイルを表示" -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:17 -msgid "Retry" -msgstr "再試行" +msgid "Show VMM container information" +msgstr "VMM コンテナー情報の表示" -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:25 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:51 -msgid "Reset all options" -msgstr "すべてのオプションのリセット" +msgid "Show VMM information" +msgstr "VMM 情報の表示" -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:36 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:62 -msgid "Cancel Simulation to go back to Button details" -msgstr "シミュレーションを取り消ししてボタン詳細に戻る" +msgid "Show VMs" +msgstr "仮想マシンの表示" -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:47 -msgid "Starting process must be specified" -msgstr "開始プロセスの指定が必要です" +msgid "Show VMs & Templates" +msgstr "仮想マシン & テンプレートの表示" -#: ../app/views/miq_ae_tools/_results_tabs.html.haml:4 -msgid "Tree View" -msgstr "ツリー表示" +msgid "Show VMs devices" +msgstr "仮想マシンデバイスの表示" -#: ../app/views/miq_ae_tools/_results_tabs.html.haml:7 -msgid "XML View" -msgstr "XML 表示" +msgid "Show VMs in Explorer tree." +msgstr "VM をエクスプローラーツリーで表示します。" -#: ../app/views/miq_ae_tools/_results_tabs.html.haml:10 -msgid "Object" -msgstr "オブジェクト" +msgid "Show VMs in this %{cluster_title}, but not in Resource Pools below" +msgstr "以下のリソースプールではなく、この%{cluster_title}に仮想マシンを表示" -#: ../app/views/miq_ae_tools/_results_tree.html.haml:10 -#: ../app/views/miq_ae_tools/_results_uri.html.haml:53 -#: ../app/views/miq_ae_tools/_results_xml.html.haml:10 -msgid "Enter Automation Simulation options on the left and press Submit." -msgstr "左側の自動化シミュレーションのオプションを入力して「送信」を押してください。" +msgid "Show VMs in this %{title}, but not in Resource Pools below" +msgstr "以下のリソースプールではなく、この%{title}に仮想マシンを表示" -#: ../app/views/miq_ae_tools/_results_uri.html.haml:7 -msgid "Object Info" -msgstr "オブジェクト情報" +msgid "Show VMs in this Resource Pool, but not in Resource Pools below" +msgstr "以下のリソースプールではなく、このリソースプールに仮想マシンを表示" -#: ../app/views/miq_ae_tools/_results_uri.html.haml:30 -msgid "Object Attribute Name" -msgstr "オブジェクト属性名" +msgid "Show Virtual Machines & Templates" +msgstr "仮想マシン & テンプレートの表示" -#: ../app/views/miq_ae_tools/_results_uri.html.haml:43 -msgid "Object Attribute Type" -msgstr "オブジェクト属性タイプ" +msgid "Show all %{children}" +msgstr "すべての%{children}の表示" -#: ../app/views/miq_capacity/_bottlenecks_options.html.haml:15 -msgid "Event Groups" -msgstr "イベントグループ" +msgid "Show all %{label}" +msgstr "すべての%{label}の表示" -#: ../app/views/miq_capacity/_bottlenecks_options.html.haml:38 -msgid "Show Host Events" -msgstr "ホストイベントの表示" +msgid "Show all %{models}" +msgstr "すべての%{models}の表示" -#: ../app/views/miq_capacity/_bottlenecks_report.html.haml:3 -msgid "Select a node on the left to view Bottlenecks report." -msgstr "左側のノードを選択してボトルネックレポートを表示します。" +msgid "Show all %{names}" +msgstr "すべての%{names}の表示" -#: ../app/views/miq_capacity/_bottlenecks_report.html.haml:13 -msgid "Bottleneck Event Details" -msgstr "ボトルネックイベント詳細" +msgid "Show all %{title}" +msgstr "すべての%{title}の表示" -#: ../app/views/miq_capacity/_bottlenecks_summary.html.haml:3 -msgid "Select a node on the left to view Bottlenecks timeline." -msgstr "左側のノードを選択してボトルネックタイムラインを表示します。" +msgid "Show all %{volumes} based on this Snapshot." +msgstr "このスナップショットをベースとするすべての%{volumes}の表示" -#: ../app/views/miq_capacity/_bottlenecks_tl_detail.html.haml:14 -msgid "No events available for this timeline." -msgstr "このタイムラインに利用できるイベントはありません。" +msgid "Show all Cloud Networks" +msgstr "すべてのクラウドネットワークの表示" -#: ../app/views/miq_capacity/_bottlenecks_tl_detail.html.haml:18 -msgid "No Timeline data available." -msgstr "利用可能なタイムラインデータはありません。" +msgid "Show all Cloud Object Stores" +msgstr "すべてのクラウドオブジェクトストアの表示" -#: ../app/views/miq_capacity/_planning_instructions.html.haml:3 -msgid "Plan for VM placement on %{hosts} or %{clusters}" -msgstr "%{hosts} または %{clusters} 上の仮想マシンの配置計画" +msgid "Show all Cloud Volumes attached to this VM." +msgstr "この仮想マシンに割り当てられているすべてのクラウドボリュームの表示" -#: ../app/views/miq_capacity/_planning_instructions.html.haml:12 -msgid "1 - Select a Reference VM." -msgstr "1 - 参照する仮想マシンを選択してください。" +msgid "Show all Cloud Volumes based on this Snapshot" +msgstr "このスナップショットをベースとするすべてのクラウドボリュームの表示" -#: ../app/views/miq_capacity/_planning_instructions.html.haml:22 -msgid "" -"2 - Specify the VM Options to define the source of the values used for the pla" -"n calculations." -msgstr "2 - 計画の計算に使用する値のソースを定義するために仮想マシンのオプションを指定してください。" +msgid "Show all Images" +msgstr "すべてのイメージの表示" -#: ../app/views/miq_capacity/_planning_instructions.html.haml:32 -msgid "3 - Specify Target Options to qualify target %{hosts} or %{clusters}." -msgstr "3 - ターゲット%{hosts}または%{clusters}を限定するにはターゲットオプションを指定します。" +msgid "Show all Instances" +msgstr "すべてのインスタンスの表示" -#: ../app/views/miq_capacity/_planning_instructions.html.haml:42 -msgid "4 - Change the Trend Options used to calculate the daily trends, if desired." -msgstr "4 - 日次トレンドを計算するためのトレンドオプションは変更できます。" +msgid "Show all Outputs" +msgstr "すべての出力の表示" -#: ../app/views/miq_capacity/_planning_instructions.html.haml:52 -msgid "5 - Press the Submit button." -msgstr "5 - 「送信」ボタンを押してください。" +msgid "Show all Parameters" +msgstr "すべてのパラメーターの表示" -#: ../app/views/miq_capacity/_planning_options.html.haml:9 -msgid "Reference VM Selection" -msgstr "参照する仮想マシンの選択" +msgid "Show all Playbooks" +msgstr "" -#: ../app/views/miq_capacity/_planning_options.html.haml:16 -msgid "All VMs/Instances" -msgstr "すべての仮想マシン/インスタンス" +msgid "Show all Repositories" +msgstr "" -#: ../app/views/miq_capacity/_planning_options.html.haml:16 -msgid "By Clusters / Deployment Roles" -msgstr "クラスター / デプロイメントルール別" +msgid "Show all Resource Pools" +msgstr "" -#: ../app/views/miq_capacity/_planning_options.html.haml:16 -msgid "By Filter" -msgstr "フィルター別" +msgid "Show all Resource Pools in this Resource Pool" +msgstr "" -#: ../app/views/miq_capacity/_planning_options.html.haml:16 -msgid "By Host" -msgstr "ホスト別" +msgid "Show all Resources" +msgstr "すべてのリソースの表示" -#: ../app/views/miq_capacity/_planning_options.html.haml:16 -msgid "By Providers" -msgstr "プロバイダー別" +msgid "Show all Security Groups" +msgstr "すべてのセキュリティーグループの表示" -#: ../app/views/miq_capacity/_planning_options.html.haml:39 -msgid "Choose a %{host}" -msgstr "%{host}の選択" +msgid "Show all Templates" +msgstr "すべてのテンプレートの表示" -#: ../app/views/miq_capacity/_planning_options.html.haml:51 -msgid "Choose a %{cluster}" -msgstr "%{cluster}の選択" +msgid "Show all Templates in this %{cluster_title}" +msgstr "この%{cluster_title}のすべてのテンプレートの表示" -#: ../app/views/miq_capacity/_planning_options.html.haml:62 -msgid "Choose a %{provider}" -msgstr "%{provider}の選択" +msgid "Show all Templates in this %{title}" +msgstr "この%{title}のすべてのテンプレートの表示" -#: ../app/views/miq_capacity/_planning_options.html.haml:73 -msgid "Choose a Filter" -msgstr "フィルターの選択" +msgid "Show all VMs" +msgstr "すべての仮想マシンの表示" -#: ../app/views/miq_capacity/_planning_options.html.haml:91 -msgid "No VMs found" -msgstr "仮想マシンが見つかりません" +msgid "Show all VMs in this %{cluster_title}" +msgstr "この%{cluster_title}のすべての仮想マシンの表示" -#: ../app/views/miq_capacity/_planning_options.html.haml:94 -msgid "Choose a VM" -msgstr "仮想マシンの選択" +msgid "Show all VMs in this %{title}" +msgstr "この%{title}のすべての仮想マシンの表示" -#: ../app/views/miq_capacity/_planning_options.html.haml:115 -msgid "VM Options" -msgstr "仮想マシンオプション" +msgid "Show all VMs in this Resource Pool" +msgstr "このリソースプールにすべての仮想マシンを表示" -#: ../app/views/miq_capacity/_planning_options.html.haml:177 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:25 -msgid "vCPU Count" -msgstr "vCPU 数" +msgid "Show all Volume Snapshots" +msgstr "すべてのボリュームスナップショットの表示" -#: ../app/views/miq_capacity/_planning_options.html.haml:202 -#: ../app/views/miq_capacity/_planning_options.html.haml:368 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:34 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:85 -#: ../app/views/miq_policy/_action_details.html.haml:294 -#: ../app/views/miq_policy/_action_options.html.haml:217 -#: ../app/views/ops/_selected_by_roles.html.haml:150 -#: ../app/views/ops/_selected_by_servers.html.haml:102 -#: ../app/views/ops/_server_desc.html.haml:63 -msgid "Memory Size" -msgstr "メモリーサイズ" +msgid "Show all Volumes" +msgstr "すべてのボリュームの表示" -#: ../app/views/miq_capacity/_planning_options.html.haml:222 -msgid "MB" -msgstr "MB" +msgid "Show all attached %{models}" +msgstr "接続されたすべての%{models}の表示" -#: ../app/views/miq_capacity/_planning_options.html.haml:231 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:43 -msgid "Disk Space" -msgstr "ディスク領域" +msgid "Show all files installed on this %{table}" +msgstr "この%{table}にインストールされたすべてのファイルの表示" -#: ../app/views/miq_capacity/_planning_options.html.haml:255 -msgid "* Disk space not supported for OpenStack providers" -msgstr "* ディスク領域は OpenStack プロバイダーの場合はサポートされていません" +msgid "Show all files on this Datastore" +msgstr "このデータストアにすべてのファイルを表示" -#: ../app/views/miq_capacity/_planning_options.html.haml:264 -msgid "Target Options / Limits" -msgstr "ターゲットオプション / 上限値" +msgid "Show all managed %{cluster}" +msgstr "管理されたすべての%{cluster}の表示" -#: ../app/views/miq_capacity/_planning_options.html.haml:344 -msgid "vCPUs per Core" -msgstr "コアあたりの vCPU" +msgid "Show all managed %{hosts}" +msgstr "管理されたすべての%{hosts}の表示" -#: ../app/views/miq_capacity/_planning_options.html.haml:392 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:94 -msgid "Datastore Space" -msgstr "データストアスペース" +msgid "Show all managed %{storages}" +msgstr "管理されたすべての%{storages}の表示" -#: ../app/views/miq_capacity/_planning_options.html.haml:416 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:105 -msgid "Trend Options" -msgstr "トレンドオプション" +msgid "Show all outputs" +msgstr "すべての出力の表示" -#: ../app/views/miq_capacity/_planning_options.html.haml:425 -#: ../app/views/miq_capacity/_utilization_options.html.haml:16 -msgid "Trends for past" -msgstr "過去のトレンド" +msgid "Show all parameters" +msgstr "すべてのパラメーターの表示" -#: ../app/views/miq_capacity/_planning_report.html.haml:8 -msgid "VM Counts per %{model}" -msgstr "%{model}あたりの仮想マシン数" +msgid "Show all registered %{hosts}" +msgstr "登録されたすべての%{hosts}の表示" -#: ../app/views/miq_capacity/_planning_report.html.haml:14 -msgid "Total number of VMs that can fit on all of the above %{models}: %{count}" -msgstr "上記すべての%{models}に適合する仮想マシンの総数: %{count}" +msgid "Show all resources" +msgstr "すべてのリソースの表示" -#: ../app/views/miq_capacity/_planning_report.html.haml:20 -#: ../app/views/miq_capacity/_planning_summary.html.haml:75 -msgid "* Information shown is based on available trend data going back %{weeks}." -msgstr "* 表示されている情報は %{weeks} 前からの入手可能なトレンドデータに基づいています。" +msgid "Show at Login" +msgstr "ログイン時に表示する画面" -#: ../app/views/miq_capacity/_planning_summary.html.haml:7 -#: ../app/views/miq_policy/_rsop_results.html.haml:10 -msgid "Display Options" -msgstr "表示オプション" +msgid "Show configuration" +msgstr "構成の表示" -#: ../app/views/miq_capacity/_planning_summary.html.haml:11 -msgid "Limit Chart to" -msgstr "チャートの制限:" +msgid "Show daily data from" +msgstr "日次データの表示元" -#: ../app/views/miq_capacity/_planning_summary.html.haml:34 -msgid "No planning data is available for the selected item." -msgstr "選択した項目についての利用可能な計画データはありません。" +msgid "Show disk on this VM" +msgid_plural "Show disks on this VM" +msgstr[0] "この仮想マシンのディスクの表示" +msgstr[1] "この仮想マシンのディスクの表示" -#: ../app/views/miq_capacity/_planning_summary.html.haml:39 -msgid "Eligible %{type} " -msgstr "有効な%{type} " +msgid "Show esx logs on this VM" +msgstr "この仮想マシンの ESX ログの表示" -#: ../app/views/miq_capacity/_planning_summary.html.haml:47 -msgid "Rank" -msgstr "ランク" +msgid "Show full screen Report" +msgstr "レポートの全画面表示" -#: ../app/views/miq_capacity/_planning_summary.html.haml:51 -msgid "Max VMs" -msgstr "仮想マシンの最大数" +msgid "Show full screen report" +msgstr "レポートの全画面表示" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:3 -msgid "Reference VM Profile" -msgstr "参照する仮想マシンプロファイル" +msgid "Show hourly data from" +msgstr "毎時データの表示元" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:54 -msgid "Target Options/Limits" -msgstr "ターゲットオプション/上限値" +msgid "Show in Console" +msgstr "コンソールに表示" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:76 -msgid "vCPU per Core" -msgstr "コアあたりの vCPU" +msgid "Show list of all %{name}" +msgstr "すべての%{name}の一覧の表示" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:109 -msgid "Trend for Past" -msgstr "過去のトレンド" +msgid "Show list of configuration files of %{name}" +msgstr "%{name}の設定ファイルの一覧の表示" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:121 -msgid "No Time Profile Selected" -msgstr "タイムプロファイルが選択されていません" +msgid "Show list of failed %{name}" +msgstr "失敗した%{name}の一覧の表示" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:137 -msgid "* Set in Time Profile" -msgstr "* タイムプロファイルで設定してください" +msgid "Show list of hosts with %{name}" +msgstr "%{name}を持つホストの一覧の表示" -#: ../app/views/miq_capacity/_utilization_details.html.haml:16 -#: ../app/views/miq_capacity/_utilization_summary.html.haml:51 -msgid "Select a node on the left to view Utilization information." -msgstr "左側のノードを選択して使用状況についての情報を表示します。" +msgid "Show list of hosts with failed %{name}" +msgstr "失敗した%{name}を持つホストの一覧の表示" -#: ../app/views/miq_capacity/_utilization_details.html.haml:18 -#: ../app/views/miq_capacity/_utilization_report.html.haml:29 -#: ../app/views/miq_capacity/_utilization_summary.html.haml:53 -msgid "No performance data is available for the selected item." -msgstr "選択した項目についての利用可能なパフォーマンスデータはありません。" +msgid "Show list of hosts with running %{name}" +msgstr "実行中の%{name}を持つホストの一覧の表示" -#: ../app/views/miq_capacity/_utilization_details.html.haml:26 -#: ../app/views/miq_capacity/_utilization_report.html.haml:69 -#: ../app/views/miq_capacity/_utilization_summary.html.haml:59 -msgid "" -"* Information shown is based on available trend data from %{start_time} to %{e" -"nd_time} in the %{timezone} time zone." -msgstr "" -"* 表示されている情報は %{timezone} タイムゾーンの %{start_time} から %{end_time} までの入手可能なトレンドデータに" -"基づいています。" +msgid "Show list of running %{name}" +msgstr "実行中の%{name}の一覧の表示" -#: ../app/views/miq_capacity/_utilization_options.html.haml:40 -msgid "Classification" -msgstr "分類" +msgid "Show member VMs" +msgstr "メンバー仮想マシンの表示" -#: ../app/views/miq_capacity/_utilization_options.html.haml:94 -msgid "Selected Day" -msgstr "選択日" +msgid "Show non-VM files on this Datastore" +msgstr "このデータストアに仮想マシン以外のファイルを表示" -#: ../app/views/miq_capacity/_utilization_report.html.haml:27 -msgid "Select a node on the left to view Utilization report." -msgstr "左側のノードを選択して使用状況についてのレポートを表示します。" +msgid "Show on Timeline" +msgstr "タイムラインに表示" -#: ../app/views/miq_capacity/planning.html.haml:9 -msgid "Submit Planning options" -msgstr "計画オプションを送信" +msgid "Show out of scope items:" +msgstr "スコープ外の項目の表示:" -#: ../app/views/miq_capacity/planning.html.haml:19 -#: ../app/views/miq_capacity/planning.html.haml:36 -msgid "Reset all Planning options" -msgstr "すべての計画オプションのリセット" +msgid "Show parent %s for this Job" +msgstr "このジョブの親%sの表示" -#: ../app/views/miq_capacity/planning.html.haml:32 -msgid "Select a reference VM or Manual Input source to Submit the Planning Options" -msgstr "参照する仮想マシンまたは手動入力情報源を選択して計画オプションを送信" +msgid "Show parent %{cluster} for this %{host}" +msgstr "この%{host}の親%{cluster}の表示 " -#: ../app/views/miq_policy/_action_details.html.haml:42 -msgid "Action Type" -msgstr "アクションタイプ" +msgid "Show parent Cloud Provider for this Stack" +msgstr "このスタックの親クラウドプロバイダーの表示" -#: ../app/views/miq_policy/_action_details.html.haml:69 -#: ../app/views/miq_policy/_action_options.html.haml:152 -msgid "Snapshot Settings" -msgstr "スナップショット設定" +msgid "Show parent Orchestration Stack for this Security Group" +msgstr "このセキュリティーグループの親オーケストレーションスタックの表示" -#: ../app/views/miq_policy/_action_details.html.haml:89 -#: ../app/views/miq_policy/_action_options.html.haml:178 -msgid "Snapshot Age Settings" -msgstr "スナップショット期間設定" +msgid "Show parent and child VMs" +msgstr "親仮想マシンと子仮想マシンの表示" -#: ../app/views/miq_policy/_action_details.html.haml:95 -msgid "Delete if older than" -msgstr "次より古い場合は削除する" +msgid "Show policies:" +msgstr "ポリシーの表示:" -#: ../app/views/miq_policy/_action_details.html.haml:110 -#: ../app/views/miq_policy/_action_options.html.haml:267 -msgid "Custom Automation" -msgstr "カスタム自動化" +msgid "Show policy details for %{item_name}" +msgstr "" -#: ../app/views/miq_policy/_action_details.html.haml:132 -msgid "Starting Message" -msgstr "開始メッセージ" +msgid "Show policy details for %{name}" +msgstr "%{name}のポリシー詳細の表示" -#: ../app/views/miq_policy/_action_details.html.haml:181 -msgid "No Attribute/Value Pairs found" -msgstr "属性/値ペアが見つかりませんでした" +msgid "Show registered VMs" +msgstr "登録済み仮想マシンの表示" -#: ../app/views/miq_policy/_action_details.html.haml:187 -#: ../app/views/miq_policy/_action_options.html.haml:10 -msgid "E-mail Settings" -msgstr "メール設定" +msgid "Show resources of this VM" +msgstr "この仮想マシンのリソースの表示" -#: ../app/views/miq_policy/_action_details.html.haml:196 -#: ../app/views/miq_policy/_action_options.html.haml:19 -#: ../app/views/ops/_settings_server_tab.html.haml:532 -msgid "From E-mail Address" -msgstr "メールアドレス" +msgid "Show service %s for this Job" +msgstr "このジョブのサービス%sの表示" -#: ../app/views/miq_policy/_action_details.html.haml:209 -#: ../app/views/miq_policy/_action_options.html.haml:42 -msgid "To E-mail Address" -msgstr "宛先メールアドレス" +msgid "Show the %{label} installed on this VM" +msgstr "この仮想マシンでのインストールされた%{label}の表示" -#: ../app/views/miq_policy/_action_details.html.haml:224 -msgid "Set Custom Attribute Settings" -msgstr "カスタム属性設定の設定" +msgid "Show the Advanced Setting installed on this %{title}" +msgid_plural "Show the Advanced Settings installed on this %{title}" +msgstr[0] "この%{title}でのインストールされた詳細設定の表示" +msgstr[1] "この%{title}でのインストールされた詳細設定の表示" -#: ../app/views/miq_policy/_action_details.html.haml:233 -#: ../app/views/miq_policy/_action_options.html.haml:68 -msgid "Attribute Name" -msgstr "属性名" +msgid "Show the File System Driver installed on this VM" +msgid_plural "Show the File System Drivers installed on this VM" +msgstr[0] "この仮想マシンでのインストールされたファイルシステムドライバーの表示" +msgstr[1] "この仮想マシンでのインストールされたファイルシステムドライバーの表示" -#: ../app/views/miq_policy/_action_details.html.haml:246 -#: ../app/views/miq_policy/_action_options.html.haml:85 -msgid "Value to Set" -msgstr "設定する値" +msgid "Show the File installed on this %{title}" +msgid_plural "Show the Files installed on this %{title}" +msgstr[0] "この%{title}でのインストールされたファイルの表示" +msgstr[1] "この%{title}でのインストールされたファイルの表示" -#: ../app/views/miq_policy/_action_details.html.haml:261 -#: ../app/views/miq_policy/_action_options.html.haml:236 -msgid "Reconfigure CPU" -msgstr "CPU の再設定" +msgid "Show the File installed on this VM" +msgid_plural "Show the Files installed on this VM" +msgstr[0] "この仮想マシンでのインストールされたファイルの表示" +msgstr[1] "この仮想マシンでのインストールされたファイルの表示" -#: ../app/views/miq_policy/_action_details.html.haml:270 -#: ../app/views/miq_policy/_action_options.html.haml:245 -msgid "Number of CPU's" -msgstr "CPU の数" +msgid "Show the Firewall Rule defined on this %{title}" +msgid_plural "Show the Firewall Rules defined on this %{title}" +msgstr[0] "この%{title}での定義されたファイアウォールルールの表示" +msgstr[1] "この%{title}での定義されたファイアウォールルールの表示" -#: ../app/views/miq_policy/_action_details.html.haml:285 -#: ../app/views/miq_policy/_action_options.html.haml:208 -msgid "Reconfigure Memory" -msgstr "メモリーの再設定" +msgid "Show the Group defined on this %{title}" +msgid_plural "Show the Groups defined on this %{title}" +msgstr[0] "この%{title}での定義されたグループの表示" +msgstr[1] "この%{title}での定義されたグループの表示" -#: ../app/views/miq_policy/_action_details.html.haml:309 -#: ../app/views/miq_policy/_action_options.html.haml:102 -msgid "Applied Tag" -msgstr "適用されるタグ" +msgid "Show the Group defined on this VM" +msgid_plural "Show the Groups defined on this VM" +msgstr[0] "この仮想マシンでの定義されたグループの表示" +msgstr[1] "この仮想マシンでの定義されたグループの表示" -#: ../app/views/miq_policy/_action_details.html.haml:333 -#: ../app/views/miq_policy/_alert_snmp.html.haml:9 -msgid "SNMP Trap" -msgstr "SNMP トラップ" +msgid "Show the Init Process installed on this VM" +msgid_plural "Show the Init Processes installed on this VM" +msgstr[0] "この仮想マシンでのインストールされた Init プロセスの表示" +msgstr[1] "この仮想マシンでのインストールされた Init プロセスの表示" -#: ../app/views/miq_policy/_action_details.html.haml:364 -#: ../app/views/miq_policy/_action_options.html.haml:413 -#: ../app/views/miq_policy/_alert_details.html.haml:379 -#: ../app/views/miq_policy/_alert_snmp.html.haml:80 -msgid "Trap Number" -msgstr "トラップ番号" +msgid "Show the Kernel Driver installed on this VM" +msgid_plural "Show the Kernel Drivers installed on this VM" +msgstr[0] "この仮想マシンでのインストールされたカーネルドライバーの表示" +msgstr[1] "この仮想マシンでのインストールされたカーネルドライバーの表示" -#: ../app/views/miq_policy/_action_details.html.haml:364 -#: ../app/views/miq_policy/_action_options.html.haml:413 -#: ../app/views/miq_policy/_alert_details.html.haml:379 -#: ../app/views/miq_policy/_alert_snmp.html.haml:80 -msgid "Trap Object ID" -msgstr "トラップオブジェクト ID" +msgid "Show the Package installed on this %{title}" +msgid_plural "Show the Packages installed on this %{title}" +msgstr[0] "この%{title}でのインストールされたパッケージの表示" +msgstr[1] "この%{title}でのインストールされたパッケージの表示" -#: ../app/views/miq_policy/_action_details.html.haml:387 -msgid "No variables configured." -msgstr "変数が設定されていません。" +msgid "Show the Patch defined on this %{title}" +msgid_plural "Show the Patches defined on this %{title}" +msgstr[0] "この%{title}での定義されたパッチの表示" +msgstr[1] "この%{title}での定義されたパッチの表示" -#: ../app/views/miq_policy/_action_details.html.haml:396 -#: ../app/views/miq_policy/_action_options.html.haml:445 -msgid "Object ID" -msgstr "オブジェクト ID" +msgid "Show the Patch defined on this VM" +msgid_plural "Show the Patches defined on this VM" +msgstr[0] "この仮想マシンでの定義されたパッチの表示" +msgstr[1] "この仮想マシンでの定義されたパッチの表示" -#: ../app/views/miq_policy/_action_details.html.haml:430 -msgid "Analysis Profile" -msgstr "分析プロファイル" +msgid "Show the Registry Item installed on this VM" +msgid_plural "Show the Registry Items installed on this VM" +msgstr[0] "この仮想マシンでのインストールされたレジストリー項目の表示" +msgstr[1] "この仮想マシンでのインストールされたレジストリー項目の表示" -#: ../app/views/miq_policy/_action_details.html.haml:439 -msgid "Assigned Analysis Profile" -msgstr "割り当てられる分析プロファイル" +msgid "Show the Service installed on this %{title}" +msgid_plural "Show the Services installed on this %{title}" +msgstr[0] "この %{title}でのインストールされたサービスの表示" +msgstr[1] "この %{title}でのインストールされたサービスの表示" -#: ../app/views/miq_policy/_action_details.html.haml:454 -msgid "Alerts to Evaluate" -msgstr "評価するアラート" +msgid "Show the User defined on this VM" +msgid_plural "Show the Users defined on this VM" +msgstr[0] "この仮想マシンでの定義されたパッチの表示" +msgstr[1] "この仮想マシンでの定義されたパッチの表示" -#: ../app/views/miq_policy/_action_details.html.haml:458 -msgid "No Alerts have been selected." -msgstr "選択したアラートはありません。" +msgid "Show the Win32 Service installed on this VM" +msgid_plural "Show the Win32 Services installed on this VM" +msgstr[0] "この仮想マシンでのインストールされた Win32 サービスの表示" +msgstr[1] "この仮想マシンでのインストールされた Win32 サービスの表示" -#: ../app/views/miq_policy/_action_details.html.haml:465 -msgid "View This Alert" -msgstr "このアラートの表示" +msgid "Show the advanced settings on this %{host}" +msgstr "この%{host}での詳細設定の表示" -#: ../app/views/miq_policy/_action_details.html.haml:480 -msgid "Inherit Tags" -msgstr "継承タグ" +msgid "Show the advanced settings on this VM" +msgstr "この仮想マシンでの詳細設定の表示" -#: ../app/views/miq_policy/_action_details.html.haml:489 -#: ../app/views/miq_policy/_action_options.html.haml:547 -msgid "Parent Type" -msgstr "親タイプ" +msgid "Show the files on this %{host}" +msgstr "この%{host}でのファイルの表示" -#: ../app/views/miq_policy/_action_details.html.haml:502 -#: ../app/views/miq_policy/_action_details.html.haml:526 -#: ../app/views/miq_policy/_action_options.html.haml:568 -#: ../app/views/miq_policy/_action_options.html.haml:598 -#: ../app/views/ops/_all_tabs.html.haml:77 -#: ../app/views/ops/_ap_show.html.haml:67 -msgid "Categories" -msgstr "カテゴリー" +msgid "Show the firewall rules on this %{host}" +msgstr "この%{host}でのファイアウォールルールの表示" -#: ../app/views/miq_policy/_action_details.html.haml:517 -msgid "Remove Tags" -msgstr "タグの削除" +msgid "Show the groups defined on this %{host}" +msgstr "この%{host}での定義されたグループの表示" -#: ../app/views/miq_policy/_action_details.html.haml:540 -#: ../app/views/miq_policy/_condition_details.html.haml:123 -#: ../app/views/miq_policy/_event_details.html.haml:52 -msgid "Assigned to Policies" -msgstr "ポリシーへの割り当て" +msgid "Show the packages installed on this %{host}" +msgstr "この%{host}でのインストールされたパッケージの表示" -#: ../app/views/miq_policy/_action_details.html.haml:543 -msgid "This Action is not assigned to any Policies." -msgstr "このアクションはいずれのポリシーも割り当てられていません。" +msgid "Show the patches installed on this %{host}" +msgstr "この%{host}でのインストールされたパッチの表示" -#: ../app/views/miq_policy/_action_details.html.haml:550 -#: ../app/views/miq_policy/_condition_details.html.haml:133 -#: ../app/views/miq_policy/_event_details.html.haml:62 -msgid "Click to view Policy" -msgstr "クリックしてポリシーを表示する" +msgid "Show the services installed on this %{host}" +msgstr "この%{host}でのインストールされたサービスの表示" -#: ../app/views/miq_policy/_action_list.html.haml:4 -msgid "No Actions are defined" -msgstr "アクションが定義されていません" +msgid "Show the snapshot info for this VM" +msgstr "この仮想マシンのスナップショット情報の表示" -#: ../app/views/miq_policy/_action_list.html.haml:6 -msgid "No Actions are defined that match the entered search string '%s'" -msgstr "入力した検索文字列 '%s' に一致するアクションが定義されていません" +msgid "Show the users defined on this %{host}" +msgstr "この%{host}で定義されたユーザーの表示" -#: ../app/views/miq_policy/_action_options.html.haml:59 -msgid "Custom Attribute Settings" -msgstr "カスタム属性設定" +msgid "Show this %{entity_name}'s parent %{linked_entity_name}" +msgstr "この%{entity_name}の親%{linked_entity_name}の表示" -#: ../app/views/miq_policy/_action_options.html.haml:111 -msgid "Tag to Apply" -msgstr "適用するタグ" +msgid "Show this %{host_title}'s %{cluster_title}" +msgstr "この%{host_title}の%{cluster_title}の表示" -#: ../app/views/miq_policy/_action_options.html.haml:128 -msgid "Select a Tag to Apply" -msgstr "適用するタグの選択" +msgid "Show this %{title}'s %{label}" +msgstr "この%{title}の%{label}の表示" -#: ../app/views/miq_policy/_action_options.html.haml:187 -msgid "Delete if Older than" -msgstr "次より古い場合は削除する" +msgid "Show this Availability Zone's parent Cloud Provider" +msgstr "このアベイラビリティーゾーンの親クラウドプロバイダーの表示" -#: ../app/views/miq_policy/_action_options.html.haml:228 -msgid "(Enter the value between 4 - 65636 MB)" -msgstr "(4 から 65636 MBの間の値を入力してください)" +msgid "Show this Backup's %{parent}" +msgstr "このバックアップの %{parent} の表示" -#: ../app/views/miq_policy/_action_options.html.haml:287 -msgid "Select Alerts to be Evaluated" -msgstr "評価するアラートを選択" +msgid "Show this Backup's parent %{parent}" +msgstr "このバックアップの親 %{parent} の表示" -#: ../app/views/miq_policy/_action_options.html.haml:300 -msgid "Available Alerts:" -msgstr "利用可能なアラート:" +msgid "Show this Cloud Object Store's child %{children}" +msgstr "このクラウドオブジェクトストアの子%{children}の表示" -#: ../app/views/miq_policy/_action_options.html.haml:304 -msgid " Selected Alerts:" -msgstr " 選択したアラート:" +msgid "Show this Cloud Object Store's child %{children}'" +msgstr "このクラウドオブジェクトストアの子%{children}の表示" -#: ../app/views/miq_policy/_action_options.html.haml:325 -msgid "Move selected Alerts into this Action" -msgstr "選択したアラートをこのアクション内に移動する" +msgid "Show this Cloud Object Store's parent %{parent}" +msgstr "このクラウドオブジェクトストアの親%{parent}の表示" -#: ../app/views/miq_policy/_action_options.html.haml:336 -msgid "Remove selected Alerts from this Action" -msgstr "このアクションから選択したアラートを削除" +msgid "Show this Cloud Object's parent %{parent}" +msgstr "このクラウドオブジェクトの親%{parent}の表示" -#: ../app/views/miq_policy/_action_options.html.haml:369 -msgid "SNMP Trap Settings" -msgstr "SNMP トラップ設定" +msgid "Show this Cloud Tenant's parent Cloud Provider" +msgstr "このクラウドテナントの親クラウドプロバイダーの表示" -#: ../app/views/miq_policy/_action_options.html.haml:538 -msgid "Inherit Tags Settings" -msgstr "継承タグ設定" +msgid "Show this Cloud Volume's parent %{parent}" +msgstr "このクラウドボリュームの親%{parent}の表示" -#: ../app/views/miq_policy/_action_options.html.haml:589 -msgid "Remove Tags Settings" -msgstr "タグ設定の削除" +msgid "Show this Flavor's parent Cloud Provider" +msgstr "このフレーバーの親クラウドプロバイダーの表示" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:29 -msgid "No type set" -msgstr "設定されたタイプはありません" +msgid "Show this Host Aggregate's parent Cloud Provider" +msgstr "このホストアグリゲートの親クラウドプロバイダーの表示" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:173 -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:183 -msgid "Per Minute" -msgstr "毎分" +msgid "Show this Image's parent" +msgstr "このイメージの親の表示" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:207 -msgid "Caution:" -msgstr "注意:" +msgid "Show this Orchestration Template" +msgstr "オーケストレーションテンプレートの表示" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:210 -msgid "Setting tracing to true may cause excessive log lines to be written" -msgstr "トレースを true に設定すると、過剰なログ行の書き込みが生じる可能性があります" +msgid "Show this Parent Provider" +msgstr "この親プロバイダーの表示" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:220 -msgid "Message Filter" -msgstr "メッセージフィルター" +msgid "Show this Service" +msgstr "このサービスの表示" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:248 -msgid "Hardware Attribute" -msgstr "ハードウェア属性" +msgid "Show this Service's Job" +msgstr "このサービスのジョブの表示" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:287 -msgid "No %{types} found" -msgstr "%{types}が見つかりません" +msgid "Show this Service's Parent Service" +msgstr "このサービスの親サービスの表示" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:307 -msgid "Provider no longer exists, this alert must be reconfigured" -msgstr "プロバイダーは存在しません。このアラートは再設定する必要があります" +msgid "Show this Service's Parent Service Catalog" +msgstr "このサービスの親サービスカタログの表示" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:326 -msgid "No alarms found for the selected Provider" -msgstr "選択したプロバイダーのアラームが見つかりません" +msgid "Show this Snapshot's %{parent}" +msgstr "このスナップショットの %{parent}の表示" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:340 -msgid "Choose a %{provider} first" -msgstr "最初に%{provider}を選択" +msgid "Show this Snapshot's parent %{parent}" +msgstr "このスナップショットの親%{parent}の表示" -#: ../app/views/miq_policy/_alert_details.html.haml:67 -#: ../app/views/miq_policy/_alert_profile_assign.html.haml:17 -#: ../app/views/report/_report_info.html.haml:66 -msgid "Based On" -msgstr "ベース" +msgid "Show this VM's %{label}" +msgstr "この仮想マシンの%{label}の表示" -#: ../app/views/miq_policy/_alert_details.html.haml:87 -msgid "* Cannot be changed while this Alert belongs to an Alert Profile." -msgstr "* このアラートがアラートプロファイルに属している場合は変更できません。" +msgid "Show this VM's %{label} '%{name}'" +msgstr "この仮想マシンの%{label} '%{name}' の表示" -#: ../app/views/miq_policy/_alert_details.html.haml:104 -msgid "What to Evaluate" -msgstr "評価対象" +msgid "Show this VM's %{title}" +msgstr "この仮想マシンの%{title}の表示" -#: ../app/views/miq_policy/_alert_details.html.haml:110 -#: ../app/views/miq_policy/_alert_details.html.haml:113 -msgid "Expression (Custom)" -msgstr "式 (カスタム)" +msgid "Show this VM's Resource Pool" +msgstr "この仮想マシンのリソースプールの表示" -#: ../app/views/miq_policy/_alert_details.html.haml:128 -#: ../app/views/miq_policy/_alert_details.html.haml:239 -#: ../app/views/miq_policy/_condition_details.html.haml:70 -#: ../app/views/miq_policy/_policy_details.html.haml:268 -msgid "Expression" -msgstr "式" +msgid "Show this Volume's %{availability_zone}" +msgstr "このボリュームの %{availability_zone} の表示" -#: ../app/views/miq_policy/_alert_details.html.haml:141 -#: ../app/views/miq_policy/_alert_details.html.haml:164 -msgid "Driving Event" -msgstr "起動イベント" +msgid "Show this Volume's %{cloud_tenant}" +msgstr "このボリュームの%{cloud_tenant}の表示" -#: ../app/views/miq_policy/_alert_details.html.haml:181 -msgid "Notification Frequency" -msgstr "通知頻度" +msgid "Show this Volume's %{parent}" +msgstr "このボリュームの %{parent}の表示" -#: ../app/views/miq_policy/_alert_details.html.haml:215 -#: ../app/views/miq_policy/_form_expression.html.haml:3 -msgid "Expression (Choose an element of the expression to edit)" -msgstr "式 (編集する式の要素を選択)" +msgid "Show this container volume's parent Containers Provider" +msgstr "このコンテナーボリュームの親コンテナープロバイダーの表示" -#: ../app/views/miq_policy/_alert_details.html.haml:257 -msgid "An alert must contain a valid expression." -msgstr "アラートには有効な式を使用してください。" +msgid "Show this parent %{provider} for this %{host}" +msgstr "この%{host}の親%{provider}の表示 " -#: ../app/views/miq_policy/_alert_details.html.haml:291 -msgid "Send E-mail" -msgstr "メールの送信" +msgid "Show topology" +msgstr "トポロジーの表示" -#: ../app/views/miq_policy/_alert_details.html.haml:335 -msgid "Send SNMP Trap" -msgstr "SNMP トラップの送信" +msgid "Show tree of all VMs by Resource Pool in this %{cluster_title}" +msgstr "この%{cluster_title}のリソースプール別にすべての仮想マシンのツリーを表示" -#: ../app/views/miq_policy/_alert_details.html.haml:401 -#: ../app/views/miq_policy/_alert_snmp.html.haml:106 -msgid "Variable Object ID" -msgstr "変数オブジェクト ID" +msgid "Show tree of all VMs by Resource Pool in this %{title}" +msgstr "この%{title}のリソースプール別にすべての仮想マシンのツリーを表示" -#: ../app/views/miq_policy/_alert_details.html.haml:435 -#: ../app/views/miq_policy/_alert_evm_event.html.haml:5 -msgid "Timeline Event" -msgstr "タイムラインイベント" +msgid "Show tree of all VMs in this Resource Pool" +msgstr "このリソースプールにあるすべての仮想マシンのツリーの表示" -#: ../app/views/miq_policy/_alert_details.html.haml:444 -#: ../app/views/miq_policy/_alert_evm_event.html.haml:16 -msgid "Show on Timeline" -msgstr "タイムラインに表示" +msgid "Show virtual machine analysis history" +msgstr "仮想マシンの分析履歴の表示" -#: ../app/views/miq_policy/_alert_details.html.haml:462 -msgid "Send Management Event" -msgstr "管理イベントの送信" +msgid "Show virtual machine drift history" +msgstr "仮想マシンのドリフト履歴の表示" -#: ../app/views/miq_policy/_alert_details.html.haml:471 -#: ../app/views/miq_policy/_alert_mgmt_event.html.haml:33 -msgid "Event Name" -msgstr "イベント名" +msgid "Show virtual machine genealogy" +msgstr "仮想マシンのツリー表示" -#: ../app/views/miq_policy/_alert_details.html.haml:493 -msgid "Belongs to Alert Profiles" -msgstr "アラートプロファイルへの割り当て" +msgid "Showing first" +msgstr "" -#: ../app/views/miq_policy/_alert_details.html.haml:496 -msgid "This Alert is not assigned to any Alert Profiles." -msgstr "このアラートはどのアラートプロファイルにも割り当てられていません。" +msgid "Shutdown" +msgstr "シャットダウン" -#: ../app/views/miq_policy/_alert_details.html.haml:503 -#: ../app/views/miq_policy/_alert_profile_list.html.haml:16 -msgid "View this Alert Profile" -msgstr "このアラートプロファイルの表示" +msgid "Shutdown Guest" +msgstr "ゲストのシャットダウン" -#: ../app/views/miq_policy/_alert_details.html.haml:524 -msgid "Referenced by Actions" -msgstr "アクションにより参照" +msgid "Shutdown the Guest OS on the selected items" +msgstr "選択した項目のゲスト OS をシャットダウンします" -#: ../app/views/miq_policy/_alert_details.html.haml:527 -msgid "This Alert is not referenced by any Actions." -msgstr "このアラートはどのアクションにも参照されていません。" +msgid "Shutdown the Guest OS on the selected items?" +msgstr "選択した項目のゲスト OS をシャットダウンしますか?" -#: ../app/views/miq_policy/_alert_details.html.haml:534 -msgid "View this Action" -msgstr "このアクションの表示" +msgid "Shutdown the Guest OS on this VM" +msgstr "この仮想マシンのゲスト OS をシャットダウンします" -#: ../app/views/miq_policy/_alert_list.html.haml:4 -msgid "No Alerts are defined" -msgstr "アラートが定義されていません" +msgid "Shutdown the Guest OS on this VM?" +msgstr "この仮想マシンのゲスト OS をシャットダウンしますか?" -#: ../app/views/miq_policy/_alert_list.html.haml:6 -msgid "No Alerts are defined that match the entered search string '%s'" -msgstr "入力した検索文字列 '%s' に一致するアラートが定義されていません" +msgid "Shutdown the selected items" +msgstr "選択した項目をシャットダウンします" -#: ../app/views/miq_policy/_alert_mgmt_event.html.haml:5 -msgid "Management Event" -msgstr "管理イベント" +msgid "Shutdown the selected items to Standby Mode" +msgstr "選択した項目をスタンバイモードにシャットダウンします" -#: ../app/views/miq_policy/_alert_mgmt_event.html.haml:16 -msgid "Send a Management Event" -msgstr "管理イベントの送信" +msgid "Shutdown the selected items to Standy Mode?" +msgstr "選択した項目をスタンバイモードにシャットダウンしますか?" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:42 -msgid "No Alerts are defined." -msgstr "アラートが定義されていません。" +msgid "Shutdown the selected items?" +msgstr "選択した項目をシャットダウンしますか?" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:48 -msgid "View this Alert" -msgstr "このアラートの表示" +msgid "Shutdown this item" +msgstr "この項目のシャットダウン" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:64 -msgid "Alert Selection" -msgstr "アラートの選択" +msgid "Shutdown this item to Standby Mode" +msgstr "この項目をスタンバイモードにシャットダウン" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:70 -msgid "Available %{model} Alerts:" -msgstr "利用可能な%{model}のアラート:" +msgid "Shutdown this item to Standby Mode?" +msgstr "この項目をスタンバイモードにシャットダウンしますか?" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:74 -msgid "Profile Alerts:" -msgstr "プロファイルアラート:" +msgid "Shutdown this item?" +msgstr "この項目をシャットダウンしますか?" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:93 -msgid "Move selected Alerts into this Profile" -msgstr "選択したアラートをこのプロファイル内に移動する" +msgid "Shutdown to Standby Mode" +msgstr "スタンバイモードにシャットダウン" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:105 -msgid "Remove all Alerts from this Profile" -msgstr "このプロファイルからすべてのアラートを削除" +msgid "Signal" +msgstr "シグナル" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:116 -msgid "Remove selected Alerts from this Profile" -msgstr "このプロファイルから選択したアラートを削除" +msgid "Simulate" +msgstr "シミュレート" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:178 -#: ../app/views/miq_policy/_condition_details.html.haml:115 -#: ../app/views/miq_policy/_policy_details.html.haml:405 -#: ../app/views/miq_policy/_profile_details.html.haml:183 -msgid "No notes have been entered." -msgstr "メモが入力されていません。" +msgid "Simulate using Button details" +msgstr "ボタン詳細を使用してシミュレート" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:187 -msgid "Assigned To" -msgstr "割り当て先" +msgid "Simulation" +msgstr "シミュレーション" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:238 -msgid "%{alert_profiles} with %{type} Tags" -msgstr "%{type}タグのある%{alert_profiles} " +msgid "Simulation Parameters" +msgstr "シミュレーションパラメーター" -#: ../app/views/miq_policy/_alert_profile_folders.html.haml:10 -#: ../app/views/miq_policy/_policy_folders.html.haml:33 -msgid "Open Folder" -msgstr "フォルダーを開く" +msgid "Simulation unavailable: Required Class \"System/Process\" is missing" +msgstr "シミュレーション不可: 必須クラス\"システム/プロセス\" が見つかりません" -#: ../app/views/miq_policy/_alert_profile_list.html.haml:7 -msgid "No %{alert_profile_type} Alert Profiles are defined." -msgstr "%{alert_profile_type}アラートプロファイルが定義されていません。" +msgid "Single Select" +msgstr "単一選択" -#: ../app/views/miq_policy/_alert_profile_list.html.haml:9 -msgid "" -"No %{alert_profile_type} Alert Profiles are defined that match the entered sea" -"rch string." -msgstr "入力した検索文字列に一致する%{alert_profile_type}アラートプロファイルが定義されていません。" +msgid "Single VM/Instance" +msgstr "" -#: ../app/views/miq_policy/_alert_snmp.html.haml:19 -msgid "Send an SNMP Trap" -msgstr "SNMPトラップの送信" +msgid "Single Value" +msgstr "単一 値" -#: ../app/views/miq_policy/_condition_details.html.haml:62 -#: ../app/views/miq_policy/_form_scope.html.haml:25 -msgid "No scope defined, the scope of this condition includes all elements." -msgstr "スコープが定義されていません。この条件のスコープはすべての要素を含みます。" +msgid "Size" +msgstr "サイズ" -#: ../app/views/miq_policy/_condition_details.html.haml:87 -msgid "A condition must contain a valid expression." -msgstr "条件には有効な式が含まれている必要があります。" +msgid "Size (in gigabytes)" +msgstr "サイズ (ギガバイト単位)" -#: ../app/views/miq_policy/_condition_details.html.haml:126 -msgid "This Condition is not assigned to any Policies." -msgstr "この条件はいずれのポリシーも割り当てられていません。" +msgid "Small Trees" +msgstr "コンパクトツリー" -#: ../app/views/miq_policy/_condition_folders.html.haml:10 -msgid "View Condition" -msgstr "条件の表示" +msgid "Smart Management" +msgstr "スマート管理" -#: ../app/views/miq_policy/_condition_folders.html.haml:20 -msgid "%{object} Conditions" -msgstr "%{object}の条件" +msgid "SmartProxy Affinity" +msgstr "SmartProxy アフィニティー" -#: ../app/views/miq_policy/_condition_list.html.haml:10 -msgid "No %{model} Conditions are defined." -msgstr "%{model}の条件が定義されていません。" +msgid "SmartProxy Server IP" +msgstr "SmartProxy サーバー IP" -#: ../app/views/miq_policy/_condition_list.html.haml:12 -msgid "No %{model} Conditions are defined that match the entered search string." -msgstr "入力した検索文字列に一致する%{model}の条件が定義されていません。" +msgid "SmartState Analysis cannot be performed when there is no active Host" +msgstr "" -#: ../app/views/miq_policy/_condition_list.html.haml:19 -#: ../app/views/miq_policy/_policy_details.html.haml:234 -msgid "View this Condition" -msgstr "この条件の表示" +msgid "Smartstate Analysis" +msgstr "Smartstate 分析" -#: ../app/views/miq_policy/_event_details.html.haml:30 -msgid "Event Group" -msgstr "イベントグループ" +msgid "Snapshot" +msgid_plural "Snapshots" +msgstr[0] "スナップショット" +msgstr[1] "スナップショット" -#: ../app/views/miq_policy/_event_details.html.haml:41 -msgid "Attached to Policy" -msgstr "ポリシーへの割り当て" +msgid "Snapshot Age Settings" +msgstr "スナップショット期間設定" -#: ../app/views/miq_policy/_event_details.html.haml:55 -msgid "This Event is not assigned to any Policies." -msgstr "このイベントはいずれのポリシーも割り当てられていません。" +msgid "Snapshot Age must be selected" +msgstr "スナップショット期間を選択する必要があります" -#: ../app/views/miq_policy/_event_details.html.haml:78 -msgid "Order of Actions if ALL Conditions are True" -msgstr "すべての条件が「true」である場合のアクションの順序" +msgid "Snapshot Create" +msgstr "スナップショット作成" -#: ../app/views/miq_policy/_event_details.html.haml:85 -#: ../app/views/miq_policy/_event_details.html.haml:261 -msgid "Available Actions:" -msgstr "利用可能なアクション:" +msgid "Snapshot Delete" +msgstr "スナップショット削除" -#: ../app/views/miq_policy/_event_details.html.haml:89 -#: ../app/views/miq_policy/_event_details.html.haml:265 -msgid " Selected Actions:" -msgstr " 選択したアクション:" +msgid "Snapshot Information" +msgstr "スナップショット情報" -#: ../app/views/miq_policy/_event_details.html.haml:111 -msgid "Move selected Actions into this Event" -msgstr "選択したアクションをこのイベント内に移動する" +msgid "Snapshot Name" +msgstr "スナップショット名" -#: ../app/views/miq_policy/_event_details.html.haml:121 -msgid "Remove all Actions from this Event" -msgstr "このイベントからすべてのアクションを削除" +msgid "Snapshot Settings" +msgstr "スナップショット設定" -#: ../app/views/miq_policy/_event_details.html.haml:130 -msgid "Remove selected Actions from this Event" -msgstr "このイベントから選択したアクションを削除" +msgid "Snapshot VM '%{name}'" +msgstr "仮想マシン '%{name}' のスナップショット" -#: ../app/views/miq_policy/_event_details.html.haml:156 -msgid "Move selected Action up" -msgstr "選択したアクションを上に移動する" +msgid "Snapshot VM '%{name}''" +msgstr " 仮想マシン '%{name}'' のスナップショット" -#: ../app/views/miq_policy/_event_details.html.haml:166 -msgid "Move selected Action down" -msgstr "選択したアクションを下に移動する" +msgid "Snapshot VM memory" +msgstr "スナップショット仮想マシンメモリー" -#: ../app/views/miq_policy/_event_details.html.haml:176 -msgid "Set selected Actions to Synchronous" -msgstr "選択したアクションを同期に設定" +msgid "Snapshot for Cloud Volume \"%{name}\" created" +msgstr "クラウドボリューム \"%{name}\" のスナップショットが作成されました" -#: ../app/views/miq_policy/_event_details.html.haml:186 -msgid "Set selected Actions to Asynchronous" -msgstr "選択したアクションを非同期に設定" +msgid "Snapshot of Cloud Volume \"%{name}\" was cancelled by the user" +msgstr "クラウドボリューム \"%{name}\" のスナップショットがユーザーにより取り消されました" -#: ../app/views/miq_policy/_event_details.html.haml:203 -msgid "This Event has no true Actions." -msgstr "このイベントには true アクションがありません。" +msgid "Snapshot of VM %{name} was cancelled by the user" +msgstr "仮想マシン %{name} のスナップショットがユーザーにより取り消されました" -#: ../app/views/miq_policy/_event_details.html.haml:216 -#: ../app/views/miq_policy/_event_details.html.haml:396 -msgid "Synchronous" -msgstr "同期" +msgid "Snapshots" +msgstr "スナップショット" -#: ../app/views/miq_policy/_event_details.html.haml:228 -#: ../app/views/miq_policy/_event_details.html.haml:408 -#: ../app/views/miq_policy/_policy_details.html.haml:352 -#: ../app/views/miq_policy/_policy_details.html.haml:367 -msgid "View this Event Action" -msgstr "このイベントアクションの表示" +msgid "Sockets" +msgstr "ソケット" -#: ../app/views/miq_policy/_event_details.html.haml:254 -msgid "Order of Actions if ANY Conditions are False" -msgstr "いずれかの条件が「false」である場合のアクションの順序" +msgid "Soft Reboot" +msgstr "ソフトリブート" -#: ../app/views/miq_policy/_event_details.html.haml:383 -msgid "This Event has no false Actions." -msgstr "このイベントには false アクションがありません。" +msgid "Soft Reboot the selected items" +msgstr "選択した項目をソフトリブートします" -#: ../app/views/miq_policy/_event_list.html.haml:5 -msgid "No Events are defined" -msgstr "イベントが定義されていません" +msgid "Soft Reboot the selected items?" +msgstr "選択した項目をソフトリブートしますか?" -#: ../app/views/miq_policy/_event_list.html.haml:7 -msgid "No Events are defined that match the entered search string '%s'" -msgstr "入力した検索文字列 '%s' に一致するイベントが定義されていません" +msgid "Soft Reboot this Instance" +msgstr "このインスタンスをソフトリブートします" -#: ../app/views/miq_policy/_event_list.html.haml:14 -msgid "View this Event" -msgstr "このイベントの表示" +msgid "Soft Reboot this Instance?" +msgstr "このインスタンスをソフトリブートしますか?" -#: ../app/views/miq_policy/_export.html.haml:17 -#: ../app/views/miq_policy/import.html.haml:54 -#: ../app/views/miq_policy/import.html.haml:54 -msgid "Resolve conflicts to import the file" -msgstr "競合を解決してファイルをインポート" +msgid "Software" +msgstr "ソフトウェア" -#: ../app/views/miq_policy/_export.html.haml:23 -#: ../app/views/miq_policy/import.html.haml:60 -#: ../app/views/miq_policy/import.html.haml:60 -msgid "Commit Import" -msgstr "インポートのコミット" +msgid "Software updates have not yet been configured. Select Edit Registration to register appliances in this region with Red Hat to receive software updates and other benefits." +msgstr "ソフトウェア更新はまだ設定されていません。このリージョンのアプリケーションを Red Hat に登録するために「登録の編集」を選択すると、ソフトウエア更新と他の特典を取得できます。" -#: ../app/views/miq_policy/_export.html.haml:33 -#: ../app/views/miq_policy/import.html.haml:73 -msgid "Cancel Import" -msgstr "インポートの取り消し" +msgid "Something is wrong, try reloading the page" +msgstr "" -#: ../app/views/miq_policy/_export.html.haml:102 -msgid "Export:" -msgstr "エクスポート:" +msgid "Sorry, the username or password you entered is incorrect." +msgstr "入力したユーザー名またはパスワードが間違っています。" -#: ../app/views/miq_policy/_export.html.haml:122 -msgid "Available %{title}:" -msgstr "利用可能な%{title}:" +msgid "Sort By" +msgstr "並べ替え" -#: ../app/views/miq_policy/_export.html.haml:148 -msgid "Export Selected %{title}" -msgstr "選択した %{title} のエクスポート" +msgid "Sort Criteria" +msgstr "並べ替え条件" -#: ../app/views/miq_policy/_form_expression.html.haml:8 -msgid "Expression (Press the \"Edit\" button to edit the expression)" -msgstr "式 (式を編集するには \"編集\" ボタンを押す)" +msgid "Sort Order" +msgstr "並べ替え順序" -#: ../app/views/miq_policy/_form_expression.html.haml:10 -#: ../app/views/report/_form_filter.html.haml:22 -#: ../app/views/report/_form_filter.html.haml:62 -msgid "Edit this Expression" -msgstr "この式の編集" +msgid "Sort the Report By" +msgstr "レポートの並び替え条件" -#: ../app/views/miq_policy/_form_expression.html.haml:21 -msgid "No expression defined, a condition must contain a valid expression." -msgstr "式が定義されていません。条件には有効な式が含まれている必要があります。" +msgid "Source" +msgstr "ソース" -#: ../app/views/miq_policy/_form_scope.html.haml:3 -msgid "Scope (Choose an element of the scope to edit)" -msgstr "スコープ (編集するスコープの要素を選んでください)" +msgid "Spaces are prohibited" +msgstr "スペースは禁止されています" -#: ../app/views/miq_policy/_form_scope.html.haml:10 -msgid "Scope (Press the \"Edit\" button to edit the scope)" -msgstr "スコープ (スコープを編集するには \"編集\" ボタンを押してください)" +msgid "Specific Hosts" +msgstr "" -#: ../app/views/miq_policy/_form_scope.html.haml:12 -msgid "Edit this Scope" -msgstr "このスコープの編集" +msgid "Specified NTP settings applied here will override Zone NTP settings." +msgstr "ここで指定される NTP 設定はゾーン NTP 設定をオーバーライドします。" -#: ../app/views/miq_policy/_policy_details.html.haml:82 -msgid "By Username %{username} %{created_on}" -msgstr "ユーザー名別: %{username} %{created_on}" +msgid "Specify CDN configuration" +msgstr "CDN 構成の指定" -#: ../app/views/miq_policy/_policy_details.html.haml:97 -msgid "By Username %{username} %{updated_on}" -msgstr "ユーザー名別: %{username} %{updated_on}" +msgid "Specify Calculations for Summary Rows" +msgstr "概要列の計算を指定" -#: ../app/views/miq_policy/_policy_details.html.haml:107 -msgid "Scope (Choose an element of the Policy scope to edit)" -msgstr "スコープ (編集するポリシーの要素を選んでください)" +msgid "Specify Calculations of Numeric Values for Grouped Records" +msgstr "グループ化されたレコードの数値計算を指定" -#: ../app/views/miq_policy/_policy_details.html.haml:130 -msgid "No Policy scope defined, the scope of this policy includes all elements." -msgstr "ポリシーのスコープが定義されていません。このポリシーのスコープにははすべての要素が含まれます。" +msgid "Specify Column Headers and Formats" +msgstr "列ヘッダーと形式の指定" -#: ../app/views/miq_policy/_policy_details.html.haml:138 -msgid "Condition Selection" -msgstr "条件の選択" +msgid "Specify Column Styles" +msgstr "列スタイルの指定" -#: ../app/views/miq_policy/_policy_details.html.haml:144 -msgid "Available %{model} Conditions:" -msgstr "利用可能な%{model}の条件:" +msgid "Specify Driver" +msgstr "" -#: ../app/views/miq_policy/_policy_details.html.haml:148 -msgid "Policy Conditions:" -msgstr "ポリシー条件:" +msgid "Specify a list of machines to deploy on (No existing provider)" +msgstr "デプロイするマシンの一覧を指定 (既存プロバイダーなし)" -#: ../app/views/miq_policy/_policy_details.html.haml:172 -msgid "Move selected Conditions into this Policy" -msgstr "選択した条件をこのポリシー内に移動する" +msgid "Specify role(s) for this host" +msgstr "このホストのロールの指定" -#: ../app/views/miq_policy/_policy_details.html.haml:172 -msgid "Remove all Conditions from this Policy" -msgstr "このポリシーからすべての条件を削除" +msgid "Stack" +msgstr "スタック " -#: ../app/views/miq_policy/_policy_details.html.haml:172 -msgid "Remove selected Conditions from this Policy" -msgstr "このポリシーから選択した条件を削除" +msgid "Stacks" +msgstr "スタック" -#: ../app/views/miq_policy/_policy_details.html.haml:207 -msgid "" -"* If all Conditions are removed from a Policy, it will be unconditional and al" -"ways evaluate to true." -msgstr "* ポリシーからすべての条件が削除された場合は、無条件となり常に true と評価されます。" +msgid "Standard NFS Server" +msgstr "標準 NFS サーバー" -#: ../app/views/miq_policy/_policy_details.html.haml:214 -msgid "" -"No conditions defined. This policy is unconditional and will ALWAYS return tru" -"e." -msgstr "条件が定義されていません。このポリシーは無条件で常に「true」を返します。" +msgid "Start" +msgstr "開始" -#: ../app/views/miq_policy/_policy_details.html.haml:227 -msgid "Scopes / Expressions" -msgstr "スコープ / 式" +msgid "Start Date" +msgstr "開始日" -#: ../app/views/miq_policy/_policy_details.html.haml:286 -#: ../app/views/miq_policy/_rsop_form.html.haml:15 -msgid "Event Selection" -msgstr "イベント選択" +msgid "Start Page" +msgstr "スタートページ" -#: ../app/views/miq_policy/_policy_details.html.haml:306 -msgid "This policy does not currently respond to any Events." -msgstr "このポリシーは現在どのイベントにも対応しません。" +msgid "Start Role" +msgstr "ロールの開始" -#: ../app/views/miq_policy/_policy_details.html.haml:328 -#: ../app/views/miq_policy/_policy_details.html.haml:334 -msgid "View this Policy Event" -msgstr "このポリシーイベントの表示" +msgid "Start Server" +msgstr "サーバーの起動" -#: ../app/views/miq_policy/_policy_details.html.haml:345 -msgid "* No Actions are configured for this Event." -msgstr "* このイベントにはアクションが設定されていません。" +msgid "Start Server Group" +msgstr "" -#: ../app/views/miq_policy/_policy_details.html.haml:414 -msgid "Belongs to Profiles" -msgstr "プロファイルへの割り当て" +msgid "Start Servers in this Server Group" +msgstr "" -#: ../app/views/miq_policy/_policy_details.html.haml:417 -msgid "This Policy is not assigned to any Profiles." -msgstr "このポリシーはどのプロファイルにも割り当てられていません。" +msgid "Start TLS Automatically" +msgstr "TLS の自動開始" -#: ../app/views/miq_policy/_policy_details.html.haml:424 -#: ../app/views/miq_policy/_profile_list.html.haml:16 -#: ../app/views/report/_role_list.html.haml:31 -msgid "View this Profile" -msgstr "このプロファイルの表示" +msgid "Start Timestamp" +msgstr "タイムスタンプの開始" -#: ../app/views/miq_policy/_policy_list.html.haml:8 -msgid "No %{model} %{mode} Policies are defined." -msgstr "%{model} %{mode}のポリシーが定義されていません。" +msgid "Start is not allowed for the selected item" +msgstr "選択した項目は開始できません" -#: ../app/views/miq_policy/_policy_list.html.haml:10 -msgid "No %{model} %{mode} Policies are defined that match the entered search string." -msgstr "入力した検索文字列に一致する%{model} %{mode}のポリシーが定義されていません。" +msgid "Start successfully initiated" +msgstr "開始が正常に実行されました" -#: ../app/views/miq_policy/_profile_details.html.haml:45 -msgid "Policy Selection" -msgstr "ポリシー選択" +msgid "Start the %{host} Discovery" +msgstr "%{host} 検出の開始" -#: ../app/views/miq_policy/_profile_details.html.haml:51 -msgid "Available Policies:" -msgstr "利用可能なポリシー:" +msgid "Start the %{server_role_description} Role on Server %{server_name} [%{server_id}]" +msgstr "サーバー %{server_name} [%{server_id}] で %{server_role_description} ロールを開始" -#: ../app/views/miq_policy/_profile_details.html.haml:55 -msgid "Profile Policies:" -msgstr "プロファイルポリシー:" +msgid "Start the %{server_role_description} Role on Server %{server_name} [%{server_id}]?" +msgstr "サーバー %{server_name} [%{server_id}] で %{server_role_description} ロールを開始しますか?" -#: ../app/views/miq_policy/_profile_details.html.haml:77 -msgid "Move selected Policies into this Profile" -msgstr "選択したポリシーをこのプロファイル内に移動する" +msgid "Start the selected items" +msgstr "選択した項目を開始します" -#: ../app/views/miq_policy/_profile_details.html.haml:87 -msgid "Remove all Policies from this Profile" -msgstr "このプロファイルからすべてのポリシーを削除" +msgid "Start the selected items?" +msgstr "選択した項目を開始しますか?" -#: ../app/views/miq_policy/_profile_details.html.haml:96 -msgid "Remove selected Policies from this Profile" -msgstr "このプロファイルから選択したポリシーを削除" +msgid "Start this Instance" +msgstr "このインスタンスを開始します" -#: ../app/views/miq_policy/_profile_details.html.haml:128 -msgid "No Policies are defined." -msgstr "ポリシーが定義されていません。" +msgid "Start this Instance?" +msgstr "このインスタンスを開始しますか?" -#: ../app/views/miq_policy/_profile_details.html.haml:134 -msgid "View this %{model} Policy" -msgstr "この%{model}ポリシーの表示" +msgid "Start this server" +msgstr "このサーバーの起動" -#: ../app/views/miq_policy/_profile_list.html.haml:7 -msgid "No %{mode} Policy Profiles are defined." -msgstr "%{mode}のポリシープロファイルが定義されていません。" +msgid "Started" +msgstr "" -#: ../app/views/miq_policy/_profile_list.html.haml:9 -msgid "No %{mode} Policy Profiles are defined that match the entered search string." -msgstr "入力した検索文字列に一致する%{mode}のポリシープロファイルが定義されていません。" +msgid "Started At" +msgstr "開始日時" -#: ../app/views/miq_policy/_rsop_form.html.haml:47 -msgid "By %{clusters}" -msgstr "%{clusters}別" +msgid "Started On" +msgstr "開始日" -#: ../app/views/miq_policy/_rsop_form.html.haml:47 -msgid "By %{hosts}" -msgstr "%{hosts}別" +msgid "Started:" +msgstr "開始:" -#: ../app/views/miq_policy/_rsop_form.html.haml:47 -msgid "By Cloud/Infrastructure Providers" -msgstr "クラウド/インフラストラクチャープロバイダー別" +msgid "Starting Class must be selected" +msgstr "開始クラスを選択する必要があります" -#: ../app/views/miq_policy/_rsop_form.html.haml:47 -msgid "Single VM" -msgstr "単一の仮想マシン" +msgid "Starting Date" +msgstr "開始日" -#: ../app/views/miq_policy/_rsop_options.html.haml:11 -msgid "Submit Policy Simulation for the selected VMs" -msgstr "選択した仮想マシンのポリシーシミュレーションの送信" +msgid "Starting Message" +msgstr "開始メッセージ" -#: ../app/views/miq_policy/_rsop_options.html.haml:21 -#: ../app/views/miq_policy/_rsop_options.html.haml:39 -msgid "Reset all Policy Simulation options" -msgstr "すべてのポリシーシミュレーションのオプションのリセット" +msgid "Starting Process is required" +msgstr "開始プロセスが必要です" -#: ../app/views/miq_policy/_rsop_options.html.haml:35 -msgid "Select a VM to Submit the Simulation Options" -msgstr "仮想マシンを選択してシミュレーションのオプションを送信" +msgid "Starting Time" +msgstr "開始時間" -#: ../app/views/miq_policy/_rsop_results.html.haml:18 -#: ../app/views/vm_common/_policy_options.html.haml:16 -msgid "Show out of scope items:" -msgstr "スコープ外の項目の表示:" +msgid "Starting process must be specified" +msgstr "開始プロセスの指定が必要です" -#: ../app/views/miq_policy/_rsop_results.html.haml:34 -#: ../app/views/vm_common/_policy_options.html.haml:32 -msgid "Show policies:" -msgstr "ポリシーの表示:" +msgid "Starting values" +msgstr "開始値" -#: ../app/views/miq_policy/_rsop_results.html.haml:46 -msgid "Passed" -msgstr "合格" +msgid "State" +msgstr "状態" -#: ../app/views/miq_policy/_rsop_results.html.haml:57 -#: ../app/views/vm_common/_policy_options.html.haml:54 -msgid "Failed" -msgstr "失敗" +msgid "State Changed On" +msgstr "状態の変更日" -#: ../app/views/miq_policy/_rsop_results.html.haml:65 -msgid "Policy Simulation Results" -msgstr "ポリシーシミュレーションの結果" +msgid "States of Root Orchestration Stacks" +msgstr "ルートオーケストレーションスタックの状態" -#: ../app/views/miq_policy/_rsop_results.html.haml:71 -msgid "* Items in" -msgstr "* 次の項目" +msgid "Status" +msgstr "ステータス" -#: ../app/views/miq_policy/_rsop_results.html.haml:77 -msgid "red italics" -msgstr "赤のイタリック" +msgid "Status = %{row}" +msgstr "統計 = %{row}" -#: ../app/views/miq_policy/_rsop_results.html.haml:81 -msgid "do not change the outcome of the scope or expression" -msgstr "の項目はスコープまたは式の結果を変更しません" +msgid "Status = Queued" +msgstr "" -#: ../app/views/miq_policy/_rsop_results.html.haml:101 -msgid "* Enter Policy Simulation options on the left and press Submit" -msgstr "* 左側のポリシーシミュレーションのオプションを入力して「送信」を押してください" +msgid "Status = Running" +msgstr "" -#: ../app/views/miq_request/_ae_prov_show.html.haml:3 -msgid "Automations Tasks" -msgstr "自動化タスク" +msgid "Status of Regional Roles for Servers in %{kind} %{description}" +msgstr "%{kind} %{description} にあるサーバーのロールのステータス" -#: ../app/views/miq_request/_pre_prov.html.haml:8 -msgid "Provision %{what} based on the selected %{type}" -msgstr "選択する%{type}をベースとした%{what}のプロビジョニング" +msgid "Status of Roles for Servers in %{kind} %{description}" +msgstr "%{kind} %{description} にあるサーバーのロールのステータス" -#: ../app/views/miq_request/_pre_prov.html.haml:18 -msgid "Hide deprecated" -msgstr "" +msgid "Status: " +msgstr "ステータス: " -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:11 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:11 -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:11 -#: ../app/views/shared/views/_prov_dialog.html.haml:10 -msgid "Request Information" -msgstr "要求情報" +msgid "Step 1/3: Datasource Attributes" +msgstr "手順 1/3: データソース属性" -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:18 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:18 -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:19 -#: ../app/views/shared/views/_prov_dialog.html.haml:19 -msgid "Manager" -msgstr "マネージャー" +msgid "Step 2/3: JDBC Driver" +msgstr "手順 2/3: JDBC ドライバー" -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:26 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:26 -#: ../app/views/shared/views/_prov_dialog.html.haml:28 -msgid "Select Tags to apply" -msgstr "適用するタグの選択" +msgid "Step 3/3: Connection Settings" +msgstr "手順 3/3: 接続設定" -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:50 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:82 -#: ../app/views/shared/views/_prov_dialog.html.haml:339 -#: ../app/views/shared/views/_prov_dialog.html.haml:373 -msgid "IP Address Information" -msgstr "IP アドレス情報" +msgid "Stop" +msgstr "停止" -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:60 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:117 -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:82 -#: ../app/views/report/_show_schedule.html.haml:3 -#: ../app/views/shared/views/_prov_dialog.html.haml:408 -msgid "Schedule Info" -msgstr "スケジュール情報" +msgid "Stop Server" +msgstr "サーバーの停止" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:11 -msgid "(MB) memory" -msgstr "(MB) メモリー" +msgid "Stop Server Group" +msgstr "" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:11 -msgid "instances" -msgstr "インスタンス" +msgid "Stop Servers in this Server Group" +msgstr "" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:11 -msgid "vcpus" -msgstr "vCPU" +msgid "Stop the selected items" +msgstr "選択した項目の停止" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:18 -msgid "Cloud Quota" -msgstr "クラウドクォータ" +msgid "Stop the selected items?" +msgstr "選択した項目を停止しますか?" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:22 -msgid "Cloud Tenant:" -msgstr "クラウドテナント:" +msgid "Stop this Instance" +msgstr "このインスタンスを停止します" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:30 -msgid "Please select a Cloud Tenant from the Environment Tab" -msgstr "環境タブからクラウドテナントを選択してください" +msgid "Stop this Instance?" +msgstr "このインスタンスを停止しますか?" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:34 -msgid "Instance Type:" -msgstr "インスタンスタイプ:" +msgid "Stop this Middleware Server" +msgstr "このミドルウェアサーバーの停止" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:45 -#: ../app/views/ops/_selected_by_servers.html.haml:186 -msgid "available" -msgstr "利用可能" +msgid "Stop this server" +msgstr "このサーバーの停止" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:50 -msgid "Please select an Instance Type from above" -msgstr "上記からインスタンスタイプを選択してください" +msgid "Stopped On" +msgstr "停止日" -#: ../app/views/miq_request/_prov_field.html.haml:161 -#: ../app/views/miq_request/_prov_field.html.haml:166 -msgid "Lookup" -msgstr "検索" +msgid "Storage" +msgstr "ストレージ" -#: ../app/views/miq_request/_prov_field.html.haml:166 -#: ../app/views/ops/_rbac_group_details.html.haml:172 -#: ../app/views/ops/_rbac_group_details.html.haml:244 -msgid "LDAP Group Lookup" -msgstr "LDAP グループ検索" +msgid "Storage Adapters" +msgstr "ストレージアダプター" -#: ../app/views/miq_request/_prov_field.html.haml:185 -#: ../app/views/miq_request/_prov_field.html.haml:194 -msgid "VM Number" -msgstr "仮想マシン番号" +msgid "Storage Chargeback Rate \"%{name}\"" +msgstr "" -#: ../app/views/miq_request/_prov_field.html.haml:212 -#: ../app/views/miq_request/_prov_field.html.haml:277 -#: ../app/views/miq_request/_prov_field.html.haml:329 -#: ../app/views/miq_request/_prov_field.html.haml:448 -#: ../app/views/miq_request/_prov_field.html.haml:498 -#: ../app/views/miq_request/_prov_field.html.haml:541 -msgid "No Choices Available" -msgstr "使用できる選択肢がありません。" +msgid "Storage Chargeback Rates" +msgstr "ストレージのチャージバックレート" -#: ../app/views/miq_request/_prov_field.html.haml:397 -msgid "* Only a single value can be assigned from these Tag Categories" -msgstr "* タグカテゴリーでは 1 つの値のみを割り当てることができます" +msgid "Storage Clusters" +msgstr "ストレージクラスター" -#: ../app/views/miq_request/_prov_form_buttons.html.haml:16 -#: ../app/views/miq_request/_prov_form_buttons.html.haml:46 -msgid "Cancel this provisioning request" -msgstr "このプロビジョニング要求を取り消す" +msgid "Storage Manager" +msgstr "" -#: ../app/views/miq_request/_prov_form_buttons.html.haml:19 -msgid "Submit this provisioning request" -msgstr "このプロビジョニング要求の送信" +msgid "Storage Managers" +msgstr "ストレージマネージャー" -#: ../app/views/miq_request/_prov_form_buttons.html.haml:22 -msgid "Continue this provisioning request" -msgstr "このプロビジョニング要求を継続" +msgid "Storage Medium Type" +msgstr "ストレージメディアのタイプ" -#: ../app/views/miq_request/_prov_host_dialog.html.haml:90 -#: ../app/views/shared/views/_prov_dialog.html.haml:347 -#: ../app/views/shared/views/_prov_dialog.html.haml:381 -#: ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:35 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:101 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:230 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:323 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:388 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:49 -msgid "DNS" -msgstr "DNS" +msgid "Storage Profile" +msgstr "ストレージプロファイル" -#: ../app/views/miq_request/_prov_host_dialog.html.haml:98 -#: ../app/views/shared/views/_prov_dialog.html.haml:389 -msgid "Customize Template" -msgstr "カスタマイズテンプレート" +msgid "Storage Rate Assignments" +msgstr "ストレージレートの割り当て" -#: ../app/views/miq_request/_prov_host_dialog.html.haml:107 -#: ../app/views/shared/views/_prov_dialog.html.haml:398 -msgid "Selected Template Contents" -msgstr "選択したテンプレートコンテンツ" +msgid "String" +msgstr "文字列" -#: ../app/views/miq_request/_prov_options.html.haml:8 -#: ../app/views/miq_task/_tasks_options.html.haml:6 -msgid "Filter By" -msgstr "フィルター条件" +msgid "String List" +msgstr "文字列リスト" -#: ../app/views/miq_request/_prov_options.html.haml:18 -msgid "Requester:" -msgstr "要求者:" +msgid "Style" +msgstr "スタイル" -#: ../app/views/miq_request/_prov_options.html.haml:34 -#: ../app/views/ops/_settings_server_tab.html.haml:222 -msgid "None Available" -msgstr "利用不可" +msgid "Styling" +msgstr "スタイリング" -#: ../app/views/miq_request/_prov_options.html.haml:42 -msgid "Approval State:" -msgstr "承認状態:" +msgid "Styling for '%{item}', first value is in error: %{message}" +msgstr "'%{item}' 用スタイリングの最初の値がエラーになっています: %{message}" -#: ../app/views/miq_request/_prov_options.html.haml:86 -msgid "Request Date:" -msgstr "要求日:" +msgid "Styling for '%{item}', second value is in error: %{message}" +msgstr "'%{item}' 用スタイリングの 2 番目の値がエラーになっています: %{message}" -#: ../app/views/miq_request/_prov_options.html.haml:106 -msgid "Reason:" -msgstr "理由:" +msgid "Styling for '%{item}', third value is in error: %{message}" +msgstr "'%{item}' 用スタイリングの 3 番目の値がエラーになっています: %{message}" -#: ../app/views/miq_request/_prov_options.html.haml:129 -#: ../app/views/miq_request/_prov_options.html.haml:163 -#: ../app/views/miq_task/_tasks_options.html.haml:162 -#: ../app/views/miq_task/_tasks_options.html.haml:195 -msgid "Set filters to default" -msgstr "フィルターをデフォルトに設定" +msgid "Styling tab is not available until at least 1 field has been selected" +msgstr "スタイリング タブは 1 つの以上のフィールドが選択されるまで使用できません" -#: ../app/views/miq_request/_prov_options.html.haml:143 -#: ../app/views/miq_task/_tasks_options.html.haml:175 -msgid "Apply the selected filters" -msgstr "選択したフィルターの適用" +msgid "Sub" +msgstr "サブ" -#: ../app/views/miq_request/_prov_options.html.haml:153 -#: ../app/views/miq_task/_tasks_options.html.haml:185 -msgid "Reset filter changes" -msgstr "フィルター変更のリセット" +msgid "Sub-claim" +msgstr "サブクレーム" -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:73 -msgid "VM Hardware" -msgstr "仮想マシンハードウェア" +msgid "Sub-claim:" +msgstr "サブクレーム:" -#: ../app/views/miq_request/_reconfigure_show.html.haml:35 -msgid "Processor Sockets" -msgstr "プロセッサーソケット" +msgid "Submit" +msgstr "送信" -#: ../app/views/miq_request/_reconfigure_show.html.haml:49 -msgid "Processor Cores_Per_Socket" -msgstr "プロセッサー Cores_Per_Socket" +msgid "Submit Automation Simulation with the specified options" +msgstr "指定オプション付きで自動化シミュレーションを送信" -#: ../app/views/miq_request/_reconfigure_show.html.haml:63 -#: ../app/views/vm_common/_reconfigure.html.haml:147 -msgid "Total Processors" -msgstr "合計プロセッサー" +msgid "Submit Changes" +msgstr "変更の送信" -#: ../app/views/miq_request/_reconfigure_show.html.haml:77 -msgid "Add Disks" -msgstr "ディスクの追加" +msgid "Submit Planning options" +msgstr "計画オプションを送信" -#: ../app/views/miq_request/_reconfigure_show.html.haml:93 -msgid "Remove Disks" -msgstr "ディスクの削除" +msgid "Submit Policy Simulation for the selected VMs" +msgstr "選択した仮想マシンのポリシーシミュレーションの送信" -#: ../app/views/miq_request/_reconfigure_show.html.haml:111 -#: ../app/views/vm_common/_reconfigure.html.haml:387 -msgid "Affected VMs" -msgstr "影響を受ける仮想マシン" +msgid "Submit this provisioning request" +msgstr "このプロビジョニング要求の送信" -#: ../app/views/miq_request/_request.html.haml:7 -#: ../app/views/miq_request/_request_details.html.haml:8 -msgid "Request Details" -msgstr "要求の詳細" +msgid "Subnet" +msgstr "" -#: ../app/views/miq_request/_request.html.haml:18 -msgid "Request ID" -msgstr "要求 ID" +msgid "Subnet \"%{subnetname}\" added to Router \"%{name}\"" +msgstr "" -#: ../app/views/miq_request/_request.html.haml:44 -msgid "Request State" -msgstr "要求状態" +msgid "Subnet \"%{subnetname}\" removed from Router \"%{name}\"" +msgstr "" -#: ../app/views/miq_request/_request.html.haml:58 -msgid "Requester" -msgstr "要求者" +msgid "Subnet CIDR" +msgstr "サブネット CIDR" -#: ../app/views/miq_request/_request.html.haml:71 -msgid "Request Type" -msgstr "要求タイプ" +msgid "Subnet Mask" +msgstr "サブネットマスク" -#: ../app/views/miq_request/_request.html.haml:100 -#: ../app/views/miq_request/_request_details.html.haml:108 -#: ../app/views/ops/_logs_selected.html.haml:35 -#: ../app/views/ops/rhn/_server_table.html.haml:101 -msgid "Last Message" -msgstr "最終メッセージ" +msgid "Subnet Name" +msgstr "サブネット名" -#: ../app/views/miq_request/_request.html.haml:126 -#: ../app/views/miq_request/_request_details.html.haml:31 -msgid "Last Update" -msgstr "最終更新" +msgid "Subnet Range" +msgstr "サブネット範囲" -#: ../app/views/miq_request/_request.html.haml:140 -msgid "Completed" -msgstr "完了" +msgid "Subnets" +msgstr "サブネット" -#: ../app/views/miq_request/_request.html.haml:159 -msgid "Approval State" -msgstr "承認状態" +msgid "Subscribe to this feed" +msgstr "このフィードの購読" -#: ../app/views/miq_request/_request.html.haml:173 -#: ../app/views/miq_request/_request_details.html.haml:58 -msgid "Approved/Denied by" -msgstr "承認者/拒否者" +msgid "Subscription Credentials validated successfully" +msgstr "サブスクリプション認証情報が正常に検証されました" -#: ../app/views/miq_request/_request.html.haml:186 -msgid "Approved/Denied on" -msgstr "承認日/拒否日" +msgid "Subscription ID" +msgstr "サブスクリプション ID" -#: ../app/views/miq_request/_request.html.haml:224 -msgid "Provisioned VMs" -msgstr "プロビジョニングされた仮想マシン" +msgid "Subscriptions" +msgstr "サブスクリプション" -#: ../app/views/miq_request/_request.html.haml:228 -#: ../app/views/miq_request/_request.html.haml:242 -#: ../app/views/ops/_ldap_region_show.html.haml:83 -#: ../app/views/report/_report_list.html.haml:53 -#: ../app/views/report/_report_list.html.haml:86 -#: ../app/views/report/_report_list.html.haml:147 -#: ../app/views/shared/buttons/_ab_list.html.haml:19 -#: ../app/views/shared/buttons/_ab_list.html.haml:64 -#: ../app/views/shared/buttons/_ab_list.html.haml:93 -#: ../app/views/shared/buttons/_ab_list.html.haml:207 -msgid "Click to view details" -msgstr "クリックして詳細を表示する" +msgid "Substitute: %{substitute}" +msgstr "置換: %{substitute}" -#: ../app/views/miq_request/_request.html.haml:239 -msgid "Provisioned Hosts" -msgstr "プロビジョニングされたホスト" +msgid "Substitution:" +msgstr "置換:" -#: ../app/views/miq_request/_request.html.haml:255 -msgid "* Enter a reason for this approval and press Submit" -msgstr "* 承認の理由を入力して「送信」を押してください" +msgid "Subtype" +msgstr "サブタイプ" -#: ../app/views/miq_request/_request.html.haml:258 -msgid "* Enter a reason for this denial and press Submit" -msgstr "* 拒否の理由を入力して「送信」を押してください" +msgid "Subtype is required." +msgstr "サブタイプが必要です。" -#: ../app/views/miq_request/_request_details.html.haml:18 -msgid "Requested by" -msgstr "要求者" +msgid "Success" +msgstr "成功" -#: ../app/views/miq_request/_request_details.html.haml:71 -msgid "Date Approved/Denied" -msgstr "承認/拒否日" +msgid "Successful" +msgstr "成功" -#: ../app/views/miq_request/_service_reconfigure_show.html.haml:12 -#: ../app/views/miq_request/_st_prov_show.html.haml:11 -msgid "Dialog Options" -msgstr "ダイアログオプション" +msgid "Successful Events" +msgstr "成功したイベント" -#: ../app/views/miq_task/_tasks_options.html.haml:22 -msgid "All Zones" -msgstr "すべてのゾーン" +msgid "Successfully deleted Saved Report from the %{product} Database" +msgid_plural "Successfully deleted Saved Reports from the %{product} Database" +msgstr[0] " %{product} データベースから保存済みレポートが正常に削除されました" +msgstr[1] " %{product} データベースから保存済みレポートが正常に削除されました" -#: ../app/views/miq_task/_tasks_options.html.haml:59 -msgid "24 Hour Time Period" -msgstr "24 時間単位の期間" +msgid "Successfully refreshed!" +msgstr "正常に更新されました!" -#: ../app/views/miq_task/_tasks_options.html.haml:79 -msgid "Task Status" -msgstr "タスクのステータス" +msgid "Sum 'Other' values" +msgstr "'その他' の値の合計" -#: ../app/views/miq_task/_tasks_options.html.haml:100 -msgid "Running" -msgstr "実行中" +msgid "Summary" +msgstr "概要" -#: ../app/views/miq_task/_tasks_options.html.haml:110 -msgid "Ok" -msgstr "Ok" +msgid "Summary Screens" +msgstr "" -#: ../app/views/miq_task/_tasks_options.html.haml:130 -msgid "Warn" -msgstr "警告" +msgid "Summary View" +msgstr "概要ビュー" -#: ../app/views/miq_task/_tasks_options.html.haml:138 -msgid "Task State" -msgstr "タスクの状態" +msgid "Summary tab is not available until at least 1 field has been selected" +msgstr "概要 タブは 1 つの以上のフィールドが選択されるまで使用できません" -#: ../app/views/network_router/edit.html.haml:7 -msgid "Edit Router" -msgstr "ルーターの編集" +msgid "Sunday" +msgstr "日曜日" -#: ../app/views/network_router/edit.html.haml:16 -#: ../app/views/network_router/new.html.haml:45 -msgid "Router Name" -msgstr "ルーター名" +msgid "Super Administrator can not be copied" +msgstr "" -#: ../app/views/network_topology/show.html.haml:90 -msgid "Floating Ips" -msgstr "Floating IP" +msgid "Support Case must be provided to collect logs" +msgstr "ログを収集するにはサポートケースを提供する必要があります" -#: ../app/views/network_topology/show.html.haml:185 -#: ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:28 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:94 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:220 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:333 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:365 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:38 -msgid "Load Balancer" -msgstr "ロードバランサー" +msgid "Surveys" +msgstr "調査" -#: ../app/views/ontap_file_share/_create_datastore.html.haml:67 -msgid "Submit this Create Datastore request" -msgstr "このデータストア作成要求の送信" +msgid "Suspend" +msgstr "一時停止" -#: ../app/views/ontap_logical_disk/_main.html.haml:16 -#: ../app/views/ops/_db_summary.html.haml:7 -msgid "Capacity Data" -msgstr "容量データ" +msgid "Suspend Role" +msgstr "ロールの一時停止" -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:26 -msgid "Aggregate (free space)" -msgstr "集計 (空き領域)" +msgid "Suspend Server" +msgstr "サーバーの一時停止" -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:41 -msgid "Size (GB)" -msgstr "サイズ (GB)" +msgid "Suspend Server Group" +msgstr "" -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:64 -msgid "Submit this Create Logical Disk request" -msgstr "この論理ディスク作成要求の送信" +msgid "Suspend Server in this Server Group" +msgstr "" -#: ../app/views/ops/_all_tabs.html.haml:11 -msgid "SmartProxy Affinity" -msgstr "SmartProxy アフィニティー" +msgid "Suspend is not allowed for the selected item" +msgstr "一時停止は選択した項目では許可されていません" -#: ../app/views/ops/_all_tabs.html.haml:24 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:53 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:98 -msgid "Server" -msgstr "サーバー" +msgid "Suspend successfully initiated" +msgstr "一時停止が正常に開始されました" -#: ../app/views/ops/_all_tabs.html.haml:30 -#: ../app/views/ops/_all_tabs.html.haml:169 -msgid "Workers" -msgstr "ワーカー" +msgid "Suspend the %{server_role_description} Role on Server %{server_name} [%{server_id}]" +msgstr "サーバー %{server_name} [%{server_id}] で %{server_role_description} ロールを一時停止" -#: ../app/views/ops/_all_tabs.html.haml:34 -msgid "Custom Logos" -msgstr "カスタムロゴ" +msgid "Suspend the %{server_role_description} Role on Server %{server_name} [%{server_id}]?" +msgstr "サーバー %{server_name} [%{server_id}] で %{server_role_description} ロールを一時停止しますか?" -#: ../app/views/ops/_all_tabs.html.haml:72 -msgid "C & U Collection" -msgstr "C & U 収集" +msgid "Suspend the selected items" +msgstr "選択した項目を一時停止します" -#: ../app/views/ops/_all_tabs.html.haml:85 -msgid "Import Tags" -msgstr "タグのインポート" +msgid "Suspend the selected items?" +msgstr "選択した項目を一時停止しますか?" -#: ../app/views/ops/_all_tabs.html.haml:88 -msgid "Import Variables" -msgstr "変数のインポート" +msgid "Suspend this Instance" +msgstr "このインスタンスを一時停止します" -#: ../app/views/ops/_all_tabs.html.haml:91 -msgid "Map Tags" -msgstr "タグのマップ" +msgid "Suspend this Instance?" +msgstr "このインスタンスを一時停止しますか?" -#: ../app/views/ops/_all_tabs.html.haml:94 -msgid "Red Hat Updates" -msgstr "Red Hat 更新" +msgid "Suspend this VM" +msgstr "この仮想マシンを一時停止します" -#: ../app/views/ops/_all_tabs.html.haml:97 -msgid "Replication" -msgstr "レプリケーション" +msgid "Suspend this VM?" +msgstr "この仮想マシンを一時停止しますか?" -#: ../app/views/ops/_all_tabs.html.haml:132 -#: ../app/views/ops/_all_tabs.html.haml:226 -msgid "Roles by Servers" -msgstr "サーバー別ロール" +msgid "Suspend this server" +msgstr "このサーバーの一時停止" -#: ../app/views/ops/_all_tabs.html.haml:135 -#: ../app/views/ops/_all_tabs.html.haml:229 -msgid "Servers by Roles" -msgstr "ロール別サーバー" +msgid "Switch" +msgstr "" -#: ../app/views/ops/_all_tabs.html.haml:144 -msgid "C & U Gap Collection" -msgstr "C & U ギャップ収集" +msgid "Switch: %{name}" +msgstr "スイッチ: %{name}" -#: ../app/views/ops/_all_tabs.html.haml:176 -msgid "%{product} Log" -msgstr "%{product}のログ" +msgid "Switches" +msgstr "スイッチ" -#: ../app/views/ops/_all_tabs.html.haml:179 -msgid "Audit Log" -msgstr "監査ログ" +msgid "Switches for %{model} \"%{name}\"" +msgstr "%{model} \"%{name}\" のスイッチ" -#: ../app/views/ops/_all_tabs.html.haml:239 -msgid "Orphaned Data" -msgstr "孤立データ" +msgid "Synchronizing" +msgstr "同期中" -#: ../app/views/ops/_all_tabs.html.haml:291 -msgid "Client Connections" -msgstr "クライアント接続" +msgid "Synchronous" +msgstr "同期" -#: ../app/views/ops/_amazon_verify_button.html.haml:2 -msgid "Validate the Amazon Settings" -msgstr "Amazon 設定の検証" +msgid "Syntax error in YAML file: %{error_message}" +msgstr "YAML ファイルの構文エラー: %{error_message}" -#: ../app/views/ops/_amazon_verify_button.html.haml:16 -msgid "Amazon access key and secret are needed to validate Amazon Settings" -msgstr "Amazon アクセスキーおよび秘密キーは Amazon 設定を検証するために必要です" +msgid "Sysprep" +msgstr "Sysprep" -#: ../app/views/ops/_ap_form.html.haml:73 -#: ../app/views/ops/_ap_form.html.haml:83 -#: ../app/views/ops/_settings_import_tab.html.haml:42 -msgid "File" -msgstr "ファイル" +msgid "Sysprep \"%{params}\" upload was successful" +msgstr "Sysprep \"%{params}\" アップロードが正常に実行されました" -#: ../app/views/ops/_ap_form_file.html.haml:4 -msgid "File Entry" -msgstr "ファイルエントリー" +msgid "System" +msgstr "システム" -#: ../app/views/ops/_ap_form_file.html.haml:14 -#: ../app/views/ops/_ap_show.html.haml:96 -msgid "Collect Contents?" -msgstr "コンテンツを収集しますか?" +msgid "System BIOS UUID" +msgstr "システム BIOS UUID" -#: ../app/views/ops/_ap_form_file.html.haml:25 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:31 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:33 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:35 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:37 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:39 -#: ../app/views/ops/_ap_form_registry.html.haml:28 -#: ../app/views/ops/_ap_form_registry.html.haml:30 -#: ../app/views/ops/_ap_form_registry.html.haml:32 -#: ../app/views/ops/_classification_entry.html.haml:69 -msgid "" -msgstr "<新規エントリー>" +msgid "System Default" +msgstr "システムデフォルト" -#: ../app/views/ops/_ap_form_nteventlog.html.haml:4 -msgid "Event Log Entry" -msgstr "イベントログエントリー" +msgid "System Image Types" +msgstr "システムイメージタイプ" -#: ../app/views/ops/_ap_form_nteventlog.html.haml:14 -msgid "Filter Message" -msgstr "メッセージのフィルター" +msgid "System Type" +msgstr "システムタイプ" -#: ../app/views/ops/_ap_form_nteventlog.html.haml:16 -msgid "Level" -msgstr "レベル" +msgid "System/Process" +msgstr "システム/プロセス" -#: ../app/views/ops/_ap_form_nteventlog.html.haml:20 -msgid " # of Days" -msgstr "日数" +msgid "System/Process/" +msgstr "システム/プロセス/" -#: ../app/views/ops/_ap_form_registry.html.haml:4 -msgid "Registry Entry" -msgstr "レジストリーエントリー" +msgid "THROUGH" +msgstr "スルー" -#: ../app/views/ops/_ap_form_registry.html.haml:12 -msgid "Registry Hive" -msgstr "レジストリーハイブ" +msgid "Tab" +msgstr "タブ" -#: ../app/views/ops/_ap_form_registry.html.haml:16 -msgid "Registry Value" -msgstr "レジストリー値" +msgid "Tab Information" +msgstr "タブ情報" -#: ../app/views/ops/_ap_form_registry.html.haml:48 -#: ../app/views/ops/_ap_form_registry.html.haml:95 -#: ../app/views/ops/_ap_form_registry.html.haml:151 -msgid "HKLM" -msgstr "HKLM" +msgid "Tab Label is required" +msgstr "タブラベルが必要です" -#: ../app/views/ops/_ap_form_set.html.haml:6 -msgid "Category Selection" -msgstr "カテゴリーの選択" +msgid "Tab Title" +msgstr "タブタイトル" -#: ../app/views/ops/_ap_show.html.haml:86 -msgid "File Items" -msgstr "ファイル項目" +msgid "Tab Title must be unique for this group" +msgstr "タブタイトルはこのグループで一意である必要があります" -#: ../app/views/ops/_ap_show.html.haml:113 -msgid "Registry Items" -msgstr "レジストリー項目" +msgid "Table" +msgstr "テーブル" -#: ../app/views/ops/_ap_show.html.haml:132 -msgid "Event Log Items" -msgstr "イベントログ項目" +msgid "Tables" +msgstr "テーブル" -#: ../app/views/ops/_category_form.html.haml:4 -msgid "Category Information" -msgstr "カテゴリー情報" +msgid "Tables with Most Rows" +msgstr "行数の最も多いテーブル" -#: ../app/views/ops/_category_form.html.haml:56 -#: ../app/views/ops/_category_form.html.haml:176 -#: ../app/views/ops/_settings_co_categories_tab.html.haml:14 -#: ../app/views/ops/_settings_co_tags_tab.html.haml:51 -msgid "Show in Console" -msgstr "コンソールに表示" +msgid "Tables with Most Wasted Space" +msgstr "不要な領域を最も多く含むテーブル" -#: ../app/views/ops/_category_form.html.haml:71 -#: ../app/views/ops/_category_form.html.haml:194 -#: ../app/views/ops/_settings_co_categories_tab.html.haml:16 -msgid "Single Value" -msgstr "単一 値" +msgid "Tables with the Most Rows" +msgstr "行数の最も多いテーブル" -#: ../app/views/ops/_category_form.html.haml:91 -#: ../app/views/ops/_category_form.html.haml:213 -msgid "Capture C & U Data by Tag" -msgstr "タグによる C & U データのキャプチャー" +msgid "Tabular View" +msgstr "表形式ビュー" -#: ../app/views/ops/_category_form.html.haml:229 -msgid "* 'Name' and 'Single Value' fields cannot be edited after adding a category." -msgstr "* '名前' および '単一値' フィールドは、カテゴリーの追加後に編集することができません。" +msgid "Tag" +msgstr "タグ" -#: ../app/views/ops/_classification_entry.html.haml:72 -msgid "" -msgstr "<この行をクリックして新規エントリーを作成する>" +msgid "Tag Assignment" +msgstr "タグの割り当て" -#: ../app/views/ops/_classification_entry.html.haml:100 -msgid "" -"Deleting the '%{entry_name}' entry will also unassign it from all items, are y" -"ou sure?" -msgstr "'%{entry_name}' エントリーを削除すると、すべての項目から割り当てが解除されます。実行してもよろしいですか?" +msgid "Tag Assignment (Tags common to all selected items)" +msgstr "タグの割り当て (選択したすべての項目に共通のタグ)" -#: ../app/views/ops/_db_info.html.haml:91 -#: ../app/views/ops/_db_info.html.haml:184 -#: ../app/views/ops/_db_info.html.haml:221 -msgid "Percent Bloat" -msgstr "肥大化パーセント" +msgid "Tag Category" +msgstr "タグカテゴリー" -#: ../app/views/ops/_db_info.html.haml:109 -msgid "Table" -msgstr "テーブル" +msgid "Tag Edit was cancelled by the user" +msgstr "タグの編集がユーザーにより取り消されました" -#: ../app/views/ops/_db_info.html.haml:204 -msgid "No Indexes found for this table." -msgstr "この表のインデックスが見つかりませんでした" +msgid "Tag edits were successfully saved" +msgstr "タグの編集が正常に保存されました" -#: ../app/views/ops/_db_info.html.haml:228 -msgid "Click to view index" -msgstr "クリックしてインデックスを表示する" +msgid "Tag list" +msgstr "" -#: ../app/views/ops/_db_summary.html.haml:12 -msgid "Tables with Most Rows" -msgstr "行数の最も多いテーブル" +msgid "Tag to Apply" +msgstr "適用するタグ" -#: ../app/views/ops/_diagnostics_cu_repair_tab.html.haml:15 -msgid "Collection Options" -msgstr "収集オプション" +msgid "Tag: %{description}" +msgstr "タグ: %{description}" -#: ../app/views/ops/_diagnostics_cu_repair_tab.html.haml:43 -msgid "Start Date" -msgstr "開始日" +msgid "Tagged Cluster / Deployment Roles" +msgstr "" -#: ../app/views/ops/_diagnostics_cu_repair_tab.html.haml:59 -msgid "End Date" -msgstr "終了日" +msgid "Tagged Container Images" +msgstr "" -#: ../app/views/ops/_diagnostics_cu_repair_tab.html.haml:73 -msgid "Note: Gap Collection is only available for VMware vSphere Infrastructures" -msgstr "注: ギャップ収集は VMware vSphere インフラストラクチャーの場合のみ有効です。" +msgid "Tagged Datastores" +msgstr "" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:84 -msgid "Run a Database Backup Now" -msgstr "データベースのバックアップを今すぐ実行" +msgid "Tagged Host / Nodes" +msgstr "" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:95 -msgid "Backup Schedules" -msgstr "バックアップスケジュール" +msgid "Tagged Providers" +msgstr "" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:102 -msgid "Fetch settings from a schedule" -msgstr "スケジュールの設定を取得" +msgid "Tagged Resource Pools" +msgstr "" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:110 -msgid "No Backup Schedules are defined" -msgstr "バックアップスケジュールが定義されていません。" +msgid "Tagged VMs and Instances" +msgstr "" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:185 -msgid "Are you sure you want to Run a Database Backup Now?" -msgstr "データベースのバックアップをすぐに実行してもよいですか?" +msgid "Tagging" +msgstr "タグ付け" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:197 -#: ../app/views/ops/_diagnostics_database_tab.html.haml:216 -msgid "Run Database Garbage Collection Now" -msgstr "データベースガベージコレクションを今すぐ実行" +msgid "Tags" +msgstr "タグ" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:204 -msgid "Press submit to start the Database Vacuum process" -msgstr "「送信」を押してデータベースバキュームプロセスを開始します。" +msgid "Take this item out of Maintenance Mode" +msgstr "この項目のメンテナンスモードを終了します" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:219 -msgid "Are you sure you want to Run Database Garbage Collection Now?" -msgstr "データベースのガベージコレクションをすぐに実行してもよいですか?" +msgid "Take this item out of Maintenance Mode?" +msgstr "この項目のメンテナンスモードを終了しますか?" -#: ../app/views/ops/_diagnostics_roles_servers_tab.html.haml:19 -#: ../app/views/ops/_diagnostics_servers_roles_tab.html.haml:19 -msgid "No Servers found." -msgstr "サービスが見つかりませんでした。" +msgid "Target Machine" +msgstr "" -#: ../app/views/ops/_diagnostics_savedreports.html.haml:3 -msgid "Report Results by User" -msgstr "ユーザー別のレポート結果" +msgid "Target Options / Limits" +msgstr "ターゲットオプション / 上限値" -#: ../app/views/ops/_diagnostics_savedreports.html.haml:20 -#: ../app/views/ops/_settings_workers_tab.html.haml:22 -#: ../app/views/ops/_settings_workers_tab.html.haml:73 -#: ../app/views/ops/_settings_workers_tab.html.haml:183 -#: ../app/views/ops/_settings_workers_tab.html.haml:224 -#: ../app/views/ops/_settings_workers_tab.html.haml:274 -#: ../app/views/ops/_settings_workers_tab.html.haml:327 -#: ../app/views/ops/_settings_workers_tab.html.haml:377 -#: ../app/views/ops/_settings_workers_tab.html.haml:457 -#: ../app/views/ops/_settings_workers_tab.html.haml:507 -msgid "Count" -msgstr "数量" +msgid "Target Options/Limits" +msgstr "ターゲットオプション/上限値" -#: ../app/views/ops/_diagnostics_savedreports.html.haml:28 -msgid "Are you sure you want to delete orphaned records for user '%{user}'?" -msgstr "ユーザー '%{user}' の孤立したレコードを削除してもよいですか?" +msgid "Target Port" +msgstr "ターゲットポート" -#: ../app/views/ops/_diagnostics_savedreports.html.haml:31 -msgid "Click to delete Orphaned Records for this user" -msgstr "クリックしてこのユーザーの孤立したレコードを削除する" +msgid "Target: %{text}" +msgstr "ターゲット: %{text}" -#: ../app/views/ops/_diagnostics_timelines_tab.html.haml:16 -#: ../app/views/ops/_diagnostics_utilization_tab.html.haml:13 -msgid "This Server's Virtual Machine has not been identified." -msgstr "このサーバーの仮想マシンは特定されていません。" +msgid "Task State" +msgstr "タスクの状態" -#: ../app/views/ops/_diagnostics_utilization_tab.html.haml:11 -msgid "No Utilization data available for this Server's Virtual Machine." -msgstr "このサーバーの仮想マシンの使用状況についてのデータはありません" +msgid "Task Status" +msgstr "タスクのステータス" -#: ../app/views/ops/_diagnostics_zones_tab.html.haml:6 -#: ../app/views/ops/_settings_list_tab.html.haml:6 -msgid "No Zones found." -msgstr "ゾーンが見つかりませんでした。" +msgid "Tasks" +msgstr "タスク" -#: ../app/views/ops/_diagnostics_zones_tab.html.haml:12 -msgid "View this Zone" -msgstr "このゾーンの表示" +msgid "Tasks for %{name}" +msgstr "%{name} のタスク" -#: ../app/views/ops/_diagnostics_zones_tab.html.haml:28 -msgid "(current)" -msgstr " (現在)" +msgid "Template" +msgstr "テンプレート" -#: ../app/views/ops/_email_verify_button.html.haml:3 -#: ../app/views/ops/_email_verify_button.html.haml:3 -msgid "Send test email" -msgstr "テストメールの送信" +msgid "Template Analysis" +msgstr "テンプレート分析" -#: ../app/views/ops/_email_verify_button.html.haml:19 -msgid "" -"SMTP E-mail Server settings and Test E-mail Address are needed to send test em" -"ail" -msgstr "テストメールを送信するには、SMTP メールサーバー設定およびテストメールアドレスが必要です。" +msgid "Template Selection" +msgstr "テンプレート選択" -#: ../app/views/ops/_label_tag_mapping_form.html.haml:12 -msgid "Container entity and label" -msgstr "コンテナーエンティティーおよびラベル" +msgid "Template Type" +msgstr "テンプレートタイプ" -#: ../app/views/ops/_label_tag_mapping_form.html.haml:15 -msgid "Choose a container entity and label" -msgstr "コンテナーエンティティーとラベルの選択" +msgid "Template:" +msgstr "テンプレート:" -#: ../app/views/ops/_label_tag_mapping_form.html.haml:21 -msgid "Entity" -msgstr "エンティティー" +msgid "Templates" +msgstr "テンプレート" -#: ../app/views/ops/_label_tag_mapping_form.html.haml:57 -msgid "Choose a tag category to map to" -msgstr "マップするタグカテゴリーの選択" +msgid "Templates & Images" +msgstr "テンプレート & イメージ" -#: ../app/views/ops/_ldap_auth_users.html.haml:9 -msgid "LDAP Groups for User" -msgstr "ユーザーの LDAP グループ" +msgid "Tenancy" +msgstr "テナンシー" -#: ../app/views/ops/_ldap_domain_show.html.haml:242 -#: ../app/views/ops/_ldap_server_entries.html.haml:7 -msgid "LDAP Servers" -msgstr "LDAP サーバー" +msgid "Tenant" +msgstr "テナント" -#: ../app/views/ops/_ldap_domain_show.html.haml:257 -#: ../app/views/ops/_ldap_forest_entries.html.haml:20 -#: ../app/views/ops/_ldap_server_entries.html.haml:19 -#: ../app/views/ops/_settings_authentication_tab.html.haml:50 -#: ../app/views/ops/_settings_server_tab.html.haml:584 -#: ../app/views/vm_common/_disks.html.haml:11 -#: ../app/views/vm_common/_reconfigure.html.haml:205 -msgid "Mode" -msgstr "モード" +msgid "Tenant ID" +msgstr "テナント ID" -#: ../app/views/ops/_ldap_forest_entries.html.haml:4 -msgid "Trusted Forest Settings" -msgstr "信頼されたフォレストの設定" +msgid "Tenant ID, Client ID and matching Client Key fields are needed to perform verification of credentials" +msgstr "認証情報の確認を行う場合は、テナント ID、クライアント ID、および一致する クライアントキー のフィールドが必要になります。" -#: ../app/views/ops/_ldap_forest_entries.html.haml:18 -msgid "LDAP Hostname" -msgstr "LDAP ホスト名" +msgid "Tenant Mapping Enabled" +msgstr "テナントマッピングの有効化" -#: ../app/views/ops/_ldap_forest_entries.html.haml:22 -#: ../app/views/ops/_settings_authentication_tab.html.haml:113 -msgid "LDAP Port" -msgstr "LDAP ポート" +msgid "Tenant Name" +msgstr "テナント名" -#: ../app/views/ops/_ldap_forest_entries.html.haml:35 -msgid "Click to add a new forest" -msgstr "クリックして新しいフォレストを追加する" +msgid "Tenant Quota" +msgstr "テナントクォータ" -#: ../app/views/ops/_ldap_forest_entries.html.haml:44 -msgid "" -msgstr "<この行をクリックして新規フォレストを作成する>" +msgid "Tenant no longer exists" +msgstr "テナントは存在しません" -#: ../app/views/ops/_ldap_forest_entries.html.haml:76 -#: ../app/views/ops/_ldap_forest_entries.html.haml:121 -msgid "ldap" -msgstr "LDAP" +msgid "Tenants" +msgstr "テナント" -#: ../app/views/ops/_ldap_forest_entries.html.haml:76 -#: ../app/views/ops/_ldap_forest_entries.html.haml:121 -msgid "ldaps" -msgstr "LDAPS" +msgid "Tenants (%{tenants_count})" +msgstr "テナント (%{tenants_count})" -#: ../app/views/ops/_ldap_forest_entries.html.haml:152 -msgid "Are you sure you want to delete forest %{ldaphost} ?" -msgstr "フォレスト %{ldaphost} を削除してもよいですか?" +msgid "Test E-mail Address" +msgstr "テストメールアドレス" -#: ../app/views/ops/_ldap_forest_entries.html.haml:153 -msgid "Click to delete this forest" -msgstr "クリックしてこのフォレストを削除する" +msgid "Text" +msgstr "テキスト" -#: ../app/views/ops/_ldap_forest_entries.html.haml:158 -#: ../app/views/ops/_ldap_forest_entries.html.haml:163 -#: ../app/views/ops/_ldap_forest_entries.html.haml:168 -#: ../app/views/ops/_ldap_forest_entries.html.haml:173 -#: ../app/views/ops/_ldap_forest_entries.html.haml:178 -#: ../app/views/ops/_ldap_forest_entries.html.haml:183 -msgid "Click to edit this forest" -msgstr "クリックしてこのフォレストを編集する" +msgid "Text (REGEX)" +msgstr "テキスト (REGEX)" -#: ../app/views/ops/_ldap_region_show.html.haml:58 -msgid "LDAP Domains" -msgstr "LDAP ドメイン" +msgid "Textual View" +msgstr "" -#: ../app/views/ops/_ldap_region_show.html.haml:77 -msgid "User Suffix" -msgstr "ユーザーサフィックス" +msgid "The %{product} Server is still starting, you have been redirected to the diagnostics page for problem determination" +msgstr "%{product}サーバーが起動中です。問題判別のため診断ページにリダイレクトされました。" -#: ../app/views/ops/_ldap_seq_form.html.haml:17 -msgid "User Group Sequencing for LDAP Look Up:" -msgstr "LDAP 検索でのユーザーグループの順序:" +msgid "The %{product} Server is still starting. If this message persists, please contact your %{product} administrator." +msgstr "%{product}サーバーがまだ起動中です。このメッセージが消えない場合、%{product}管理者にお問い合わせください。" -#: ../app/views/ops/_ldap_seq_form.html.haml:75 -msgid "Select one or more consecutive groups to move up or down." -msgstr "1 つ以上の連続するグループを選択して上下に移動します。" +msgid "The Enterprise" +msgstr "エンタープライズ" -#: ../app/views/ops/_ldap_server_entry.html.haml:7 -msgid "Add this LDAP Server" -msgstr "この LDAP サーバーの追加" +msgid "The Host Default VNC Port Range ending port must be equal to or higher than the starting point" +msgstr "ホストデフォルト VNC ポート範囲の終了ポートは開始ポイントと等しいかそれより大きい番号である必要があります " -#: ../app/views/ops/_ldap_server_entry.html.haml:44 -msgid "Update this LDAP Server" -msgstr "この LDAP サーバーの更新" +msgid "The Remote Console is connecting" +msgstr "リモートコンソールに接続しています" -#: ../app/views/ops/_ldap_server_entry.html.haml:93 -msgid "" -msgstr "<新規 LDAP サーバー>" +msgid "The Subscription Management Service you register with will provide your systems with updates and allow additional management." +msgstr "登録するサブスクリプション管理サービスによりシステムに更新が提供され、 その他の管理も行うことができるようになります。" -#: ../app/views/ops/_ldap_server_entry.html.haml:98 -msgid "" -msgstr "<この行をクリックして新規 LDAP サーバーを作成する>" +msgid "" +"The VM has been suspended, powered off or the connection to the server has been lost. \n" +"This console window will now close." +msgstr "" +"仮想マシンは中断したか、電源がオフになったか、またはサーバーとの接続が失われました。\n" +"このコンソールウィンドウは閉じられます。" -#: ../app/views/ops/_ldap_server_entry.html.haml:112 -msgid "Deleting the '%{hostname}' LDAP Server, are you sure?" -msgstr "'%{hostname}' LDAP サーバーを削除します。実行してもよろしいですか?" +msgid "The check count value must be an integer to commit this expression element" +msgstr "この式要素をコミットするために、このチェックカウント値は整数でなければなりません" -#: ../app/views/ops/_ldap_server_entry.html.haml:113 -msgid "Click to delete this LDAP Server" -msgstr "クリックしてこの LDAP サーバーを削除する" +msgid "The current search details have been reset" +msgstr "現在の検索詳細がリセットされました" -#: ../app/views/ops/_ldap_server_entry.html.haml:118 -msgid "Click to update this LDAP Server" -msgstr "クリックしてこの LDAP サーバーを更新する" +msgid "The number of Masters must be 1, 3, or 5" +msgstr "マスターの番号は 1、3、または 5 である必要があります。" -#: ../app/views/ops/_ldap_server_entry.html.haml:135 -#: ../app/views/ops/_ldap_verify_button.html.haml:4 -#: ../app/views/ops/_ldap_verify_button.html.haml:4 -msgid "Validate the LDAP Settings by binding with the %{host}" -msgstr "%{host}を使ったバインドにより LDAP 設定を検証" +msgid "The selected %{label} is not in the current region" +msgstr "選択した%{label}は現在のリージョンにありません" -#: ../app/views/ops/_ldap_verify_button.html.haml:18 -msgid "" -"LDAP Hostname and Port fields are needed to perform verification of LDAP Setti" -"ngs" -msgstr "LDAP ホスト名およびポートフィールドは LDAP 設定の検証の実行の際に必要です。" +msgid "The selected %{models} was deleted" +msgstr "選択した%{models}は削除されました" -#: ../app/views/ops/_log_viewer.html.haml:4 -msgid "Last 1000 lines from server %{name} [%{id}] in zone %{zone}" -msgstr "ゾーン %{zone} にあるサーバー%{name} [%{id}] の最後の 1000 行" +msgid "The selected %{model} was deleted" +msgstr "選択した%{model}は削除されました" -#: ../app/views/ops/_logs_selected.html.haml:14 -msgid "Log Depot URI" -msgstr "ログデポ URI" +msgid "The selected %{model} were marked as %{action}" +msgstr "選択した%{model}は%{action}としてマークが付けられました" -#: ../app/views/ops/_logs_selected.html.haml:24 -msgid "Last Log Collection" -msgstr "最終ログ収集" +msgid "The selected %{number} Catalog Item was deleted" +msgid_plural "The selected %{number} Catalog Items were deleted" +msgstr[0] "選択した %{number} カタログ項目は削除されました" +msgstr[1] "選択した %{number} カタログ項目は削除されました" -#: ../app/views/ops/_rbac_details_tab.html.haml:36 -#: ../app/views/ops/_rbac_details_tab.html.haml:41 -msgid "View Users" -msgstr "ユーザーの表示" +msgid "The selected %{record} was deleted" +msgstr "選択した%{record}は削除されました" -#: ../app/views/ops/_rbac_details_tab.html.haml:43 -msgid "Users (%{users_count})" -msgstr "ユーザー (%{users_count})" +msgid "The selected %{schedules} were deleted" +msgstr "選択した%{schedules}は削除されました" -#: ../app/views/ops/_rbac_details_tab.html.haml:50 -#: ../app/views/ops/_rbac_details_tab.html.haml:55 -msgid "View Groups" -msgstr "グループの表示" +msgid "The selected %{schedules} were disabled" +msgstr "選択した%{schedules}は無効にされました" -#: ../app/views/ops/_rbac_details_tab.html.haml:57 -msgid "Groups (%{groups_count})" -msgstr "グループ (%{groups_count})" +msgid "The selected %{schedules} were enabled" +msgstr "選択した%{schedules}は有効にされました" -#: ../app/views/ops/_rbac_details_tab.html.haml:64 -#: ../app/views/ops/_rbac_details_tab.html.haml:69 -msgid "View Roles" -msgstr "ロールの表示" +msgid "The selected %{tables} were deleted" +msgstr "選択した%{tables}は削除されました" -#: ../app/views/ops/_rbac_details_tab.html.haml:71 -msgid "Roles (%{roles_count})" -msgstr "ロール (%{roles_count})" +msgid "The selected %{table} was deleted" +msgstr "選択した%{table}は削除されました" -#: ../app/views/ops/_rbac_details_tab.html.haml:78 -#: ../app/views/ops/_rbac_details_tab.html.haml:83 -msgid "View Tenants" -msgstr "テナントの表示" +msgid "The selected Cloud Network was deleted" +msgstr "" -#: ../app/views/ops/_rbac_details_tab.html.haml:85 -msgid "Tenants (%{tenants_count})" -msgstr "テナント (%{tenants_count})" +msgid "The selected Cloud Subnet was deleted" +msgstr "" -#: ../app/views/ops/_rbac_group_details.html.haml:11 -msgid "Group Information" -msgstr "グループ情報" +msgid "The selected Cloud Volume Snapshot was deleted" +msgstr "選択されたクラウドボリュームスナップショットが削除されました" -#: ../app/views/ops/_rbac_group_details.html.haml:45 -msgid "(Look up %{authentication_mode_name} Groups)" -msgstr "(%{authentication_mode_name}でのグループ検索)" +msgid "The selected Filter can not be set as Default because it requires user input" +msgstr "ユーザー入力が必要であるため、選択したフィルターはデフォルトに設定することができません" -#: ../app/views/ops/_rbac_group_details.html.haml:63 -#: ../app/views/ops/_rbac_user_details.html.haml:202 -msgid "View this Role" -msgstr "このロールの表示" +msgid "The selected Filter record was not found" +msgstr "選択したフィルターのレコードが見つかりませんでした" -#: ../app/views/ops/_rbac_group_details.html.haml:88 -msgid "Project/Tenant" -msgstr "プロジェクト/テナント" +msgid "The selected Floating IP was deleted" +msgstr "" -#: ../app/views/ops/_rbac_group_details.html.haml:100 -msgid "View this Project" -msgstr "このプロジェクトの表示" +msgid "The selected Router was deleted" +msgstr "選択されたルーターが削除されました" + +msgid "The selected Saved Report was deleted" +msgstr "選択した保存済みレポートは削除されました" -#: ../app/views/ops/_rbac_group_details.html.haml:100 -msgid "View this Tenant" -msgstr "このテナントの表示" +msgid "The selected Schedule has been queued to run" +msgstr "選択したスケジュールが実行キューに追加されました" -#: ../app/views/ops/_rbac_group_details.html.haml:120 -msgid "Users in this Group" -msgstr "このグループのユーザー" +msgid "The selected Schedules have been queued to run" +msgstr "選択したスケジュールが実行キューに追加されました" -#: ../app/views/ops/_rbac_group_details.html.haml:127 -msgid "View this User" -msgstr "このユーザーの表示" +msgid "The selected Schedules were disabled" +msgstr "選択したスケジュールは無効にされました" -#: ../app/views/ops/_rbac_group_details.html.haml:148 -msgid "LDAP Group Look Up" -msgstr "LDAP グループ検索" +msgid "The selected Schedules were enabled" +msgstr "選択したスケジュールは有効にされました" -#: ../app/views/ops/_rbac_group_details.html.haml:157 -#: ../app/views/ops/_rbac_group_details.html.haml:191 -msgid "User to Look Up" -msgstr "検索するユーザー" +msgid "The selected Security Group was deleted" +msgstr "" -#: ../app/views/ops/_rbac_group_details.html.haml:266 -msgid "Assign Filters" -msgstr "フィルターの割り当て" +msgid "The selected Task was cancelled" +msgstr "選択したタスクが取り消されました" -#: ../app/views/ops/_rbac_group_details.html.haml:266 -msgid "Assigned Filters (read only)" -msgstr "割り当てられるフィルター (読み取り専用)" +msgid "The selected datasources were removed" +msgstr "選択したデータソースは削除されました" -#: ../app/views/ops/_rbac_group_details.html.haml:279 -msgid "%{title_for_hosts} & %{title_for_clusters}" -msgstr "%{title_for_hosts} & %{title_for_clusters}" +msgid "The selected job no longer exists, Delete all older Tasks was not completed" +msgstr "選択したジョブは存在しません。古いタスクすべての削除は完了していません" -#: ../app/views/ops/_rbac_group_details.html.haml:288 -msgid "This user is limited to items with the selected tags." -msgstr "このユーザーは選択済みのタグが付けられた項目に制限されます。" +msgid "The selected snapshot will be permanently deleted. Are you sure you want to delete the selected snapshot?" +msgstr "選択したスナップショットは完全に削除されます。選択したスナップショットを削除してもよいですか?" -#: ../app/views/ops/_rbac_group_details.html.haml:299 -msgid "This user is limited to the selected items and their children." -msgstr "このユーザーは選択した項目とその子に制限されます。" +msgid "The server is initializing; access is being retried every 10 seconds . . ." +msgstr "サーバーが初期化しています。10 秒ごとにアクセスが再試行されています. . ." -#: ../app/views/ops/_rbac_group_details.html.haml:319 -msgid "This user is limited to the selected folders and their children." -msgstr "このユーザーは選択したフォルダーとその子に制限されます。" +msgid "The test email is being delivered, check \"%{email}\" to verify it was successful" +msgstr "テストメールが送信されています。正常に送信されたかを確認するために \"%{email}\" をチェックしてください" -#: ../app/views/ops/_rbac_role_details.html.haml:14 -msgid "Role Information" -msgstr "ロール情報" +msgid "The user is not authorized for this task or item." +msgstr "ユーザーにはこのタスクまたは項目についての権限がありません。" -#: ../app/views/ops/_rbac_role_details.html.haml:49 -msgid "Access Restriction for Services, VMs, and Templates" -msgstr "" +msgid "The user's role is not authorized for any access, please contact the administrator!" +msgstr "アクセスに対してユーザーの役割が承認されていません。管理者に問い合わせてください。" -#: ../app/views/ops/_rbac_role_details.html.haml:62 -msgid "none" -msgstr "なし" +msgid "The web-based VNC console is not available because the VM is not powered on" +msgstr "仮想マシンの電源はオンになっていないため、Web ベースの VNC コンソールは利用できません" -#: ../app/views/ops/_rbac_role_details.html.haml:79 -msgid "Groups Using this Role" -msgstr "このロールを使用するグループ" +msgid "The web-based console is not available because the VM is not powered on" +msgstr "仮想マシンの電源はオンになっていないため、Web ベースのコンソールは利用できません" -#: ../app/views/ops/_rbac_role_details.html.haml:86 -#: ../app/views/ops/_rbac_tenant_details.html.haml:68 -#: ../app/views/ops/_rbac_user_details.html.haml:167 -msgid "View this Group" -msgstr "このグループの表示" +msgid "The web-based console is only available on IE, Firefox or Chrome (Windows/Linux)" +msgstr "Web ベースのコンソールは IE、Firefox または Chrome (Windows/Linux) のみで利用できます" -#: ../app/views/ops/_rbac_role_details.html.haml:98 -msgid "Product Features (Editing)" -msgstr "製品機能 (編集可)" +msgid "The widget \"%{widget_name}\" is already part of the edited dashboard" +msgstr "ウィジェット \"%{widget_name}\" はすでに編集されたダッシュボードの一部になっています" -#: ../app/views/ops/_rbac_role_details.html.haml:101 -msgid "Product Features (Read Only)" -msgstr "製品機能 (読み取り専用)" +msgid "There are no Cloud Volumes available to attach to this Instance." +msgstr "" -#: ../app/views/ops/_rbac_role_details.html.haml:118 -msgid "Double click a feature to open/close all children." -msgstr "すべての子を開く/閉じるには機能をダブルクリックします。" +msgid "There are no Floating IPs available to this Instance." +msgstr "このインスタンスで利用できる Floating IP はありません。" -#: ../app/views/ops/_rbac_tag_box.html.haml:19 -msgid "No %{tenant_name} Tags have been assigned" -msgstr "%{tenant_name}タグが割り当てられていません" +msgid "There are no running Hosts with valid credentials for this Datastore" +msgstr "" -#: ../app/views/ops/_rbac_tenant_details.html.haml:8 -msgid "%{type} Information" -msgstr "%{type}情報" +msgid "There is an error in the selected expression element, perhaps it was imported or edited manually." +msgstr "選択した式要素にエラーがあります。手動によりインポートまたは編集された可能性があります。" -#: ../app/views/ops/_rbac_tenant_details.html.haml:45 -msgid "Parent" -msgstr "親" +msgid "There should be at least 2 Dashboards to Edit Sequence" +msgstr "" -#: ../app/views/ops/_rbac_tenant_details.html.haml:49 -msgid "View Parent Tenant" -msgstr "親テナントの表示" +msgid "These VMs can not be migrated together." +msgstr "" -#: ../app/views/ops/_rbac_tenant_details.html.haml:59 -msgid "Groups in this %{type}" -msgstr "この%{type}のグループ" +msgid "Thin Provisioning Used" +msgstr "使用済みシンプロビジョニング" -#: ../app/views/ops/_rbac_tenant_details.html.haml:85 -msgid "Child Tenants" -msgstr "子テナント" +msgid "This %{klass} is read only and cannot be modified" +msgstr "この %{klass} は読み取り専用であるため、変更できません" -#: ../app/views/ops/_rbac_tenant_details.html.haml:99 -msgid "Click to view child Tenant" -msgstr "クリックして子テナントを表示する" +msgid "This Action belongs to a read only Policy and cannot be modified" +msgstr "このアクションは読み取り専用ポリシーに属しているため、変更できません" -#: ../app/views/ops/_rbac_tenant_details.html.haml:125 -msgid "Click to view child TenantProject" -msgstr "クリックして子テナントプロジェクトを表示する" +msgid "This Action is not assigned to any Policies." +msgstr "このアクションはいずれのポリシーも割り当てられていません。" -#: ../app/views/ops/_rbac_tenant_details.html.haml:143 -msgid "Note: Total quota can be restricted by quotas defined at upper levels" -msgstr "注: クォータの合計はより上位のレベルで定義されたクォータによって制限される可能性があります" +msgid "This Alert is not assigned to any Alert Profiles." +msgstr "このアラートはどのアラートプロファイルにも割り当てられていません。" -#: ../app/views/ops/_rbac_user_details.html.haml:17 -msgid "User Information" -msgstr "ユーザー情報" +msgid "This Alert is not referenced by any Actions." +msgstr "このアラートはどのアクションにも参照されていません。" -#: ../app/views/ops/_rbac_user_details.html.haml:180 -msgid "" -msgstr "<グループの選択>" +msgid "This Condition is not assigned to any Policies." +msgstr "この条件はいずれのポリシーも割り当てられていません。" -#: ../app/views/ops/_schedule_form_timer.html.haml:5 -#: ../app/views/ops/_schedule_show.html.haml:187 -msgid "Timer Options" -msgstr "タイマーオプション" +msgid "This Event belongs to a read only Policy and cannot be modified" +msgstr "このイベントは読み取り専用ポリシーに属しているため、変更できません" -#: ../app/views/ops/_schedule_form_timer.html.haml:13 -#: ../app/views/report/_schedule_form_timer.html.haml:15 -msgid "Run" -msgstr "実行" +msgid "This Event has no false Actions." +msgstr "このイベントには false アクションがありません。" -#: ../app/views/ops/_schedule_form_timer.html.haml:26 -#: ../app/views/report/_schedule_form_timer.html.haml:32 -#: ../app/views/report/_schedule_form_timer.html.haml:44 -#: ../app/views/report/_schedule_form_timer.html.haml:56 -#: ../app/views/report/_schedule_form_timer.html.haml:68 -msgid "every" -msgstr "(実行頻度)" +msgid "This Event has no true Actions." +msgstr "このイベントには true アクションがありません。" -#: ../app/views/ops/_schedule_form_timer.html.haml:57 -#: ../app/views/report/_schedule_form_timer.html.haml:103 -msgid "* Changing the Time Zone will reset the Starting Date and Time fields below" -msgstr "* タイムゾーンを変更すると、以下の開始日と時間フィールドがリセットされます。" +msgid "This Event is not assigned to any Policies." +msgstr "このイベントはいずれのポリシーも割り当てられていません。" -#: ../app/views/ops/_schedule_form_timer.html.haml:66 -#: ../app/views/report/_schedule_form_timer.html.haml:111 -msgid "Starting Date" -msgstr "開始日" +msgid "This Group is Read Only and can not be deleted" +msgstr "このグループは読み取り専用であり、削除できません" -#: ../app/views/ops/_schedule_form_timer.html.haml:96 -#: ../app/views/report/_schedule_form_timer.html.haml:126 -msgid "Starting Time" -msgstr "開始時間" +msgid "This Group is Read Only and can not be edited" +msgstr "このグループは読み取り専用であり、編集できません" -#: ../app/views/ops/_schedule_show.html.haml:44 -msgid "Automate Task" -msgstr "タスクの自動化" +msgid "This Host can not be provisioned because the MAC address is not known" +msgstr "MAC アドレスが不明なため、このホストをプロビジョニングできません" -#: ../app/views/ops/_schedule_show.html.haml:133 -msgid "Object Type" -msgstr "オブジェクトのタイプ" +msgid "This Hour" +msgstr "現時間" -#: ../app/views/ops/_schedule_show.html.haml:146 -msgid "Object Selection" -msgstr "オブジェクト選択" +msgid "This Instance has no attached Cloud Volumes." +msgstr "" -#: ../app/views/ops/_schedule_show.html.haml:191 -#: ../app/views/report/_show_schedule.html.haml:82 -#: ../app/views/report/_widget_show.html.haml:286 -msgid "Run At" -msgstr "実行時間" +msgid "This Month" +msgstr "今月" -#: ../app/views/ops/_schedule_show.html.haml:201 -#: ../app/views/report/_report_info.html.haml:144 -#: ../app/views/report/_show_schedule.html.haml:92 -#: ../app/views/report/_widget_show.html.haml:87 -msgid "Last Run Time" -msgstr "最終実行時間" +msgid "This Month (partial)" +msgstr "今月 (一部)" -#: ../app/views/ops/_schedule_show.html.haml:215 -#: ../app/views/report/_report_info.html.haml:149 -#: ../app/views/report/_show_schedule.html.haml:106 -#: ../app/views/report/_widget_show.html.haml:296 -msgid "Next Run Time" -msgstr "次回の実行時間" +msgid "This Policy is not assigned to any Profiles." +msgstr "このポリシーはどのプロファイルにも割り当てられていません。" -#: ../app/views/ops/_selected.html.haml:8 -msgid "Selected Item" -msgstr "選択した項目" +msgid "This Quarter" +msgstr "今四半期" -#: ../app/views/ops/_selected_by_roles.html.haml:28 -#: ../app/views/ops/_selected_by_servers.html.haml:209 -msgid "Max Concurrent" -msgstr "並列の最大値" +msgid "This Role is Read Only and can not be deleted" +msgstr "このロールは読み取り専用であり、削除できません" -#: ../app/views/ops/_selected_by_roles.html.haml:32 -#: ../app/views/ops/_selected_by_servers.html.haml:213 -msgid "unlimited" -msgstr "無制限" +msgid "This Role is Read Only and can not be edited" +msgstr "このロールは読み取り専用であり、編集できません" -#: ../app/views/ops/_selected_by_roles.html.haml:78 -#: ../app/views/ops/_selected_by_servers.html.haml:194 -msgid "Priority" -msgstr "優先順位" +msgid "This Role is already active on this Server" +msgstr "このロールはこのサーバーですでにアクティブです" -#: ../app/views/ops/_selected_by_roles.html.haml:84 -#: ../app/views/ops/_selected_by_servers.html.haml:199 -msgid "primary" -msgstr "プライマリー" +msgid "This Role is in use by one or more Groups and can not be deleted" +msgstr "このロールは 1 つ以上のグループで使用されているため、編集できません" -#: ../app/views/ops/_selected_by_roles.html.haml:87 -#: ../app/views/ops/_selected_by_servers.html.haml:202 -msgid "secondary" -msgstr "セカンダリー" +msgid "This Server's Virtual Machine has not been identified." +msgstr "このサーバーの仮想マシンは特定されていません。" -#: ../app/views/ops/_selected_by_roles.html.haml:90 -#: ../app/views/ops/_selected_by_servers.html.haml:205 -msgid "normal" -msgstr "標準" +msgid "This Template is already orderable" +msgstr "このテンプレートはすでに並べ替え可能です" -#: ../app/views/ops/_selected_by_roles.html.haml:96 -msgid "Process ID" -msgstr "プロセス ID" +msgid "This Template is not orderable" +msgstr "このテンプレートは並べ替え可能ではありません" -#: ../app/views/ops/_selected_by_roles.html.haml:109 -#: ../app/views/ops/_selected_by_servers.html.haml:61 -#: ../app/views/ops/_server_desc.html.haml:39 -msgid "Started On" -msgstr "開始日" +msgid "This Template will revert to selected snapshot. Are you sure you want to revert to the selected snapshot?" +msgstr "このテンプレートは、選択したスナップショットに戻ります。選択したスナップショットに戻ってもよいすか?" -#: ../app/views/ops/_selected_by_roles.html.haml:123 -#: ../app/views/ops/_selected_by_servers.html.haml:75 -msgid "Stopped On" -msgstr "停止日" +msgid "This VM will revert to selected snapshot. Are you sure you want to revert to the selected snapshot?" +msgstr "この仮想マシンは選択したスナップショットに戻ります。選択したスナップショットに戻ってもよいですか?" -#: ../app/views/ops/_selected_by_roles.html.haml:163 -#: ../app/views/ops/_selected_by_servers.html.haml:115 -#: ../app/views/ops/_server_desc.html.haml:73 -msgid "CPU Time" -msgstr "CPU 時間" +msgid "This Week" +msgstr "今週" -#: ../app/views/ops/_selected_by_roles.html.haml:176 -#: ../app/views/ops/_selected_by_servers.html.haml:128 -#: ../app/views/ops/_server_desc.html.haml:83 -msgid "CPU Percent" -msgstr "CPU パーセント" +msgid "This Week (partial)" +msgstr "今週 (一部)" -#: ../app/views/ops/_selected_by_roles.html.haml:189 -#: ../app/views/ops/_selected_by_servers.html.haml:141 -#: ../app/views/ops/_server_desc.html.haml:93 -msgid "Version / Build" -msgstr "バージョン / ビルド" +msgid "This Widget content generation is already running or queued up" +msgstr "このウィジェットのコンテンツ生成はすでに実行中かキューに入れられています" -#: ../app/views/ops/_selected_by_servers.html.haml:172 -msgid "%{role} on %{model}: %{name} [%{id}]" -msgstr " %{model}の%{role}: %{name} [%{id}] " +msgid "This Year" +msgstr "今年" -#: ../app/views/ops/_selected_by_servers.html.haml:186 -msgid "active" -msgstr "動作中" +msgid "This Zone do not have Log Depot settings configured, collection not allowed" +msgstr "このゾーンにはログデポ設定が実行されていないため、収集は許可されません" -#: ../app/views/ops/_selected_by_servers.html.haml:189 -msgid "unavailable" -msgstr "利用不可" +msgid "This element is disabled because it is read only" +msgstr "この要素は読み取り専用のため無効になります" -#: ../app/views/ops/_settings_advanced_tab.html.haml:18 -msgid "Caution: Manual changes to configuration files can disable the Server!" -msgstr "注意: 構成ファイルを手動で変更すると、サーバーが無効になる可能性があります!" +msgid "This element should be removed and recreated or you can report the error to your %{product} administrator." +msgstr "この要素は削除されるか、または再作成される必要があります。または、%{product} 管理者にエラーを報告することができます。" -#: ../app/views/ops/_settings_authentication_tab.html.haml:16 -msgid "Session Timeout" -msgstr "セッションタイムアウト" +msgid "This object already exists in the database with the same name" +msgstr "" -#: ../app/views/ops/_settings_authentication_tab.html.haml:55 -msgid "External (httpd)" -msgstr "外部 (httpd)" +msgid "This page requires the VMware MKS plugin. Install the plugin and try again." +msgstr "このページには VMware MKS プラグインが必要です。プラグインをインストールしてから再試行してください。" -#: ../app/views/ops/_settings_authentication_tab.html.haml:80 -msgid "LDAP Host Names" -msgstr "LDAP ホスト名" +msgid "This policy does not currently respond to any Events." +msgstr "このポリシーは現在どのイベントにも対応しません。" -#: ../app/views/ops/_settings_authentication_tab.html.haml:157 -msgid "Domain Prefix: \\" -msgstr "ドメインプレフィックス: \\" +msgid "This report isn't generated yet. It cannot be rendered." +msgstr "" -#: ../app/views/ops/_settings_authentication_tab.html.haml:212 -msgid "Amazon Primary AWS Account Settings for IAM" -msgstr "IAM の Amazon Primary AWS アカウント設定" +msgid "This role can only be managed at the Region level" +msgstr "このロールはリージョンレベルでのみ管理できます" -#: ../app/views/ops/_settings_authentication_tab.html.haml:220 -msgid "Access Key" -msgstr "アクセスキー" +msgid "This user is limited to items with the selected tags." +msgstr "このユーザーは選択済みのタグが付けられた項目に制限されます。" -#: ../app/views/ops/_settings_authentication_tab.html.haml:237 -msgid "Secret Key" -msgstr "シークレットキー" +msgid "This user is limited to the selected folders and their children." +msgstr "このユーザーは選択したフォルダーとその子に制限されます。" -#: ../app/views/ops/_settings_authentication_tab.html.haml:284 -msgid "Default Group for Users" -msgstr "ユーザーのデフォルトグループ" +msgid "This user is limited to the selected items and their children." +msgstr "このユーザーは選択した項目とその子に制限されます。" -#: ../app/views/ops/_settings_authentication_tab.html.haml:412 -msgid "Get User Groups from Amazon" -msgstr "Amazon からのユーザーグループの取得" +msgid "This will show the chart and the entire report (all rows) in your browser. Do you want to proceed?" +msgstr "ブラウザーにチャートとレポート全体 (すべての行) が表示されます。続行しますか?" -#: ../app/views/ops/_settings_authentication_tab.html.haml:438 -msgid "External Authentication (httpd) Settings" -msgstr "外部認証 (httpd) 設定" +msgid "This will show the entire report (all rows) in your browser. Do you want to proceed?" +msgstr "ブラウザーにレポート全体 (すべての行) が表示されます。続行しますか?" -#: ../app/views/ops/_settings_authentication_tab.html.haml:447 -msgid "Enable Single Sign-On" -msgstr "シングルサインオンの有効化" +msgid "This will show the entire report (all rows) in your browser. Do you want to proceed?" +msgstr "ブラウザーにレポート全体 (すべての行) が表示されます。続行しますか?" -#: ../app/views/ops/_settings_authentication_tab.html.haml:462 -msgid "Enable SAML" -msgstr "SAML の有効化" +msgid "Thursday" +msgstr "木曜日" -#: ../app/views/ops/_settings_authentication_tab.html.haml:474 -msgid "Disable Local Login" -msgstr "ローカルログインの無効化" +msgid "Tile View" +msgstr "タイル表示" -#: ../app/views/ops/_settings_authentication_tab.html.haml:501 -msgid "Get User Groups from External Authentication (httpd)" -msgstr "外部認証 (httpd) からのユーザーグループの取得" +msgid "Time" +msgstr "" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:18 -msgid "Capture C & U Data" -msgstr "C & U データのキャプチャー" +msgid "Time Profile" +msgstr "タイムプロファイル" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:28 -msgid "Click to add a new category" -msgstr "クリックして新しいカテゴリーを追加する" +msgid "Time Profile Information" +msgstr "タイムプロファイル情報" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:32 -msgid "" -msgstr "<この行をクリックして新規カテゴリーを作成する>" +msgid "Time Profiles" +msgstr "タイムプロファイル" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:56 -msgid "Click to edit this category" -msgstr "クリックしてこのカテゴリーを編集する" +msgid "Time Zone" +msgstr "タイムゾーン" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:90 -msgid "Category '%{category_name}' cannot be deleted" -msgstr "カテゴリー '%{category_name}' を削除できません" +msgid "Time threshold for the field criteria must be selected" +msgstr "フィールド基準の時間しきい値を選択する必要があります" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:101 -msgid "Are you sure you want to delete category '%{category_name}'?" -msgstr "カテゴリー '%{category_name}' を削除してもよいですか?" +msgid "TimeProfile \"%{name}\": Error during 'save': %{error_message}" +msgstr "TimeProfile \"%{name}\": 'save' の実行中にエラーが発生しました: %{error_message}" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:102 -msgid "Click to delete this category" -msgstr "クリックしてこのカテゴリーを削除する" +msgid "Timeline" +msgstr "タイムライン" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:25 -msgid "Collect for All %{clusters}" -msgstr "すべての%{clusters}の収集" +msgid "Timeline Event" +msgstr "タイムラインイベント" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:41 -msgid "" -"Note: Collect for All %{clusters} must be checked to be able to collect C & U " -"data from Cloud Providers such as Red Hat OpenStack or Amazon EC2" -msgstr "" -"注: Red Hat OpenStack または Amazon EC2 などのクラウドプロバイダーから C & U データを収集できるようにすべての %{c" -"lusters} の収集をチェックする必要があります。" +msgid "Timeline Preview (up to 50 rows)" +msgstr "タイムラインプレビュー (最大 50 行)" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:48 -msgid "No %{clusters} found in the current region." -msgstr "%{clusters}が現在のリージョンに見つかりません。" +msgid "Timeline Settings" +msgstr "タイムライン設定" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:53 -msgid "Enable Collection by %{clusters}" -msgstr "%{clusters} 別の収集の有効化" +msgid "Timeline View" +msgstr "タイムラインビュー" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:69 -msgid "" -"VM data will be collected for VMs under selected %{hosts} only. Data is collec" -"ted for a %{cluster} and all of its %{hosts} when at least one %{host} is sele" -"cted." -msgstr "" -"選択した %{hosts} の下にある仮想マシンの仮想マシンデータのみが収集されます。1 つ以上の %{host} が選択されると、%{cluster} " -"とその %{hosts} のすべてについてデータが収集されます。" +msgid "Timeline tab is not available unless at least 1 time field has been selected" +msgstr "タイムライン タブは、1 つ以上のフィールドが選択されない限り使用できません" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:84 -msgid "Collect for All Datastores" -msgstr "すべてのデータストアを収集" +msgid "Timeline tab is not available until at least 1 field has been selected" +msgstr "タイムライン タブは 1 つ以上のフィールドが選択されるまで使用できません" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:101 -msgid "No Datastores found in the current region." -msgstr "現在のリージョンにデータストアが見つかりません。" +msgid "Timelines" +msgstr "タイムライン" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:106 -msgid "Enable Collection by Datastore" -msgstr "データベースストア別に収集を有効化" +msgid "Timelines for %{virtual_machine} \"%{name}\"" +msgstr "%{virtual_machine} \"%{name}\" のタイムライン" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:5 -msgid "Custom Logo Image (Shown on top right of all screens)" -msgstr "カスタムロゴ画像 (全画面の右上に表示)" +msgid "Timelines for Container \"%{container_name}\"" +msgstr "" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:11 -msgid "No custom logo image has been uploaded yet." -msgstr "アップロードされているカスタムロゴ画像はありません。" +msgid "Timeout" +msgstr "タイムアウト" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:30 -msgid "* Requirements: File-type - PNG; Dimensions - 350x70." -msgstr "* [要件] ファイルタイプ : PNG、寸法 - 350x70" +msgid "Timeout (ms)" +msgstr "タイムアウト (ms)" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:43 -msgid "Use Custom Logo Image" -msgstr "カスタムロゴ画像の使用" +msgid "Timeout is required" +msgstr "タイムアウトが必要です" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:55 -msgid "Custom Login Background Image" -msgstr "カスタムログインの背景画像" +msgid "Timeout max is 60" +msgstr "最大タイムアウト値は 60 です" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:67 -msgid "Image shown at 25% of actual size" -msgstr "実際のサイズの 25% で表示されるイメージ" +msgid "Timeout min is 0" +msgstr "最小タイムアウト値は 0 です" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:74 -msgid "No custom login image has been uploaded yet." -msgstr "アップロードされているカスタムログイン画像はありません。" +msgid "Timer" +msgstr "タイマー" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:93 -msgid "* Requirements: File-type - PNG; Dimensions - 1280x1000." -msgstr "* [要件] ファイルタイプ: PNG、寸法: 1280x1000" +msgid "Timer Options" +msgstr "タイマーオプション" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:107 -msgid "Use Custom Login Background Image" -msgstr "カスタムログインの背景画像の使用" +msgid "Timestamp" +msgstr "タイムスタンプ" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:121 -msgid "Custom Login Panel Text (" -msgstr "カスタムログインパネルテキスト ( " +msgid "Timezone" +msgstr "タイムゾーン" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:145 -msgid "Use Custom Login Text" -msgstr "カスタムログインテキストの使用" +msgid "Title" +msgstr "タイトル" -#: ../app/views/ops/_settings_details_tab.html.haml:10 -msgid "Region Information" -msgstr "リージョン情報" +msgid "To" +msgstr "宛先" -#: ../app/views/ops/_settings_details_tab.html.haml:49 -#: ../app/views/ops/_settings_details_tab.html.haml:54 -msgid "Edit this Region" -msgstr "このリージョンの編集" +msgid "To Address" +msgstr "終了アドレス" -#: ../app/views/ops/_settings_details_tab.html.haml:64 -#: ../app/views/ops/_settings_details_tab.html.haml:69 -msgid "View Analysis Profiles" -msgstr "分析プロファイルの表示" +msgid "To All" +msgstr "すべてのユーザーを対象" -#: ../app/views/ops/_settings_details_tab.html.haml:79 -#: ../app/views/ops/_settings_details_tab.html.haml:84 -msgid "View Zones" -msgstr "ゾーンの表示" +msgid "To All Users" +msgstr "すべてのユーザーを対象" -#: ../app/views/ops/_settings_details_tab.html.haml:94 -#: ../app/views/ops/_settings_details_tab.html.haml:99 -msgid "View Schedules" -msgstr "スケジュールの表示" +msgid "To Domain" +msgstr "終了ドメイン" -#: ../app/views/ops/_settings_details_tab.html.haml:110 -#: ../app/views/ops/_settings_details_tab.html.haml:115 -msgid "View LDAP Regions" -msgstr "LDAP 領域の表示" +msgid "To E-mail" +msgstr "宛先メール" -#: ../app/views/ops/_settings_details_tab.html.haml:117 -msgid "LDAP Regions" -msgstr "LDAP 領域" +msgid "To E-mail Address" +msgstr "宛先メールアドレス" -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:45 -#: ../app/views/ops/_zone_form.html.haml:57 -msgid "SmartProxy Server IP" -msgstr "SmartProxy サーバー IP" +msgid "To configure the Host Default VNC Port Range, both start and end ports are required" +msgstr "ホストのデフォルト VNC ポート範囲を設定するには、開始ポートと終了ポートの両方が必要です" -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:61 -#: ../app/views/ops/_settings_server_tab.html.haml:329 -#: ../app/views/ops/_zone_form.html.haml:78 -msgid "NTP Servers" -msgstr "NTP サーバー" +msgid "Today" +msgstr "今日" -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:78 -msgid "Max active VM Scans" -msgstr "アクティブな仮想マシンの最大スキャン回数" +msgid "Today (partial)" +msgstr "今日 (一部)" -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:166 -msgid "No Servers Found." -msgstr "サーバーが見つかりませんでした" +msgid "Toggle All/None" +msgstr "すべて/なしを切り替え" -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:172 -msgid "View this MiqServer" -msgstr "この Miq サーバーの表示" +msgid "Toggle Fullscreen" +msgstr "" -#: ../app/views/ops/_settings_import_tab.html.haml:3 -#: ../app/views/ops/_settings_import_tags_tab.html.haml:6 -msgid "Messages" -msgstr "メッセージ" +msgid "Toggle Maintenance" +msgstr "メンテナンスの切り替え" -#: ../app/views/ops/_settings_import_tab.html.haml:9 -msgid "Upload Custom Variable Values" -msgstr "カスタム変数値のアップロード" +msgid "Toggle Maintenance Mode" +msgstr "メンテナンスモードの切り替え" -#: ../app/views/ops/_settings_import_tab.html.haml:25 -msgid "Vm" -msgstr "仮想マシン" +msgid "Toggle Scheduling" +msgstr "スケジューリングの切り替え" -#: ../app/views/ops/_settings_import_tab.html.haml:54 -#: ../app/views/ops/_settings_import_tags_tab.html.haml:39 -msgid "* Requirements: CSV formatted file." -msgstr "* [要件] CSV 形式ファイル。" +msgid "Toggle Scheduling for Cloud Service" +msgstr "クラウドサービスのスケジューリングを切り替え" -#: ../app/views/ops/_settings_import_tags_tab.html.haml:15 -msgid "Upload %{customer_name} Tag Assignments for VMs" -msgstr "仮想マシンの%{customer_name}タグ割り当てのアップロード" +msgid "Toggle Scheduling for this Cloud Service?" +msgstr "クラウドサービスのスケジューリングを切り替えますか?" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:10 -msgid "Container Entity" -msgstr "コンテナーエンティティー" +msgid "Toggle maintenance mode for this item" +msgstr "この項目のメンテナンスモードの切り替え" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:12 -msgid "Container Label" -msgstr "コンテナーラベル" +msgid "Toggle maintenance mode for this item?" +msgstr "この項目のメンテナンスモードを切り替えますか?" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:22 -msgid "map a new label to tag" -msgstr "新規ラベルをタグにマップ" +msgid "Toggle navigation" +msgstr "トグルナビゲーション" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:26 -msgid "" -msgstr "<この行をクリックして新規マッピングルールを作成する>" +msgid "Token" +msgstr "トークン" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:41 -msgid "Click to edit this mapping rule" -msgstr "クリックしてこのマッピングルールを編集する" +msgid "Token-Endpoint" +msgstr "トークンエンドポイント" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:59 -msgid "Are you sure you want to delete mapping '%{label_name}'?" -msgstr "マッピング '%{label_name}' を削除してもよろしいですか?" +msgid "Token-Endpoint:" +msgstr "トークンエンドポイント:" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:60 -msgid "Click to delete this mapping" -msgstr "クリックしてこのマッピングを削除する" +msgid "Tokens do not match" +msgstr "トークンが一致しません" -#: ../app/views/ops/_settings_list_tab.html.haml:13 -msgid "View this Zone's settings" -msgstr "このゾーンの設定の表示" +msgid "Top Level" +msgstr "" -#: ../app/views/ops/_settings_list_tab.html.haml:27 -msgid " (current)" -msgstr " (現在)" +msgid "Top values to show" +msgstr "表示する上位の値" -#: ../app/views/ops/_settings_replication_tab.html.haml:106 -msgid "Subscriptions" -msgstr "サブスクリプション" +msgid "Topology" +msgstr "トポロジー" -#: ../app/views/ops/_settings_replication_tab.html.haml:113 -msgid "At least 1 subscription must be added to save server replication type" -msgstr "サーバーレプリケーションタイプを保存するには、1 つ以上のサブリプションを追加する必要があります" +msgid "Topology Default Items in View" +msgstr "" -#: ../app/views/ops/_settings_replication_tab.html.haml:123 -msgid "Add Subscription" -msgstr "サブスクリプションの追加" +msgid "Topology View" +msgstr "トポロジービュー" -#: ../app/views/ops/_settings_replication_tab.html.haml:146 -msgid "Central Admin Enabled" -msgstr "中央管理が有効です" +msgid "Total %{title} CPU Cores" +msgstr "%{title} CPU コアの合計" -#: ../app/views/ops/_settings_replication_tab.html.haml:208 -#: ../app/views/ops/_settings_replication_tab.html.haml:420 -msgid "Accept" -msgstr "承認" +msgid "Total %{title} CPU Resources" +msgstr "%{title} CPU リソースの合計" -#: ../app/views/ops/_settings_replication_tab.html.haml:245 -#: ../app/views/ops/_settings_replication_tab.html.haml:457 -#: ../app/views/report/_menu_form1.html.haml:102 -#: ../app/views/report/_menu_form2.html.haml:183 -msgid "Discard" -msgstr "破棄" +msgid "Total %{title} CPUs" +msgstr "%{title} CPU の合計" -#: ../app/views/ops/_settings_replication_tab.html.haml:350 -#: ../app/views/vm_common/_reconfigure.html.haml:372 -msgid "Cancel Delete" -msgstr "削除の取り消し" +msgid "Total %{title} Memory" +msgstr "%{title} メモリーの合計" -#: ../app/views/ops/_settings_replication_tab.html.haml:393 -msgid "Re-Enable Central Admin" -msgstr "中央管理の再有効化" +msgid "Total Allocation" +msgstr "割り当ての合計" -#: ../app/views/ops/_settings_replication_tab.html.haml:401 -msgid "Enable Central Admin" -msgstr "中央管理の有効化" +msgid "Total CPU Resources" +msgstr "CPU 合計リソース" -#: ../app/views/ops/_settings_replication_tab.html.haml:409 -msgid "Disable Central Admin" -msgstr "中央管理の無効化" +msgid "Total CPUs" +msgstr "CPU の合計" -#: ../app/views/ops/_settings_replication_tab.html.haml:473 -msgid "Excluded Tables" -msgstr "" +msgid "Total Configured CPUs" +msgstr "構成済み CPU の合計" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:11 -msgid "Red Hat Software Updates" -msgstr "Red Hat Software Updates" +msgid "Total Configured Memory" +msgstr "構成済みメモリーの合計" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:14 -msgid "" -"The Subscription Management Service you register with will provide your system" -"s with updates and allow additional management." -msgstr "登録するサブスクリプション管理サービスによりシステムに更新が提供され、 その他の管理も行うことができるようになります。" +msgid "Total Configured VM CPUs" +msgstr "構成済み仮想マシン CPU の合計" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:26 -msgid "Register to" -msgstr "登録先" +msgid "Total Configured VM Memory" +msgstr "構成済み仮想マシンのメモリーの合計" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:67 -msgid "Repository Name(s):" -msgstr "リポジトリー名:" +msgid "Total Datastore Used Space" +msgstr "使用済みデータストア領域の合計" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:91 -msgid "HTTP Proxy:" -msgstr "HTTP プロキシー:" +msgid "Total Index Nodes" +msgstr "インデックスノードの合計" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:101 -msgid "Use HTTP Proxy" -msgstr "HTTP プロキシーの使用" +msgid "Total Matches" +msgstr "一致件数の合計" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:153 -#: ../app/views/ops/rhn/_info_subscribed.html.haml:61 -msgid "Organization" -msgstr "組織" +msgid "Total Memory" +msgstr "メモリーの合計" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:171 -msgid "Forgot your login or password? Look it up at" -msgstr "ログイン名、パスワードをお忘れの場合はこちらで確認してください。" +msgid "Total Processors" +msgstr "合計プロセッサー" -#: ../app/views/ops/_settings_rhn_tab.html.haml:28 -msgid "Edit Registration" -msgstr "登録の編集" +msgid "Total Quota" +msgstr "クォータ合計" -#: ../app/views/ops/_settings_server_tab.html.haml:48 -msgid "Resides on VM" -msgstr "仮想マシン上に常駐" +msgid "Total Space" +msgstr "領域の合計" -#: ../app/views/ops/_settings_server_tab.html.haml:71 -msgid "Company Name" -msgstr "会社名" +msgid "Total Space on Volume" +msgstr "ボリュームにある領域の合計" -#: ../app/views/ops/_settings_server_tab.html.haml:88 -msgid "Appliance Name" -msgstr "アプライアンス名:" +msgid "Total VMs" +msgstr "仮想マシンの合計数" -#: ../app/views/ops/_settings_server_tab.html.haml:105 -msgid "Zone*" -msgstr "ゾーン*" +msgid "Total number of VMs that can fit on all of the above %{models}: %{count}" +msgstr "上記すべての%{models}に適合する仮想マシンの総数: %{count}" -#: ../app/views/ops/_settings_server_tab.html.haml:135 -msgid "Appliance Time Zone" -msgstr "アプライアンスタイムゾーン" +msgid "Totals for %{hosts}" +msgstr "%{hosts} の合計" -#: ../app/views/ops/_settings_server_tab.html.haml:156 -msgid "Default Locale" -msgstr "デフォルトロケール" +msgid "Totals for Availability Zone" +msgstr "アベイラビリティーゾーンの合計" -#: ../app/views/ops/_settings_server_tab.html.haml:176 -msgid "* Changing the Zone will reset all of this Server's priorities to secondary." -msgstr "* ゾーンを変更すると、このサーバーの優先順位がすべて「セカンダリー」にリセットされます。" +msgid "Totals for Service VMs" +msgstr "サービス仮想マシンの合計" -#: ../app/views/ops/_settings_server_tab.html.haml:183 -msgid "Server Control" -msgstr "サーバー制御" +msgid "Totals for VMs" +msgstr "仮想マシンの合計" -#: ../app/views/ops/_settings_server_tab.html.haml:192 -msgid "Server Roles" -msgstr "サーバーロール" +msgid "Trap Number" +msgstr "トラップ番号" -#: ../app/views/ops/_settings_server_tab.html.haml:199 -msgid "Off" -msgstr "" +msgid "Trap Number is required" +msgstr "トラップ番号が必要です" -#: ../app/views/ops/_settings_server_tab.html.haml:199 -msgid "On" -msgstr "" +msgid "Trap Object ID" +msgstr "トラップオブジェクト ID" -#: ../app/views/ops/_settings_server_tab.html.haml:216 -msgid "Default Repository SmartProxy" -msgstr "デフォルトのリポジトリー SmartProxy" +msgid "Trap Object ID is required" +msgstr "トラップオブジェクト ID が必要です" -#: ../app/views/ops/_settings_server_tab.html.haml:241 -msgid "VMware Console Support" -msgstr "VMware コンソールサポート" +msgid "Tree View" +msgstr "ツリー表示" -#: ../app/views/ops/_settings_server_tab.html.haml:250 -msgid "Use" -msgstr "次を使用" +msgid "Trend Options" +msgstr "トレンドオプション" -#: ../app/views/ops/_settings_server_tab.html.haml:255 -msgid "VMware MKS Plugin" -msgstr "VMware MKS プラグイン" +msgid "Trend Steepness must be an integer" +msgstr "トレンド (傾き) には整数を使用する必要があります" -#: ../app/views/ops/_settings_server_tab.html.haml:255 -msgid "VMware VMRC Plugin" -msgstr "VMware VMRC プラグイン" +msgid "Trend Target Limit" +msgstr "トレンドターゲットの上限" -#: ../app/views/ops/_settings_server_tab.html.haml:255 -msgid "VNC" -msgstr "VNC" +msgid "Trend Target Limit must be configured" +msgstr "トレンドターゲット制限は設定する必要があります" -#: ../app/views/ops/_settings_server_tab.html.haml:272 -msgid "VMware MKS Plugin Version" -msgstr "VMware MKS プラグインバージョン" +msgid "Trend Target Limit must be numeric" +msgstr "トレンドターゲット制限は数値である必要があります" -#: ../app/views/ops/_settings_server_tab.html.haml:294 -msgid "VNC Proxy Address" -msgstr "VNC プロキシーアドレス" +msgid "Trend Target Limit: Value must be numeric" +msgstr "トレンドターゲット制限: 値は数値である必要があります" -#: ../app/views/ops/_settings_server_tab.html.haml:311 -msgid "VNC Proxy Port" -msgstr "VNC プロキシーポート" +msgid "Trend Target Percents" +msgstr "トレンドターゲットパーセント" -#: ../app/views/ops/_settings_server_tab.html.haml:370 -msgid "Specified NTP settings applied here will override Zone NTP settings." -msgstr "ここで指定される NTP 設定はゾーン NTP 設定をオーバーライドします。" +msgid "Trend for Past" +msgstr "過去のトレンド" -#: ../app/views/ops/_settings_server_tab.html.haml:377 -msgid "Outgoing SMTP E-mail Server" -msgstr "送信 SMTP メールサーバー" +msgid "Trending for" +msgstr "トレンド分析の対象" -#: ../app/views/ops/_settings_server_tab.html.haml:437 -msgid "Start TLS Automatically" -msgstr "TLS の自動開始" +msgid "Trending for is required" +msgstr "トレンド分析の対象が必要" -#: ../app/views/ops/_settings_server_tab.html.haml:457 -msgid "SSL Verify Mode" -msgstr "SSL 検証モード" +msgid "Trends for past" +msgstr "過去のトレンド" -#: ../app/views/ops/_settings_server_tab.html.haml:549 -msgid "Test E-mail Address" -msgstr "テストメールアドレス" +msgid "True" +msgstr "True" -#: ../app/views/ops/_settings_server_tab.html.haml:623 -msgid "Logging" -msgstr "ログ" +msgid "Truncate Long Text" +msgstr "長いテキストの省略" -#: ../app/views/ops/_settings_server_tab.html.haml:632 -msgid "Log Level" -msgstr "ログレベル" +msgid "Trusted CA Certificates" +msgstr "" -#: ../app/views/ops/_settings_server_tab.html.haml:652 -msgid "Custom Support URL" -msgstr "カスタムサポート URL" +msgid "Trusted Forest Settings" +msgstr "信頼されたフォレストの設定" -#: ../app/views/ops/_settings_server_tab.html.haml:661 -msgid "URL (i.e. www.mypage.com)" -msgstr "URL (例: www.mypage.com)" +msgid "Tuesday" +msgstr "火曜日" -#: ../app/views/ops/_settings_workers_tab.html.haml:13 -msgid "Generic Workers" -msgstr "汎用ワーカー" +msgid "Type" +msgstr "タイプ" -#: ../app/views/ops/_settings_workers_tab.html.haml:42 -#: ../app/views/ops/_settings_workers_tab.html.haml:93 -#: ../app/views/ops/_settings_workers_tab.html.haml:123 -#: ../app/views/ops/_settings_workers_tab.html.haml:153 -#: ../app/views/ops/_settings_workers_tab.html.haml:244 -#: ../app/views/ops/_settings_workers_tab.html.haml:294 -#: ../app/views/ops/_settings_workers_tab.html.haml:347 -#: ../app/views/ops/_settings_workers_tab.html.haml:397 -#: ../app/views/ops/_settings_workers_tab.html.haml:427 -#: ../app/views/ops/_settings_workers_tab.html.haml:477 -msgid "Memory threshold" -msgstr "メモリーしきい値" +msgid "Type is required" +msgstr "タイプが必要です" -#: ../app/views/ops/_settings_workers_tab.html.haml:64 -msgid "C & U Data Collectors" -msgstr "C & U データコレクター" +msgid "Type missing for %{field}" +msgstr "%{field} のタイプが不明です" -#: ../app/views/ops/_settings_workers_tab.html.haml:114 -msgid "Event Monitor" -msgstr "イベントモニター" +msgid "Type:" +msgstr "タイプ:" -#: ../app/views/ops/_settings_workers_tab.html.haml:144 -msgid "Connection Broker" -msgstr "接続ブローカー" +msgid "Type: " +msgstr "タイプ: " + +msgid "Type: %{automation_type}" +msgstr "タイプ: %{automation_type}" -#: ../app/views/ops/_settings_workers_tab.html.haml:174 msgid "UI Worker" msgstr "UI ワーカー" -#: ../app/views/ops/_settings_workers_tab.html.haml:208 -msgid " * Multiple UI workers can not be configured with session store as memory" -msgstr " * 複数の UI ワーカーをメモリーとしてのセッションストアで設定することはできません" +msgid "UNUSED?" +msgstr "" -#: ../app/views/ops/_settings_workers_tab.html.haml:215 -msgid "Reporting Workers" -msgstr "レポート作成ワーカー" +msgid "URI" +msgstr "URI" -#: ../app/views/ops/_settings_workers_tab.html.haml:265 -msgid "Web Service Workers" -msgstr "Web サービスワーカー" +msgid "URI Prefix" +msgstr "URI プレフィックス" -#: ../app/views/ops/_settings_workers_tab.html.haml:318 -msgid "Priority Workers" -msgstr "優先順位ワーカー" +msgid "URI is required" +msgstr "URI が必要です" -#: ../app/views/ops/_settings_workers_tab.html.haml:368 -msgid "C & U Data Processors" -msgstr "C & U データプロセッサー" +msgid "URL" +msgstr "URL" -#: ../app/views/ops/_settings_workers_tab.html.haml:448 -msgid "VM Analysis Collectors" -msgstr "仮想マシン分析コレクター" +msgid "URL (i.e. www.mypage.com)" +msgstr "URL (例: www.mypage.com)" -#: ../app/views/ops/_settings_workers_tab.html.haml:498 -msgid "Websocket Workers" -msgstr "Websocket ワーカー" +msgid "URL:" +msgstr "URL:" -#: ../app/views/ops/_smartproxy_affinity.html.haml:3 -msgid "" -"Assign Hosts and Datastores to Embedded SmartProxies in Zone: \"%{zone_descript" -"ion}\"" -msgstr "ホストおよびデータストアをゾーン (\"%{zone_description}\") の組み込み SmartProxy に割り当てます。" +msgid "US Executive - 7.25in x 10.5in" +msgstr "US エグゼクティブ - 7.25in x 10.5in" -#: ../app/views/ops/_smartproxy_affinity.html.haml:13 -msgid "No Servers with the SmartProxy role are in Zone: \"%{zone_description}\"" -msgstr "SmartProxy ロールを持つサーバーはゾーン ( \"%{zone_description}\") にありません。" +msgid "US Folio - 8.5in x 13.0in" +msgstr "US フォリオ - 8.5in x 13.0in" -#: ../app/views/ops/_tenant_form.html.haml:67 -msgid "Use Configuration Settings" -msgstr "構成内容の使用" +msgid "US Government - 8.0in x 11.0in" +msgstr "US 政府 - 8.0in x 11.0in" -#: ../app/views/ops/_tenant_quota_form.html.haml:72 -msgid " Valid numeric quota value required " -msgstr "有効なクォータ数値が必要です" +msgid "US Ledger - 17.0in x 11.0in" +msgstr "US 元帳 - 17.0in x 11.0in" -#: ../app/views/ops/_zone_form.html.haml:7 -msgid "Zone Information" -msgstr "ゾーン情報" +msgid "US Legal - 8.5in x 14.0in" +msgstr "US リーガル - 8.5in x 14.0in" -#: ../app/views/ops/_zone_form.html.haml:117 -msgid "* Specified NTP settings apply to this zone only and are not global." -msgstr "* 指定された NTP 設定はこのゾーンにのみ適用されるものでグローバル設定ではありません。" +msgid "US Letter - 8.5in x 11.0in" +msgstr "US レター - 8.5in x 11.0in" -#: ../app/views/ops/_zone_form.html.haml:124 -msgid "Credentials - Windows Domain" -msgstr "認証情報 - Windows ドメイン" +msgid "US Statement - 5.5in x 8.5in" +msgstr "US ステートメント - 5.5in x 8.5in" -#: ../app/views/ops/_zone_form.html.haml:194 -msgid "Max Active VM Scans" -msgstr "アクティブな仮想マシンの最大スキャン回数" +msgid "US Tabloid - 11.0in x 17.0in" +msgstr "US タブロイド - 11.0in x 17.0in" -#: ../app/views/ops/_zone_tree.html.haml:5 -msgid "Status of Regional Roles for Servers in %{kind} %{description}" -msgstr "%{kind} %{description} にあるサーバーのロールのステータス" +msgid "Unable to add Subnet \"%{name}\": %{details}" +msgstr "" -#: ../app/views/ops/_zone_tree.html.haml:8 -msgid "Status of Roles for Servers in %{kind} %{description}" -msgstr "%{kind} %{description} にあるサーバーのロールのステータス" +msgid "Unable to add nodes: %{error}" +msgstr "ノードを追加できません: %{error}" -#: ../app/views/ops/_zone_tree.html.haml:14 -msgid "* Primary Server Roles shown as %{bold} text." -msgstr "*プライマリーサーバーは %{bold} テキストで表示されます。" +msgid "Unable to associate Floating IP %{address} with Instance \"%{name}\": %{details}" +msgstr "Floating IP %{address} をインスタンス \"%{name}\" に関連付けることはできません: %{details}" -#: ../app/views/ops/_zone_tree.html.haml:14 -msgid "bold" -msgstr "太字" +msgid "Unable to associate Floating IP with Instance \"%{name}\": %{details}" +msgstr "Floating IP をインスタンス \"%{name}\" に関連付けることはできません: %{details}" -#: ../app/views/ops/_zone_tree.html.haml:17 -msgid "Region based nodes shown as %{dimmed} text." -msgstr "リージョンベースのノードは %{dimmed} で表示されます。" +msgid "Unable to attach Cloud Volume \"%{volume_name}\" to %{vm_name}: %{details}" +msgstr "" -#: ../app/views/ops/_zone_tree.html.haml:17 -msgid "dimmed" -msgstr "グレー表示" +msgid "Unable to create %{model} \"%{name}\": %{details}" +msgstr "%{model} \"%{name}\" を作成できません: %{details}" -#: ../app/views/ops/rhn/_info_subscribed.html.haml:3 -msgid "Appliances in this region can be registered with:" -msgstr "このリージョンのアプライアンスは以下を使って登録できます:" +msgid "Unable to create Cloud Network \"%{name}\": %{details}" +msgstr "" -#: ../app/views/ops/rhn/_info_subscribed.html.haml:45 -msgid "Account" -msgstr "アカウント" +msgid "Unable to create Cloud Subnet: %{details}" +msgstr "" -#: ../app/views/ops/rhn/_info_subscribed.html.haml:75 -msgid "Repository Name(s)" -msgstr "リポジトリー名" +msgid "Unable to create Cloud Tenant \"%{name}\": %{details}" +msgstr "" + +msgid "Unable to create Cloud Volume \"%{name}\": %{details}" +msgstr "" -#: ../app/views/ops/rhn/_info_unsubscribed.html.haml:5 -msgid "" -"Software updates have not yet been configured. Select Edit Registration to reg" -"ister appliances in this region with Red Hat to receive software updates and o" -"ther benefits." +msgid "Unable to create Floating IP \"%{name}\": %{details}" msgstr "" -"ソフトウェア更新はまだ設定されていません。このリージョンのアプリケーションを Red Hat に登録するために「登録の編集」を選択すると、ソフトウエア更新と" -"他の特典を取得できます。" -#: ../app/views/ops/rhn/_info_unsubscribed.html.haml:9 -msgid "You will need the following to register:" -msgstr "登録するには以下が必要です:" +msgid "Unable to create Key Pair \"%{name}\": %{details}" +msgstr "" -#: ../app/views/ops/rhn/_info_unsubscribed.html.haml:15 -msgid "Your Red Hat Account login or Red Hat Network Satellite login" -msgstr "Red Hat アカウントのログインまたは Red Hat Network Satellite のログイン" +msgid "Unable to create Security Group \"%{name}\": %{details}" +msgstr "" -#: ../app/views/ops/rhn/_info_unsubscribed.html.haml:17 -msgid "A Red Hat subscription that covers your product" -msgstr "ご使用の製品に適した Red Hat サブスクリプション" +msgid "Unable to create a new template copy \"%{name}\": new template content cannot be empty." +msgstr "新しいテンプレートコピー \"%{name}\" を作成することはできません: 新しいテンプレートの内容は空にできません。" -#: ../app/views/ops/rhn/_info_unsubscribed.html.haml:19 -msgid "(optional) your HTTP proxy information" -msgstr "(オプション) HTTP プロキシー情報" +msgid "Unable to create a new template copy \"%{name}\": old and new template content have to differ." +msgstr "新しいテンプレートコピー \"%{name}\" を作成することはできません: 新旧のテンプレートの内容は異なっている必要があります。" -#: ../app/views/ops/rhn/_info_unsubscribed.html.haml:21 -msgid "(optional) the address of an alternate service" -msgstr "(オプション) 代替サービスのアドレス" +msgid "Unable to create backup for %{model} \"%{name}\": %{details}" +msgstr "%{model} \"%{name}\" のバックアップを作成できません: %{details}" -#: ../app/views/ops/rhn/_server_table.html.haml:5 -msgid "Appliance Updates" -msgstr "アプライアンスの更新" +msgid "Unable to create snapshot for Cloud Volume \"%{name}\": %{details}" +msgstr "クラウドボリューム \"%{name}\" のスナップショットを作成できません: %{details}" -#: ../app/views/ops/rhn/_server_table.html.haml:16 -msgid "Available Product version:" -msgstr "利用可能な製品バージョン:" +msgid "Unable to deploy %s on this server %s\"" +msgstr "" -#: ../app/views/ops/rhn/_server_table.html.haml:31 -msgid "Refresh List" -msgstr "一覧の更新" +msgid "Unable to detach Cloud Volume \"%{volume_name}\" from %{vm_name}: %{details}" +msgstr "" -#: ../app/views/ops/rhn/_server_table.html.haml:40 -msgid "Check for Updates" -msgstr "更新のチェック" +msgid "Unable to disassociate Floating IP %{address} from Instance \"%{name}\": %{details}" +msgstr "Floating IP %{address} のインスタンス \"%{name}\" との関連付けを解除できません: %{details}" -#: ../app/views/ops/rhn/_server_table.html.haml:62 -msgid "Apply %{product} Update" -msgstr "%{product}の更新の適用" +msgid "Unable to disassociate Floating IP from Instance \"%{name}\": %{details}" +msgstr "Floating IP のインスタンス \"%{name}\" との関連付けを解除できません: %{details}" -#: ../app/views/ops/rhn/_server_table.html.haml:89 -msgid "Appliance" -msgstr "アプライアンス:" +msgid "Unable to evacuate %{instance} \"%{name}\": %{details}" +msgstr "%{instance} \"%{name}\" を移行できません: %{details}" -#: ../app/views/ops/rhn/_server_table.html.haml:93 -msgid "Update Status" -msgstr "ステータスの更新" +msgid "Unable to initiate scaling: %{message}" +msgstr "サイズ調整を初期化できません: %{message}" -#: ../app/views/ops/rhn/_server_table.html.haml:95 -msgid "Last Checked for updates" -msgstr "更新の最終チェック日" +msgid "Unable to install the Datasource on this server." +msgstr "" -#: ../app/views/ops/rhn/_server_table.html.haml:97 -msgid "%{product} Version" -msgstr "%{product}のバージョン" +msgid "Unable to live migrate %{instance} \"%{name}\": %{details}" +msgstr "%{instance} \"%{name}\" をライブマイグレーションできません: %{details}" -#: ../app/views/ops/rhn/_server_table.html.haml:99 -msgid "Platform Updates Available" -msgstr "利用可能なプラットフォーム更新" +msgid "Unable to live migrate Instance \"%{name}\": %{details}" +msgstr "" -#: ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 -msgid "Orderable" -msgstr "並べ替え可能" +msgid "Unable to reconfigure %{instance} \"%{name}\": %{details}" +msgstr "%{instance} \"%{name}\" を再設定できません: %{details} " -#: ../app/views/persistent_volume/_main.html.haml:10 -msgid "Volume Claim" -msgstr "ボリューム要求" +msgid "Unable to remove Subnet \"%{name}\": %{details}" +msgstr "" -#: ../app/views/persistent_volume/_main.html.haml:22 -msgid "Capacity" -msgstr "容量" +msgid "Unable to restore %{model} \"%{name}\" from backup: %{details}" +msgstr "バックアップから %{model} \"%{name}\" を復元できません: %{details}" -#: ../app/views/provider_foreman/_configuration_script.html.haml:18 -msgid "Surveys" -msgstr "調査" +msgid "Unable to update %{model} \"%{name}\": %{details}" +msgstr "%{model} \"%{name}\" を更新できません: %{details}" -#: ../app/views/provider_foreman/_form.html.haml:108 -msgid "Url" -msgstr "URL" +msgid "Unable to update Cloud Network \"%{name}\": %{details}" +msgstr "" -#: ../app/views/provider_foreman/_main.html.haml:16 -#: ../app/views/provider_foreman/_main_configuration_profile.html.haml:16 -msgid "Tenancy" -msgstr "テナンシー" +msgid "Unable to update Cloud Subnet \"%{name}\": %{details}" +msgstr "" -#: ../app/views/pxe/_iso_datastore_details.html.haml:31 -msgid "View this ISO Image" -msgstr "この ISO イメージの表示" +msgid "Unable to update Cloud Tenant \"%{name}\": %{details}" +msgstr "" -#: ../app/views/pxe/_pxe_form.html.haml:34 -msgid "Depot Type" -msgstr "デポタイプ" +msgid "Unable to update Cloud Volume \"%{name}\": %{details}" +msgstr "" -#: ../app/views/pxe/_pxe_form.html.haml:146 -#: ../app/views/pxe/_pxe_server_details.html.haml:17 -#: ../app/views/pxe/_pxe_server_details.html.haml:25 -msgid "PXE Image Menus" -msgstr "PXE イメージメニュー" +msgid "Unable to update Floating IP \"%{name}\": %{details}" +msgstr "" -#: ../app/views/pxe/_pxe_image_type_form.html.haml:39 -msgid "Any" -msgstr "任意" +msgid "Unable to update Security Group \"%{name}\": %{details}" +msgstr "" -#: ../app/views/pxe/_pxe_img_form.html.haml:48 -msgid "" -"* Checking this box will remove this setting from all other PXE Images on this" -" PXE Server" -msgstr "* このボックスをチェックすると、この PXE サーバーにある他のすべての PXE イメージからこの設定が削除されます" +msgid "Unable to update stack, obtaining of status failed: %{message}" +msgstr "スタックを更新できません。ステータスの取得に失敗しました: %{message}" -#: ../app/views/pxe/_pxe_server_details.html.haml:65 -msgid "Windows Boot Env" -msgstr "Windows ブート環境" +msgid "Unacknowledge" +msgstr "" -#: ../app/views/pxe/_pxe_server_details.html.haml:72 -msgid "View this PXE Image" -msgstr "この PXE イメージの表示" +msgid "Unacknowledged" +msgstr "" -#: ../app/views/pxe/_pxe_server_details.html.haml:119 -msgid "View this Windows Image" -msgstr "この Windows イメージの表示" +msgid "Unassign" +msgstr "" -#: ../app/views/pxe/_template_details.html.haml:16 -#: ../app/views/pxe/_template_form.html.haml:91 -msgid "Script" -msgstr "スクリプト" +msgid "Unassign Alert" +msgstr "" -#: ../app/views/pxe/_template_folders.html.haml:9 -msgid "View Examples (read only)' Folder" -msgstr "サンプルフォルダー (読み取り専用) の表示" +msgid "Unassigned" +msgstr "未割り当て" -#: ../app/views/pxe/_template_folders.html.haml:21 -msgid "View '%{name}' Folder" -msgstr "'%{name}' フォルダーの表示" +msgid "Unassigned Profiles Group" +msgstr "未割り当てのプロファイルグループ" -#: ../app/views/pxe/_template_form.html.haml:73 -msgid "CloudInit" -msgstr "CloudInit" +msgid "Unassigned:" +msgstr "未割り当て:" -#: ../app/views/pxe/_template_form.html.haml:73 -msgid "Kickstart" -msgstr "キックスタート" +msgid "Unattended GUI" +msgstr "自動 GUI" -#: ../app/views/pxe/_template_form.html.haml:73 -msgid "Sysprep" -msgstr "Sysprep" +msgid "Unauthorized object or action" +msgstr "未承認オブジェクトまたはアクション" -#: ../app/views/report/_column_lists.html.haml:9 -msgid "Available Fields:" -msgstr "選択可能なフィールド:" +msgid "Uncknowledge Alert" +msgstr "" -#: ../app/views/report/_column_lists.html.haml:38 -#: ../app/views/report/_column_lists.html.haml:91 -msgid "down" -msgstr "下へ移動" +msgid "Uncommitted Space" +msgstr "非コミット容量" -#: ../app/views/report/_column_lists.html.haml:38 -#: ../app/views/report/_column_lists.html.haml:91 -msgid "up" -msgstr "上へ移動" +msgid "Undeploy" +msgstr "デプロイ解除" -#: ../app/views/report/_column_lists.html.haml:40 -#: ../app/views/report/_column_lists.html.haml:95 -msgid "Move selected fields %{where}" -msgstr "選択したフィールドを %{where} に移動する" +msgid "Undeploy these Middleware Deployments" +msgstr "これらのミドルウェアデプロイメントのデプロイ解除" -#: ../app/views/report/_column_lists.html.haml:69 -msgid "Selected Fields:" -msgstr " 選択フィールド:" +msgid "Undeploy this Middleware Deployment" +msgstr "このミドルウェアデプロイメントのデプロイ解除" -#: ../app/views/report/_column_lists.html.haml:91 -msgid "to bottom" -msgstr "一番下へ" +msgid "Undeployment initiated for selected deployment(s)" +msgstr "デプロイ解除が選択したデプロイメントに対して実行されました" -#: ../app/views/report/_column_lists.html.haml:91 -msgid "to top" -msgstr "一番上へ" +msgid "Underlying %{name}" +msgstr "基礎となる %{name}" -#: ../app/views/report/_db_form.html.haml:41 -#: ../app/views/report/_db_show.html.haml:28 -msgid "Tab Title" -msgstr "タブタイトル" +msgid "Undo the last change" +msgstr "前回の変更を元に戻す" -#: ../app/views/report/_db_form.html.haml:74 -msgid "* Dashboard name cannot be changed" -msgstr "* ダッシュボード名は変更できません" +msgid "Unexpected error encountered" +msgstr "予期しないエラーが発生しました" -#: ../app/views/report/_db_list.html.haml:23 -msgid "Click to view '%{title}'" -msgstr "クリックして '%{title}' を表示する" +msgid "Ungrouped" +msgstr "" -#: ../app/views/report/_db_list.html.haml:60 -msgid "Click to view %{group} " -msgstr "クリックして%{group}を表示する" +msgid "Units" +msgstr "単位" -#: ../app/views/report/_db_list.html.haml:77 -msgid "No Dashboards are defined for this group. Default dashboard will be shown." -msgstr "このグループに定義されたダッシュボードはありません。デフォルトダッシュボードが表示されます。" +msgid "Unknown" +msgstr "不明" -#: ../app/views/report/_db_list.html.haml:99 -msgid "Click to view '%{widgetset_description} (%{widgetset_name})'" -msgstr "クリックして '%{widgetset_description} (%{widgetset_name})' を表示する" +msgid "Unknown Action" +msgstr "不明なアクション" -#: ../app/views/report/_db_seq_form.html.haml:11 -msgid "Dashboards:" -msgstr "ダッシュボード" +msgid "Unknown error has occurred" +msgstr "不明のエラーが発生しました" -#: ../app/views/report/_db_widget.html.haml:5 -msgid "Drag/drop Widget \"%{widget_title}\"" -msgstr "ウィジェット \"%{widget_title}\" のドラッグ/ドロップ" +msgid "Unknown server group operation: " +msgstr "" -#: ../app/views/report/_db_widget.html.haml:8 -msgid "View this Widget" -msgstr "このウィジェットの表示" +msgid "Unknown server operation: %{operation}" +msgstr "" -#: ../app/views/report/_db_widget_remove.html.haml:4 -msgid "Remove this widget" -msgstr "このウィジェットの削除" +msgid "Unlimited" +msgstr "無制限" -#: ../app/views/report/_db_widgets.html.haml:5 -msgid "Sample Dashboard" -msgstr "サンプルダッシュボード" +msgid "Unlock this Domain" +msgstr "このドメインのロック解除" -#: ../app/views/report/_export.html.haml:5 -msgid "Choose a Import/Export type from the menus on the left." -msgstr "左側のメニューからインポート/エクスポートタイプを選択します。" +msgid "Unlocked" +msgstr "ロック解除済み" -#: ../app/views/report/_export_custom_reports.html.haml:30 -msgid "Overwrite existing reports?" -msgstr "既存のレポートを上書きしますか?" +msgid "Unmanaged VMs" +msgstr "管理対象外の仮想マシン" -#: ../app/views/report/_export_custom_reports.html.haml:73 -msgid "Available Custom Reports:" -msgstr "利用可能なカスタムレポート:" +msgid "Unused/Overcommited Allocation" +msgstr "未使用/オーバーコミットの割り当て" -#: ../app/views/report/_export_widgets.html.haml:7 -msgid "Import Widgets" -msgstr "ウィジェットのインポート" +msgid "Up" +msgstr "" -#: ../app/views/report/_export_widgets.html.haml:24 -msgid "Widget name" -msgstr "ウィジェット名" +msgid "Update" +msgstr "更新" -#: ../app/views/report/_export_widgets.html.haml:120 -msgid "Available Widgets:" -msgstr "利用可能なウィジェット:" +msgid "Update Password" +msgstr "パスワードの更新" -#: ../app/views/report/_form.html.haml:14 -msgid "Basic Report Info" -msgstr "基本レポート情報" +msgid "Update Status" +msgstr "ステータスの更新" -#: ../app/views/report/_form.html.haml:21 -msgid "Menu Name" -msgstr "メニュー名" +msgid "Update aggregate not supported by %{model} \"%{name}\"" +msgstr "アグリゲートの更新は %{model} \"%{name}\" によりサポートされていません" -#: ../app/views/report/_form_chart.html.haml:6 -msgid "Chart Settings" -msgstr "チャート設定" +msgid "Update password" +msgstr "パスワードの更新" -#: ../app/views/report/_form_chart.html.haml:15 -msgid "Choose a chart type" -msgstr "チャートタイプの選択" +msgid "Update this LDAP Server" +msgstr "この LDAP サーバーの更新" -#: ../app/views/report/_form_chart.html.haml:20 -msgid "" -msgstr "<図表がありません>" +msgid "Update this entry" +msgstr "このエントリーの更新" -#: ../app/views/report/_form_chart.html.haml:37 -msgid "Chart mode" -msgstr "チャートモード" +msgid "Updated" +msgstr "更新:" -#: ../app/views/report/_form_chart.html.haml:43 -#: ../app/views/report/_form_chart.html.haml:54 -#: ../app/views/report/_form_sort.html.haml:78 -msgid "Counts" -msgstr "数量" +msgid "Updated - %{time}" +msgstr "更新 - %{time}" -#: ../app/views/report/_form_chart.html.haml:43 -msgid "Values" -msgstr "値" +msgid "Updated - %{update_time}, Last valid connection - %{valid_time}" +msgstr "更新 - %{update_time}、最終有効接続 - %{valid_time}" -#: ../app/views/report/_form_chart.html.haml:62 -msgid "Data column" -msgstr "データ列" +msgid "Updated On" +msgstr "更新日" -#: ../app/views/report/_form_chart.html.haml:83 -msgid "Top values to show" -msgstr "表示する上位の値" +msgid "Upload" +msgstr "アップロード" -#: ../app/views/report/_form_chart.html.haml:104 -msgid "Sum 'Other' values" -msgstr "'その他' の値の合計" +msgid "Upload %{customer_name} Tag Assignments for VMs" +msgstr "仮想マシンの%{customer_name}タグ割り当てのアップロード" -#: ../app/views/report/_form_chart.html.haml:117 -msgid "* Some charts my not produce desired results with a single sort field" -msgstr "* 一部のチャートの場合、単一ソートフィールドで必要な結果が生成されない可能性があります" +msgid "Upload Custom Variable Values" +msgstr "カスタム変数値のアップロード" -#: ../app/views/report/_form_columns.html.haml:9 -msgid "Configure Report Columns" -msgstr "レポート列の設定" +msgid "Upload File" +msgstr "ファイルのアップロード" -#: ../app/views/report/_form_columns.html.haml:16 -msgid "* Base the report on" -msgstr "* レポートのベース" +msgid "Uploaded File '%{filename}'" +msgstr "アップロードされたファイル '%{filename}'" -#: ../app/views/report/_form_columns.html.haml:45 -msgid "* Caution: Changing these fields will clear all selected values below them!" -msgstr "* 注意: これらのフィールドを変更すると、フィールドの下で選択したすべての値がクリアされます!" +msgid "Url" +msgstr "URL" -#: ../app/views/report/_form_columns.html.haml:52 -msgid "Report Creation Timeout" -msgstr "レポート作成タイムアウト" +msgid "Usage" +msgstr "使用状況" -#: ../app/views/report/_form_columns.html.haml:61 -msgid "Cancel after" -msgstr "タイムアウト時間" +msgid "Usage: " +msgstr "使用状況: " -#: ../app/views/report/_form_columns.html.haml:66 -msgid "%{number} Hour" -msgid_plural "%{number} Hours" -msgstr[0] "%{number} 時間" -msgstr[1] "%{number} 時間" +msgid "Usage: Unknown" +msgstr "使用状況: 不明" -#: ../app/views/report/_form_columns.html.haml:66 -msgid "System Default" -msgstr "システムデフォルト" +msgid "Use" +msgstr "次を使用" -#: ../app/views/report/_form_columns_performance.html.haml:6 -msgid "* Performance Interval" -msgstr "* パフォーマンス間隔" +msgid "Use Alias" +msgstr "エイリアスの使用" -#: ../app/views/report/_form_columns_performance.html.haml:31 -msgid "Averages Based On" -msgstr "平均値の基礎情報" +msgid "Use CTRL-ALT-Enter to toggle full screen" +msgstr "CTRL-ALT-Enter でフルスクリーンを切り替え" -#: ../app/views/report/_form_columns_performance.html.haml:36 -msgid "Available Active Data" -msgstr "利用できるアクティブなデータ:" +msgid "Use CTRL-ALT-INS for CTRL-ALT-DEL" +msgstr "CTRL-ALT-DEL の代わりに CTRL-ALT-INS を使用" -#: ../app/views/report/_form_columns_performance.html.haml:36 -msgid "Performance Interval" -msgstr "パフォーマンス間隔" +msgid "Use Configuration Settings" +msgstr "構成内容の使用" -#: ../app/views/report/_form_columns_trend.html.haml:6 -msgid "Trending for" -msgstr "トレンド分析の対象" +msgid "Use Custom Login & 'About' Screen Background Image" +msgstr "" -#: ../app/views/report/_form_columns_trend.html.haml:29 -msgid "Trend Target Limit" -msgstr "トレンドターゲットの上限" +msgid "Use Custom Login Text" +msgstr "カスタムログインテキストの使用" -#: ../app/views/report/_form_columns_trend.html.haml:39 -msgid "Column" -msgstr "列" +msgid "Use Custom Logo Image" +msgstr "カスタムロゴ画像の使用" -#: ../app/views/report/_form_columns_trend.html.haml:80 -msgid "Trend Target Percents" -msgstr "トレンドターゲットパーセント" +msgid "Use Existing" +msgstr "" -#: ../app/views/report/_form_consolidate.html.haml:6 -msgid "Group Records by up to 3 Columns" -msgstr "レコードのグループ化 (最大 3 列)" +msgid "Use HTTP Proxy" +msgstr "HTTP プロキシーの使用" -#: ../app/views/report/_form_consolidate.html.haml:15 -#: ../app/views/report/_widget_columns.html.haml:6 -msgid "Column 1" -msgstr "列 1" +msgid "Use existing VMs from an existing provider" +msgstr "既存プロバイダーの既存の仮想マシンを使用" -#: ../app/views/report/_form_consolidate.html.haml:37 -#: ../app/views/report/_widget_columns.html.haml:28 -msgid "Column 2" -msgstr "列 2" +msgid "Use existing VMs from an existing provider: " +msgstr "既存プロバイダーの既存の仮想マシンを使用: " -#: ../app/views/report/_form_consolidate.html.haml:59 -#: ../app/views/report/_widget_columns.html.haml:50 -msgid "Column 3" -msgstr "列 3" +msgid "Use the Choose file button to locate .png image file" +msgstr "「Choose file」ボタンを使用して .png イメージファイルを検索" -#: ../app/views/report/_form_consolidate.html.haml:81 -#: ../app/views/report/_form_consolidate.html.haml:149 -msgid "Note:" -msgstr "注:" +msgid "Use the Choose file button to locate CSV file" +msgstr "「Choose file」ボタンを使用して CSV ファイルを検索" -#: ../app/views/report/_form_consolidate.html.haml:84 -msgid "Consolidating records will not show detail records in the report." -msgstr "レコードを統合すると、レコードの詳細がレポート内に表示されなくなります。" +msgid "Use the Choose file button to locate a .png or .jpg image file" +msgstr "「Choose file」ボタンを使用して .png または .jpg イメージファイルを検索" -#: ../app/views/report/_form_consolidate.html.haml:91 -msgid "Specify Calculations of Numeric Values for Grouped Records" -msgstr "グループ化されたレコードの数値計算を指定" +msgid "Use the Choose file button to locate an Import file" +msgstr "「Choose file」ボタンを使用して Import ファイルを検索" -#: ../app/views/report/_form_consolidate.html.haml:102 -#: ../app/views/report/_form_formatting.html.haml:48 -#: ../app/views/report/_form_sort.html.haml:236 -#: ../app/views/report/_form_styling.html.haml:21 -msgid "Column Name" -msgstr "列名" +msgid "Use the Choose file button to locate an Upload file" +msgstr "「Choose file」ボタンを使用して Upload ファイルを検索" -#: ../app/views/report/_form_consolidate.html.haml:107 -#: ../app/views/report/_form_sort.html.haml:246 -msgid "Calculations" -msgstr "計算" +msgid "Use the Choose file button to locate an import file" +msgstr "「Choose file」ボタンを使用して Import ファイルを検索" -#: ../app/views/report/_form_consolidate.html.haml:152 -msgid "" -"Leave all options unchecked to show the original column value from the first r" -"ecord in the group." -msgstr "グループ内の最初のレコードにある元の列値を表示するには、すべてのオプションのチェックを外したままにします。" +msgid "Used" +msgstr "使用済み容量" -#: ../app/views/report/_form_filter.html.haml:14 -msgid "Primary (Record) Filter - Filters the %{model} table records" -msgstr "プライマリー (レコード) フィルター - %{model}テーブルのレコードをフィルタリング" +msgid "Used + Uncommitted Space" +msgstr "使用済み + 非コミット容量" -#: ../app/views/report/_form_filter.html.haml:22 -msgid "Edit the Record Filter" -msgstr "レコードフィルターの編集:" +msgid "Used Index Nodes" +msgstr "使用済みインデックスノード" -#: ../app/views/report/_form_filter.html.haml:33 -msgid "No Record Filter defined." -msgstr "レコードフィルターが定義されていません。" +msgid "Used Size" +msgstr "使用サイズ" -#: ../app/views/report/_form_filter.html.haml:55 -msgid "Secondary (Display) Filter - Filters the rows based on child table fields" -msgstr "セカンダリー (表示) フィルター - 子テーブルフィールドに基づく行のフィルタリング" +msgid "Used Space" +msgstr "使用済み領域" -#: ../app/views/report/_form_filter.html.haml:73 -msgid "No Display Filter defined." -msgstr "表示フィルターが定義されていません。" +msgid "Used Space on Volume" +msgstr "ボリュームの使用済み領域" -#: ../app/views/report/_form_filter_chargeback.html.haml:4 -msgid "Chargeback Filters" -msgstr "チャージバックフィルター" +msgid "Used for SSH connection to all %{hosts} in this provider." +msgstr "このプロバイダーのすべての%{hosts}への SSH 接続に使用されます。" -#: ../app/views/report/_form_filter_chargeback.html.haml:14 -#: ../app/views/report/_form_filter_chargeback.html.haml:249 -msgid "Show Costs by" -msgstr "コストの表示" +msgid "Used for access to IPMI." +msgstr "IPMI へのアクセスに使用されます。" -#: ../app/views/report/_form_filter_chargeback.html.haml:23 -#: ../app/views/report/_form_filter_chargeback.html.haml:27 -#: ../app/views/report/_form_filter_chargeback.html.haml:44 -#: ../app/views/report/_form_filter_chargeback.html.haml:182 -msgid "Owner" -msgstr "所有者" +msgid "Used for access to Web Services." +msgstr "Web サービスへのアクセスに使用されます。" -#: ../app/views/report/_form_filter_chargeback.html.haml:49 -msgid "Choose an Owner" -msgstr "所有者の選択" +msgid "Used to authenticate as a service account against your provider." +msgstr "プロバイダーに対するサービスアカウントの認証に使用されます。" -#: ../app/views/report/_form_filter_chargeback.html.haml:71 -msgid "Choose a tenant" -msgstr "テナントの選択" +msgid "Used to authenticate with OpenStack AMQP Messaging Bus for event handling. Configure AMQP if eventing is not enabled on Ceilometer." +msgstr "OpenStack AMQP メッセージングバスで認証してイベント処理を行うために使用されます。イベントが Ceilometer で有効でない場合は AMQP を設定します。" -#: ../app/views/report/_form_filter_chargeback.html.haml:115 -msgid "Choose a Value" -msgstr "仮想マシンの選択" +msgid "Used to gather Capacity & Utilization metrics." +msgstr "容量 & 使用率メトリックの収集に使用されます。" -#: ../app/views/report/_form_filter_chargeback.html.haml:137 -msgid "All Providers" -msgstr "" +msgid "User" +msgid_plural "Users" +msgstr[0] "ユーザー" +msgstr[1] "ユーザー" -#: ../app/views/report/_form_filter_chargeback.html.haml:137 -msgid "Choose Provider" -msgstr "" +msgid "User '%{user_id}' is not authorized to access '%{model}' record id '%{record_id}'" +msgstr "ユーザー '%{user_id}' は '%{model}' レコード id '%{record_id}' にアクセスする権限がありません" -#: ../app/views/report/_form_filter_chargeback.html.haml:162 -msgid "Choose %{entity}" -msgstr "%{entity}の選択" +msgid "User '%{username}' is not authorized to access '%{controller_name}'" +msgstr "ユーザー '%{username}' には、'%{controller_name}' にアクセスする権限がありません" -#: ../app/views/report/_form_filter_chargeback.html.haml:219 -msgid "Group by Tag" -msgstr "タグで分類" +msgid "User Accounts" +msgstr "ユーザーアカウント" -#: ../app/views/report/_form_filter_chargeback.html.haml:240 -msgid "Chargeback Interval" -msgstr "チャージバック間隔" +msgid "User Data" +msgstr "ユーザーデータ" -#: ../app/views/report/_form_filter_chargeback.html.haml:269 -msgid "%{chargeback_interval} Ending with" -msgstr "%{chargeback_interval} の終了:" +msgid "User Group Sequence was saved" +msgstr "ユーザーグループの順序が保存されました" -#: ../app/views/report/_form_filter_chargeback.html.haml:276 -msgid "%{number} Days Ago" -msgstr "%{number} 日前" +msgid "User Group Sequencing for LDAP Look Up:" +msgstr "LDAP 検索でのユーザーグループの順序:" -#: ../app/views/report/_form_filter_chargeback.html.haml:276 -msgid "1 Week Ago" -msgstr "1 週間前" +msgid "User Information" +msgstr "ユーザー情報" -#: ../app/views/report/_form_filter_chargeback.html.haml:276 -msgid "Today (partial)" -msgstr "今日 (一部)" +msgid "User Interface Configuration" +msgstr "ユーザーインターフェース構成" -#: ../app/views/report/_form_filter_chargeback.html.haml:278 -msgid "%d Weeks Ago" -msgstr "%d 週前" +msgid "User Interface settings saved for User %{name}" +msgstr "ユーザー %{name} のユーザーインターフェース設定が保存されました" -#: ../app/views/report/_form_filter_chargeback.html.haml:278 -msgid "This Week (partial)" -msgstr "今週 (一部)" +msgid "User Interface settings saved for this session" +msgstr "このセッション用のユーザーインターフェース設定が保存されました" -#: ../app/views/report/_form_filter_chargeback.html.haml:280 -msgid "%d Months Ago" -msgstr "%d カ月前" +msgid "User Name" +msgstr "ユーザー名" -#: ../app/views/report/_form_filter_chargeback.html.haml:280 -msgid "This Month (partial)" -msgstr "今月 (一部)" +msgid "User Password must be entered to perform LDAP Group Look Up" +msgstr "LDAP グループ検索を実行するには、ユーザーパスワードを入力する必要があります" -#: ../app/views/report/_form_filter_chargeback.html.haml:290 -#: ../app/views/report/_form_filter_performance.html.haml:32 -msgid "going back" -msgstr "戻る" +msgid "User Principal Name" +msgstr "ユーザープリンシパル名" -#: ../app/views/report/_form_filter_chargeback.html.haml:294 -msgid "%{number} Day" -msgid_plural "%{number} Days" -msgstr[0] "%{number} 日" -msgstr[1] "%{number} 日" +msgid "User Role" +msgstr "ユーザーロール" -#: ../app/views/report/_form_filter_chargeback.html.haml:294 -#: ../app/views/report/_form_filter_chargeback.html.haml:296 -msgid "%{number} Week" -msgid_plural "%{number} Weeks" -msgstr[0] "%{number} 週" -msgstr[1] "%{number} 週" +msgid "User Roles" +msgstr "ユーザーロール" -#: ../app/views/report/_form_filter_chargeback.html.haml:298 -msgid "%{number} Month" -msgid_plural "%{number} Months" -msgstr[0] "%{number} カ月" -msgstr[1] "%{number} カ月" +msgid "User Suffix" +msgstr "ユーザーサフィックス" -#: ../app/views/report/_form_filter_performance.html.haml:4 -msgid "Performance Timeframe" -msgstr "パフォーマンス時間枠" +msgid "User Suffix:" +msgstr "ユーザーサフィックス:" -#: ../app/views/report/_form_filter_performance.html.haml:14 -msgid "Show hourly data from" -msgstr "毎時データの表示元" +msgid "User Type" +msgstr "ユーザータイプ" -#: ../app/views/report/_form_filter_performance.html.haml:17 -msgid "Show daily data from" -msgstr "日次データの表示元" +msgid "User is not authorized to view %{model} \"%{name}\"" +msgstr "ユーザーは %{model} \"%{name}\" を表示する権限がありません" -#: ../app/views/report/_form_filter_performance.html.haml:76 -msgid "Note: Only Time Profiles with 'Roll Up Performance' set are shown." -msgstr "注: 'パフォーマンスのロールアップ' が設定されたタイムプロファイルのみが表示されます。" +msgid "User must be entered to perform LDAP Group Look Up" +msgstr "LDAP グループ検索を実行するには、ユーザーを入力する必要があります" -#: ../app/views/report/_form_formatting.html.haml:6 -msgid "PDF Output" -msgstr "PDF 出力" +msgid "User no longer exists" +msgstr "ユーザーは存在しません" -#: ../app/views/report/_form_formatting.html.haml:15 -msgid "Page Size" -msgstr "ページサイズ" +msgid "User to Look Up" +msgstr "検索するユーザー" -#: ../app/views/report/_form_formatting.html.haml:37 -msgid "Specify Column Headers and Formats" -msgstr "列ヘッダーと形式の指定" +msgid "User will input the value" +msgstr "ユーザーによる値の入力" + +msgid "Username" +msgstr "ユーザー名" -#: ../app/views/report/_form_formatting.html.haml:53 -#: ../app/views/report/_form_sort.html.haml:241 -msgid "Header" -msgstr "ヘッダー" +msgid "Username (optional):" +msgstr "ユーザー名 (オプション):" -#: ../app/views/report/_form_formatting.html.haml:88 -#: ../app/views/report/_form_sort.html.haml:119 -msgid "Reset to Default" -msgstr "デフォルトにリセット" +msgid "Username and matching password fields are needed to run a database backup" +msgstr "データベースバックアップを実行するには、ユーザー名フィールドと、一致するパスワードフィールドが必要です" -#: ../app/views/report/_form_preview.html.haml:8 -msgid "Timeline Preview (up to 50 rows)" -msgstr "タイムラインプレビュー (最大 50 行)" +msgid "Username is required" +msgstr "ユーザー名が必要です" -#: ../app/views/report/_form_preview.html.haml:24 -msgid "Chart Preview (up to 50 rows)" -msgstr "チャートプレビュー (最大 50 行)" +msgid "Username must be entered if Password is entered" +msgstr "パスワードが入力される場合はユーザー名を入力する必要があります" -#: ../app/views/report/_form_preview.html.haml:42 -msgid "Report Preview (up to 50 rows)" -msgstr "レポートプレビュー (最大 50 行)" +msgid "Username must be entered to perform LDAP Group Look Up" +msgstr "LDAP グループ検索を実行するには、ユーザー名を入力する必要があります" -#: ../app/views/report/_form_preview.html.haml:51 -msgid "Generate Report Preview" -msgstr "レポートプレビューの生成" +msgid "Username:" +msgstr "ユーザー名: " -#: ../app/views/report/_form_preview.html.haml:53 -msgid "Generate Report preview" -msgstr "レポートプレビューの生成" +msgid "Users" +msgstr "ユーザー" -#: ../app/views/report/_form_sort.html.haml:6 -msgid "Sort Criteria" -msgstr "並べ替え条件" +msgid "Users (%{users_count})" +msgstr "ユーザー (%{users_count})" -#: ../app/views/report/_form_sort.html.haml:15 -msgid "Sort the Report By" -msgstr "レポートの並び替え条件" +msgid "Users are only allowed to delete their own requests" +msgstr "ユーザーには各自の要求を削除することのみが許可されます。" -#: ../app/views/report/_form_sort.html.haml:35 -#: ../app/views/report/_form_sort.html.haml:183 -msgid "Original Value" -msgstr "元ファイル" +msgid "Users in this Group" +msgstr "このグループのユーザー" -#: ../app/views/report/_form_sort.html.haml:73 -msgid "Show Sort Breaks" -msgstr "並べ替え分割の表示" +msgid "Utilization" +msgstr "使用状況" -#: ../app/views/report/_form_sort.html.haml:96 -msgid "Hide Detail Rows" -msgstr "詳細列の非表示" +msgid "Utilization Summary" +msgstr "使用状況の概要" -#: ../app/views/report/_form_sort.html.haml:114 -msgid "Format on Summary Row" -msgstr "概要行の形式" +msgid "VC Custom Attributes" +msgstr "VC カスタム属性" -#: ../app/views/report/_form_sort.html.haml:138 -msgid "Label on Summary Row" -msgstr "概要列のラベル" +msgid "VM" +msgstr "仮想マシン" -#: ../app/views/report/_form_sort.html.haml:163 -msgid "Within Above Field, Sort By" -msgstr "フィールド内の並べ替え" +msgid "VM \"%{name}\"" +msgstr "仮想マシン \"%{name}\"" -#: ../app/views/report/_form_sort.html.haml:200 -msgid "Number of Rows to Show" -msgstr "表示する行数" +msgid "VM %{name} Remote Console" +msgstr "仮想マシン%{name}のリモートコンソール" -#: ../app/views/report/_form_sort.html.haml:206 -msgid "First %{number}" -msgstr "最初の %{number}" +msgid "VM Analysis" +msgstr "仮想マシンの分析" -#: ../app/views/report/_form_sort.html.haml:225 -msgid "Specify Calculations for Summary Rows" -msgstr "概要列の計算を指定" +msgid "VM Analysis Collectors" +msgstr "仮想マシン分析コレクター" -#: ../app/views/report/_form_styling.html.haml:10 -msgid "Specify Column Styles" -msgstr "列スタイルの指定" +msgid "VM Compliance Check" +msgstr "仮想マシンのコンプライアンスチェック" -#: ../app/views/report/_form_styling.html.haml:26 -msgid "Style" -msgstr "スタイル" +msgid "VM Configuration" +msgstr "仮想マシンの構成" -#: ../app/views/report/_form_styling.html.haml:31 -msgid "If" -msgstr "If" +msgid "VM Console" +msgstr "" -#: ../app/views/report/_form_styling.html.haml:57 -msgid "Normal" -msgstr "標準" +msgid "VM Counts per %{model}" +msgstr "%{model}あたりの仮想マシン数" -#: ../app/views/report/_form_styling.html.haml:137 -msgid "* Style \"If\" conditions are evaluated top to bottom for each column" -msgstr "* スタイル \"If\" 条件の評価は、1 列ごとに上から下に実行されます。" +msgid "VM Hardware" +msgstr "仮想マシンハードウェア" -#: ../app/views/report/_form_tl_sample.html.haml:7 -msgid "Sample Timeline" -msgstr "サンプルタイムライン" +msgid "VM Limits" +msgstr "仮想マシンの上限" -#: ../app/views/report/_form_tl_settings.html.haml:6 -msgid "Timeline Settings" -msgstr "タイムライン設定" +msgid "VM Memory Files" +msgstr "仮想マシンのメモリーファイル" -#: ../app/views/report/_form_tl_settings.html.haml:19 -msgid "Base Timeline on" -msgstr "ベースタイムライン" +msgid "VM Number" +msgstr "仮想マシン番号" -#: ../app/views/report/_form_tl_settings.html.haml:47 -msgid "Event to position at" -msgstr "配置するイベント" +msgid "VM Options" +msgstr "仮想マシンオプション" -#: ../app/views/report/_menu_form1.html.haml:45 -msgid "Move selected folder top" -msgstr "選択したフォルダーを先頭に移動する" +msgid "VM Power Functions" +msgstr "仮想マシンの電源機能" -#: ../app/views/report/_menu_form1.html.haml:119 -msgid "Manage Accordions & Folders" -msgstr "アコーディオン & フォルダーの管理" +msgid "VM Provisioned Disk Files" +msgstr "仮想マシンのプロビジョニングされたディスクファイル" -#: ../app/views/report/_menu_form1.html.haml:130 -msgid "Please select a node from the tree to edit." -msgstr "編集するツリーからノードを選択してください。" +msgid "VM Reconfigure Request was cancelled by the user" +msgstr "仮想マシンの再構成要求がユーザーにより取り消されました" -#: ../app/views/report/_menu_form2.html.haml:8 -msgid "Manage Reports" -msgstr "レポートの管理" +msgid "VM Reconfigure Request was saved" +msgstr "仮想マシンの再構成要求が保存されました" -#: ../app/views/report/_menu_form2.html.haml:19 -msgid "Available Reports:" -msgstr "利用可能なレポート:" +msgid "VM Remote Access" +msgstr "" -#: ../app/views/report/_menu_form2.html.haml:26 -msgid "Selected Reports:" -msgstr "選択したレポート:" +msgid "VM Reservations" +msgstr "仮想マシンの予約" -#: ../app/views/report/_menu_form2.html.haml:53 -msgid "Move selected reports right" -msgstr "選択したレポートを右に移動する" +msgid "VM Selection" +msgstr "仮想マシンの選択" -#: ../app/views/report/_menu_form2.html.haml:69 -msgid "Move selected reports left" -msgstr "選択したレポートを左に移動する" +msgid "VM Snapshot Files" +msgstr "仮想マシンのスナップショットファイル" -#: ../app/views/report/_menu_form2.html.haml:85 -msgid "Move selected reports to top" -msgstr "選択したレポートを先頭に移動する" +msgid "VM Templates" +msgstr "仮想マシンのテンプレート" -#: ../app/views/report/_menu_form2.html.haml:101 -msgid "Move selected reports up" -msgstr "選択したレポートを上に移動する" +msgid "VM VMRC Console error: %{error}" +msgstr "仮想マシン VMRC コンソールエラー: %{error}" -#: ../app/views/report/_menu_form2.html.haml:117 -msgid "Move selected reports down" -msgstr "選択したレポートを下に移動する" +msgid "VM Visibility" +msgstr "VM の可視性" -#: ../app/views/report/_menu_form2.html.haml:133 -msgid "Move selected reports to bottom" -msgstr "選択したレポートを一番下に移動する" +msgid "VM and Instance Conditions" +msgstr "仮想マシンとインスタンスの条件" -#: ../app/views/report/_menu_form2.html.haml:163 -msgid "Commit report management changes" -msgstr "レポート管理の変更のコミット" +msgid "VM data will be collected for VMs under selected %{hosts} only. Data is collected for a %{cluster} and all of its %{hosts} when at least one %{host} is selected." +msgstr "選択した %{hosts} の下にある仮想マシンの仮想マシンデータのみが収集されます。1 つ以上の %{host} が選択されると、%{cluster} とその %{hosts} のすべてについてデータが収集されます。" -#: ../app/views/report/_menu_form2.html.haml:174 -msgid "Discard report management changes" -msgstr "レポート管理の変更を破棄" +msgid "VM has too many parents." +msgstr "" -#: ../app/views/report/_menu_form2.html.haml:193 -msgid "* Report is not owned by your group so it cannot be removed" -msgstr "* レポートはお使いのグループにより所有されていないため、削除することができません" +msgid "VM is already retired" +msgstr "仮想マシンはすでにリタイアしています" -#: ../app/views/report/_report_info.html.haml:20 -#: ../app/views/report/_report_list.html.haml:117 -msgid "Primary (Record) Filter" -msgstr "プライマリー (レコード) フィルター" +msgid "VM successfully removed from service \"%{name}\"" +msgstr "仮想マシンがサービス \"%{name}\" から正常に削除されました" -#: ../app/views/report/_report_info.html.haml:31 -#: ../app/views/report/_report_list.html.haml:122 -msgid "Secondary (Display) Filter" -msgstr "セカンダリー (表示) フィルター" +msgid "VM/Instance Name" +msgstr "仮想マシン/インスタンス名" -#: ../app/views/report/_report_info.html.haml:113 -msgid "Report is not Scheduled." -msgstr "レポートはスケジュールされていません。" +msgid "VM: %{name} (Click to view)" +msgstr "仮想マシン: %{name} (クリックして表示)" -#: ../app/views/report/_report_info.html.haml:169 -msgid "View this Schedule" -msgstr "このスケジュールの表示" +msgid "VMDB" +msgstr "VMDB" -#: ../app/views/report/_report_info.html.haml:232 -msgid "Report doesn't belong to Widgets." -msgstr "レポートはウィジェットに属していません。" +msgid "VMDB \"%{name}\" Table Utilization" +msgstr "VMDB \"%{name}\" テーブルの使用" -#: ../app/views/report/_report_info.html.haml:261 -msgid "Click to view selected widget" -msgstr "クリックして選択したウィジェットを表示する" +msgid "VMDB Client Connections" +msgstr "VMDB クライアントの接続" -#: ../app/views/report/_report_list.html.haml:198 -msgid "Report Info" -msgstr "レポート情報" +msgid "VMDB Settings" +msgstr "VMDB 設定" -#: ../app/views/report/_report_list.html.haml:214 -#: ../app/views/report/_reports.html.haml:2 -msgid "Choose a Report to view from the menus on the left." -msgstr "左側のメニューから表示するレポートを選択します。" +msgid "VMDB Summary" +msgstr "VMDB 概要" -#: ../app/views/report/_report_saved_reports.html.haml:6 -#: ../app/views/report/_role_list.html.haml:25 -msgid "No Saved Reports available." -msgstr "利用可能な保存済みレポートはありません。" +msgid "VMDB Utilization" +msgstr "VMDB の使用状況" -#: ../app/views/report/_role_list.html.haml:45 -msgid "Choose a Role to edit from the left." -msgstr "左側のメニューから編集するロールを選択します。" +msgid "VMM Information" +msgstr "VMM 情報" -#: ../app/views/report/_savedreports_list.html.haml:22 -msgid "* No Reports available." -msgstr "* 利用できるレポートはありません。" +msgid "VMs" +msgstr "仮想マシン" -#: ../app/views/report/_savedreports_list.html.haml:29 -#: ../app/views/report/show_saved.html.haml:3 -msgid "Choose a Report from the menus on the left." -msgstr "左側のメニューからレポートを選択します。" +msgid "VMs & Instances" +msgstr "仮想マシン & インスタンス" -#: ../app/views/report/_schedule_email_options.html.haml:7 -msgid "E-mail Options" -msgstr "メールオプション" +msgid "VMs & Templates" +msgstr "仮想マシン & テンプレート" -#: ../app/views/report/_schedule_email_options.html.haml:16 -msgid "Send if Report is Empty" -msgstr "レポートが空の場合に送信" +msgid "VMs And Templates" +msgstr "仮想マシンおよびテンプレート" -#: ../app/views/report/_schedule_email_options.html.haml:30 -msgid "Attachments" -msgstr "添付ファイル" +msgid "VMsafe" +msgstr "VMsafe" -#: ../app/views/report/_schedule_email_options.html.haml:50 -msgid "CSV" -msgstr "CSV" +msgid "VMware Console Support" +msgstr "VMware コンソールサポート" -#: ../app/views/report/_schedule_email_options.html.haml:60 -msgid "PDF" -msgstr "PDF" +msgid "VMware MKS Plugin" +msgstr "VMware MKS プラグイン" -#: ../app/views/report/_schedule_form.html.haml:68 -msgid "E-mail after Running" -msgstr "実行後のメール" +msgid "VMware MKS Plugin Version" +msgstr "VMware MKS プラグインバージョン" -#: ../app/views/report/_schedule_form_filter.html.haml:6 -msgid "Report Selection" -msgstr "レポートの選択" +msgid "VMware Server" +msgstr "VMware Server" -#: ../app/views/report/_schedule_form_timer.html.haml:6 -#: ../app/views/report/_widget_show.html.haml:279 -msgid "Timer" -msgstr "タイマー" +msgid "VMware VMRC Plugin" +msgstr "VMware VMRC プラグイン" -#: ../app/views/report/_schedule_form_timer.html.haml:20 -msgid "Monthly" -msgstr "毎月" +msgid "VMware vCenter" +msgstr "VMware vCenter" -#: ../app/views/report/_schedule_form_timer.html.haml:20 -msgid "Once" -msgstr "1 回" +msgid "VNC" +msgstr "VNC" -#: ../app/views/report/_schedule_form_timer.html.haml:20 -msgid "Weekly" -msgstr "毎週" +msgid "VNC consoles are unsupported on VMware ESXi 6.5 and later." +msgstr "" + +msgid "VNF Templates" +msgstr "VNF テンプレート" -#: ../app/views/report/_schedule_form_timer.html.haml:151 -msgid "h" -msgstr "h" +msgid "Valid" +msgstr "有効" -#: ../app/views/report/_schedule_form_timer.html.haml:164 -msgid "m" -msgstr "m" +msgid "Validate" +msgstr "検証" -#: ../app/views/report/_schedule_list.html.haml:12 -msgid "No Schedules available." -msgstr "利用可能なスケジュールはありません。" +msgid "Validate the Amazon Settings" +msgstr "Amazon 設定の検証" -#: ../app/views/report/_schedule_list.html.haml:18 -msgid "Choose a Schedule to view from the menus on the left." -msgstr "左側のメニューから表示するスケジュールを選択します。" +msgid "Validate the LDAP Settings by binding with the %{host}" +msgstr "%{host}を使ったバインドにより LDAP 設定を検証" -#: ../app/views/report/_show_schedule.html.haml:29 -msgid "E-Mail after Running" -msgstr "実行後のメール" +msgid "Validate the credentials" +msgstr "認証情報の検証" -#: ../app/views/report/_show_schedule.html.haml:44 -msgid "From E-mail" -msgstr "送信元メールアドレス" +msgid "Validate the credentials by logging into the Server" +msgstr "サーバーにログインして認証情報を検証" -#: ../app/views/report/_show_schedule.html.haml:58 -msgid "To E-mail" -msgstr "宛先メール" +msgid "Validate the credentials by logging into the selected %{host}" +msgstr "選択した %{host} にログインして認証情報を検証" -#: ../app/views/report/_show_schedule.html.haml:72 -#: ../app/views/report/_widget_show.html.haml:126 -msgid "Report Filter" -msgstr "レポートフィルター" +msgid "Validate the credentials by logging into the selected %{title_for_host}" +msgstr "選択した %{title_for_host} にログインして認証情報を検証" -#: ../app/views/report/_widget_columns.html.haml:72 -msgid "Column 4" -msgstr "列 4" +msgid "Validation Required" +msgstr "検証が必要です" -#: ../app/views/report/_widget_form.html.haml:76 -#: ../app/views/report/_widget_show.html.haml:338 -msgid "* Fields are read only for default Widgets" -msgstr "* デフォルトウィジェットの場合、フィールドは読み取り専用になります。" +msgid "Validation successful" +msgstr "検証に成功しました" -#: ../app/views/report/_widget_form_chart.html.haml:4 -#: ../app/views/report/_widget_show.html.haml:112 -msgid "Chart Report" -msgstr "チャートレポート" +msgid "Validator Rule" +msgstr "検証ルール" -#: ../app/views/report/_widget_form_menu.html.haml:4 -#: ../app/views/report/_widget_show.html.haml:116 -msgid "Menu Shortcuts" -msgstr "メニューのショートカット" +msgid "Validator Type" +msgstr "検証タイプ" -#: ../app/views/report/_widget_form_menu.html.haml:7 -msgid "Add a Shortcut" -msgstr "" +msgid "Value" +msgstr "値" -#: ../app/views/report/_widget_form_menu.html.haml:23 -msgid "Drag this Shortcut to a new location" -msgstr "このショートカットを新しい場所にドラッグする" +msgid "Value Threshold must be an integer" +msgstr "しきい値は整数である必要があります" -#: ../app/views/report/_widget_form_menu.html.haml:33 -msgid "Remove this Shortcut" -msgstr "このショートカットの削除" +msgid "Value Type" +msgstr "値タイプ" -#: ../app/views/report/_widget_form_menu.html.haml:42 -msgid "Reset this Shortcut's text" -msgstr "このショートカットのテキストのリセット" +msgid "Value and Description fields can't be blank" +msgstr "値 フィールドと 説明 フィールドは空白にできません" -#: ../app/views/report/_widget_form_report.html.haml:4 -#: ../app/views/report/_widget_show.html.haml:110 -msgid "Report Options" -msgstr "レポートオプション" +msgid "Value missing for %{field}" +msgstr "%{field} の値が不明です" -#: ../app/views/report/_widget_form_report.html.haml:59 -msgid "No Widget compatible Reports found" -msgstr "ウィジェットと互換性のあるレポートが見つかりませんでした" +msgid "Value to Set" +msgstr "設定する値" -#: ../app/views/report/_widget_form_report.html.haml:69 -#: ../app/views/report/_widget_form_rss.html.haml:86 -#: ../app/views/report/_widget_show.html.haml:268 -msgid "Row Count" -msgstr "行数" +msgid "Value:" +msgstr "値:" -#: ../app/views/report/_widget_form_rss.html.haml:4 -#: ../app/views/report/_widget_show.html.haml:114 -msgid "RSS Feed Options" -msgstr "RSS フィードオプション" +msgid "Values" +msgstr "値" -#: ../app/views/report/_widget_form_rss.html.haml:20 -#: ../app/views/report/_widget_show.html.haml:164 -msgid "External" -msgstr "外部" +msgid "Variable" +msgstr "可変" -#: ../app/views/report/_widget_form_rss.html.haml:20 -#: ../app/views/report/_widget_show.html.haml:164 -msgid "Internal" -msgstr "内部" +msgid "Variable Object ID" +msgstr "変数オブジェクト ID" -#: ../app/views/report/_widget_form_rss.html.haml:37 -#: ../app/views/report/_widget_show.html.haml:183 -msgid "Internal RSS Feed" -msgstr "内部 RSS フィード" +msgid "Variables" +msgstr "変数" -#: ../app/views/report/_widget_form_rss.html.haml:59 -#: ../app/views/report/_widget_show.html.haml:204 -msgid "External RSS Feed/URL" -msgstr "外部 RSS フィード/URL" +msgid "Variables & Default Values" +msgstr "" -#: ../app/views/report/_widget_form_rss.html.haml:64 -msgid "Enter URL Manually" -msgstr "URL の手動入力" +msgid "Vendor" +msgstr "ベンダー" -#: ../app/views/report/_widget_list.html.haml:4 -#: ../app/views/report/_widget_list.html.haml:11 -msgid "No Widgets available." -msgstr "利用可能なウィジェットはありません。" +msgid "Verbosity" +msgstr "" -#: ../app/views/report/_widget_show.html.haml:71 -msgid "Current Status" -msgstr "現在のステータス" +msgid "Verify" +msgstr "確認" -#: ../app/views/report/_widget_show.html.haml:139 -msgid "Report no longer exists" -msgstr "レポートは存在しません" +msgid "Verify %{password_label}" +msgstr "%{password_label}の検証" -#: ../app/views/report/_widget_show.html.haml:160 -msgid "Chart no longer exists" -msgstr "チャートは存在しません" +msgid "Verify Password" +msgstr "パスワードの確認" -#: ../app/views/report/_widget_show.html.haml:196 -msgid "RSS Feed no longer exists" -msgstr "RSS フィードオプションは存在しません" +msgid "Verify Peer Certificate" +msgstr "ピア証明書の検証" -#: ../app/views/report/_widget_show.html.haml:218 -msgid "Shortcuts" -msgstr "ショートカット" +msgid "Verify TLS Certificates" +msgstr "" -#: ../app/views/report/_widget_show.html.haml:256 -msgid "Column %{index}" -msgstr "列 %{index}" +msgid "Version" +msgstr "バージョン" -#: ../app/views/report/_widget_show.html.haml:314 -msgid "No timer is attached to this Widget, its contents will not be updated." -msgstr "このウィジェットに接続されたタイマーはありません。このコンテンツは更新されません。" +msgid "Version / Build" +msgstr "バージョン / ビルド" -#: ../app/views/report/_widget_show.html.haml:316 -msgid "Edit this Widget to configure a timer." -msgstr "このウィジェットを編集してタイマーを設定します。" +msgid "View %{name} Folder" +msgstr "%{name} フォルダーの表示" -#: ../app/views/security_group/_main.html.haml:20 -msgid "Direction" -msgstr "方向" +msgid "View '%{name}' Cluster" +msgstr "'%{name}' クラスターの表示" -#: ../app/views/security_group/_main.html.haml:20 -msgid "End Port" -msgstr "終了ポート" +msgid "View '%{name}' Folder" +msgstr "'%{name}' フォルダーの表示" -#: ../app/views/security_group/_main.html.haml:20 -msgid "Host Protocol" -msgstr "ホストプロトコル" +msgid "View Analysis Profiles" +msgstr "分析プロファイルの表示" -#: ../app/views/security_group/_main.html.haml:20 -msgid "Network Protocol" -msgstr "ネットワークプロトコル" +msgid "View Compute Rates" +msgstr "コンピュートレートの表示" -#: ../app/views/service/_svcs_show.html.haml:18 -msgid "Totals for Service VMs" -msgstr "サービス仮想マシンの合計" +msgid "View Condition" +msgstr "条件の表示" -#: ../app/views/shared/_file_chooser.html.haml:9 -msgid "Choose file" -msgstr "ファイルの選択" +msgid "View Examples (read only)' Folder" +msgstr "サンプルフォルダー (読み取り専用) の表示" -#: ../app/views/shared/_topology_header.html.haml:9 -#: ../app/views/shared/_topology_header_toolbar.html.haml:7 -msgid "Display Names" -msgstr "名前の表示" +msgid "View Graph" +msgstr "" -#: ../app/views/shared/buttons/_ab_form.html.haml:7 -msgid "Paste object details for use in a Button." -msgstr "ボタン内で使用されるオブジェクト詳細の貼り付け" +msgid "View Groups" +msgstr "グループの表示" -#: ../app/views/shared/buttons/_ab_form.html.haml:18 -msgid "" -"Paste is not available, no object information has been copied from the Simulat" -"ion screen" -msgstr "貼り付けはできません。シミュレーション画面からコピーされたオブジェクト情報はありません" +msgid "View Instances" +msgstr "インスタンスの表示" -#: ../app/views/shared/buttons/_ab_form.html.haml:36 -#: ../app/views/shared/buttons/_ab_list.html.haml:134 -#: ../app/views/shared/buttons/_ab_show.html.haml:15 -msgid "Button Text" -msgstr "ボタンテキスト" +msgid "View LDAP Regions" +msgstr "LDAP 領域の表示" -#: ../app/views/shared/buttons/_ab_form.html.haml:55 -#: ../app/views/shared/buttons/_ab_list.html.haml:146 -#: ../app/views/shared/buttons/_ab_show.html.haml:27 -#: ../app/views/shared/buttons/_group_form.html.haml:36 -msgid "Display on Button" -msgstr "ボタンに表示" +msgid "View Parent Tenant" +msgstr "親テナントの表示" -#: ../app/views/shared/buttons/_ab_form.html.haml:69 -#: ../app/views/shared/buttons/_ab_list.html.haml:154 -#: ../app/views/shared/buttons/_ab_show.html.haml:35 -msgid "Button Hover Text" -msgstr "ボタンのホバーテキスト" +msgid "View Policy Simulation for the selected Templates" +msgstr "選択したテンプレートのポリシーシミュレーションの表示" -#: ../app/views/shared/buttons/_ab_form.html.haml:85 -msgid "Button Image" -msgstr "ボタンイメージ" +msgid "View Policy Simulation for the selected items" +msgstr "選択した項目のポリシーシミュレーションの表示" -#: ../app/views/shared/buttons/_ab_form.html.haml:90 -#: ../app/views/shared/buttons/_group_form.html.haml:73 -msgid "No Image" -msgstr "イメージなし" +msgid "View Policy Simulation for this Image" +msgstr "このイメージのポリシーシミュレーションの表示" -#: ../app/views/shared/buttons/_ab_form.html.haml:105 -msgid "" -msgstr "<なし>" +msgid "View Policy Simulation for this Instance" +msgstr "このインスタンスのポリシーシミュレーションの表示" -#: ../app/views/shared/buttons/_ab_form.html.haml:116 -#: ../app/views/shared/buttons/_ab_show.html.haml:74 -msgid "Open URL" -msgstr "" +msgid "View Policy Simulation for this Template" +msgstr "このテンプレートのポリシーシミュレーションの表示" -#: ../app/views/shared/buttons/_ab_list.html.haml:32 -msgid "No Items found." -msgstr "項目が見つかりませんでした。" +msgid "View Policy Simulation for this VM" +msgstr "この仮想マシンのポリシーシミュレーションの表示" -#: ../app/views/shared/buttons/_ab_list.html.haml:56 -#: ../app/views/shared/buttons/_ab_list.html.haml:198 -msgid "Hover Text" -msgstr "ホバーテキスト" +msgid "View Roles" +msgstr "ロールの表示" -#: ../app/views/shared/buttons/_ab_list.html.haml:167 -#: ../app/views/shared/buttons/_ab_show.html.haml:48 -msgid "Image" -msgstr "イメージ" +msgid "View SOP" +msgstr "" -#: ../app/views/shared/buttons/_ab_list.html.haml:180 -msgid "No Buttons found." -msgstr "ボタンが見つかりませんでした。" +msgid "View Schedules" +msgstr "スケジュールの表示" -#: ../app/views/shared/buttons/_ab_show.html.haml:98 -msgid "System/Process/" -msgstr "システム/プロセス/" +msgid "View Storage Rates" +msgstr "ストレージレートの表示" -#: ../app/views/shared/buttons/_ab_show.html.haml:181 -msgid "No Attribute/Value Pairs found." -msgstr "属性/値ペアが見つかりませんでした。" +msgid "View Tenants" +msgstr "テナントの表示" -#: ../app/views/shared/buttons/_ab_show.html.haml:214 -msgid "By Role" -msgstr "ロール別" +msgid "View This Alert" +msgstr "このアラートの表示" -#: ../app/views/shared/buttons/_ab_show.html.haml:214 -msgid "To All" -msgstr "すべてのユーザーを対象" +msgid "View Users" +msgstr "ユーザーの表示" -#: ../app/views/shared/buttons/_column_lists.html.haml:39 -msgid "Move selected fields right" -msgstr "選択したフィールドを右に移動する" +msgid "View Zones" +msgstr "ゾーンの表示" -#: ../app/views/shared/buttons/_column_lists.html.haml:55 -msgid "Move selected fields left" -msgstr "選択したフィールドを左に移動する" +msgid "View the %{title} Guide" +msgstr "%{title} ガイドの表示" -#: ../app/views/shared/buttons/_column_lists.html.haml:83 -msgid "Move selected fields to top" -msgstr "選択したフィールドを先頭に移動する" +msgid "View the table" +msgstr "テーブルの表示" -#: ../app/views/shared/buttons/_column_lists.html.haml:131 -msgid "Move selected fields to bottom" -msgstr "選択したフィールドを一番下に移動する" +msgid "View this %{model} Policy" +msgstr "この%{model}ポリシーの表示" -#: ../app/views/shared/buttons/_group_form.html.haml:17 -msgid "Button Group Text" -msgstr "ボタングループテキスト" +msgid "View this Action" +msgstr "このアクションの表示" -#: ../app/views/shared/buttons/_group_form.html.haml:50 -msgid "Button Group Hover Text" -msgstr "ボタングループのホバーテキスト" +msgid "View this Alert" +msgstr "このアラートの表示" -#: ../app/views/shared/buttons/_group_form.html.haml:66 -msgid "Button Group Image" -msgstr "ボタングループイメージ" +msgid "View this Alert Profile" +msgstr "このアラートプロファイルの表示" -#: ../app/views/shared/buttons/_group_form.html.haml:91 -msgid "Assign Buttons" -msgstr "ボタンの割り当て" +msgid "View this Condition" +msgstr "この条件の表示" -#: ../app/views/shared/buttons/_group_order_form.html.haml:17 -msgid "Button Group Order:" -msgstr "ボタングループ順序:" +msgid "View this Event" +msgstr "このイベントの表示" -#: ../app/views/shared/summary/_textual_listview.html.haml:30 -msgid "View the table" -msgstr "テーブルの表示" +msgid "View this Event Action" +msgstr "このイベントアクションの表示" -#: ../app/views/shared/views/_ownership.html.haml:11 -msgid "Changes" -msgstr "変更" +msgid "View this Group" +msgstr "このグループの表示" -#: ../app/views/shared/views/_ownership.html.haml:20 -msgid "Select an Owner:" -msgstr "所有者の選択:" +msgid "View this ISO Image" +msgstr "この ISO イメージの表示" -#: ../app/views/shared/views/_ownership.html.haml:26 -#: ../app/views/shared/views/_ownership.html.haml:51 -msgid "Don't change" -msgstr "変更なし" +msgid "View this MiqServer" +msgstr "この Miq サーバーの表示" -#: ../app/views/shared/views/_ownership.html.haml:26 -#: ../app/views/shared/views/_ownership.html.haml:28 -msgid "No Owner" -msgstr "所有者なし" +msgid "View this Orchestration Template in Catalogs" +msgstr "カタログでこのオーケストレーションテンプレートを表示" -#: ../app/views/shared/views/_ownership.html.haml:45 -msgid "Select a Group:" -msgstr "グループの選択:" +msgid "View this PXE Image" +msgstr "この PXE イメージの表示" -#: ../app/views/shared/views/_ownership.html.haml:69 -msgid "Affected Items" -msgstr "影響を受ける項目" +msgid "View this Policy Event" +msgstr "このポリシーイベントの表示" -#: ../app/views/shared/views/_prov_dialog.html.haml:37 -msgid "Select" -msgstr "選択" +msgid "View this Profile" +msgstr "このプロファイルの表示" -#: ../app/views/shared/views/_prov_dialog.html.haml:37 -msgid "Selected VM" -msgstr "選択した仮想マシン" +msgid "View this Project" +msgstr "このプロジェクトの表示" -#: ../app/views/shared/views/_prov_dialog.html.haml:56 -msgid "ISO" -msgstr "ISO" +msgid "View this Report" +msgstr "このレポートの表示" -#: ../app/views/shared/views/_prov_dialog.html.haml:64 -msgid "Number of Instances" -msgstr "インスタンスの数" +msgid "View this Role" +msgstr "このロールの表示" -#: ../app/views/shared/views/_prov_dialog.html.haml:64 -msgid "Number of VMs" -msgstr "仮想マシンの数" +msgid "View this Schedule" +msgstr "このスケジュールの表示" -#: ../app/views/shared/views/_prov_dialog.html.haml:73 -#: ../app/views/shared/views/_prov_dialog.html.haml:284 -msgid "Naming" -msgstr "名前" +msgid "View this Tenant" +msgstr "このテナントの表示" -#: ../app/views/shared/views/_prov_dialog.html.haml:126 -msgid "Folder" -msgstr "フォルダー" +msgid "View this User" +msgstr "このユーザーの表示" -#: ../app/views/shared/views/_prov_dialog.html.haml:152 -msgid "Placement - Options" -msgstr "配置 - オプション" +msgid "View this Widget" +msgstr "このウィジェットの表示" -#: ../app/views/shared/views/_prov_dialog.html.haml:163 -msgid "Hardware" -msgstr "ハードウェア" +msgid "View this Windows Image" +msgstr "この Windows イメージの表示" -#: ../app/views/shared/views/_prov_dialog.html.haml:173 -msgid "VM Limits" -msgstr "仮想マシンの上限" +msgid "View this Zone" +msgstr "このゾーンの表示" -#: ../app/views/shared/views/_prov_dialog.html.haml:181 -msgid "VM Reservations" -msgstr "仮想マシンの予約" +msgid "View this Zone's settings" +msgstr "このゾーンの設定の表示" -#: ../app/views/shared/views/_prov_dialog.html.haml:197 -msgid "Network Adapter Information" -msgstr "ネットワークアダプター情報" +msgid "View this item" +msgstr "この項目の表示" -#: ../app/views/shared/views/_prov_dialog.html.haml:207 -msgid "Basic Options" -msgstr "基本オプション" +msgid "Virtual Machine" +msgstr "仮想マシン" -#: ../app/views/shared/views/_prov_dialog.html.haml:216 -#: ../app/views/shared/views/_prov_dialog.html.haml:293 -#: ../app/views/shared/views/_prov_dialog.html.haml:330 -msgid "Custom Specification" -msgstr "カスタム仕様" +msgid "Virtual Machines" +msgstr "仮想マシン" -#: ../app/views/shared/views/_prov_dialog.html.haml:225 -msgid "Unattended GUI" -msgstr "自動 GUI" +msgid "Virtual Private Cloud" +msgstr "仮想プライベートクラウド" -#: ../app/views/shared/views/_prov_dialog.html.haml:233 -msgid "Identification" -msgstr "識別" +msgid "Virtualization Type" +msgstr "仮想タイプ" -#: ../app/views/shared/views/_prov_dialog.html.haml:242 -msgid "Domain Information" -msgstr "ドメイン情報" +msgid "Visibility" +msgstr "表示設定" -#: ../app/views/shared/views/_prov_dialog.html.haml:251 -msgid "Workgroup Information" -msgstr "ワークグループ情報" +msgid "Visible" +msgstr "表示" -#: ../app/views/shared/views/_prov_dialog.html.haml:259 -msgid "User Data" -msgstr "ユーザーデータ" +msgid "Visual" +msgstr "表示" -#: ../app/views/shared/views/_prov_dialog.html.haml:267 -#: ../app/views/shared/views/_prov_dialog.html.haml:301 -msgid "Windows Options" -msgstr "Windows オプション" +msgid "Vm" +msgstr "仮想マシン" -#: ../app/views/shared/views/_prov_dialog.html.haml:275 -msgid "Server License" -msgstr "サーバーライセンス" +msgid "Vm Compliance Policies" +msgstr "仮想マシンのコンプライアンスポリシー" -#: ../app/views/shared/views/_prov_dialog.html.haml:310 -msgid "Upload File" -msgstr "ファイルのアップロード" +msgid "Vm Control Policies" +msgstr "仮想マシンのコントロールポリシー" -#: ../app/views/shared/views/_prov_dialog.html.haml:319 -msgid "Uploaded File '%{filename}'" -msgstr "アップロードされたファイル '%{filename}'" +msgid "Volume" +msgstr "ボリューム" -#: ../app/views/shared/views/_prov_dialog.html.haml:356 -msgid "WINS Server" -msgstr "WINS サーバー" +msgid "Volume Backups" +msgstr "" -#: ../app/views/shared/views/_prov_dialog.html.haml:416 -msgid "Lifespan" -msgstr "ライフスパン" +msgid "Volume Claim" +msgstr "ボリューム要求" -#: ../app/views/shared/views/_retire.html.haml:9 -msgid "Set/Remove Retirement Date" -msgstr "リタイア日の設定/削除" +msgid "Volume ID" +msgstr "ボリューム ID" -#: ../app/views/shared/views/_retire.html.haml:35 -msgid "Set to blank" -msgstr "空白に設定" +msgid "Volume Name" +msgstr "ボリューム名" -#: ../app/views/shared/views/_retire.html.haml:44 -msgid "Retirement Warning" -msgstr "リタイア警告" +msgid "Volume Path" +msgstr "ボリュームパス" -#: ../app/views/shared/views/_retire.html.haml:49 -msgid "1 Week before retirement" -msgstr "リタイアの 1 週間前" +msgid "Volume Snapshots" +msgstr "ボリュームスナップショット" -#: ../app/views/shared/views/_retire.html.haml:49 -msgid "2 Weeks before retirement" -msgstr "リタイアの 2 週間前" +msgid "Volumes" +msgstr "ボリューム" -#: ../app/views/shared/views/_retire.html.haml:49 -msgid "30 Days before retirement" -msgstr "リタイアの 30 日前" +msgid "WINS Server" +msgstr "WINS サーバー" -#: ../app/views/shared/views/_retire.html.haml:69 -msgid "* Saving a blank date will remove all retirement dates" -msgstr "* 日付をブランクにして保存すると、リタイア日がすべて削除されます。" +msgid "Waiting to Start" +msgstr "起動の待機中" -#: ../app/views/shared/views/_retire.html.haml:77 -msgid "New setting will affect Service" -msgid_plural "New setting will affect Services" -msgstr[0] "新規設定はサービスに影響を与えます。" -msgstr[1] "新規設定はサービスに影響を与えます。" +msgid "Warn" +msgstr "警告" -#: ../app/views/shared/views/_retire.html.haml:80 -msgid "New setting will affect Orchestration Stack" -msgid_plural "New setting will affect Orchestration Stacks" -msgstr[0] "新規設定はオーケストレーションスタックに影響を与えます。" -msgstr[1] "新規設定はオーケストレーションスタックに影響を与えます。" +msgid "Warning" +msgstr "" -#: ../app/views/shared/views/_retire.html.haml:84 -msgid "New setting will affect VM" -msgid_plural "New setting will affect VMs" -msgstr[0] "新規設定は仮想マシンに影響を与えます。" -msgstr[1] "新規設定は仮想マシンに影響を与えます。" +msgid "Warning Count" +msgstr "" -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:105 -msgid "Aggregated Node Utilization" -msgstr "集計されたノードの使用状況" +msgid "Warning: Enabling this option may cause performance issues in large environments (i.e. thousands of VMs)" +msgstr "警告: 大規模な環境 (VM が数千ある環境など) では、このオプションを有効にすると、パフォーマンスの問題が発生することがあります" -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:214 -msgid "Node Utilization" -msgstr "ノードの使用状況" +msgid "Warning: Finished tasks will be permanently removed from the database!" +msgstr "警告: 完了したタスクはデータベースから完全に削除されます!" -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:72 -msgid "Global Utilization" -msgstr "全体の使用状況" +msgid "Warning: Selected node will be restarted, do you want to continue?" +msgstr "警告: 選択したノードは再起動されます。続行しますか?" -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:129 -msgid "Cluster Utilization" -msgstr "クラスター使用率" +msgid "Warning: Server will be restarted, do you want to continue?" +msgstr "警告: サーバーは再起動されます。続行しますか?" -#: ../app/views/shared/views/ems_common/_form.html.haml:100 -msgid "Openstack Infra provider" -msgstr "Openstack インフラプロバイダー" +msgid "Warning: Tasks that are older than selected task will be permanently removed from the database!" +msgstr "警告: 選択したタスクよりも古いタスクはデータベースから完全に削除されます! " -#: ../app/views/shared/views/ems_common/_form.html.haml:147 -msgid "Host Default VNC Port Range" -msgstr "ホストのデフォルト VNC ポート範囲" +msgid "Warning: The selected Analysis Profiles and ALL of their components will be permanently removed!" +msgstr "警告: 選択した分析プロファイルとそれらすべてのコンポーネントは完全に削除されます!" -#: ../app/views/shared/views/ems_common/_form.html.haml:180 -msgid "Add this %{provider}" -msgstr "この%{provider}の追加" +msgid "Warning: The selected Block Storage Managers and ALL of their components will be permanently removed!" +msgstr "" -#: ../app/views/shared/views/ems_common/_form.html.haml:188 -msgid "Add of new %{provider} was cancelled by the user" -msgstr "新規%{provider}の追加はユーザーによって取り消されました" +msgid "Warning: The selected Button Group will be permanently removed!" +msgstr "警告: 選択したボタングループは完全に削除されます!" -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:124 -msgid "Tenant ID" -msgstr "テナント ID" +msgid "Warning: The selected Catalogs will be permanently removed!" +msgstr "警告: 選択されたカタログは永久的に削除されます!" -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:276 -msgid "Openstack Infra Provider" -msgstr "Openstack インフラプロバイダー" +msgid "Warning: The selected Chargeback Rate will be permanently removed!" +msgstr "警告: 選択したチャージバックレートは完全に削除されます!" -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:281 -msgid "blank" -msgstr "空白" +msgid "Warning: The selected Cloud Providers and ALL of their components will be permanently removed from the Virtual Management Database. Are you sure you want to remove the selected Cloud Providers?" +msgstr "警告: 選択したクラウドプロバイダーとそれらすべてのコンポーネントは仮想管理データベースから完全に削除されます。選択したクラウドプロバイダーを削除してもよいですか?" -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:326 -msgid "Tenant Mapping Enabled" -msgstr "テナントマッピングの有効化" +msgid "Warning: The selected Cloud Providers and ALL related components will be permanently removed!" +msgstr "警告: 選択したクラウドプロバイダーとその関連するすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:7 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:73 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:190 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:283 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:378 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:7 -msgid "Master" -msgstr "マスター" +msgid "Warning: The selected Cloud Tenants will be permanently deleted!" +msgstr "警告: 選択されたクラウドテナントは永久的に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:42 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:108 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:240 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:348 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:411 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:56 -msgid "Etcd" -msgstr "Etcd" +msgid "Warning: The selected Cloud Volume and ALL of their components will be removed!" +msgstr "警告: 選択したクラウドボリュームとそれらのすべてのコンポーネントは削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-mode-review.html.haml:9 -msgid "Authentication Type:" -msgstr "認証タイプ" +msgid "Warning: The selected Containers Providers and ALL of their components will be permanently removed!" +msgstr "警告: 選択したコンテナープロバイダーとそれらのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:11 -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:65 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-review.html.haml:19 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review.html.haml:19 -msgid "Username:" -msgstr "ユーザー名: " +msgid "Warning: The selected Customization Templates will be permanently removed!" +msgstr "警告: 選択したカスタマイズテンプレートは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:21 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-review.html.haml:29 -msgid "Password:" -msgstr "パスワード:" +msgid "Warning: The selected Datastores and ALL of their components will be permanently removed!" +msgstr "警告: 選択したデータストアとそれらのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:35 -msgid "ID:" -msgstr "ID:" +msgid "Warning: The selected Datawarehouse Providers and ALL of their components will be permanently removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:45 -msgid "Email:" -msgstr "メール:" +msgid "Warning: The selected Dialog will be permanently removed from the Virtual Management Database!" +msgstr "警告: 選択したダイアログは仮想管理データベースから完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:55 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general-review.html.haml:9 -msgid "Name:" -msgstr "名前:" +msgid "Warning: The selected Dialog will be permanently removed!" +msgstr "警告: 選択したダイアログは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:75 -msgid "BindDN:" -msgstr "バインド DN:" +msgid "Warning: The selected Host Aggregates will be permanently deleted!" +msgstr "警告: 選択されたホストアグリゲートは永久的に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:85 -msgid "Bind Password:" -msgstr "バインドパスワード:" +msgid "Warning: The selected ISO Datastores and ALL of their components will be permanently removed!" +msgstr "警告: 選択した ISO データストアとそれらのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:95 -msgid "CA:" -msgstr "CA:" +msgid "Warning: The selected Infrastructure Providers and ALL of their components will be permanently removed!" +msgstr "警告: 選択したインフラストラクチャープロバイダーとそれらのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:105 -msgid "Insecure:" -msgstr "非セキュア:" +msgid "Warning: The selected Items and ALL of their components will be permanently removed!" +msgstr "警告: 選択した項目とそれらのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:115 -msgid "URL:" -msgstr "URL:" +msgid "Warning: The selected Jobs and ALL of their components will be permanently removed!" +msgstr "警告: 選択したジョブとそれらのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:128 -msgid "Challenge URL:" -msgstr "Challenge URL:" +msgid "Warning: The selected Key Pair and ALL of its components will be permanently removed!" +msgstr "警告: 選択したキーペアとそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:138 -msgid "Login URL:" -msgstr "ログイン URL:" +msgid "Warning: The selected Key Pairs and ALL of their components will be permanently removed!" +msgstr "警告: 選択したキーペアとそれらのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:148 -msgid "Client CA:" -msgstr "クライアント CA:" +msgid "Warning: The selected Middleware Providers and ALL of their components will be permanently removed!" +msgstr "警告: 選択したミドルウェアプロバイダーとそれらのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:158 -msgid "Headers:" -msgstr "ヘッダー:" +msgid "Warning: The selected Network Providers and ALL of their components will be permanently removed!" +msgstr "警告: 選択したネットワークプロバイダーとそれらのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:171 -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:224 -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:257 -msgid "Client ID:" -msgstr "クライアント ID:" +msgid "Warning: The selected Object Storage Container and ALL related Objects will be permanently removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:181 -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:234 -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:267 -msgid "Client Secret:" -msgstr "クライアントシークレット:" +msgid "Warning: The selected Object Storage Containers and ALL related Objects will be permanently removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:191 -msgid "Sub-claim:" -msgstr "サブクレーム:" +msgid "Warning: The selected Object Storage Managers and ALL of their components will be permanently removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:201 -msgid "Authorization-Endpoint:" -msgstr "承認エンドポイント:" +msgid "Warning: The selected Object Storage Object will be permanently removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:211 -msgid "Token-Endpoint:" -msgstr "トークンエンドポイント:" +msgid "Warning: The selected Orchestration Stacks and ALL of their components will be permanently removed!" +msgstr "警告: 選択したオーケストレーションスタックとそれらのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:244 -msgid "Hosted Domain:" -msgstr "ホスト型ドメイン:" +msgid "Warning: The selected PXE Servers and ALL of their components will be permanently removed!" +msgstr "警告: 選択した PXE サーバーとそれらのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:2 -msgid "Authentication Type" -msgstr "認証タイプ" +msgid "Warning: The selected Provider and ALL of their components will be permanently removed!" +msgstr "警告: 選択したプロバイダーとそれらのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:6 -msgid "Select authenticaton type" -msgstr "認証タイプの選択" +msgid "Warning: The selected Reports will be permanently removed from the database!" +msgstr "警告: 選択したレポートはデータベースから完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:15 -msgid "Allow All" -msgstr "すべてを許可" +msgid "Warning: The selected Resource Pools and ALL of their components will be permanently removed!" +msgstr "警告: 選択したリソースプールとそれらのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:23 -msgid "HTPassword" -msgstr "HTPassword" +msgid "Warning: The selected Routers and ALL of their components will be removed!" +msgstr "警告: 選択されたルーターとそれらのすべてのコンポーネントは削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:39 -msgid "Request Header" -msgstr "要求ヘッダー" +msgid "Warning: The selected Saved Reports will be permanently removed from the database!" +msgstr "警告: 選択した保存済みのレポートはデータベースから完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:47 -msgid "OpenID Connect" -msgstr "OpenID Connect" +msgid "Warning: The selected Schedules and ALL of their components will be permanently removed!" +msgstr "警告: 選択したスケジュールとそれらのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:55 -msgid "Google" -msgstr "Google" +msgid "Warning: The selected Services and ALL of their components will be permanently removed!" +msgstr "警告: 選択したサービスとそれらのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:63 -msgid "GitHub" -msgstr "GitHub" +msgid "Warning: The selected Storage Managers and ALL of their components will be permanently removed!" +msgstr "警告: 選択したストレージマネージャーとそれらのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:5 -msgid "Authentication Details" -msgstr "認証の詳細" +msgid "Warning: The selected System Image Types will be permanently removed!" +msgstr "警告: 選択したシステムイメージタイプは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:50 -msgid "ID" -msgstr "ID" +msgid "Warning: The selected Templates and ALL of their components will be permanently removed!" +msgstr "警告: 選択したテンプレートとそれらのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:57 -msgid "Email Address" -msgstr "メール アドレス" +msgid "Warning: The selected Time Profiles will be permanently removed!" +msgstr "警告: 選択したタイムプロファイルは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:75 -msgid "BindDN" -msgstr "バインド DN" +msgid "Warning: The selected Volumes and ALL of their components will be permanently removed!" +msgstr "警告: 選択したボリュームとそれらのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:92 -msgid "CA" -msgstr "CA" +msgid "Warning: The selected items and ALL of their components will be permanently removed!" +msgstr "警告: 選択した項目とそれらのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:107 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:165 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:24 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:24 -msgid "Browse" -msgstr "参照" +msgid "Warning: The selected items and ALL of their components will be permanently removed!?" +msgstr "警告: 選択した項目とそれらのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:116 -msgid "Insecure" -msgstr "非セキュア" +msgid "Warning: The selected task will be cancelled. Are you sure you want to cancel the task?" +msgstr "警告: 選択したタスクは取り消されます。タスクを取り消してもよいですか?" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:122 -msgid "URL" -msgstr "URL" +msgid "Warning: The selected tasks will be permanently removed from the database!" +msgstr "警告: 選択したタスクはデータベースから完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:131 -msgid "Challenge URL" -msgstr "Challenge URL" +msgid "Warning: This 'Run Once' timer is in the past and will never run as currently configured" +msgstr "警告:この '一度実行' タイマーは過去の時間に設定されているため、現在の設定では実行されることはありません " -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:138 -msgid "Login URL" -msgstr "ログイン URL" +msgid "Warning: This Analysis Profile and ALL of its components will be permanently removed!" +msgstr "警告: この分析プロファイルとそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:149 -msgid "Client CA" -msgstr "クライアント CA" +msgid "Warning: This Button will be permanently removed from the Virtual Management Database!" +msgstr "警告: このボタンは仮想管理データベースから完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:174 -msgid "Headers" -msgstr "ヘッダー" +msgid "Warning: This Catalog Items and ALL of their components will be permanently removed!" +msgstr "警告: このカタログ項目とそれらのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:191 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:228 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:252 -msgid "Client Secret" -msgstr "クライアントシークレット" +msgid "Warning: This Catalog will be permanently removed!" +msgstr "警告: このカタログは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:198 -msgid "Sub-claim" -msgstr "サブクレーム" +msgid "Warning: This Chargeback Rate will be permanently removed!" +msgstr "警告: このチャージバックレートは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:204 -msgid "Authorization-Endpoint" -msgstr "承認エンドポイント" +msgid "Warning: This Cloud Network and ALL of its components will be removed!" +msgstr "警告: このクラウドネットワークとそのすべてのコンポーネントは削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:211 -msgid "Token-Endpoint" -msgstr "トークンエンドポイント" +msgid "Warning: This Cloud Provider and ALL of its components will be permanently removed!" +msgstr "警告: このクラウドプロバイダーとそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:235 -msgid "Hosted Domain" -msgstr "ホスト型ドメイン" +msgid "Warning: This Cloud Subnet and ALL of its components will be removed!" +msgstr "警告: このクラウドサブネットとそのすべてのコンポーネントは削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:9 -msgid "Configure:" -msgstr "設定:" +msgid "Warning: This Cloud Volume and ALL of its components will be removed!" +msgstr "警告: このクラウドボリュームとそのすべてのコンポーネントは削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:20 -msgid "Configure Router" -msgstr "ルーターの設定" +msgid "Warning: This Containers Provider and ALL of its components will be permanently removed!" +msgstr "警告: このコンテナープロバイダーとそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:28 -msgid "Configure Registry" -msgstr "レジストリーの設定" +msgid "Warning: This Customization Template will be permanently removed!" +msgstr "警告: このカスタマイズテンプレートは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:36 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:64 -msgid "Server:" -msgstr "サーバー:" +msgid "Warning: This Dashboard and ALL of its components will be permanently removed!" +msgstr "警告: このダッシュボードとそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:46 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:74 -msgid "Path:" -msgstr "パス:" +msgid "Warning: This Datastore and ALL of its components will be permanently removed!" +msgstr "警告: このデータストアとそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:56 -msgid "Configure Metrics" -msgstr "メトリックの設定" +msgid "Warning: This Datawarehouse Provider and ALL of its components will be permanently removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:8 -msgid "Select items to configure" -msgstr "設定する項目の選択" +msgid "Warning: This Dialog will be permanently removed from the Virtual Management Database!" +msgstr "警告: このダイアログは仮想管理データベースから完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:19 -msgid "Standard NFS Server" -msgstr "標準 NFS サーバー" +msgid "Warning: This Dialog will be permanently removed!" +msgstr "警告: このダイアログは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:31 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:143 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:187 -msgid "Router" -msgstr "ルーター" +msgid "Warning: This Floating IP and ALL of its components will be removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:131 -msgid "Integrated NFS Server (POC only)" -msgstr "統合 NFS サーバー (POC のみ)" +msgid "Warning: This ISO Datastore and ALL of its components will be permanently removed!" +msgstr "警告: この ISO データストアとそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:4 -msgid "CDN Channel" -msgstr "CDN チャンネル" +msgid "Warning: This Image and ALL of its components will be permanently removed!" +msgstr "警告: このイメージとそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:8 -msgid "Specify CDN configuration" -msgstr "CDN 構成の指定" +msgid "Warning: This Infrastructure Provider and ALL of its components will be permanently removed!" +msgstr "警告: このインフラストラクチャープロバイダーとそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:19 -msgid "Enable CDN Channel" -msgstr "CDN チャンネルの有効化" +msgid "Warning: This Instance and ALL of its components will be permanently removed!" +msgstr "警告: このインスタンスとそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:39 -msgid "SKU" -msgstr "SKU" +msgid "Warning: This Job and ALL of its components will be permanently removed!" +msgstr "警告: このジョブとそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:54 -msgid "RHN Satellite URL" -msgstr "RHN Satellite URL" +msgid "Warning: This Middleware Provider and ALL of its components will be permanently removed!" +msgstr "警告: このミドルウェアプロバイダーとそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-review.html.haml:9 -msgid "CDN Channel:" -msgstr "CDN チャンネル:" +msgid "Warning: This Network Provider and ALL of its components will be permanently removed!" +msgstr "警告: このネットワークプロバイダーとそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-review.html.haml:39 -msgid "SKU:" -msgstr "SKU:" +msgid "Warning: This Orchestration Stack and ALL of its components will be permanently removed!" +msgstr "警告: このオーケストレーションスタックとそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-review.html.haml:49 -msgid "RHN Satellite URL:" -msgstr "RHN Satellite URL:" +msgid "Warning: This PXE Server and ALL of its components will be permanently removed!" +msgstr "警告: この PXE サーバーとそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:5 -msgid "New VM Settings" -msgstr "新規仮想マシン設定" +msgid "Warning: This Resource Pool and ALL of its components will be permanently removed!" +msgstr "警告: このリソースプールとそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:9 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:5 -msgid "Master configuration" -msgstr "マスター構成" +msgid "Warning: This Router and ALL of its components will be removed!" +msgstr "警告: このルーターとそのすべてのコンポーネントは削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:14 -msgid "Number of Masters" -msgstr "マスター数" +msgid "Warning: This Saved Report and ALL of its components will be permanently removed!" +msgstr "警告: この保存済みレポートとそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:34 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:97 -msgid "Base Name" -msgstr "ベース名" +msgid "Warning: This Schedule and ALL of its components will be permanently removed!" +msgstr "警告: このスケジュールとそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:72 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:35 -msgid "Node configuration" -msgstr "ノード構成" +msgid "Warning: This Security Group and ALL of its components will be removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:77 -msgid "Number of Nodes" -msgstr "ノード数" +msgid "Warning: This Service and ALL of their components will be permanently removed!" +msgstr "警告: このサービスとそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:111 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:56 -msgid "Same as Master configuration" -msgstr "マスター設定と同じ" +msgid "Warning: This Storage Manager and ALL of its components will be permanently removed!" +msgstr "警告: このストレージマネージャーとそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:9 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:9 -msgid "Private SSH Key" -msgstr "SSH 秘密鍵" +msgid "Warning: This System Image Type will be permanently removed!" +msgstr "警告: このシステムイメージタイプは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:42 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:42 -msgid "" -"Add tags individually for each VM or select multiple rows and edit tags as a g" -"roup." -msgstr "各仮想マシンについてタグを個別に追加するか、または複数行を選択し、タグをグループとして編集します。" +msgid "Warning: This Template and ALL of its components will be permanently removed!" +msgstr "警告: このテンプレートとそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:56 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:64 -msgid "Edit Roles" -msgstr "ロールの編集" +msgid "Warning: This Virtual Machine and ALL of its components will be permanently removed!" +msgstr "警告: この仮想マシンとそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:67 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:355 -msgid "Select All" -msgstr "すべてを選択" +msgid "Warning: This Volume and ALL of its components will be permanently removed!" +msgstr "警告: このボリュームとそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:148 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:154 -msgid "VM/Instance Name" -msgstr "仮想マシン/インスタンス名" +msgid "Warning: This Widget and ALL of its components will be permanently removed!" +msgstr "警告: このウィジェットとそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:288 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:12 -msgid "Masters" -msgstr "マスター" +msgid "Warning: This item and ALL of its components will be permanently removed!" +msgstr "警告: この項目とそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:21 -msgid "OpenShift Origin" -msgstr "OpenShift Origin" +msgid "Warning: This item and ALL of its components will be permanently removed!?" +msgstr "警告: この項目とそのすべてのコンポーネントは完全に削除されます!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:29 -msgid "OpenShift Enterprise" -msgstr "OpenShift Enterprise" +msgid "Wasted" +msgstr "不要" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:37 -msgid "Provider to provision on" -msgstr "プロビジョニングするプロバイダー" +msgid "Web Console" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:48 -msgid "Use existing VMs from an existing provider" -msgstr "既存プロバイダーの既存の仮想マシンを使用" +msgid "Web Service Workers" +msgstr "Web サービスワーカー" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:62 -msgid "Create new VMs on provider" -msgstr "プロバイダーでの新規仮想マシンの作成" +msgid "Web Services" +msgstr "Web サービス" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:55 -msgid "Add VM" -msgstr "仮想マシンの追加" +msgid "Web Services Listen Port must be numeric" +msgstr "Web サービスリッスンポートは数値である必要があります" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:318 -msgid "Add Host" -msgstr "ホストの追加" +msgid "Web Services Password and Verify Password fields do not match" +msgstr "Web Services Password (Web サービスパスワード) フィールドと Verify Password (パスワードの検証) フィールドが一致しません" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:324 -msgid "Enter a name or IP address" -msgstr "名前または IP アドレスの入力" +msgid "Websocket Workers" +msgstr "Websocket ワーカー" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:329 -msgid "Private Host Name" -msgstr "プライベートホスト名" +msgid "Wednesday" +msgstr "水曜日" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:335 -msgid "Public Host Name" -msgstr "パブリックホスト名" +msgid "Week" +msgstr "週" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:344 -msgid "Specify role(s) for this host" -msgstr "このホストのロールの指定" +msgid "Weekly" +msgstr "毎週" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:16 -msgid "Masters Base Name:" -msgstr "マスターベース名:" +msgid "Weeks" +msgstr "週" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:26 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:65 -msgid "Template:" -msgstr "テンプレート:" +msgid "What to Evaluate" +msgstr "評価対象" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:44 -msgid "Nodes Base Name:" -msgstr "ノードのベース名:" +msgid "Widget content generation error: %{message}" +msgstr "ウィジェットコンテンツ生成エラー: %{message}" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:61 -msgid "Etcds" -msgstr "Etcd" +msgid "Widget has to be assigned to a dashboard to generate content" +msgstr "コンテンツを生成するにはウィジェットをダッシュボードに割り当てる必要があります" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:74 -msgid "Infrastructures" -msgstr "インフラストラクチャー" +msgid "Widget import cancelled" +msgstr "ウィジェットのインポートが取り消されました" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-masters-nodes.html.haml:4 -msgid "Masters & Nodes" -msgstr "マスター & ノード" +msgid "Widget name" +msgstr "ウィジェット名" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-progress.html.haml:12 -msgid "Deployment in Progress" -msgstr "デプロイメントは進行中です" +msgid "Widgets" +msgstr "ウィジェット" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-progress.html.haml:17 -msgid "" -"Your deployment %{name} is currently in progress. Updates will be posted here " -"shortly." -msgstr "デプロイメント %{name} は現在進行中です。しばらくしてから更新が送信されます。" +msgid "Widgets imported successfully" +msgstr "ウィジェットが正常にインポートされました" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-progress.html.haml:22 -msgid "" -"If you choose to close this wizard, deployment status can be monitored under r" -"equests." -msgstr "このウィザードを閉じることを選択する場合、デプロイメントのステータスを要求下で監視できます。" +msgid "Win32 Service" +msgid_plural "Win32 Services" +msgstr[0] "Win32 サービス" +msgstr[1] "Win32 サービス" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-progress.html.haml:32 -msgid "Deployment %{name} was sucessful." -msgstr "デプロイメント%{name}は正常に実行されました。" +msgid "Win32 Services" +msgstr "Win32 サービス" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-progress.html.haml:39 -msgid "Failed to deploy %{name}. Error:" -msgstr "%{name} のデプロイに失敗しました。エラー:" +msgid "Windows Boot Env" +msgstr "Windows ブート環境" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-summary.html.haml:40 -msgid "Loading summary..." -msgstr "概要のロード中..." +msgid "Windows Boot Environment" +msgstr "Windows ブート環境" -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:56 -msgid "Key Pair" -msgstr "キーペア" +msgid "Windows Images" +msgstr "Windows イメージ" -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:103 -msgid "Flavor" -msgstr "フレーバー" +msgid "Windows Images Directory" +msgstr "Windows イメージディレクトリー" -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:127 -msgid "Cloud Network" -msgstr "クラウドネットワーク" +msgid "Windows Options" +msgstr "Windows オプション" -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:175 -msgid "Security Group" -msgstr "セキュリティーグループ" +msgid "Within Above Field, Sort By" +msgstr "フィールド内の並べ替え" -#: ../app/views/static/notification_drawer/notification-body.html.haml:50 -#: ../app/views/static/notification_drawer/notification-body.html.haml:100 -msgid "% Complete" -msgstr "% 完了" +msgid "Worker on Server '%{name}' restarted" +msgstr "サーバー '%{name}' のワーカーが再起動されました" -#: ../app/views/static/notification_drawer/notification-body.html.haml:83 -msgid "Started:" -msgstr "開始:" +msgid "Workers" +msgstr "ワーカー" -#: ../app/views/static/notification_drawer/notification-body.html.haml:110 -msgid "Completed:" -msgstr "完了:" +msgid "Workgroup Information" +msgstr "ワークグループ情報" -#: ../app/views/static/notification_drawer/notification-footer.html.haml:11 -msgid "Mark All Read" -msgstr "すべてを既読にする" +msgid "Workloads" +msgstr "ワークロード" -#: ../app/views/static/notification_drawer/notification-footer.html.haml:24 -msgid "Clear All" -msgstr "すべて消去" +msgid "Wrap this expression element with a NOT" +msgstr "この式要素を NOT でラップ" -#: ../app/views/static/wizard.html.haml:21 -msgid "Initialization in progress..." -msgstr "初期化が進行中です..." +msgid "XA Datasource:" +msgstr "" -#: ../app/views/storage/_main.html.haml:9 -msgid "Information for Registered VMs" -msgstr "登録済み仮想マシンの情報" +msgid "XA Properties" +msgstr "" -#: ../app/views/storage/_storage_pod_folders.html.haml:10 -msgid "View '%{name}' Cluster" -msgstr "'%{name}' クラスターの表示" +msgid "XML View" +msgstr "XML 表示" -#: ../app/views/storage_manager/_form.html.haml:240 -msgid "Add this Storage Manager" -msgstr "このストレージマネージャーの追加" +msgid "Yellow" +msgstr "黄色" -#: ../app/views/support/show.html.haml:19 -msgid "View the %{title} Guide" -msgstr "%{title} ガイドの表示" +msgid "Yellow Background" +msgstr "黄色の背景" -#: ../app/views/support/show.html.haml:31 -msgid "%{title} Guide" -msgstr "%{title}ガイド" +msgid "Yellow Text" +msgstr "黄色のテキスト" -#: ../app/views/support/show.html.haml:45 -msgid "For questions or problem reporting, visit " -msgstr "ご質問や問題の報告は以下にお願いいたします:" +msgid "Yes" +msgstr "Yes" -#: ../app/views/vm_cloud/_main.html.haml:17 -#: ../app/views/vm_common/_main.html.haml:16 -msgid "VMsafe" -msgstr "VMsafe" +msgid "Yes; VM will run at most 24 hours." +msgstr "はい。仮想マシンの実行時間は 24 時間未満です。" -#: ../app/views/vm_cloud/_main.html.haml:28 -#: ../app/views/vm_common/_main.html.haml:29 -msgid "Power Management" -msgstr "電源管理" +msgid "Yesterday" +msgstr "昨日" -#: ../app/views/vm_common/_add_to_service.html.haml:22 -msgid "Service Selection" -msgstr "サービス選択" +msgid "You are about to enter fullscreen mode. Press Ctl+Alt to return to windowed mode." +msgstr "フルスクリーンモードに入ります。ウィンドウモードに戻るには Ctl+Alt を押してください。" -#: ../app/views/vm_common/_add_to_service.html.haml:49 -msgid "Add VM to the selected Service" -msgstr "仮想マシンの選択したサービスへの追加" +msgid "You are not authorized to view %{model_name} '%{resource_name}'" +msgstr "%{model_name} '%{resource_name}' を表示する権限がありません" -#: ../app/views/vm_common/_associate_floating_ip.html.haml:7 -msgid "Associate Floating IP" -msgstr "Floating IP の関連付け" +msgid "You can only specify one Storage Node" +msgstr "ストレージノードを 1 つのみ指定できます。" -#: ../app/views/vm_common/_associate_floating_ip.html.haml:16 -#: ../app/views/vm_common/_disassociate_floating_ip.html.haml:16 -msgid "Floating IP" -msgstr "Floating IP" +msgid "You can specify at most one DNS Node" +msgstr "DNS ノードを 1 つのみ指定できます。" -#: ../app/views/vm_common/_attach.html.haml:16 -#: ../app/views/vm_common/_detach.html.haml:16 -msgid "Volume" -msgstr "ボリューム" +msgid "You must select at least one Node" +msgstr "1 つ以上のノードを選択する必要があります。" -#: ../app/views/vm_common/_config.html.haml:74 -#: ../app/views/vm_common/_config.html.haml:230 -msgid "Account Policies" -msgstr "アカウントポリシー" +msgid "You must select at least one namespace to import" +msgstr "インポートする 1 つ以上の名前空間を選択することが必要です" -#: ../app/views/vm_common/_config.html.haml:168 -msgid "Network Type" -msgstr "ネットワークタイプ" +msgid "You must select one Storage Node when using Integrated NFS storage" +msgstr "統合 NFS ストレージの使用時に 1 つのストレージノードを選択する必要があります。" -#: ../app/views/vm_common/_config.html.haml:196 -msgid "Network Adapter" -msgstr "ネットワークアダプター" +msgid "You need two or more domains to edit domain priorities" +msgstr "" -#: ../app/views/vm_common/_config.html.haml:202 -msgid "DHCP Enabled" -msgstr "DHCP 有効化" +msgid "You will need the following to register:" +msgstr "登録するには以下が必要です:" -#: ../app/views/vm_common/_config.html.haml:202 -msgid "DHCP Server" -msgstr "DHCP サーバー" +msgid "Your Red Hat Account login or Red Hat Network Satellite login" +msgstr "Red Hat アカウントのログインまたは Red Hat Network Satellite のログイン" -#: ../app/views/vm_common/_config.html.haml:202 -msgid "DNS Server" -msgstr "DNS サーバー" +msgid "Your deployment %{name} is currently in progress. Updates will be posted here shortly." +msgstr "デプロイメント %{name} は現在進行中です。しばらくしてから更新が送信されます。" -#: ../app/views/vm_common/_config.html.haml:202 -msgid "Default Gateway" -msgstr "デフォルトゲートウェイ" +msgid "Zone" +msgstr "ゾーン" -#: ../app/views/vm_common/_config.html.haml:202 -msgid "IPv6 Address" -msgstr "IPv6 アドレス" +msgid "Zone Information" +msgstr "ゾーン情報" -#: ../app/views/vm_common/_config.html.haml:202 -msgid "Subnet Mask" -msgstr "サブネットマスク" +msgid "Zone name is required" +msgstr "ゾーン名が必要です" -#: ../app/views/vm_common/_disassociate_floating_ip.html.haml:7 -msgid "Disassociate Floating IP" -msgstr "Floating IP の関連付けを解除" +msgid "Zone*" +msgstr "ゾーン*" -#: ../app/views/vm_common/_disks.html.haml:7 -msgid "Device Type" -msgstr "デバイスタイプ" +msgid "Zone:" +msgstr "ゾーン:" -#: ../app/views/vm_common/_disks.html.haml:13 -msgid "Partitions Aligned" -msgstr "パーティションの配置" +msgid "Zones" +msgstr "ゾーン" -#: ../app/views/vm_common/_disks.html.haml:15 -msgid "Provisioned Size" -msgstr "プロビジョニングされたサイズ " +msgid "Zoom in on this chart" +msgstr "このチャートにズームインする" -#: ../app/views/vm_common/_disks.html.haml:17 -msgid "Used Size" -msgstr "使用サイズ" +msgid "[%{name}] Policy Profile %{mode} (db:[%{db}]" +msgstr "[%{name}] ポリシープロファイル %{mode} (db:[%{db}]" -#: ../app/views/vm_common/_disks.html.haml:19 -msgid "Percent Used of Provisioned Size" -msgstr "プロビジョニングされたサイズの使用率" +msgid "[%{name}] Record added (" +msgstr "[%{name}] レコードが追加されました (" -#: ../app/views/vm_common/_evacuate.html.haml:7 -msgid "Evacuate Host" -msgstr "ホストの移行" +msgid "[%{name}] Record created (" +msgstr "[%{name}] レコードが作成されました (" -#: ../app/views/vm_common/_evacuate.html.haml:16 -#: ../app/views/vm_common/_live_migrate.html.haml:16 -msgid "Auto-select Host?" -msgstr "ホストを自動選択しますか?" +msgid "[%{name}] Record delete initiated" +msgstr "[%{name}] レコードの削除が開始されました" -#: ../app/views/vm_common/_evacuate.html.haml:40 -msgid "On Shared Storage" -msgstr "共有ストレージ上" +msgid "[%{name}] Record deleted" +msgstr "[%{name}] レコードが削除されました" -#: ../app/views/vm_common/_evacuate.html.haml:55 -msgid "Admin Password" -msgstr "管理パスワード" +msgid "[%{name}] Record updated (" +msgstr "[%{name}] レコードが更新されました (" -#: ../app/views/vm_common/_evacuate.html.haml:71 -#: ../app/views/vm_common/_live_migrate.html.haml:75 -msgid "Select Destination Host" -msgstr "宛先ホストの選択" +msgid "[New Box]" +msgstr "[新規ボックス]" -#: ../app/views/vm_common/_evacuate.html.haml:80 -#: ../app/views/vm_common/_live_migrate.html.haml:84 -msgid "Destination Host" -msgstr "宛先ホスト" +msgid "[New Dialog]" +msgstr "[新規ダイアログ]" -#: ../app/views/vm_common/_evm_relationship.html.haml:17 -msgid "Select Server:" -msgstr "サーバーの選択:" +msgid "[New Element]" +msgstr "[新規要素]" -#: ../app/views/vm_common/_evm_relationship.html.haml:22 -msgid "Not a Server" -msgstr "サーバーではありません" +msgid "[New Tab]" +msgstr "[新規タブ]" -#: ../app/views/vm_common/_form.html.haml:64 -msgid "Parent VM Selection" -msgstr "親仮想マシンの選択" +msgid "[Region: %{description} [%{region}]]" +msgstr "[リージョン: %{description} [%{region}]]" -#: ../app/views/vm_common/_form.html.haml:96 -msgid "Child VM Selection" -msgstr "子仮想マシンの選択" +msgid "active" +msgstr "動作中" -#: ../app/views/vm_common/_form.html.haml:102 -msgid "Child VMs:" -msgstr "子仮想マシン:" +msgid "alerts" +msgstr "" -#: ../app/views/vm_common/_form.html.haml:106 -msgid "Available VMs:" -msgstr "利用可能な仮想マシン:" +msgid "ansible_tower" +msgstr "ansible_tower" -#: ../app/views/vm_common/_form.html.haml:128 -msgid "Move selected VMs to right" -msgstr "選択した仮想マシンを右に移動する" +msgid "at" +msgstr "時間" -#: ../app/views/vm_common/_form.html.haml:139 -msgid "Move all VMs to right" -msgstr "すべての仮想マシンを右に移動する" +msgid "available" +msgstr "利用可能" -#: ../app/views/vm_common/_form.html.haml:150 -msgid "Move selected VMs to left" -msgstr "選択した仮想マシンを左に移動する" +msgid "back" +msgstr " " -#: ../app/views/vm_common/_live_migrate.html.haml:40 -msgid "Block Migration" -msgstr "ブロック移行" +msgid "blank" +msgstr "空白" -#: ../app/views/vm_common/_live_migrate.html.haml:57 -msgid "Disk Over Commit" -msgstr "ディスクのオーバーコミット" +msgid "bold" +msgstr "太字" -#: ../app/views/vm_common/_main.html.haml:18 -msgid "Normal Operating Ranges (over 30 days)" -msgstr "通常の作動範囲 (31 日 以上)" +msgid "centered" +msgstr "中間" -#: ../app/views/vm_common/_main.html.haml:35 -msgid "Datastore Allocation Summary" -msgstr "データストア割り当ての概要" +msgid "clear" +msgstr "消去" -#: ../app/views/vm_common/_main.html.haml:37 -msgid "Datastore Actual Usage Summary" -msgstr "データストア使用状況の概要" +msgid "description:[%{session}] to [%{name}]" +msgstr "説明:[%{session}] から [%{name}]" -#: ../app/views/vm_common/_policies.html.haml:11 -msgid "Policy Simulation Details" -msgstr "ポリシーシミュレーションの詳細" +msgid "dimmed" +msgstr "グレー表示" -#: ../app/views/vm_common/_policies.html.haml:24 -msgid "" -"* Items in red italics do not change the outco" -"me of the scope or expression." -msgstr "* 赤字イタリック の項目はスコープまたは数式の結果を変更しません。" +msgid "disabling deployment" +msgstr "デプロイメントの無効化" -#: ../app/views/vm_common/_policy_options.html.haml:44 -msgid "Successful" -msgstr "成功" +msgid "do not change the outcome of the scope or expression" +msgstr "の項目はスコープまたは式の結果を変更しません" -#: ../app/views/vm_common/_reconfigure.html.haml:50 -msgid " Memory value not in range or not a multiple of 4" -msgstr "メモリー値が範囲内ではないか、または 4 の倍数ではありません" +msgid "down" +msgstr "下へ移動" -#: ../app/views/vm_common/_reconfigure.html.haml:55 -msgid " Valid memory value required" -msgstr "有効なメモリー値が必要です" +msgid "enabling deployment" +msgstr "デプロイメントの有効化" -#: ../app/views/vm_common/_reconfigure.html.haml:96 -msgid " Processor Options" -msgstr "プロセッサーオプション" +msgid "ending" +msgstr "終了" -#: ../app/views/vm_common/_reconfigure.html.haml:103 -msgid "Sockets" -msgstr "ソケット" +msgid "every" +msgstr "(実行頻度)" -#: ../app/views/vm_common/_reconfigure.html.haml:124 -msgid "Cores Per Socket" -msgstr "ソケットあたりのコア数" +msgid "false" +msgstr "false" -#: ../app/views/vm_common/_reconfigure.html.haml:164 -msgid " Total processors value larger than the maximum allowed" -msgstr "プロセッサー合計値が最大許可値を超えています" +msgid "foreman" +msgstr "foreman" -#: ../app/views/vm_common/_reconfigure.html.haml:184 -msgid "Add Disk" -msgstr "ディスクの追加" +msgid "going back" +msgstr "戻る" -#: ../app/views/vm_common/_reconfigure.html.haml:211 -msgid "Dependent" -msgstr "依存" +msgid "h" +msgstr "h" -#: ../app/views/vm_common/_reconfigure.html.haml:213 -msgid "Delete Backing" -msgstr "バッキングの削除" +msgid "hawkular URL and API port fields are needed to perform validation." +msgstr "Hawkular URL および API ポートフィールドは、検証を実行するために必要です。" -#: ../app/views/vm_common/_reconfigure.html.haml:215 -msgid "Bootable" -msgstr "起動可能" +msgid "instances" +msgstr "インスタンス" -#: ../app/views/vm_common/_reconfigure.html.haml:263 -msgid " Valid numeric disk size required " -msgstr "有効なディスクサイズ数値が必要です" +msgid "invalid button action" +msgstr "無効なボタンアクション" -#: ../app/views/vm_common/_reconfigure.html.haml:300 -msgid " Add " -msgstr "追加" +msgid "killing" +msgstr "強制終了" -#: ../app/views/vm_common/_reconfigure.html.haml:376 -msgid "Cancel Add" -msgstr "追加の取り消し" +msgid "ldap" +msgstr "LDAP" -#: ../app/views/vm_common/_resize.html.haml:9 -msgid "Reconfigure Instance" -msgstr "インスタンスの再設定" +msgid "ldaps" +msgstr "LDAPS" -#: ../app/views/vm_common/_resize.html.haml:18 -msgid "Current Flavor" -msgstr "現在のフレーバー" +msgid "m" +msgstr "m" -#: ../app/views/vm_common/_resize.html.haml:31 -msgid "Choose Flavor" -msgstr "フレーバーの選択" +msgid "map a new label to tag" +msgstr "新規ラベルをタグにマップ" -#: ../app/views/vm_common/_right_size.html.haml:8 -msgid "Normal Operating Ranges (up to 30 days' data)" -msgstr "通常の作動範囲 (30 日までのデータ)" +msgid "name:[%{session}] to [%{name}]" +msgstr "名前:[%{session}] から [%{name}]" -#: ../app/views/vm_common/_right_size.html.haml:187 -msgid "Right-Sizing (Conservative - derived from Absolute Maximum)" -msgstr "適切なサイズ設定 (標準 - 絶対最大値から算出)" +msgid "no value" +msgstr "値がありません" -#: ../app/views/vm_common/_right_size.html.haml:197 -#: ../app/views/vm_common/_right_size.html.haml:281 -#: ../app/views/vm_common/_right_size.html.haml:364 -msgid "Current" -msgstr "現在" +msgid "none" +msgstr "なし" -#: ../app/views/vm_common/_right_size.html.haml:199 -#: ../app/views/vm_common/_right_size.html.haml:283 -#: ../app/views/vm_common/_right_size.html.haml:366 -msgid "Recommended" -msgstr "推奨" +msgid "normal" +msgstr "標準" -#: ../app/views/vm_common/_right_size.html.haml:201 -#: ../app/views/vm_common/_right_size.html.haml:285 -#: ../app/views/vm_common/_right_size.html.haml:368 -msgid "% Savings" -msgstr "% 節約" +msgid "not yet available" +msgstr "まだ利用できません" -#: ../app/views/vm_common/_right_size.html.haml:203 -#: ../app/views/vm_common/_right_size.html.haml:287 -#: ../app/views/vm_common/_right_size.html.haml:370 -msgid "Savings" -msgstr "節約量" +msgid "primary" +msgstr "プライマリー" -#: ../app/views/vm_common/_right_size.html.haml:271 -msgid "Right-Sizing (Moderate - derived from High NORM)" -msgstr "適切なサイズ設定 (中程度 - High NORM から算出)" +msgid "primary, " +msgstr "プライマリー、" -#: ../app/views/vm_common/_right_size.html.haml:354 -msgid "Right-Sizing (Aggressive - derived from Average NORM)" -msgstr "適切なサイズ設定 (アグレッシブ - 平均 NORM から算出)" +msgid "red italics" +msgstr "赤のイタリック" -#: ../app/views/vm_common/_right_size.html.haml:438 -msgid "* Recommendations are subject to minimum of CPU: %{cpu} and Memory: %{memory}." -msgstr "* 推奨内容には少なくとも CPU ( %{cpu} ) およびメモリー ( %{memory} ) が必要です。" +msgid "reloading" +msgstr "リロード中" -#: ../app/views/vm_common/_snap.html.haml:9 -msgid "Snapshot Information" -msgstr "スナップショット情報" +msgid "removed datasources" +msgstr "削除されたデータソース" -#: ../app/views/vm_common/_snap.html.haml:43 -msgid "Snapshot VM memory" -msgstr "スナップショット仮想マシンメモリー" +msgid "restarting" +msgstr "再起動中" -#: ../app/views/vm_common/_snap.html.haml:63 -msgid "Create snapshot" -msgstr "スナップショットの作成" +msgid "restarting deployment" +msgstr "デプロイメントの再起動" -#: ../app/views/vm_common/_snapshots_desc.html.haml:41 -msgid "(%{number} bytes)" -msgstr "(%{number} バイト)" +msgid "resuming" +msgstr "再開中" -#: ../app/views/vm_common/_snapshots_desc.html.haml:63 -msgid "%{record_name} has no snapshots" -msgstr "%{record_name}にはスナップショットはありません" +msgid "running" +msgstr "実行中" -#: ../app/views/vm_common/_snapshots_tree.html.haml:5 -msgid "Available Snapshots" -msgstr "利用可能なスナップショット" +msgid "secondary" +msgstr "セカンダリー" -#: ../app/views/vm_common/console_mks.html.haml:8 -#: ../app/views/vm_common/console_mks.html.haml:95 -msgid "VM %{name} Remote Console" -msgstr "仮想マシン%{name}のリモートコンソール" +msgid "secondary, " +msgstr "セカンダリー、" -#: ../app/views/vm_common/console_mks.html.haml:32 -msgid "" -"You are about to enter fullscreen mode. Press Ctl+Alt to return to windowed mo" -"de." -msgstr "フルスクリーンモードに入ります。ウィンドウモードに戻るには Ctl+Alt を押してください。" +msgid "seconds" +msgstr "秒" -#: ../app/views/vm_common/console_mks.html.haml:43 -msgid "Press Ctl+Alt to release cursor." -msgstr "カーソルをリリースするには Ctl+Alt を押してください。" +msgid "selected to copy" +msgstr "コピーするために選択" -#: ../app/views/vm_common/console_mks.html.haml:138 -msgid "Connection failed." -msgstr "接続に失敗しました。" +msgid "shutting down" +msgstr "シャットダウンしています" -#: ../app/views/vm_common/console_mks.html.haml:147 -msgid "Press Ctrl+Alt to release cursor." -msgstr "カーソルをリリースするには Ctrl+Alt を押してください。" +msgid "starting" +msgstr "開始" -#: ../app/views/vm_common/console_mks.html.haml:202 -msgid "This page requires the VMware MKS plugin. Install the plugin and try again." -msgstr "このページには VMware MKS プラグインが必要です。プラグインをインストールしてから再試行してください。" +msgid "stopped" +msgstr "停止" -#: ../app/views/vm_common/console_spice.html.haml:9 -msgid "SPICE Console" -msgstr "SPICE コンソール" +msgid "stopping" +msgstr "停止中" -#: ../app/views/vm_common/console_spice.html.haml:30 -msgid "Connecting (unencrypted) to: %{url}" -msgstr "以下に接続中です(暗号化解除): %{url}" +msgid "suspending" +msgstr "一時停止中" -#: ../app/views/vm_common/console_vmrc.html.haml:74 -#: ../app/views/vm_common/console_vmrc.html.haml:99 -msgid "Hint: Press Ctrl-Alt to release the cursor from the guest" -msgstr "ヒント: ゲストからカーソルをリリースするには Ctrl-Alt を押してください" +msgid "to bottom" +msgstr "一番下へ" -#: ../app/views/vm_common/console_vmrc.html.haml:83 -msgid "" -"The VM has been suspended, powered off or the connection to the server has bee" -"n lost. \n" -"This console window will now close." -msgstr "" -"仮想マシンは中断したか、電源がオフになったか、またはサーバーとの接続が失われました。\n" -"このコンソールウィンドウは閉じられます。" +msgid "to top" +msgstr "一番上へ" -#: ../app/views/vm_common/console_vmrc.html.haml:423 -msgid "Remote Console plugin is not properly installed." -msgstr "リモートコンソールプラグインが正常にインストールされていません。" +msgid "true" +msgstr "true" -#: ../app/views/vm_common/console_vmrc.html.haml:451 -msgid "Full Screen" -msgstr "フル スクリーン" +msgid "true/false" +msgstr "true/false" -#: ../app/views/vm_common/console_vmrc.html.haml:460 -msgid "Send Ctrl-Alt-Delete" -msgstr " Ctrl-Alt-Delete の送信" +msgid "unavailable" +msgstr "利用不可" -#: ../app/views/vm_common/console_vmrc.html.haml:481 -msgid "Use CTRL-ALT-INS for CTRL-ALT-DEL" -msgstr "CTRL-ALT-DEL の代わりに CTRL-ALT-INS を使用" +msgid "undeploying deployment" +msgstr "デプロイメントのデプロイ解除" -#: ../app/views/vm_common/console_vmrc.html.haml:485 -msgid "Use CTRL-ALT-Enter to toggle full screen" -msgstr "CTRL-ALT-Enter でフルスクリーンを切り替え" +msgid "unknown tree in replace_trees: %{name}" +msgstr "replace_trees のツリーが不明です: %{name}" -#: ../app/views/vm_common/console_vmrc.html.haml:490 -msgid "The Remote Console is connecting" -msgstr "リモートコンソールに接続しています" +msgid "unlimited" +msgstr "無制限" -#: ../app/views/vm_common/console_vnc.html.haml:9 -msgid "VNC Console" -msgstr "VNC コンソール" +msgid "up" +msgstr "上へ移動" -#: ../app/views/vm_common/console_vnc.html.haml:30 -msgid "Loading ..." -msgstr "ロードしています ..." +msgid "user input" +msgstr "ユーザー入力" -#: ../app/views/vm_common/console_vnc.html.haml:38 -msgid "Canvas not supported." -msgstr "キャンバスはサポートされていません。" +msgid "vApp" +msgstr "vApp" -#: ../lib/report_formatter/chart_common.rb:344 -#: ../lib/report_formatter/chart_common.rb:403 -#: ../lib/report_formatter/chart_common.rb:404 -#: ../lib/report_formatter/chart_common.rb:434 -#: ../lib/report_formatter/chart_common.rb:435 -#: ../lib/report_formatter/chart_common.rb:472 -msgid "Other" -msgstr "その他" +msgid "vApp Templates" +msgstr "vApp テンプレート" -#: ../lib/report_formatter/chart_common.rb:394 -#: ../lib/report_formatter/chart_common.rb:424 -#: ../lib/report_formatter/chart_common.rb:469 -#: ../lib/report_formatter/chart_common.rb:498 -#: ../lib/report_formatter/chart_common.rb:501 -msgid "no value" -msgstr "値がありません" +msgid "vCPU Count" +msgstr "vCPU 数" -#: ../lib/report_formatter/chart_common.rb:560 -msgid "Invalid chart definition" -msgstr "無効なチャート定義" +msgid "vCPU per Core" +msgstr "コアあたりの vCPU" -#: ../lib/report_formatter/timeline_message.rb:43 -msgid "Policy no longer exists" -msgstr "" +msgid "vCPUs per Core" +msgstr "コアあたりの vCPU" + +msgid "vcpus" +msgstr "vCPU" diff --git a/locale/zh_CN/ManageIQ_UI_Classic.po b/locale/zh_CN/ManageIQ_UI_Classic.po index 672d7ce9e24..01a9fb6ed90 100644 --- a/locale/zh_CN/ManageIQ_UI_Classic.po +++ b/locale/zh_CN/ManageIQ_UI_Classic.po @@ -9,7 +9,6 @@ msgid "" msgstr "" "Project-Id-Version: manageiq 1.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-20 15:56+0100\n" "PO-Revision-Date: 2016-12-19 12:38-0500\n" "Last-Translator: Milan Zázrivec \n" "Language-Team: Chinese (Simplified)\n" @@ -20,31589 +19,18955 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Zanata 3.9.6\n" -#: -#: ../app/assets/javascripts/controllers/auth_key_pair_cloud/auth_key_pair_cloud_controller.js:53 -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:202 -#: ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:57 -#: ../app/assets/javascripts/controllers/ems_common/ems_common_form_controller.js:276 -#: ../app/assets/javascripts/controllers/host/host_form_controller.js:137 -#: ../app/assets/javascripts/controllers/ops/log_collection_form_controller.js:101 -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:43 -#: ../app/assets/javascripts/controllers/ops/tenant_form_controller.js:63 -#: ../app/assets/javascripts/controllers/ops/tenant_quota_form_controller.js:60 -#: ../app/assets/javascripts/controllers/ownership/ownership_form_controller.js:58 -#: ../app/assets/javascripts/controllers/provider_foreman/provider_foreman_form_controller.js:100 -#: ../app/assets/javascripts/controllers/reconfigure/reconfigure_form_controller.js:275 -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:318 -#: ../app/assets/javascripts/controllers/service/service_form_controller.js:41 -#: ../app/controllers/application_controller/automate.rb:115 -#: ../app/controllers/application_controller/buttons.rb:50 -#: ../app/controllers/application_controller/buttons.rb:401 -#: ../app/controllers/application_controller/buttons.rb:536 -#: ../app/controllers/application_controller/ci_processing.rb:177 -#: ../app/controllers/application_controller/ci_processing.rb:181 -#: ../app/controllers/application_controller/dialog_runner.rb:67 -#: ../app/controllers/application_controller/policy_support.rb:32 -#: ../app/controllers/application_controller/tags.rb:161 -#: ../app/controllers/catalog_controller.rb:104 -#: ../app/controllers/catalog_controller.rb:352 -#: ../app/controllers/catalog_controller.rb:597 -#: ../app/controllers/catalog_controller.rb:1013 -#: ../app/controllers/catalog_controller.rb:2045 -#: ../app/controllers/chargeback_controller.rb:178 -#: ../app/controllers/chargeback_controller.rb:297 -#: ../app/controllers/configuration_controller.rb:224 -#: ../app/controllers/ems_common.rb:340 -#: ../app/controllers/host_controller.rb:394 -#: ../app/controllers/miq_ae_class_controller.rb:605 -#: ../app/controllers/miq_ae_class_controller.rb:1000 -#: ../app/controllers/miq_ae_class_controller.rb:1043 -#: ../app/controllers/miq_ae_class_controller.rb:1084 -#: ../app/controllers/miq_ae_class_controller.rb:1133 -#: ../app/controllers/miq_ae_class_controller.rb:1451 -#: ../app/controllers/miq_ae_class_controller.rb:1490 -#: ../app/controllers/miq_ae_class_controller.rb:1682 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:254 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:302 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:22 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:104 -#: ../app/controllers/miq_policy_controller/alerts.rb:44 -#: ../app/controllers/miq_policy_controller/conditions.rb:25 -#: ../app/controllers/miq_policy_controller/events.rb:17 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:23 -#: ../app/controllers/miq_policy_controller/policies.rb:23 -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:22 -#: ../app/controllers/ops_controller/ops_rbac.rb:155 -#: ../app/controllers/ops_controller/ops_rbac.rb:220 -#: ../app/controllers/ops_controller/ops_rbac.rb:426 -#: ../app/controllers/ops_controller/ops_rbac.rb:606 -#: ../app/controllers/ops_controller/ops_rbac.rb:694 -#: ../app/controllers/ops_controller/settings.rb:173 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:338 -#: ../app/controllers/ops_controller/settings/cap_and_u.rb:44 -#: ../app/controllers/ops_controller/settings/common.rb:583 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:47 -#: ../app/controllers/ops_controller/settings/ldap.rb:87 -#: ../app/controllers/ops_controller/settings/ldap.rb:237 -#: ../app/controllers/ops_controller/settings/schedules.rb:113 -#: ../app/controllers/ops_controller/settings/tags.rb:118 -#: ../app/controllers/ops_controller/settings/zones.rb:51 -#: ../app/controllers/pxe_controller/iso_datastores.rb:73 -#: ../app/controllers/pxe_controller/iso_datastores.rb:201 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:143 -#: ../app/controllers/pxe_controller/pxe_image_types.rb:64 -#: ../app/controllers/pxe_controller/pxe_servers.rb:83 -#: ../app/controllers/pxe_controller/pxe_servers.rb:221 -#: ../app/controllers/pxe_controller/pxe_servers.rb:271 -#: ../app/controllers/report_controller/dashboards.rb:42 -#: ../app/controllers/report_controller/dashboards.rb:99 -#: ../app/controllers/report_controller/menus.rb:210 -#: ../app/controllers/report_controller/reports/editor.rb:95 -#: ../app/controllers/report_controller/schedules.rb:269 -#: ../app/controllers/report_controller/widgets.rb:82 -#: ../app/controllers/storage_manager_controller.rb:183 -#: ../app/controllers/vm_common.rb:783 ../app/controllers/vm_common.rb:786 -#: ../app/controllers/vm_common.rb:974 -msgid "All changes have been reset" -msgstr "所有修改已被重置" +msgid " # of Days" +msgstr " # 天" -#: ../app/assets/javascripts/controllers/buttons/button_group_controller.js:5 -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:3 -#: ../app/helpers/application_helper/toolbar/dialog_center.rb:38 -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:6 -#: ../app/views/chargeback/_cb_rate_edit_table.html.haml:85 -#: ../app/views/chargeback/_tier_first_row.haml:46 -#: ../app/views/cloud_volume/new.html.haml:86 -#: ../app/views/host_aggregate/add_host_select.html.haml:40 -#: ../app/views/host_aggregate/new.html.haml:85 -#: ../app/views/layouts/_edit_buttons.html.haml:15 -#: ../app/views/layouts/_edit_buttons.html.haml:15 -#: ../app/views/layouts/_edit_buttons.html.haml:52 -#: ../app/views/layouts/_edit_buttons.html.haml:52 -#: ../app/views/layouts/_edit_to_email.html.haml:92 -#: ../app/views/layouts/_x_edit_buttons.html.haml:46 -#: ../app/views/layouts/_x_edit_buttons.html.haml:141 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:3 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:3 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:3 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:11 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:11 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:11 -#: ../app/views/ops/_ap_form_file.html.haml:33 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:45 -#: ../app/views/ops/_ap_form_registry.html.haml:38 -#: ../app/views/ops/_classification_entry.html.haml:25 -#: ../app/views/ops/_classification_entry.html.haml:78 -#: ../app/views/ops/_settings_co_categories_tab.html.haml:49 -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:34 -#: ../app/views/shared/views/ems_common/_form.html.haml:181 -#: ../app/views/static/buttons.html.haml:3 -#: ../app/views/static/buttons.html.haml:4 -#: ../app/views/static/buttons.html.haml:13 -#: ../app/views/static/buttons.html.haml:14 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:451 -#: ../app/views/storage_manager/_form.html.haml:240 -#: ../app/views/vm_common/_add_to_service.html.haml:49 -msgid "Add" -msgstr "添加" +msgid " %{host_uid_ems} is not a compute node " +msgstr " %{host_uid_ems} 不是一个计算节点" -#: ../app/assets/javascripts/controllers/buttons/button_group_controller.js:6 -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:4 -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:15 -#: ../app/views/cloud_volume/backup_new.html.haml:57 -#: ../app/views/cloud_volume/backup_select.html.haml:41 -#: ../app/views/cloud_volume/edit.html.haml:40 -#: ../app/views/cloud_volume/new.html.haml:93 -#: ../app/views/cloud_volume/snapshot_new.html.haml:40 -#: ../app/views/host_aggregate/edit.html.haml:39 -#: ../app/views/host_aggregate/new.html.haml:92 -#: ../app/views/layouts/_adv_search_footer.html.haml:84 -#: ../app/views/layouts/_edit_buttons.html.haml:23 -#: ../app/views/layouts/_edit_buttons.html.haml:58 -#: ../app/views/layouts/_edit_form_buttons.html.haml:25 -#: ../app/views/layouts/_edit_form_buttons.html.haml:47 -#: ../app/views/layouts/_edit_form_buttons.html.haml:56 -#: ../app/views/layouts/_edit_form_buttons.html.haml:76 -#: ../app/views/layouts/_edit_form_buttons.html.haml:148 -#: ../app/views/layouts/_form_buttons.html.haml:14 -#: ../app/views/layouts/_form_buttons.html.haml:21 -#: ../app/views/layouts/_form_buttons.html.haml:29 -#: ../app/views/layouts/_form_buttons.html.haml:39 -#: ../app/views/layouts/_form_buttons.html.haml:77 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:18 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:59 -#: ../app/views/layouts/_x_edit_buttons.html.haml:101 -#: ../app/views/layouts/_x_edit_buttons.html.haml:108 -#: ../app/views/layouts/_x_edit_buttons.html.haml:157 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:19 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:27 -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:149 -#: ../app/views/ops/_ap_form_file.html.haml:62 -#: ../app/views/ops/_ap_form_file.html.haml:119 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:106 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:173 -#: ../app/views/ops/_ap_form_registry.html.haml:81 -#: ../app/views/ops/_ap_form_registry.html.haml:128 -#: ../app/views/ops/_classification_entry.html.haml:58 -#: ../app/views/ops/_settings_replication_tab.html.haml:488 -#: ../app/views/ops/_settings_replication_tab.html.haml:488 -#: ../app/views/ops/_settings_replication_tab.html.haml:494 -#: ../app/views/ops/_settings_replication_tab.html.haml:494 -#: ../app/views/shared/dialogs/_dialog_field.html.haml:48 -#: ../app/views/shared/views/_retire.html.haml:99 -#: ../app/views/shared/views/_retire.html.haml:99 -msgid "Save" -msgstr "保存" +msgid " %{host_uid_ems} needs to be evacuated before it can be removed " +msgstr " %{host_uid_ems} 在删除前需要先清除" -#: ../app/assets/javascripts/controllers/buttons/button_group_controller.js:7 -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:8 -#: ../app/helpers/application_helper/toolbar/host_center.rb:215 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:237 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:265 -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:22 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:225 -#: ../app/views/cloud_volume/attach.html.haml:64 -#: ../app/views/cloud_volume/backup_new.html.haml:63 -#: ../app/views/cloud_volume/backup_select.html.haml:47 -#: ../app/views/cloud_volume/edit.html.haml:46 -#: ../app/views/cloud_volume/new.html.haml:99 -#: ../app/views/cloud_volume/snapshot_new.html.haml:46 -#: ../app/views/host_aggregate/edit.html.haml:45 -#: ../app/views/host_aggregate/new.html.haml:98 -#: ../app/views/layouts/_adv_search_footer.html.haml:54 -#: ../app/views/layouts/_adv_search_footer.html.haml:57 -#: ../app/views/layouts/_edit_buttons.html.haml:32 -#: ../app/views/layouts/_edit_form_buttons.html.haml:87 -#: ../app/views/layouts/_edit_form_buttons.html.haml:103 -#: ../app/views/layouts/_edit_form_buttons.html.haml:112 -#: ../app/views/layouts/_edit_form_buttons.html.haml:151 -#: ../app/views/layouts/_form_buttons.html.haml:49 -#: ../app/views/layouts/_form_buttons.html.haml:56 -#: ../app/views/layouts/_form_buttons.html.haml:79 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:39 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:68 -#: ../app/views/layouts/_x_edit_buttons.html.haml:116 -#: ../app/views/layouts/_x_edit_buttons.html.haml:161 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:19 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:27 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:35 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:43 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:25 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:51 -#: ../app/views/miq_capacity/planning.html.haml:19 -#: ../app/views/miq_capacity/planning.html.haml:36 -#: ../app/views/miq_policy/_rsop_options.html.haml:22 -#: ../app/views/miq_policy/_rsop_options.html.haml:40 -#: ../app/views/miq_request/_prov_options.html.haml:127 -#: ../app/views/miq_request/_prov_options.html.haml:153 -#: ../app/views/miq_task/_tasks_options.html.haml:160 -#: ../app/views/miq_task/_tasks_options.html.haml:185 -#: ../app/views/ops/_settings_replication_tab.html.haml:500 -#: ../app/views/ops/_settings_replication_tab.html.haml:506 -#: ../app/views/vm_common/_reconfigure.html.haml:413 -msgid "Reset" -msgstr "重置" +msgid " %{host_uid_ems} needs to be in maintenance mode before it can be removed " +msgstr " %{host_uid_ems} 在删除前需要先处于维护模式" -#: ../app/assets/javascripts/controllers/buttons/button_group_controller.js:8 -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:10 -#: ../app/assets/javascripts/controllers/container_deployment/wizard/wizard-directive.js:46 -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:31 -#: ../app/views/cloud_volume/attach.html.haml:70 -#: ../app/views/cloud_volume/backup_new.html.haml:69 -#: ../app/views/cloud_volume/backup_select.html.haml:53 -#: ../app/views/cloud_volume/detach.html.haml:46 -#: ../app/views/cloud_volume/edit.html.haml:52 -#: ../app/views/cloud_volume/new.html.haml:105 -#: ../app/views/cloud_volume/snapshot_new.html.haml:52 -#: ../app/views/ems_cloud/discover.html.haml:61 -#: ../app/views/ems_cloud/discover.html.haml:61 -#: ../app/views/ems_infra/register_nodes.html.haml:23 -#: ../app/views/ems_infra/scaledown.html.haml:96 -#: ../app/views/ems_infra/scaledown.html.haml:96 -#: ../app/views/ems_infra/scaling.html.haml:66 -#: ../app/views/ems_infra/scaling.html.haml:66 -#: ../app/views/host_aggregate/edit.html.haml:51 -#: ../app/views/host_aggregate/new.html.haml:104 -#: ../app/views/layouts/_adv_search_footer.html.haml:77 -#: ../app/views/layouts/_adv_search_footer.html.haml:90 -#: ../app/views/layouts/_ae_tree_select.html.haml:66 -#: ../app/views/layouts/_ae_tree_select.html.haml:80 -#: ../app/views/layouts/_discover.html.haml:110 -#: ../app/views/layouts/_discover.html.haml:110 -#: ../app/views/layouts/_edit_buttons.html.haml:40 -#: ../app/views/layouts/_edit_buttons.html.haml:40 -#: ../app/views/layouts/_edit_buttons.html.haml:63 -#: ../app/views/layouts/_edit_buttons.html.haml:63 -#: ../app/views/layouts/_edit_form_buttons.html.haml:123 -#: ../app/views/layouts/_edit_form_buttons.html.haml:132 -#: ../app/views/layouts/_edit_form_buttons.html.haml:163 -#: ../app/views/layouts/_edit_form_buttons.html.haml:172 -#: ../app/views/layouts/_form_buttons.html.haml:65 -#: ../app/views/layouts/_form_buttons.html.haml:83 -#: ../app/views/layouts/_user_input_filter.html.haml:123 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:46 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:71 -#: ../app/views/layouts/_x_edit_buttons.html.haml:130 -#: ../app/views/layouts/_x_edit_buttons.html.haml:173 -#: ../app/views/layouts/_x_edit_buttons.html.haml:193 -#: ../app/views/layouts/_x_edit_buttons.html.haml:211 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:35 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:35 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:35 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:51 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:51 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:51 -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:80 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:115 -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:107 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:188 -#: ../app/views/middleware_server/_choose_datasource.html.haml:42 -#: ../app/views/middleware_server/_deploy.html.haml:116 -#: ../app/views/middleware_server/_ops_params.html.haml:93 -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:67 -#: ../app/views/miq_ae_tools/_import_export.html.haml:234 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:37 -#: ../app/views/miq_policy/_export.html.haml:33 -#: ../app/views/miq_policy/import.html.haml:73 -#: ../app/views/miq_request/_prov_form_buttons.html.haml:15 -#: ../app/views/miq_request/_prov_form_buttons.html.haml:46 -#: ../app/views/ontap_file_share/_create_datastore.html.haml:73 -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:70 -#: ../app/views/report/_export_widgets.html.haml:68 -#: ../app/views/shared/views/_retire.html.haml:106 -#: ../app/views/shared/views/_retire.html.haml:106 -#: ../app/views/shared/views/ems_common/_form.html.haml:187 -#: ../app/views/static/buttons.html.haml:52 -#: ../app/views/static/buttons.html.haml:53 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:445 -#: ../app/views/storage_manager/_form.html.haml:246 -#: ../app/views/vm_common/_add_to_service.html.haml:56 -#: ../app/views/vm_common/_associate_floating_ip.html.haml:48 -#: ../app/views/vm_common/_disassociate_floating_ip.html.haml:48 -#: ../app/views/vm_common/_evacuate.html.haml:115 -#: ../app/views/vm_common/_live_migrate.html.haml:119 -#: ../app/views/vm_common/_reconfigure.html.haml:422 -#: ../app/views/vm_common/_reconfigure.html.haml:422 -#: ../app/views/vm_common/_resize.html.haml:70 -#: ../app/views/vm_common/_resize.html.haml:83 -#: ../app/views/vm_common/_snap.html.haml:70 -msgid "Cancel" -msgstr "取消" +msgid " %{model} Assignments" +msgstr " %{model} 分配" -#: -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:5 -#: ../app/helpers/application_helper/toolbar/x_edit_view.rb:14 -#: ../app/views/layouts/_edit_buttons.html.haml:23 -#: ../app/views/layouts/_edit_form_buttons.html.haml:1 -#: ../app/views/layouts/_form_buttons.html.haml:1 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:18 -#: ../app/views/layouts/_x_edit_buttons.html.haml:108 -msgid "Save Changes" -msgstr "保存修改" +msgid " %{name} from %{value} to %{parameters} " +msgstr " %{name} 从 %{value} 到 %{parameters} " -#: -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:6 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:25 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:62 -#: ../app/views/layouts/_x_edit_buttons.html.haml:71 -#: ../app/views/layouts/_x_edit_buttons.html.haml:148 -#: ../app/views/layouts/angular/_form_button_submit_angular.html.haml:8 -#: ../app/views/layouts/angular/_form_button_submit_angular.html.haml:15 -#: ../app/views/miq_ae_tools/_import_export.html.haml:122 -#: ../app/views/miq_ae_tools/_import_export.html.haml:232 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:6 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:47 -#: ../app/views/miq_capacity/planning.html.haml:9 -#: ../app/views/miq_capacity/planning.html.haml:32 -#: ../app/views/miq_policy/_rsop_options.html.haml:12 -#: ../app/views/miq_policy/_rsop_options.html.haml:35 -#: ../app/views/miq_request/_prov_form_buttons.html.haml:18 -#: ../app/views/miq_request/_prov_form_buttons.html.haml:42 -#: ../app/views/miq_request/_request.html.haml:266 -#: ../app/views/ontap_file_share/_create_datastore.html.haml:67 -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:64 -#: ../app/views/ops/_diagnostics_database_tab.html.haml:217 -#: ../app/views/vm_common/_associate_floating_ip.html.haml:42 -#: ../app/views/vm_common/_disassociate_floating_ip.html.haml:42 -#: ../app/views/vm_common/_evacuate.html.haml:109 -#: ../app/views/vm_common/_live_migrate.html.haml:113 -#: ../app/views/vm_common/_reconfigure.html.haml:401 -#: ../app/views/vm_common/_reconfigure.html.haml:401 -#: ../app/views/vm_common/_reconfigure.html.haml:407 -#: ../app/views/vm_common/_reconfigure.html.haml:407 -#: ../app/views/vm_common/_resize.html.haml:62 -#: ../app/views/vm_common/_resize.html.haml:81 -msgid "Submit" -msgstr "提交" +msgid " (%{priority}active, PID=%{number})" +msgstr " (%{priority} 激活,PID=%{number})" -#: -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:7 -msgid "Submit Changes" -msgstr "提交修改" +msgid " (%{priority}available, PID=%{number})" +msgstr " (%{priority}可用,PID=%{number})" -#: -#: ../app/assets/javascripts/controllers/buttons/paging_div_button_group_controller.js:9 -#: ../app/views/layouts/_edit_buttons.html.haml:32 -#: ../app/views/layouts/_edit_form_buttons.html.haml:87 -#: ../app/views/layouts/_edit_form_buttons.html.haml:103 -#: ../app/views/layouts/_edit_form_buttons.html.haml:112 -#: ../app/views/layouts/_form_buttons.html.haml:49 -#: ../app/views/layouts/_form_buttons.html.haml:56 -#: ../app/views/layouts/_x_dialog_buttons.html.haml:39 -#: ../app/views/layouts/_x_edit_buttons.html.haml:116 -msgid "Reset Changes" -msgstr "重置修改" +msgid " (%{priority}unavailable)" +msgstr " (%{priority}不可用)" -#: -#: ../app/assets/javascripts/controllers/cloud_topology/cloud_topology_controller.js:41 -#: ../app/assets/javascripts/controllers/container_topology/container_topology_controller.js:48 -#: ../app/assets/javascripts/controllers/infra_topology/infra_topology_controller.js:41 -#: ../app/assets/javascripts/controllers/network_topology/network_topology_controller.js:41 -msgid "Click here to show/hide entities of this type" -msgstr "点这里显示/隐藏这个类型的项" +msgid " (Ad hoc Metrics)" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Friday" -msgstr "周五" +msgid " (All Descendant %{table}(s))" +msgstr " (所有后代 %{table})" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Monday" -msgstr "周一" +msgid " (All Resource Pools)" +msgstr " (所有资源池)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Saturday" -msgstr "周六" +msgid " (All VMs - Tree View)" +msgstr " (所有虚拟机 - 树状视图)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Sunday" -msgstr "周日" +msgid " (All VMs)" +msgstr " (所有虚拟机)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Thursday" -msgstr "周四" +msgid " (Analysis History)" +msgstr " (分析历史记录)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Tuesday" -msgstr "周二" +msgid " (Click to view)" +msgstr " (点击查看)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:22 -#: ../app/views/configuration/_timeprofile_days_hours.html.haml:20 -msgid "Wednesday" -msgstr "周三" +msgid " (Compliance History - Last %{number} Checks)" +msgstr " (合规性历史记录 - 前%{number}个检查)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 -msgid "1-2" -msgstr "1-2" +msgid " (Container)" +msgstr " (容器)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 -msgid "12-1" -msgstr "12-1" +msgid " (Dashboard)" +msgstr " (仪表板)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 -msgid "2-3" -msgstr "2-3" +msgid " (Devices)" +msgstr " (设备)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 -msgid "3-4" -msgstr "3-4" +msgid " (Direct %{title})" +msgstr " (指向 %{title})" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 -msgid "4-5" -msgstr "4-5" +msgid " (Genealogy)" +msgstr " (系谱)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:23 -msgid "5-6" -msgstr "5-6" +msgid " (Hosts & Clusters)" +msgstr " (主机和集群)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 -msgid "10-11" -msgstr "10-11" +msgid " (Inactive)" +msgstr " (未激活的)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 -msgid "11-12" -msgstr "11-12" +msgid " (Latest Compliance Check)" +msgstr " (最新合规性检查)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 -msgid "6-7" -msgstr "6-7" +msgid " (Names with \"%{search_text}\")" +msgstr " (包含 \"%{search_text}\" 的名称)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 -msgid "7-8" -msgstr "7-8" +msgid " (Names with \"%{text}\")" +msgstr " (包含 \"%{text}\" 的名称)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 -msgid "8-9" -msgstr "8-9" +msgid " (Networks)" +msgstr " (网络)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:24 -msgid "9-10" -msgstr "9-10" +msgid " (OS Information)" +msgstr " (操作系统信息)" -#: -#: ../app/assets/javascripts/controllers/configuration/time_profile_form_controller.js:48 -msgid "In use by %s reports, cannot be disabled" -msgstr "被 %s 报表使用,无法被禁用。" +msgid " (Parent)" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/container_dashboard_controller.js:25 -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:45 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/ems_infra_dashboard_controller.js:22 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:37 -#: ../app/controllers/miq_capacity_controller.rb:766 -#: ../app/helpers/chargeback_helper.rb:4 -#: ../app/helpers/service_helper/textual_summary.rb:39 -#: ../app/helpers/vm_helper/textual_summary.rb:788 -#: ../app/views/miq_capacity/_utilization_report.html.haml:33 -#: ../app/views/miq_capacity/_utilization_summary.html.haml:18 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:55 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:132 -#: ../app/views/vm_common/_right_size.html.haml:44 -msgid "CPU" -msgstr "CPU" +msgid " (Properties)" +msgstr " (属性)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/container_dashboard_controller.js:31 -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:54 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:35 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/ems_infra_dashboard_controller.js:28 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:46 -#: ../app/controllers/application_controller.rb:1163 -#: ../app/controllers/application_controller/miq_request_methods.rb:410 -#: ../app/controllers/miq_capacity_controller.rb:767 -#: ../app/helpers/chargeback_helper.rb:7 -#: ../app/helpers/container_node_helper/textual_summary.rb:51 -#: ../app/helpers/host_helper/textual_summary.rb:247 -#: ../app/helpers/service_helper/textual_summary.rb:43 -#: ../app/helpers/vm_helper/textual_summary.rb:605 -#: ../app/helpers/vm_helper/textual_summary.rb:807 -#: ../app/views/miq_capacity/_utilization_report.html.haml:33 -#: ../app/views/miq_capacity/_utilization_summary.html.haml:18 -#: ../app/views/miq_request/_reconfigure_show.html.haml:17 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:48 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:125 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:163 -#: ../app/views/vm_common/_reconfigure.html.haml:15 -#: ../app/views/vm_common/_right_size.html.haml:114 -#: ../app/views/vm_common/_right_size.html.haml:241 -#: ../app/views/vm_common/_right_size.html.haml:325 -#: ../app/views/vm_common/_right_size.html.haml:408 -msgid "Memory" -msgstr "内存" +msgid " (Resources)" +msgstr " (资源)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:46 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:38 -msgid "Cores" -msgstr "内核" +msgid " (Snapshots)" +msgstr " (快照)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:47 -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:56 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:39 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:48 -msgid "Used" -msgstr "已用的" +msgid " (Summary)" +msgstr " (概述)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:48 -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:57 -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:64 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:40 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:49 -#: ../app/helpers/ui_constants.rb:429 -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:128 -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:146 -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:195 -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:239 -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:95 -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:113 -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:151 -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:173 -msgid "Last 30 Days" -msgstr "最后 30 天" +msgid " (Topology)" +msgstr "(拓扑结构)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:55 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:47 -#: ../app/views/miq_capacity/_planning_options.html.haml:251 -msgid "GB" -msgstr "GB" +msgid " (VMs & Templates)" +msgstr " (虚拟机和模板)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:63 -msgid "Network Utilization Trend" -msgstr "网络利用率趋势" +msgid " (current)" +msgstr " (当前)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:65 -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:66 -#: ../app/assets/javascripts/miq_application.js:95 -msgid "KBps" -msgstr "KBps" +msgid " (filtered)" +msgstr " (已过滤)" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:71 -msgid "Pod Creation and Deletion Trends" -msgstr "Pod 创建和删除趋势" +msgid " * Multiple UI workers can not be configured with session store as memory" +msgstr "* 不能用会话存储区配置多个 UI 工作节点为内存" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:72 -#: ../app/views/miq_policy/_policy_details.html.haml:76 -msgid "Created" -msgstr "创建时间" +msgid " - %{last_refresh_date} Ago" +msgstr " - %{last_refresh_date} 之前" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:73 -msgid "Deleted" -msgstr "已删除的" +msgid " - Filtered by \"%{text}\"" +msgstr " - 根据 \"%{text}\" 过滤" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:86 -msgid "New Image Usage Trend" -msgstr "新镜像使用趋势" +msgid " - Filtered by \"%{text}\" report" +msgstr " - 根据 \"%{text}\" 报告过滤" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:87 -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:59 -#: ../app/controllers/ems_common.rb:61 -#: ../app/controllers/vm_cloud_controller.rb:165 -#: ../app/controllers/vm_common.rb:1246 -#: ../app/views/configuration/_ui_2.html.haml:175 -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:42 -msgid "Images" -msgstr "镜像" +msgid " - Filtered by %{filter}" +msgstr " - 根据 %{filter} 过滤" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:103 -msgid "Node: " -msgstr "节点:" +msgid " - Filtered by custom search" +msgstr " - 根据自定义搜索过滤" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:103 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:85 -#: ../app/assets/javascripts/services/topology_service.js:10 -msgid "Provider: " -msgstr "供应商: " +msgid " Add " +msgstr "添加" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:105 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:87 -msgid "Usage: Unknown" -msgstr "使用: 未知" +msgid " Address" +msgstr "地址" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:108 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:90 -msgid "%d%% in use of %d total" -msgstr "总计 %d 里有 %d%% 正在使用" +msgid " Build %{number}" +msgstr " 构建 %{number}" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/charts-mixin.js:108 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:90 -msgid "Usage: " -msgstr "使用: " +msgid " Day" +msgstr " 日" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:4 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:4 -#: ../app/controllers/provider_foreman_controller.rb:518 -#: ../app/controllers/provider_foreman_controller.rb:1169 -#: ../app/presenters/menu/default_menu.rb:48 -#: ../app/presenters/menu/default_menu.rb:65 -#: ../app/presenters/menu/default_menu.rb:97 -#: ../app/presenters/menu/default_menu.rb:117 -#: ../app/presenters/menu/default_menu.rb:125 -#: ../app/presenters/menu/default_menu.rb:138 -msgid "Providers" -msgstr "供应商" +msgid " Days" +msgstr " 日" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:11 -#: ../app/helpers/application_helper.rb:1525 -#: ../app/presenters/menu/default_menu.rb:61 -#: ../app/views/container_topology/show.html.haml:120 -#: ../app/views/infra_topology/show.html.haml:33 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:303 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:25 -msgid "Nodes" -msgstr "节点" +msgid " Download PDF" +msgstr "下载 PDF" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:19 -#: ../app/controllers/ems_common.rb:76 -#: ../app/presenters/menu/default_menu.rb:95 -#: ../app/views/configuration/_ui_2.html.haml:74 -#: ../app/views/container_topology/show.html.haml:63 -msgid "Containers" -msgstr "容器" +msgid " Full Screen" +msgstr "全屏" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:27 -msgid "Registries" -msgstr "注册表" +msgid " Hour" +msgstr " 小时" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:35 -#: ../app/views/ops/_rbac_tenant_details.html.haml:111 -msgid "Projects" -msgstr "项目" +msgid " Hours" +msgstr " 小时" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:43 -#: ../app/controllers/ems_common.rb:79 -#: ../app/views/container_topology/show.html.haml:44 -msgid "Pods" -msgstr "Pod" +msgid " Maximize" +msgstr " 最大化" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:51 -#: ../app/controllers/host_controller.rb:190 -#: ../app/controllers/service_controller.rb:150 -#: ../app/helpers/host_helper/textual_summary.rb:448 -#: ../app/helpers/ui_constants.rb:437 ../app/presenters/menu/default_menu.rb:38 -#: ../app/views/configuration/_ui_2.html.haml:46 -#: ../app/views/container_topology/show.html.haml:82 -#: ../app/views/layouts/listnav/_host.html.haml:224 -msgid "Services" -msgstr "服务" +msgid " Memory value not in range or not a multiple of 4" +msgstr " 内存值不在范围内或不是 4 的倍数" -#: -#: ../app/assets/javascripts/controllers/container_dashboard/util/dashboard-utils-factory.js:67 -#: ../app/views/container_topology/show.html.haml:101 -msgid "Routes" -msgstr "路由" +msgid " Minimize" +msgstr " 最小化" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:23 -#: ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:213 -#: ../app/assets/javascripts/controllers/container_deployment/wizard/wizard-directive.js:52 -msgid "Next >" -msgstr "下一步 >" +msgid " Processor Options" +msgstr "处理器选项" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:191 -msgid "An unknown error has occurred." -msgstr "发生了未知错误。" +msgid " Remove Widget" +msgstr "移除 Widget" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:209 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:196 -#: ../app/views/middleware_server/_deploy.html.haml:124 -msgid "Deploy" -msgstr "部署" +msgid " Scaling down to %{a} compute nodes" +msgstr "缩减至 %{a} 个计算节点" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy-provider-controller.js:211 -#: ../app/views/dashboard/_zoomed_chart.html.haml:14 -#: ../app/views/middleware_server/_add_datasource.html.haml:29 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:29 -#: ../app/views/middleware_server/_ops_params.html.haml:31 -msgid "Close" -msgstr "关闭" +msgid " Selected Actions:" +msgstr " 选择的动作:" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:20 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-no-provider-controller.js:89 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:238 -#: ../app/controllers/application_controller/miq_request_methods.rb:323 -#: ../app/controllers/application_controller/miq_request_methods.rb:335 -#: ../app/controllers/application_controller/miq_request_methods.rb:346 -#: ../app/controllers/application_controller/miq_request_methods.rb:358 -#: ../app/controllers/application_controller/miq_request_methods.rb:375 -#: ../app/controllers/application_controller/miq_request_methods.rb:390 -#: ../app/controllers/application_controller/miq_request_methods.rb:406 -#: ../app/controllers/application_controller/miq_request_methods.rb:437 -#: ../app/controllers/application_controller/miq_request_methods.rb:443 -#: ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:17 -#: ../app/helpers/container_build_helper/textual_summary.rb:23 -#: ../app/helpers/container_group_helper/textual_summary.rb:16 -#: ../app/helpers/container_group_helper/textual_summary.rb:57 -#: ../app/helpers/container_helper/textual_summary.rb:121 -#: ../app/helpers/container_image_helper/textual_summary.rb:105 -#: ../app/helpers/container_node_helper/textual_summary.rb:17 -#: ../app/helpers/container_project_helper/textual_summary.rb:22 -#: ../app/helpers/container_project_helper/textual_summary.rb:43 -#: ../app/helpers/container_service_helper/textual_summary.rb:18 -#: ../app/helpers/container_template_helper/textual_summary.rb:20 -#: ../app/helpers/container_template_helper/textual_summary.rb:26 -#: ../app/helpers/ems_container_helper/textual_summary.rb:28 -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:27 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:37 -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:27 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:30 -#: ../app/helpers/ops_helper/textual_summary.rb:37 -#: ../app/helpers/ops_helper/textual_summary.rb:101 -#: ../app/helpers/ops_helper/textual_summary.rb:109 -#: ../app/helpers/ops_helper/textual_summary.rb:117 -#: ../app/helpers/ops_helper/textual_summary.rb:139 -#: ../app/helpers/persistent_volume_helper/textual_summary.rb:168 -#: ../app/helpers/provider_foreman_helper.rb:125 -#: ../app/helpers/provider_foreman_helper.rb:205 -#: ../app/helpers/provider_foreman_helper.rb:234 -#: ../app/helpers/provider_foreman_helper.rb:280 -#: ../app/helpers/pxe_helper/textual_summary.rb:48 -#: ../app/helpers/pxe_helper/textual_summary.rb:72 -#: ../app/helpers/pxe_helper/textual_summary.rb:96 -#: ../app/helpers/pxe_helper/textual_summary.rb:116 -#: ../app/helpers/pxe_helper/textual_summary.rb:140 -#: ../app/views/_ldap_domain_form.html.haml:16 -#: ../app/views/auth_key_pair_cloud/_form.html.haml:24 -#: ../app/views/catalog/_form_resources_info.html.haml:55 -#: ../app/views/catalog/_ot_add.html.haml:14 -#: ../app/views/catalog/_ot_copy.html.haml:21 -#: ../app/views/catalog/_ot_edit.html.haml:14 -#: ../app/views/catalog/_ot_tree_show.html.haml:11 -#: ../app/views/catalog/_sandt_tree_show.html.haml:261 -#: ../app/views/catalog/_stcat_form.html.haml:20 -#: ../app/views/catalog/_stcat_tree_show.html.haml:11 -#: ../app/views/catalog/_svccat_tree_show.html.haml:28 -#: ../app/views/chargeback/_cb_assignments.html.haml:94 -#: ../app/views/chargeback/_cb_assignments.html.haml:155 -#: ../app/views/chargeback/_cb_assignments.html.haml:192 -#: ../app/views/chargeback/_cb_assignments.html.haml:229 -#: ../app/views/chargeback/_reports_list.html.haml:52 -#: ../app/views/configuration/_timeprofile_form.html.haml:384 -#: ../app/views/ems_container/_form.html.haml:13 -#: ../app/views/ems_datawarehouse/_form.html.haml:13 -#: ../app/views/ems_infra/_form.html.haml:13 -#: ../app/views/ems_middleware/_form.html.haml:13 -#: ../app/views/generic_object/explorer.html.haml:21 -#: ../app/views/generic_object/explorer.html.haml:52 -#: ../app/views/generic_object/explorer.html.haml:108 -#: ../app/views/host/_form.html.haml:25 -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:15 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:15 -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_class_form.html.haml:27 -#: ../app/views/miq_ae_class/_class_props.html.haml:29 -#: ../app/views/miq_ae_class/_inputs.html.haml:14 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:15 -#: ../app/views/miq_ae_class/_instance_form.html.haml:27 -#: ../app/views/miq_ae_class/_instance_form.html.haml:87 -#: ../app/views/miq_ae_class/_method_form.html.haml:31 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:32 -#: ../app/views/miq_ae_class/_ns_list.html.haml:20 -#: ../app/views/miq_ae_class/_ns_list.html.haml:104 -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:35 -#: ../app/views/miq_ae_customization/_old_dialogs_details.html.haml:20 -#: ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:17 -#: ../app/views/miq_capacity/_planning_summary.html.haml:49 -#: ../app/views/miq_policy/_action_details.html.haml:76 -#: ../app/views/ontap_file_share/_create_datastore.html.haml:18 -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:12 -#: ../app/views/ops/_ap_form.html.haml:18 -#: ../app/views/ops/_ap_form_file.html.haml:12 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:12 -#: ../app/views/ops/_ap_show.html.haml:16 -#: ../app/views/ops/_ap_show.html.haml:94 -#: ../app/views/ops/_category_form.html.haml:118 -#: ../app/views/ops/_classification_entries.html.haml:13 -#: ../app/views/ops/_db_info.html.haml:15 -#: ../app/views/ops/_db_info.html.haml:118 -#: ../app/views/ops/_db_info.html.haml:213 -#: ../app/views/ops/_ldap_domain_form.html.haml:16 -#: ../app/views/ops/_ldap_domain_show.html.haml:16 -#: ../app/views/ops/_ldap_region_form.html.haml:19 -#: ../app/views/ops/_ldap_region_show.html.haml:18 -#: ../app/views/ops/_ldap_region_show.html.haml:71 -#: ../app/views/ops/_rbac_role_details.html.haml:23 -#: ../app/views/ops/_rbac_tenant_details.html.haml:17 -#: ../app/views/ops/_rbac_tenant_details.html.haml:93 -#: ../app/views/ops/_rbac_tenant_details.html.haml:119 -#: ../app/views/ops/_schedule_form.html.haml:19 -#: ../app/views/ops/_settings_co_categories_tab.html.haml:10 -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:13 -#: ../app/views/ops/_tenant_form.html.haml:17 -#: ../app/views/ops/_zone_form.html.haml:16 -#: ../app/views/orchestration_stack/_copy_orchestration_template.html.haml:16 -#: ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 -#: ../app/views/provider_foreman/_form.html.haml:18 -#: ../app/views/pxe/_iso_datastore_details.html.haml:24 -#: ../app/views/pxe/_pxe_form.html.haml:17 -#: ../app/views/pxe/_pxe_image_type_form.html.haml:17 -#: ../app/views/pxe/_pxe_server_details.html.haml:59 -#: ../app/views/pxe/_pxe_server_details.html.haml:106 -#: ../app/views/pxe/_template_form.html.haml:15 -#: ../app/views/report/_db_form.html.haml:20 -#: ../app/views/report/_db_show.html.haml:12 -#: ../app/views/report/_report_info.html.haml:124 -#: ../app/views/report/_report_list.html.haml:49 -#: ../app/views/report/_report_list.html.haml:82 -#: ../app/views/report/_report_list.html.haml:112 -#: ../app/views/report/_schedule_form.html.haml:17 -#: ../app/views/service/_service_form.html.haml:27 -#: ../app/views/shared/views/ems_common/_form.html.haml:18 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:13 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:63 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:9 -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:7 -#: ../app/views/storage_manager/_form.html.haml:23 -#: ../app/views/vm_common/_reconfigure.html.haml:201 -#: ../app/views/vm_common/_snap.html.haml:17 -msgid "Name" -msgstr "名称" +msgid " Selected Alerts:" +msgstr " 选择的警告:" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:25 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-no-provider-controller.js:94 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:244 -#: ../app/views/ops/_rbac_group_details.html.haml:55 -#: ../app/views/ops/_rbac_user_details.html.haml:195 -#: ../app/views/ops/_selected_by_roles.html.haml:7 -#: ../app/views/ops/_selected_by_servers.html.haml:168 -msgid "Role" -msgstr "角色" +msgid " Total processors value larger than the maximum allowed" +msgstr " 总处理器数超过最大允许值" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:30 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:158 -msgid "# CPUS" -msgstr "# CPUS" +msgid " Valid memory value required" +msgstr " 必须填写有效内存值" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-existing-vms-controller.js:40 -#: ../app/controllers/application_controller/miq_request_methods.rb:411 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:62 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:139 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:168 -msgid "Disk Size" -msgstr "磁盘大小" +msgid " Valid numeric disk size required " +msgstr "磁盘大小要求为有效的数字" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-no-provider-controller.js:67 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:126 -msgid "Remove Roles" -msgstr "删除角色" +msgid " Valid numeric quota value required " +msgstr " 要求有效的数字配额值" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-details-no-provider-controller.js:71 -msgid "Remove VM(s)" -msgstr "删除虚拟机" +msgid " Week" +msgstr " 周" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:76 -msgid "The number of Masters must be 1, 3, or 5" -msgstr "主服务器的编号必须是 1、3 或 5" +msgid " Weeks" +msgstr " 周" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:85 -msgid "You must select at least one Node" -msgstr "您必须选择至少一个节点" +msgid " Zoom in" +msgstr "放大" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:94 -msgid "You must select one Storage Node when using Integrated NFS storage" -msgstr "在使用集成的 NFS 存储时您必须选择一个存储节点" +msgid " [%{text} Information]" +msgstr " [%{text} 信息]" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:97 -msgid "You can only specify one Storage Node" -msgstr "您只可以指定一个存储节点" +msgid " by %{user}" +msgstr "由 %{user}" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:106 -msgid "You can specify at most one DNS Node" -msgstr "您可以指定最多一个 DNS 节点" +msgid "\"%{action}\" for %{switch} \"%{name}\"" +msgstr "%{switch} \"%{name}\" 的 \"%{action}\" " -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:120 -msgid "Load balancers can only be assigned to Masters or Nodes" -msgstr "负载平衡其只能分配给主服务器或节点" +msgid "\"%{action}\" for %{vm_or_template} \"%{name}\"" +msgstr "%{vm_or_template} \"%{name}\" 的 \"%{action}\"" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:128 -msgid "DNS can only be assigned to Masters or Nodes" -msgstr "DNS 只能分配至主服务器或节点" +msgid "\"%{datastore_name}\": cannot be removed, has vms or hosts" +msgstr "\"%{datastore_name}\":无法被删除,有虚拟机或主机" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:136 -msgid "Etcd can only be assigned to Masters or Nodes" -msgstr "Etcd 只能分配给主服务器或节点" +msgid "\"%{field}\" %{model} cannot be deleted" +msgstr "\"%{field}\" %{model} 无法被删除" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-master-nodes-controller.js:144 -msgid "Infrastructure can only be assigned to Nodes" -msgstr "基础架构只能分配给节点" +msgid "\"%{name}\": Global %{model} cannot be deleted" +msgstr "\"%{name}\": 全局 %{model} 无法被删除" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:30 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:36 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:47 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:54 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:73 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:85 -#: ../app/helpers/cloud_volume_backup_helper/textual_summary.rb:37 -#: ../app/helpers/cloud_volume_helper/textual_summary.rb:37 -#: ../app/helpers/cloud_volume_helper/textual_summary.rb:52 -#: ../app/helpers/cloud_volume_helper/textual_summary.rb:64 -#: ../app/helpers/cloud_volume_snapshot_helper/textual_summary.rb:45 -#: ../app/helpers/configuration_job_helper/textual_summary.rb:36 -#: ../app/helpers/configuration_job_helper/textual_summary.rb:49 -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:124 -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:190 -#: ../app/helpers/host_helper/textual_summary.rb:136 -#: ../app/helpers/host_helper/textual_summary.rb:225 -#: ../app/helpers/host_helper/textual_summary.rb:265 -#: ../app/helpers/host_helper/textual_summary.rb:304 -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:61 -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:74 -#: ../app/helpers/ontap_file_share_helper/textual_summary.rb:86 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:189 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:211 -#: ../app/helpers/orchestration_stack_helper/textual_summary.rb:47 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:60 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:67 -#: ../app/helpers/resource_pool_helper/textual_summary.rb:79 -#: ../app/helpers/service_helper/textual_summary.rb:77 -#: ../app/helpers/storage_helper/textual_summary.rb:61 -#: ../app/helpers/storage_helper/textual_summary.rb:144 -#: ../app/helpers/storage_helper/textual_summary.rb:155 -#: ../app/helpers/textual_mixins/textual_authentications_status.rb:12 -#: ../app/helpers/textual_mixins/textual_authentications_status.rb:38 -#: ../app/helpers/textual_mixins/textual_drift.rb:7 -#: ../app/helpers/textual_mixins/textual_metrics_status.rb:5 -#: ../app/helpers/textual_mixins/textual_metrics_status.rb:6 -#: ../app/helpers/textual_mixins/textual_scan_history.rb:6 -#: ../app/helpers/textual_summary_helper.rb:163 -#: ../app/helpers/textual_summary_helper.rb:178 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:100 -#: ../app/helpers/vm_helper.rb:24 ../app/helpers/vm_helper.rb:29 -#: ../app/helpers/vm_helper/textual_summary.rb:127 -#: ../app/helpers/vm_helper/textual_summary.rb:160 -#: ../app/helpers/vm_helper/textual_summary.rb:221 -#: ../app/helpers/vm_helper/textual_summary.rb:232 -#: ../app/helpers/vm_helper/textual_summary.rb:243 -#: ../app/helpers/vm_helper/textual_summary.rb:256 -#: ../app/helpers/vm_helper/textual_summary.rb:288 -#: ../app/helpers/vm_helper/textual_summary.rb:299 -#: ../app/helpers/vm_helper/textual_summary.rb:310 -#: ../app/helpers/vm_helper/textual_summary.rb:323 -#: ../app/helpers/vm_helper/textual_summary.rb:337 -#: ../app/helpers/vm_helper/textual_summary.rb:349 -#: ../app/helpers/vm_helper/textual_summary.rb:447 -#: ../app/helpers/vm_helper/textual_summary.rb:831 -#: ../app/views/catalog/_form_resources_info.html.haml:121 -#: ../app/views/layouts/_edit_to_email.html.haml:22 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:269 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:126 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:209 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:252 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:350 -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:121 -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:155 -#: ../app/views/miq_capacity/_utilization_options.html.haml:45 -#: ../app/views/miq_policy/_action_options.html.haml:477 -#: ../app/views/miq_policy/_action_options.html.haml:489 -#: ../app/views/miq_policy/_alert_snmp.html.haml:129 -#: ../app/views/miq_request/_prov_ds_grid.html.haml:29 -#: ../app/views/miq_request/_prov_field.html.haml:285 -#: ../app/views/miq_request/_prov_field.html.haml:337 -#: ../app/views/miq_request/_prov_field.html.haml:456 -#: ../app/views/miq_request/_prov_field.html.haml:549 -#: ../app/views/miq_request/_prov_host_grid.html.haml:33 -#: ../app/views/miq_request/_prov_iso_img_grid.html.haml:26 -#: ../app/views/miq_request/_prov_pxe_img_grid.html.haml:26 -#: ../app/views/miq_request/_prov_template_grid.html.haml:26 -#: ../app/views/miq_request/_prov_vc_grid.html.haml:27 -#: ../app/views/miq_request/_prov_vm_grid.html.haml:31 -#: ../app/views/miq_request/_prov_vm_grid.html.haml:108 -#: ../app/views/miq_request/_prov_windows_image_grid.html.haml:26 -#: ../app/views/ops/_rbac_role_details.html.haml:59 -#: ../app/views/ops/_rbac_role_details.html.haml:62 -#: ../app/views/ops/_settings_replication_tab.html.haml:91 -#: ../app/views/report/_form_columns_trend.html.haml:42 -#: ../app/views/report/_form_columns_trend.html.haml:86 -#: ../app/views/report/_form_columns_trend.html.haml:86 -#: ../app/views/report/_form_formatting.html.haml:88 -#: ../app/views/report/_form_sort.html.haml:119 -#: ../app/views/shared/dialogs/_dialog_field_radio_button.html.haml:6 -#: ../app/views/shared/views/_retire.html.haml:49 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:175 -msgid "None" -msgstr "无" +msgid "\"%{name}\": In use by %{rep_count} Report, cannot be deleted" +msgid_plural "\"%{name}\": In use by %{rep_count} Reports, cannot be deleted" +msgstr[0] "\"%{name}\":被 %{rep_count} 报表使用,无法被删除。" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:30 -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:36 -msgid "Use existing VMs from an existing provider: " -msgstr "使用现有供应商里现有的虚拟机:" +msgid "\"%{record}\": %{task} invalid" +msgstr "\"%{record}\": %{task} 无效" -#: -#: ../app/assets/javascripts/controllers/container_deployment/deploy_provider/deploy-provider-review-controller.js:39 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:76 -msgid "Specify a list of machines to deploy on (No existing provider)" -msgstr "指定进行部署的主机列表(没有现存的供应商)" +msgid "\"%{record}\": %{task} successfully initiated" +msgstr "\"%{record}\": %{task} 已成功初始化" -#: -#: ../app/assets/javascripts/controllers/container_deployment/wizard/wizard-directive.js:49 -msgid "< Back" -msgstr "< 返回" +msgid "\"%{record}\": Analysis successfully initiated" +msgstr "\"%{record}\": 已成功初始化分析" -#: -#: ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:89 -msgid "Filter by %s..." -msgstr "" +msgid "\"%{record}\": Compliance check successfully initiated" +msgstr "\"%{record}\": 成功初始化合规性检查" -#: -#: ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:226 -#: ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:248 -msgid "MM/DD/YYYY HH:mm" -msgstr "" +msgid "\"%{record}\": Refresh successfully initiated" +msgstr "\"%{record}\": 最初成功刷新" -#: -#: ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:268 -msgid "Use the System Tenant Metrics" -msgstr "" +msgid "\"%{record}\": Scheduling is %{status} now." +msgstr "\"%{record}\": 现在调度状态是 %{status} 。" -#: -#: ../app/assets/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller.js:274 -msgid "Use the Ops Tenant Metrics" -msgstr "" +msgid "\"%{task_description}\" was executed" +msgstr "执行 \"%{task_description}\"" -#: -#: ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:45 -msgid "Add of Arbitration Profile was cancelled by the user" -msgstr "用户取消了添加仲裁配置集" +msgid "\"%{task}\": not available for %{hostname}" +msgstr "\"%{task}\":%{hostname} 中不可用" -#: -#: ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:47 -msgid "Edit of Arbitration Profile %s was cancelled by the user" -msgstr "用户取消了对仲裁配置集 %s 的编辑" +msgid "\"%{task}\": not available for %{hostname}. %{hostname}'s provision state must be in \"available\", \"adoptfail\", \"cleanfail\", \"enroll\", or \"inspectfail\"" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:61 -msgid "Arbitration Profile %s was saved" -msgstr "仲裁配置集 %s 已保存" +msgid "\"%{task}\": not available for %{hostname}. %{hostname}'s provision state needs to be in \"manageable\"" +msgstr "\"%{task}\":不适用于 %{hostname}。%{hostname} 的设置状态需为 \"manageable\"" -#: -#: ../app/assets/javascripts/controllers/ems_common/arbitration_profile_form_controller.js:70 -msgid "Arbitration Profile %s was added" -msgstr "添加了仲裁配置集 %s" +msgid "\"%{task}\": not supported for %{hostname}" +msgstr "\"%{task}\":%{hostname} 不支持" -#: -#: ../app/assets/javascripts/controllers/ems_common/ems_common_form_controller.js:57 -#: ../app/views/layouts/_auth_credentials.html.haml:30 -msgid "Note: Username must be in the format: name@realm" -msgstr "请注意:用户名的格式必须为:name@realm" +msgid "\"%{type}\" is not a valid Orchestration Template type" +msgstr "\"%{type}\" 不是有效业务流程模板类型" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:55 -msgid "Recent Hosts" -msgstr "最新主机" +msgid "\"A route named '#{route_name}' is configured to connect to the \"external logging server but it doesn't exist" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:56 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:19 -#: ../app/controllers/application_controller/miq_request_methods.rb:617 -#: ../app/controllers/host_controller.rb:31 -#: ../app/controllers/host_controller.rb:686 -#: ../app/helpers/application_helper.rb:1523 ../app/helpers/ui_constants.rb:359 -#: ../app/presenters/menu/default_menu.rb:61 -#: ../app/views/configuration/_ui_2.html.haml:210 -#: ../app/views/container_topology/show.html.haml:158 -msgid "Hosts" -msgstr "主机" +msgid "\"There is no server with the #{role} role enabled\"" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:68 -msgid "Recent VMs" -msgstr "最新 VM" +msgid "# CPUS" +msgstr "# CPUS" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:69 -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:35 -#: ../app/controllers/application_controller/miq_request_methods.rb:613 -#: ../app/controllers/ems_common.rb:72 ../app/controllers/host_controller.rb:95 -#: ../app/controllers/vm_common.rb:1262 -#: ../app/controllers/vm_infra_controller.rb:27 -#: ../app/helpers/host_helper/textual_summary.rb:320 -#: ../app/views/cloud_topology/show.html.haml:33 -#: ../app/views/configuration/_ui_2.html.haml:210 -#: ../app/views/container_topology/show.html.haml:139 -#: ../app/views/ems_infra/scaledown.html.haml:46 -#: ../app/views/layouts/listnav/_ems_infra.html.haml:63 -#: ../app/views/layouts/listnav/_host.html.haml:128 -#: ../app/views/layouts/listnav/_storage.html.haml:37 -#: ../app/views/middleware_topology/show.html.haml:108 -#: ../app/views/miq_capacity/_planning_summary.html.haml:20 -#: ../app/views/network_topology/show.html.haml:52 -#: ../app/views/service/_svcs_show.html.haml:30 -msgid "VMs" -msgstr "虚拟机" +msgid "% Complete" +msgstr "% 完成" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-charts-mixin.js:85 -msgid "Cluster: " -msgstr "集群:" +msgid "% Matched" +msgstr "% 匹配" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:11 -#: ../app/controllers/application_controller/compare.rb:867 -#: ../app/controllers/ems_cluster_controller.rb:28 -#: ../app/controllers/ems_cluster_controller.rb:261 -#: ../app/helpers/application_helper.rb:1538 ../app/helpers/ui_constants.rb:358 -#: ../app/presenters/menu/default_menu.rb:62 -#: ../app/views/configuration/_ui_2.html.haml:210 -msgid "Clusters" -msgstr "集群" +msgid "% Matched:" +msgstr "% 匹配:" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:27 -#: ../app/controllers/storage_controller.rb:416 -#: ../app/controllers/storage_controller.rb:629 -#: ../app/views/configuration/_ui_2.html.haml:210 -msgid "Datastores" -msgstr "数据存储区" +msgid "% Savings" +msgstr "% 存款" -#: -#: ../app/assets/javascripts/controllers/ems_infra_dashboard/util/infra-dashboard-utils-factory.js:43 -#: ../app/controllers/application_controller/miq_request_methods.rb:615 -#: ../app/controllers/ems_common.rb:71 ../app/controllers/host_controller.rb:95 -#: ../app/controllers/miq_template_controller.rb:20 -#: ../app/controllers/vm_common.rb:1260 -#: ../app/controllers/vm_infra_controller.rb:32 -#: ../app/helpers/ems_infra_helper/textual_summary.rb:153 -#: ../app/views/configuration/_ui_2.html.haml:210 -#: ../app/views/layouts/listnav/_ems_infra.html.haml:70 -#: ../app/views/layouts/listnav/_host.html.haml:136 -msgid "Templates" -msgstr "模版" +msgid "%d Months Ago" +msgstr "%d 个月以前" -#: ../app/assets/javascripts/controllers/header/header_controller.js:43 -msgid "%{count} unread notifications" -msgstr "%{count} 条未读的通知" +msgid "%d Note" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/middleware_datasource/middleware_datasource_controller.js:58 -msgid "Unable to install the Datasource on this server." +msgid "%d Notes" msgstr "" -#: -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:25 -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:83 -msgid "No replication role has been set" -msgstr "没有设置复制角色" +msgid "%d Weeks Ago" +msgstr "%d 周以前" -#: -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:85 -msgid "Replication will be disabled for this region" -msgstr "这个区域的复制将被禁用" +msgid "%d%% in use of %d %s total" +msgstr "" -#: -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:87 -msgid "All current subscriptions will be removed" -msgstr "所有当前订阅都将被删除" +msgid "%d%% in use of %d total" +msgstr "总计 %d 里有 %d%% 正在使用" -#: -#: ../app/assets/javascripts/controllers/ops/pglogical_replication_form_controller.js:89 -msgid "Changing to remote replication role will remove all current subscriptions" -msgstr "改变远程复制角色将删除所有当前的订阅" +msgid "%{action} \"%{item_name}\" for %{switch} \"%{name}\"" +msgstr "%{switch} \"%{name}\" 的 %{action} \"%{item_name}\" " -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:161 -#: ../app/views/miq_policy/_rsop_form.html.haml:45 -msgid "VM Selection" -msgstr "虚拟机选择" +msgid "%{action} \"%{item_name}\" for %{vm_or_template} \"%{name}\"" +msgstr "%{vm_or_template} \"%{name}\" 的 %{action} \"%{item_name}\"" -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:163 -msgid "Host Selection" -msgstr "主机选择" +msgid "%{alert_profiles} with %{type} Tags" +msgstr "具有 %{type} 标签的 %{alert_profiles} " -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:165 -msgid "Template Selection" -msgstr "模版选择" +msgid "%{amount} %{object} Being Tagged" +msgid_plural "%{amount} %{objects} Being Tagged" +msgstr[0] "%{amount} %{object} 正在进行标注" -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:167 -msgid "Cluster Selection" -msgstr "集群选择" +msgid "%{approval_states} requests cannot be deleted" +msgstr "无法删除 %{approval_states} 请求" -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:169 -msgid "Datastore Selection" -msgstr "数据存储区选择" +msgid "%{button_group_name} (Group)" +msgstr "%{button_group_name} (组)" -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:171 -msgid "Database Backup Selection" -msgstr "数据库备份选择" +msgid "%{button_name} Button not yet implemented" +msgstr "无法实施 %{button_name} 按钮" -#: -#: ../app/assets/javascripts/controllers/schedule/schedule_form_controller.js:173 -msgid "Automate Tasks Selection" -msgstr "自动化任务选择" +msgid "%{chargeback_interval} Ending with" +msgstr "%{chargeback_interval} 结束于" -#: ../app/assets/javascripts/dialog_field_refresh.js:97 -#: ../app/assets/javascripts/dialog_field_refresh.js:178 -#: ../app/helpers/application_helper/dialogs.rb:133 -msgid "This element is disabled because it is read only" -msgstr "这个元素被禁用,因为它是只读的。" +msgid "%{children} (%{count})" +msgstr "%{children} (%{count})" -#: ../app/assets/javascripts/miq_application.js:86 -msgid "true/false" -msgstr "true/false" +msgid "%{children} (0)" +msgstr "%{children} (0)" -#: ../app/assets/javascripts/miq_application.js:87 -msgid "Number (Bytes)" -msgstr "数量(字节)" +msgid "%{count} unread notifications" +msgstr "%{count} 条未读的通知" -#: ../app/assets/javascripts/miq_application.js:88 -#: ../app/views/layouts/_perf_options.html.haml:82 -#: ../app/views/report/_form_filter_chargeback.html.haml:200 -msgid "Date" -msgstr "日期" +msgid "%{current_tenant} Tags" +msgstr "" -#: ../app/assets/javascripts/miq_application.js:89 -msgid "Date/Time" -msgstr "日期/时间" +msgid "%{date_from} to %{date_to}" +msgstr "从 %{date_from} 至 %{date_to}" -#: ../app/assets/javascripts/miq_application.js:90 -#: ../app/assets/javascripts/miq_application.js:91 -#: ../app/assets/javascripts/miq_application.js:94 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:76 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:231 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:329 -msgid "Integer" -msgstr "整数" +msgid "%{description} category Scan" +msgstr "%{description} 类别扫描" -#: ../app/assets/javascripts/miq_application.js:92 -msgid "Number" -msgstr "数字" +msgid "%{description} registry Scan" +msgstr "%{description} 注册表扫描" -#: ../app/assets/javascripts/miq_application.js:93 -msgid "Number (GB)" -msgstr "数量(GB)" +msgid "%{entry_point} Entry Point (NameSpace/Class/Instance)" +msgstr "%{entry_point} 入口点(命名空间/类/实例)" -#: ../app/assets/javascripts/miq_application.js:96 -msgid "Number (kB)" -msgstr "数量(kB)" +msgid "%{field} '%{value}' is already in use" +msgstr "%{field} '%{value}' 已被使用" -#: ../app/assets/javascripts/miq_application.js:97 -msgid "Number (MB)" -msgstr "数量(MB)" +msgid "%{field} is required" +msgstr "" -#: ../app/assets/javascripts/miq_application.js:98 -#: ../app/assets/javascripts/miq_application.js:99 -#: ../app/views/miq_capacity/_planning_options.html.haml:168 -msgid "MHz" -msgstr "MHz" +msgid "%{hosts} & %{clusters}" +msgstr "%{hosts} 和 %{clusters}" -#: ../app/assets/javascripts/miq_application.js:100 -msgid "Number List" -msgstr "数字列表" +msgid "%{host} to validate against, Username and matching password fields are needed to perform verification of credentials" +msgstr "要检验的 %{host} ,需要用户名和密码字段来执行凭证检验。" -#: ../app/assets/javascripts/miq_application.js:101 -msgid "Percent" -msgstr "百分比柱" +msgid "%{instance_model} \"%{instance_name}\" has no attached %{volumes}" +msgstr "%{instance_model} \"%{instance_name}\" 还未附加 %{volumes}" -#: ../app/assets/javascripts/miq_application.js:102 -msgid "Text (REGEX)" -msgstr "Text (REGEX)" +msgid "%{item} (Selected)" +msgstr "" -#: ../app/assets/javascripts/miq_application.js:103 -msgid "Ruby Script" -msgstr "Ruby 脚本" +msgid "%{item} has been initiated for the selected Servers" +msgstr "已为所选服务器启动 %{item}" -#: ../app/assets/javascripts/miq_application.js:104 -#: ../app/assets/javascripts/miq_application.js:106 -#: ../app/views/report/_schedule_email_options.html.haml:41 -#: ../app/views/shared/buttons/_ab_list.html.haml:45 -#: ../app/views/shared/buttons/_ab_list.html.haml:193 -msgid "Text" -msgstr "文本" +msgid "%{key} changed to %{value}" +msgstr "将 %{key} 改为 %{value}" -#: ../app/assets/javascripts/miq_application.js:105 -msgid "String List" -msgstr "字符串列表" +msgid "%{labels} are not in the current region and will be skipped" +msgstr "%{labels} 不在当前区域内并将跳过" -#: ../app/assets/javascripts/miq_application.js:125 -#: ../app/views/ops/_ap_form_registry.html.haml:14 -msgid "Registry Key" -msgstr "注册表关键字" +msgid "%{label} Authentication" +msgstr "%{label} 验证" -#: ../app/assets/javascripts/miq_application.js:131 -msgid "Registry Key Value" -msgstr "注册表关键字的值" +msgid "%{label} Credentials" +msgstr "%{label} 凭据" -#: ../app/assets/javascripts/miq_application.js:297 -#: ../app/assets/javascripts/miq_application.js:307 -msgid "Abandon changes?" -msgstr "放弃修改?" +msgid "%{label} is not in the current region and will be skipped" +msgstr "%{label} 不在当前区域内并将跳过" -#: ../app/assets/javascripts/miq_application.js:744 -#: ../app/assets/javascripts/miq_application.js:1063 -#: ../app/assets/javascripts/miq_application.js:1197 -msgid "Error requesting data from server" +msgid "%{log_description} log downloaded" +msgstr "下载 %{log_description} 日志" + +msgid "%{message} %{key}:[%{old_value}] to [%{new_value}]" msgstr "" -#: ../app/assets/javascripts/miq_application.js:830 -msgid "Incorrect username or password" -msgstr "不正确的用户名和密码" +msgid "%{message} %{key}:[%{old_value}] to [new_value]" +msgstr "%{message} %{key}:[%{old_value}] 至 [new_value]" -#: ../app/assets/javascripts/miq_application.js:907 -#: ../app/views/dashboard/login.html.haml:32 -msgid "Click to remove message" -msgstr "点击以删除消息" +msgid "%{message} %{key}:[*] to [*]" +msgstr "%{message} %{key}:[*] to [*]" -#: ../app/assets/javascripts/miq_application.js:1559 -msgid "Enter Support Case:" -msgstr "输入支持用例:" +msgid "%{missing_field_name} is required" +msgstr "" -#: ../app/assets/javascripts/miq_application.js:1563 -msgid "Support Case must be provided to collect logs" -msgstr "必须提供支持用例来收集日志信息" +msgid "%{model_name} Group Reorder cancelled" +msgstr "已取消 %{model_name} 组重排序" -#: ../app/assets/javascripts/miq_application.js:1575 -msgid "Are you sure you want to reset this Dashboard's Widgets to the defaults?" -msgstr "您确定要重置这个仪表板的 Wdiget 为默认值吗?" +msgid "%{model_name} Group Reorder saved" +msgstr "已保存 %{model_name} 组重排序" -#: ../app/assets/javascripts/miq_formatters.js:253 -#: ../app/helpers/ui_constants.rb:290 -#: ../app/views/report/_form_filter_chargeback.html.haml:254 -msgid "Day" -msgstr "日" +msgid "%{models} Group Reorder" +msgstr "%{models} 组重排序" -#: ../app/assets/javascripts/miq_formatters.js:253 -#: ../app/helpers/ui_constants.rb:298 -msgid "Hour" -msgstr "小时" +msgid "%{models} can not be deleted" +msgstr "%{models} 无法被删除" -#: ../app/assets/javascripts/miq_formatters.js:253 -msgid "Minute" -msgstr "分钟" +msgid "%{models} no longer exists" +msgstr "%{models} 不再存在" -#: ../app/assets/javascripts/miq_formatters.js:253 -msgid "Second" -msgstr "第二个" +msgid "%{model} \"%{name}\"" +msgstr "%{model} \"%{name}\"" -#: ../app/assets/javascripts/miq_tree.js:336 -msgid "New name?" -msgstr "新建名称?" +msgid "%{model} \"%{name}\" (Summary)" +msgstr "%{model} \"%{name}\" (概述)" -#: ../app/assets/javascripts/miq_tree.js:360 -msgid "New Folder" -msgstr "新建文件夹" +msgid "%{model} \"%{name}\" Bottlenecks Summary" +msgstr "%{model} \"%{name}\" 瓶颈概述" -#: ../app/assets/javascripts/miq_tree.js:409 -msgid "Collapse All" -msgstr "全部折叠" +msgid "%{model} \"%{name}\" Utilization Trend Summary" +msgstr "%{model} \"%{name}\" 利用率趋势概述" -#: ../app/assets/javascripts/miq_tree.js:414 -#: ../app/views/configuration/_ui_3.html.haml:17 -#: ../app/views/miq_policy/_rsop_results.html.haml:86 -#: ../app/views/shared/views/_compliance_history.html.haml:5 -#: ../app/views/vm_common/_policies.html.haml:15 -msgid "Expand All" -msgstr "展开全部" +msgid "%{model} \"%{name}\" already exists" +msgstr "%{model} \"%{name}\" 已存在" -#: ../app/assets/javascripts/services/event_notifications_service.js:54 -#: ../app/controllers/miq_policy_controller.rb:1104 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:27 -#: ../app/views/miq_policy/_policy_details.html.haml:303 -msgid "Events" -msgstr "事件" +msgid "%{model} \"%{name}\" cannot be removed because it is attached to one or more %{instances}" +msgstr "%{model} \"%{name}\" 无法被删除,因为它已附加至一个或多个 %{instances}" -#: ../app/assets/javascripts/services/event_notifications_service.js:62 -#: ../app/presenters/menu/default_menu.rb:250 -msgid "Tasks" -msgstr "任务" +msgid "%{model} \"%{name}\" created" +msgstr "已创建 %{model} \"%{name}\"" -#: ../app/assets/javascripts/services/miq_service.js:47 -msgid "Click to remove messages" -msgstr "点击以删除消息" +msgid "%{model} \"%{name}\" is not attached to any %{instances}" +msgstr "%{model} \"%{name}\" 没有附加至任何 %{instances}" -#: ../app/assets/javascripts/services/post_service.js:18 -msgid "Error during Save: [%s - %s]" -msgstr "保存 [%s - %s] 时出错" +msgid "%{model} \"%{name}\" successfully added to Service \"%{to_name}\"" +msgstr "将 %{model} \"%{name}\" 成功地添加至服务 \"%{to_name}\"" -#: ../app/assets/javascripts/services/post_service.js:40 -msgid "Error during Add: [%s - %s]" -msgstr "添加 [%s - %s] 时出错" +msgid "%{model} \"%{name}\" updated" +msgstr "已更新 %{model} \"%{name}\"" -#: ../app/assets/javascripts/services/topology_service.js:4 -msgid "Name: " -msgstr "名称:" +msgid "%{model} \"%{name}\" was added" +msgstr "已添加 %{model} \"%{name}\"" -#: ../app/assets/javascripts/services/topology_service.js:5 -msgid "Type: " -msgstr "类型:" +msgid "%{model} \"%{name}\" was saved" +msgstr "已保存 %{model} \"%{name}\"" -#: ../app/assets/javascripts/services/topology_service.js:6 -msgid "Status: " -msgstr "状态:" +msgid "%{model} \"%{name}\" was updated" +msgstr "已更新 %{model} \"%{name}\"" -#: ../app/controllers/alert_controller.rb:22 -msgid "All RSS Feeds" -msgstr "所有 RSS Feeds" +msgid "%{model} \"%{name}\": %{task} successfully initiated" +msgstr "已成功初始化 %{model} \"%{name}\": %{task} " -#: ../app/controllers/alert_controller.rb:25 -msgid "%{name} RSS Feeds" -msgstr "%{name} RSS 源" +msgid "%{model} \"%{name}\": Delete successful" +msgstr "%{model} \"%{name}\": 成功删除" -#: ../app/controllers/alert_controller.rb:42 -msgid "Requested feed is invalid" -msgstr "请求的 feed 无效" +msgid "%{model} \"%{name}\": Error during '%{task}': " +msgstr "%{model} \"%{name}\": '%{task}' 过程出错" -#: ../app/controllers/alert_controller.rb:66 -#: ../app/presenters/menu/default_menu.rb:27 -msgid "RSS" -msgstr "RSS" +msgid "%{model} \"%{name}\": Error during '%{task}': %{error_message}" +msgstr "%{model} \"%{name}\": '%{task}' 过程出错:%{error_message}" -#: ../app/controllers/application_controller.rb:119 -msgid "Action not implemented" -msgstr "未使用操作" +msgid "%{model} \"%{name}\": Error during '%{task}': %{error_msg}" +msgstr "%{model} \"%{name}\":'%{task}' 过程出错:%{error_msg}" -#: ../app/controllers/application_controller.rb:121 -msgid "Unknown Action" -msgstr "未知操作" +msgid "%{model} \"%{name}\": Error during '%{task}': %{message}" +msgstr "%{model} \"%{name}\":'%{task}' 过程出错:%{message}" -#: ../app/controllers/application_controller.rb:204 -msgid "Invalid input for \"wait_for_task\"." -msgstr "\"wait_for_task\" 的输入无效" +msgid "%{model} \"%{name}\": Error during 'Analysis': %{message}" +msgstr "%{model} \"%{name}\":'分析' 过程出错:%{message}" -#: ../app/controllers/application_controller.rb:256 -#: ../app/helpers/host_helper/textual_summary.rb:481 -#: ../app/views/layouts/listnav/_host.html.haml:84 -msgid "ESX Logs" -msgstr "ESX 日志" +msgid "%{model} \"%{name}\": Error during 'Check Compliance': %{error}" +msgstr "" -#: ../app/controllers/application_controller.rb:256 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:240 -#: ../app/helpers/vm_helper/textual_summary.rb:673 -msgid "Event Logs" -msgstr "事件日志" +msgid "%{model} \"%{name}\": Error during 'delete': %{error_message}" +msgstr "%{model} \"%{name}\":'删除' 过程出错:%{error_message}" -#: ../app/controllers/application_controller.rb:339 -#: ../app/controllers/miq_capacity_controller.rb:19 -#: ../app/controllers/miq_capacity_controller.rb:773 -#: ../app/helpers/application_helper/toolbar/availability_zone_center.rb:28 -#: ../app/helpers/application_helper/toolbar/container_center.rb:21 -#: ../app/helpers/application_helper/toolbar/container_group_center.rb:22 -#: ../app/helpers/application_helper/toolbar/container_node_center.rb:22 -#: ../app/helpers/application_helper/toolbar/container_project_center.rb:22 -#: ../app/helpers/application_helper/toolbar/container_replicator_center.rb:22 -#: ../app/helpers/application_helper/toolbar/container_service_center.rb:13 -#: ../app/helpers/application_helper/toolbar/ems_cluster_center.rb:56 -#: ../app/helpers/application_helper/toolbar/ems_container_center.rb:55 -#: ../app/helpers/application_helper/toolbar/host_center.rb:127 -#: ../app/helpers/application_helper/toolbar/middleware_datasource_center.rb:13 -#: ../app/helpers/application_helper/toolbar/middleware_messaging_center.rb:14 -#: ../app/helpers/application_helper/toolbar/middleware_server_center.rb:14 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:106 -#: ../app/helpers/application_helper/toolbar/ontap_file_share_center.rb:43 -#: ../app/helpers/application_helper/toolbar/ontap_logical_disk_center.rb:28 -#: ../app/helpers/application_helper/toolbar/ontap_storage_system_center.rb:43 -#: ../app/helpers/application_helper/toolbar/ontap_storage_volume_center.rb:28 -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:163 -#: ../app/helpers/application_helper/toolbar/storage_center.rb:52 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:112 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:157 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:112 -#: ../app/presenters/menu/default_menu.rb:241 -#: ../app/views/ops/_all_tabs.html.haml:187 -#: ../app/views/ops/_all_tabs.html.haml:295 -msgid "Utilization" -msgstr "利用率" +msgid "%{model} \"%{name}\": Error during 'miq_report_delete': %{message}" +msgstr "%{model} \"%{name}\":'删除报表' 过程出错:%{message}" -#: ../app/controllers/application_controller.rb:375 -msgid "PXE Credentials successfuly validated" -msgstr "PXE 凭证被成功验证" +msgid "%{model} \"%{name}\": Error during delete: %{error_msg}" +msgstr "%{model} \"%{name}\":删除过程出错:%{error_msg}" -#: ../app/controllers/application_controller.rb:378 -#: ../app/controllers/ops_controller/settings/schedules.rb:261 -msgid "Depot Settings successfuly validated" -msgstr "成功检验 Depot 设置" +msgid "%{model} (%{tag} running %{time})" +msgstr "%{model}(运行 %{time} 的 %{tag})" -#: ../app/controllers/application_controller.rb:382 -msgid "Error during 'Validate': %{error_message}" -msgstr "在 'Validate' 过程中出错:%{error_message}" +msgid "%{model} Alert Profiles" +msgstr "%{model} 警告配置集" -#: ../app/controllers/application_controller.rb:420 -#: ../app/controllers/report_controller/menus.rb:358 -msgid "No fields were selected to move left" -msgstr "没有选择要左移的字段" +msgid "%{model} Analysis" +msgstr "%{model} 分析" -#: ../app/controllers/application_controller.rb:421 -#: ../app/controllers/report_controller/menus.rb:373 -msgid "No fields were selected to move right" -msgstr "没有选择要右移的字段" +msgid "%{model} Condition \"%{name}\"" +msgstr "%{model} 条件 \"%{name}\"" -#: ../app/controllers/application_controller.rb:595 -#: ../app/controllers/chargeback_controller.rb:381 -#: ../app/controllers/report_controller/saved_reports.rb:77 -#: ../app/helpers/application_helper/button/chargeback_download_choice.rb:3 -#: ../app/helpers/application_helper/button/chargeback_report_only.rb:3 -#: ../app/helpers/application_helper/button/utilization_download.rb:13 -#: ../app/helpers/application_helper/toolbar_builder.rb:809 -#: ../app/helpers/application_helper/toolbar_builder.rb:815 -msgid "No records found for this report" -msgstr "没有找到这个报表的记录" +msgid "%{model} Order was cancelled by the user" +msgstr "该用户删除 %{model} 订单" -#: ../app/controllers/application_controller.rb:617 -msgid "" -"Edit aborted! %{product} does not support the browser's back button or access" -" from multiple tabs or windows of the same browser. Please close any duplicat" -"e sessions before proceeding." -msgstr "编辑中止!%{product} 不支持浏览器的后退键或同一浏览器的多标签页/窗口访问。在继续前请关闭全部重复的会话。" +msgid "%{model} [%{name} - Updated %{time}%{update}]" +msgstr "%{model} [%{name} - 更新于 %{time}%{update}]" -#: ../app/controllers/application_controller.rb:719 -msgid "%{tenant_name} (All %{groups})" -msgstr "%{tenant_name}(所有 %{groups})" +msgid "%{model} for %{group} \"%{name}\"" +msgstr "%{group} \"%{name}\" 的 %{model}" -#: ../app/controllers/application_controller.rb:721 -msgid "%{tenant_name} (%{group}): %{group_description}" -msgstr "%{tenant_name} (%{group}): %{group_description}" +msgid "%{model} must contain at least one %{field}" +msgstr "%{model} 必须至少包含一个 %{field}" -#: ../app/controllers/application_controller.rb:877 -msgid "View this item" -msgstr "查看这个项" +msgid "%{model} no longer exists" +msgstr "%{model} 不再存在" -#: ../app/controllers/application_controller.rb:1037 -#: ../app/controllers/vm_common.rb:1355 -msgid " (Names with \"%{search_text}\")" -msgstr " (包含 \"%{search_text}\" 的名称)" +msgid "%{model} no longer exists." +msgstr "%{model} 不再存在。" -#: ../app/controllers/application_controller.rb:1077 -#: ../app/controllers/application_controller.rb:2303 -#: ../app/controllers/dashboard_controller.rb:599 -#: ../app/controllers/ontap_file_share_controller.rb:48 -#: ../app/controllers/ontap_storage_system_controller.rb:53 -msgid "The user is not authorized for this task or item." -msgstr "这个任务或项目没有对用户授权。" +msgid "%{model} search \"%{name}\" was saved" +msgstr "保存 %{model} 搜索 \"%{name}\"" -#: ../app/controllers/application_controller.rb:1152 -#: ../app/views/vm_common/_reconfigure.html.haml:78 -#: ../app/views/vm_common/_right_size.html.haml:213 -#: ../app/views/vm_common/_right_size.html.haml:297 -#: ../app/views/vm_common/_right_size.html.haml:380 -msgid "Processors" -msgstr "处理器" +msgid "%{model} search \"%{name}\" was successfully loaded" +msgstr "成功载入 %{model} 搜索 \"%{name}\"" -#: ../app/controllers/application_controller.rb:1157 -msgid "CPU Type" -msgstr "CPU 类型" +msgid "%{model} search \"%{name}\": Delete successful" +msgstr "%{model} 搜索 \"%{name}\":删除成功" -#: ../app/controllers/application_controller.rb:1160 -#: ../app/views/miq_capacity/_planning_options.html.haml:148 -#: ../app/views/miq_capacity/_planning_options.html.haml:320 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:16 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:67 -msgid "CPU Speed" -msgstr "CPU 速度" +msgid "%{model} under %{record_model} \"%{name}\"" +msgstr "%{record_model} \"%{name}\" 中的 %{model}" -#: ../app/controllers/application_controller.rb:1182 -msgid ", Connect at Power On = No" -msgstr ", Connect at Power On = No" +msgid "%{model} under Inventory Group \"%{name}\"" +msgstr "\"%{name}\" 组中的 %{model}" -#: ../app/controllers/application_controller.rb:1182 -msgid ", Connect at Power On = Yes" -msgstr ", Connect at Power On = Yes" +msgid "%{model} under Unassigned Profiles Group" +msgstr "未分配的配置文件组中的 %{model}" -#: ../app/controllers/application_controller.rb:1186 -msgid "CD-ROM (IDE %{location})%{connection}" -msgstr "CD-ROM (IDE %{location})%{connection}" +msgid "%{model}: %{name}" +msgstr "%{model}: %{name}" -#: ../app/controllers/application_controller.rb:1189 -msgid "ATAPI CD-ROM (IDE %{location})%{connection}" -msgstr "ATAPI CD-ROM (IDE %{location})%{connection}" +msgid "%{model}: %{task} successfully initiated" +msgstr "%{model}: %{task} 已成功初始化" -#: ../app/controllers/application_controller.rb:1192 -msgid "CD-ROM Image (IDE %{location})%{connection}" -msgstr "CD-ROM 镜像 (IDE %{location})%{connection}" +msgid "%{model}: Discovery successfully initiated" +msgstr "%{model}:成功启动发现" -#: ../app/controllers/application_controller.rb:1197 -#: ../app/controllers/application_controller.rb:1215 -msgid "Hard Disk (IDE %{location})" -msgstr "硬盘 (IDE %{location})" +msgid "%{name} '%{vm_name}' Drift Report" +msgstr "%{name} '%{vm_name}' Drift 报告" -#: ../app/controllers/application_controller.rb:1199 -#: ../app/controllers/application_controller.rb:1229 -msgid "Hard Disk (SCSI %{location})" -msgstr "硬盘 (SCSI %{location})" +msgid "%{name} (%{table}(s))" +msgstr "%{name} (%{table}(s))" -#: ../app/controllers/application_controller.rb:1203 -#: ../app/controllers/application_controller.rb:1217 -#: ../app/controllers/application_controller.rb:1231 -msgid ", Size: %{number}" -msgstr ", 大小: %{number}" +msgid "%{name} (All %{children})" +msgstr "%{name}(所有 %{children})" -#: ../app/controllers/application_controller.rb:1206 -#: ../app/controllers/application_controller.rb:1220 -#: ../app/controllers/application_controller.rb:1234 -msgid ", Size on disk: %{number}" -msgstr ", 磁盘大小: %{number}" +msgid "%{name} (All %{tables})" +msgstr "%{name}(所有 %{tables})" -#: ../app/controllers/application_controller.rb:1210 -#: ../app/controllers/application_controller.rb:1223 -#: ../app/controllers/application_controller.rb:1238 -msgid ", Percent Used Provisioned Space: %{number}%%" -msgstr ", 已使用的置备空间比例: %{number}%%" +msgid "%{name} (All %{titles})" +msgstr "%{name}(所有 %{titles})" -#: ../app/controllers/application_controller.rb:1213 -#: ../app/controllers/application_controller.rb:1226 -#: ../app/controllers/application_controller.rb:1241 -msgid ", Mode: %{mode}" -msgstr ", 模式: %{mode}" +msgid "%{name} (All %{title})" +msgstr "%{name}(所有 %{title})" -#: ../app/controllers/application_controller.rb:1244 -msgid "Generic SCSI (%{location})" -msgstr "通用 SCSI (%{location})" +msgid "%{name} (All Registered %{title})" +msgstr "%{name}(所有注册的 %{title})" -#: ../app/controllers/application_controller.rb:1271 -msgid "Default Adapter" -msgstr "默认适配器" +msgid "%{name} (All Registered Hosts)" +msgstr "%{name}(所有注册的主机)" -#: ../app/controllers/application_controller.rb:1287 -#: ../app/controllers/application_controller/miq_request_methods.rb:311 -#: ../app/controllers/application_controller/miq_request_methods.rb:407 -#: ../app/helpers/host_helper/textual_summary.rb:166 -#: ../app/helpers/textual_mixins/textual_os_info.rb:3 -#: ../app/views/provider_foreman/_main.html.haml:11 -#: ../app/views/provider_foreman/_main_configuration_profile.html.haml:11 -msgid "Operating System" -msgstr "操作系统" +msgid "%{name} (All Resource Pools)" +msgstr "%{name}(所有资源池)" -#: ../app/controllers/application_controller.rb:1289 -msgid "Service Pack" -msgstr "服务补丁" +msgid "%{name} (All VMs - Tree View)" +msgstr "%{name}(所有虚拟机 - 树状视图)" -#: ../app/controllers/application_controller.rb:1291 -msgid "Product ID" -msgstr "产品 ID" +msgid "%{name} (All cloud tenants present on this host)" +msgstr "%{name}(本主机中的所有云租户)" -#: ../app/controllers/application_controller.rb:1293 -#: ../app/controllers/application_controller.rb:1325 -#: ../app/controllers/application_controller.rb:1338 -#: ../app/controllers/application_controller/miq_request_methods.rb:446 -#: ../app/helpers/ops_helper/textual_summary.rb:49 -#: ../app/views/layouts/_about_modal.html.haml:26 -#: ../app/views/miq_policy/_action_details.html.haml:355 -#: ../app/views/miq_policy/_action_options.html.haml:395 -#: ../app/views/miq_policy/_alert_details.html.haml:362 -#: ../app/views/miq_policy/_alert_snmp.html.haml:64 -msgid "Version" -msgstr "版本" +msgid "%{name} (Applications)" +msgstr "%{name}(应用程序)" -#: ../app/controllers/application_controller.rb:1295 -#: ../app/controllers/application_controller.rb:1327 -msgid "Build Number" -msgstr "构建号码" +msgid "%{name} (Compliance History - Last %{number} Checks)" +msgstr "%{name}(相容性历史记录 - 前%{number}个检查)" -#: ../app/controllers/application_controller.rb:1297 -msgid "System Type" -msgstr "系统类型" +msgid "%{name} (Devices)" +msgstr "%{name}(设备)" -#: ../app/controllers/application_controller.rb:1299 -msgid "Password History" -msgstr "密码历史" +msgid "%{name} (Disks)" +msgstr "%{name}(磁盘)" -#: ../app/controllers/application_controller.rb:1301 -msgid "Max Password Age" -msgstr "密码有效的最长时间" +msgid "%{name} (Groups)" +msgstr "%{name}(组)" -#: ../app/controllers/application_controller.rb:1303 -msgid "Min Password Age" -msgstr "密码有效的最短时间" +msgid "%{name} (Hosts)" +msgstr "%{name}(主机)" -#: ../app/controllers/application_controller.rb:1305 -msgid "Min Password Length" -msgstr "密码的最少长度" +msgid "%{name} (Latest Compliance Check)" +msgstr "%{name}(最新相容性检查)" -#: ../app/controllers/application_controller.rb:1307 -msgid "Password Complex" -msgstr "复杂密码" +msgid "%{name} (Network)" +msgstr "%{name}(网络)" -#: ../app/controllers/application_controller.rb:1309 -msgid "Password Encrypt" -msgstr "密码加密" +msgid "%{name} (OS Information)" +msgstr "%{name}(OS 信息)" -#: ../app/controllers/application_controller.rb:1311 -msgid "Lockout Threshold" -msgstr "锁定的阈值" +msgid "%{name} (Packages)" +msgstr "%{name}(软件包)" -#: ../app/controllers/application_controller.rb:1313 -msgid "Lockout Duration" -msgstr "锁定的时长" +msgid "%{name} (Patches)" +msgstr "%{name}(补丁)" -#: ../app/controllers/application_controller.rb:1315 -msgid "Reset Lockout Counter" -msgstr "重置锁定计数" +msgid "%{name} (Storage Adapters)" +msgstr "%{name}(存储适配器)" -#: ../app/controllers/application_controller.rb:1321 -#: ../app/controllers/application_controller.rb:1334 -#: ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:21 -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:35 -#: ../app/helpers/ops_helper/textual_summary.rb:45 -msgid "Vendor" -msgstr "厂商" +msgid "%{name} (Summary)" +msgstr "%{name}(概述)" -#: ../app/controllers/application_controller.rb:1323 -msgid "Product" -msgstr "产品" +msgid "%{name} (Users)" +msgstr "%{name}(用户)" -#: ../app/controllers/application_controller.rb:1336 -#: ../app/views/report/_form_formatting.html.haml:58 -msgid "Format" -msgstr "格式" +msgid "%{name} (VM Monitor Information)" +msgstr "%{name}(虚拟机监视器信息)" -#: ../app/controllers/application_controller.rb:1342 -msgid "" -msgstr "<没有为这个虚拟机输入注记>" +msgid "%{name} (no longer exists)" +msgstr "%{name}(不再存在)" -#: ../app/controllers/application_controller.rb:1346 -#: ../app/views/miq_policy/_alert_profile_details.html.haml:150 -#: ../app/views/miq_policy/_alert_profile_details.html.haml:174 -#: ../app/views/miq_policy/_condition_details.html.haml:95 -#: ../app/views/miq_policy/_condition_details.html.haml:112 -#: ../app/views/miq_policy/_policy_details.html.haml:385 -#: ../app/views/miq_policy/_policy_details.html.haml:402 -#: ../app/views/miq_policy/_profile_details.html.haml:161 -#: ../app/views/miq_policy/_profile_details.html.haml:180 -msgid "Notes" -msgstr "注记" +msgid "%{name} Capacity & Utilization" +msgstr "%{name} 容量和利用率" -#: ../app/controllers/application_controller.rb:1390 -#: ../app/controllers/application_controller/ci_processing.rb:2345 -#: ../app/controllers/application_controller/ci_processing.rb:2355 -#: ../app/controllers/application_controller/ci_processing.rb:2363 -#: ../app/controllers/application_controller/ci_processing.rb:2394 -#: ../app/controllers/application_controller/ci_processing.rb:2403 -#: ../app/controllers/application_controller/ci_processing.rb:2412 -#: ../app/controllers/application_controller/ci_processing.rb:2421 -#: ../app/controllers/application_controller/ci_processing.rb:2611 -#: ../app/controllers/miq_task_controller.rb:222 -msgid "\"%{record}\": %{task} successfully initiated" -msgstr "\"%{record}\": %{task} 已成功初始化" +msgid "%{name} Capacity & Utilization (by %{option}:%{model})" +msgstr "%{name} 容量和利用率(根据 %{option}:%{model})" -#: ../app/controllers/application_controller.rb:1395 -msgid "Successfully deleted Saved Report from the %{product} Database" -msgid_plural "Successfully deleted Saved Reports from the %{product} Database" -msgstr[0] "从 %{product} 数据库删除 Saved Report 成功" +msgid "%{name} Compare Report (* = Value does not match base)" +msgstr "%{name} 对比报告(* = Value 与基准不映射)" -#: ../app/controllers/application_controller.rb:1399 -msgid "Error during Saved Report delete from the %{product} Database" -msgid_plural "Error during Saved Reports delete from the %{product} Database" -msgstr[0] "从 %{product} 数据库执行 Saved Report delete 时出错" +msgid "%{name} Configured Systems" +msgstr "%{name} 已配置的系统" -#: ../app/controllers/application_controller.rb:1412 -msgid "The selected %{label} is not in the current region" -msgstr "所选的 %{label} 没有位于当前的区域" +msgid "%{name} Providers" +msgstr "%{name} 供应商" -#: ../app/controllers/application_controller.rb:1414 -msgid "All selected %{labels} are not in the current region" -msgstr "所有选择的 %{labels} 都没有处于当前区里" +msgid "%{name} RSS Feeds" +msgstr "%{name} RSS 源" -#: ../app/controllers/application_controller.rb:1417 -msgid "%{label} is not in the current region and will be skipped" -msgstr "%{label} 不在当前区域内并将跳过" +msgid "%{name} Tags" +msgstr "%{name} 标签" -#: ../app/controllers/application_controller.rb:1419 -msgid "%{labels} are not in the current region and will be skipped" -msgstr "%{labels} 不在当前区域内并将跳过" +msgid "%{name} dashboard for user %{id} in group id %{current_group_id}" +msgstr "组 id %{current_group_id} 中用户 %{id} 的 %{name} 仪表板" -#: ../app/controllers/application_controller.rb:2208 -#: ../app/controllers/infra_networking_controller.rb:723 -#: ../app/controllers/provider_foreman_controller.rb:1155 -#: ../app/controllers/storage_controller.rb:337 -msgid "Invalid input" -msgstr "无效的输入" +msgid "%{name} domain: Current version - %{version}, Available version - %{available_version}" +msgstr "%{name} 域:当前版本 - %{version},可用版本 - %{available_version}" -#: ../app/controllers/application_controller.rb:2212 -msgid "Selected %{model_name} no longer exists" -msgstr "选择的 %{model_name} 不再存在" +msgid "%{name} is currently being used in the Display Filter" +msgstr "%{name} 目前正在由显示过滤器使用" -#: ../app/controllers/application_controller.rb:2217 -msgid "" -"User '%{user_id}' is not authorized to access '%{model}' record id '%{record_i" -"d}'" -msgstr "用户 '%{user_id}' 没有被授权可以访问 '%{model}' 记录 id '%{record_id}'" +msgid "%{name} is required" +msgstr "%{name} 是必填项" -#: ../app/controllers/application_controller.rb:2280 -msgid "%{record_name} no longer exists in the database" -msgstr "数据库中不再存在 %{record_name}" +msgid "%{name} is the base" +msgstr "%{name} 是基准" -#: ../app/controllers/application_controller.rb:2282 -msgid "You are not authorized to view %{model_name} '%{resource_name}'" -msgstr "您没有权力查看 %{model_name} '%{resource_name}'" +msgid "%{name}: '%{task}' successfully initiated" +msgstr "%{name}:成功启动 '%{task}'" -#: ../app/controllers/application_controller.rb:2308 -msgid "Unauthorized object or action" -msgstr "未授权对象或操作" +msgid "%{name}: Delete successful" +msgstr "%{name}:删除成功" -#: ../app/controllers/application_controller.rb:2346 -msgid "%{task} does not apply to at least one of the selected %{model}" -msgstr "%{task} 没有应用于任何所选 %{model}" +msgid "%{name}: Error during '%{task}': %{message}" +msgstr "%{name}:'%{task}' 过程出错:%{message}" -#: ../app/controllers/application_controller.rb:2350 -msgid "%{task} does not apply to at least one of the selected items" -msgstr "" +msgid "%{name}:[%{key}] to [%{new_key}]" +msgstr "%{name}:[%{key}] 至 [%{new_key}]" -#: ../app/controllers/application_controller/automate.rb:6 -msgid "Automation Simulation has been run" -msgstr "自动化模拟已经运行" +msgid "%{number} (%{percentage} of Used Space, %{amount} file)" +msgid_plural "%{number} (%{percentage} of Used Space, %{amount} files)" +msgstr[0] "%{number} (%{percentage} 已使用空间, %{amount} 个文件)" -#: ../app/controllers/application_controller/automate.rb:21 -msgid "Automation Error: %{error_message}" -msgstr "自动化错误:%{error_message}" +msgid "%{number} (Virtual to Real Ratio: %{ratio})" +msgstr "%{number}(虚拟对真实的比例:%{ratio})" -#: ../app/controllers/application_controller/automate.rb:102 -#: ../app/controllers/miq_policy_controller/rsop.rb:51 -#: ../app/views/layouts/_tl_options.html.haml:16 -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:110 -#: ../app/views/miq_capacity/_bottlenecks_options.html.haml:6 -#: ../app/views/miq_capacity/_utilization_options.html.haml:7 -#: ../app/views/miq_request/_reconfigure_show.html.haml:7 -#: ../app/views/ontap_file_share/_create_datastore.html.haml:9 -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:6 -#: ../app/views/vm_common/_policy_options.html.haml:7 -#: ../app/views/vm_common/_reconfigure.html.haml:9 -msgid "Options" -msgstr "选项" +msgid "%{number} Day" +msgid_plural "%{number} Days" +msgstr[0] "%{number} 天" -#: ../app/controllers/application_controller/automate.rb:129 -msgid "Resolve" -msgstr "解决" +msgid "%{number} Days Ago" +msgstr "%{number} 天之前" -#: ../app/controllers/application_controller/automate.rb:131 -#: ../app/presenters/menu/default_menu.rb:216 -#: ../app/presenters/menu/default_menu.rb:230 -msgid "Simulation" -msgstr "模拟" +msgid "%{number} Hour" +msgid_plural "%{number} Hours" +msgstr[0] "%{number} 小时" -#: ../app/controllers/application_controller/buttons.rb:18 -msgid "%{model_name} Group Reorder cancelled" -msgstr "已取消 %{model_name} 组重排序" +msgid "%{number} Month" +msgid_plural "%{number} Months" +msgstr[0] "%{number} 月" -#: ../app/controllers/application_controller/buttons.rb:43 -msgid "%{model_name} Group Reorder saved" -msgstr "已保存 %{model_name} 组重排序" +msgid "%{number} Week" +msgid_plural "%{number} Weeks" +msgstr[0] "%{number} 周" -#: ../app/controllers/application_controller/buttons.rb:75 -msgid "No Button Group was selected!" -msgstr "没有选择按钮组" +msgid "%{number} bytes" +msgstr "%{number} 字节" -#: ../app/controllers/application_controller/buttons.rb:151 -#: ../app/controllers/application_controller/buttons.rb:228 -#: ../app/controllers/application_controller/ci_processing.rb:1583 -#: ../app/controllers/miq_ae_class_controller.rb:2590 -#: ../app/controllers/miq_request_controller.rb:569 -#: ../app/controllers/miq_task_controller.rb:219 -#: ../app/controllers/ops_controller/diagnostics.rb:713 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:194 -#: ../app/controllers/ops_controller/settings/tags.rb:24 -#: ../app/controllers/ops_controller/settings/zones.rb:70 -#: ../app/controllers/report_controller/reports.rb:101 -#: ../app/controllers/storage_manager_controller.rb:458 -msgid "%{model} \"%{name}\": Delete successful" -msgstr "%{model} \"%{name}\": 成功删除" +msgid "%{object_types} under %{datastore_or_provider} \"%{provider_or_datastore_name}\"" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:210 -msgid "'Unassigned Buttons Group' can not be deleted" -msgstr "'Unassigned Buttons Group' 不能被删除" +msgid "%{object} Conditions" +msgstr "%{object} 条件" -#: ../app/controllers/application_controller/buttons.rb:260 -msgid "No url was returned from automate." +msgid "%{operation} initiated for given server group." msgstr "" -#: ../app/controllers/application_controller/buttons.rb:272 -msgid "%{record} - \"%{button_text}\"" -msgstr "%{record} - \"%{button_text}\"" +msgid "%{operation} initiated for selected server(s)" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:286 -msgid "Error executing: \"%{task_description}\" %{error_message}" -msgstr "执行 \"%{task_description}\" 时出错:%{error_message}" +msgid "%{operation} was not initiated for given group." +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:289 -msgid "\"%{task_description}\" was executed" -msgstr "执行 \"%{task_description}\"" +msgid "%{product} Appliance restart initiated successfully" +msgstr "%{product} 应用重启初始化成功" -#: ../app/controllers/application_controller/buttons.rb:304 -#: ../app/controllers/application_controller/buttons.rb:426 -#: ../app/controllers/catalog_controller.rb:89 -#: ../app/controllers/catalog_controller.rb:558 -#: ../app/controllers/chargeback_controller.rb:105 -#: ../app/controllers/cloud_tenant_controller.rb:142 -#: ../app/controllers/cloud_volume_controller.rb:320 -#: ../app/controllers/configuration_controller.rb:398 -#: ../app/controllers/ems_common.rb:288 -#: ../app/controllers/host_aggregate_controller.rb:253 -#: ../app/controllers/host_controller.rb:347 -#: ../app/controllers/miq_ae_class_controller.rb:571 -#: ../app/controllers/miq_ae_class_controller.rb:974 -#: ../app/controllers/miq_ae_class_controller.rb:1061 -#: ../app/controllers/miq_ae_class_controller.rb:1101 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:194 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:247 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:13 -#: ../app/controllers/miq_policy_controller/alerts.rb:13 -#: ../app/controllers/miq_policy_controller/conditions.rb:11 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:11 -#: ../app/controllers/miq_policy_controller/policies.rb:11 -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:13 -#: ../app/controllers/mixins/ems_common_angular.rb:17 -#: ../app/controllers/ops_controller/ops_rbac.rb:111 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:226 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:12 -#: ../app/controllers/ops_controller/settings/ldap.rb:39 -#: ../app/controllers/ops_controller/settings/ldap.rb:156 -#: ../app/controllers/ops_controller/settings/schedules.rb:50 -#: ../app/controllers/ops_controller/settings/tags.rb:44 -#: ../app/controllers/ops_controller/settings/zones.rb:9 -#: ../app/controllers/pxe_controller/iso_datastores.rb:171 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:102 -#: ../app/controllers/pxe_controller/pxe_image_types.rb:29 -#: ../app/controllers/pxe_controller/pxe_servers.rb:46 -#: ../app/controllers/pxe_controller/pxe_servers.rb:191 -#: ../app/controllers/pxe_controller/pxe_servers.rb:242 -#: ../app/controllers/report_controller/reports/editor.rb:43 -#: ../app/controllers/report_controller/schedules.rb:227 -#: ../app/controllers/report_controller/widgets.rb:49 -#: ../app/controllers/storage_manager_controller.rb:158 -#: ../app/controllers/vm_common.rb:919 ../app/controllers/vm_common.rb:923 -msgid "Edit of %{model} \"%{name}\" was cancelled by the user" -msgstr "用户取消了对 %{model} \"%{name}\" 的编辑" +msgid "%{product} Log" +msgstr "%{product} 日志" -#: ../app/controllers/application_controller/buttons.rb:307 -#: ../app/controllers/application_controller/buttons.rb:428 -msgid "Add of new %{model_name} was cancelled by the user" -msgstr "用户取消了添加新的 %{model_name}" +msgid "%{product} Region: %{region_description} [%{region}]" +msgstr "%{product} 区:%{region_description} [%{region}]" -#: ../app/controllers/application_controller/buttons.rb:318 -#: ../app/controllers/catalog_controller.rb:310 -#: ../app/controllers/catalog_controller.rb:854 -#: ../app/controllers/miq_ae_class_controller.rb:576 -#: ../app/controllers/miq_ae_class_controller.rb:624 -#: ../app/controllers/miq_ae_class_controller.rb:2079 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:255 -#: ../app/controllers/ontap_file_share_controller.rb:100 -#: ../app/controllers/ontap_storage_system_controller.rb:108 -#: ../app/controllers/ops_controller/settings/ldap.rb:50 -#: ../app/controllers/ops_controller/settings/ldap.rb:167 -#: ../app/controllers/ops_controller/settings/tags.rb:55 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:115 -#: ../app/controllers/pxe_controller/pxe_image_types.rb:164 -#: ../app/controllers/pxe_controller/pxe_servers.rb:292 -msgid "Name is required" -msgstr "名称是必需的" +msgid "%{product} Server \"%{name}\" set as %{priority} for Role \"%{role_description}\"" +msgstr "%{product} 服务器 \"%{name}\" 设置为角色 \"%{role_description} 的 %{priority} \"" -#: ../app/controllers/application_controller/buttons.rb:322 -#: ../app/controllers/chargeback_controller.rb:118 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:370 -#: ../app/controllers/ops_controller/settings/tags.rb:58 -#: ../app/controllers/ops_controller/settings/zones.rb:22 -msgid "Description is required" -msgstr "描述是必需的" +msgid "%{product} Version" +msgstr "%{product} 版本" -#: ../app/controllers/application_controller/buttons.rb:326 -#: ../app/controllers/application_controller/buttons.rb:732 -msgid "Button Image must be selected" -msgstr "必须选择按钮图像" +msgid "%{protocol} port %{port} to pods on target port:'%{target_port}'" +msgstr "%{protocol} 端口 %{port} 到目标端口中的 pod:'%{target_port}'" -#: ../app/controllers/application_controller/buttons.rb:347 -#: ../app/controllers/application_controller/buttons.rb:517 -#: ../app/controllers/catalog_controller.rb:579 -#: ../app/controllers/catalog_controller.rb:913 -#: ../app/controllers/catalog_controller.rb:1001 -#: ../app/controllers/catalog_controller.rb:1054 -#: ../app/controllers/catalog_controller.rb:1100 -#: ../app/controllers/chargeback_controller.rb:141 -#: ../app/controllers/configuration_controller.rb:426 -#: ../app/controllers/ems_common.rb:193 ../app/controllers/ems_common.rb:310 -#: ../app/controllers/host_controller.rb:358 -#: ../app/controllers/miq_ae_class_controller.rb:599 -#: ../app/controllers/miq_ae_class_controller.rb:990 -#: ../app/controllers/miq_ae_class_controller.rb:1075 -#: ../app/controllers/miq_ae_class_controller.rb:1121 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:227 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:285 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:53 -#: ../app/controllers/miq_policy_controller/alerts.rb:25 -#: ../app/controllers/miq_policy_controller/conditions.rb:60 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:45 -#: ../app/controllers/miq_policy_controller/policies.rb:62 -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:53 -#: ../app/controllers/mixins/ems_common_angular.rb:33 -#: ../app/controllers/mixins/ems_common_angular.rb:87 -#: ../app/controllers/ops_controller/ops_rbac.rb:132 -#: ../app/controllers/ops_controller/ops_rbac.rb:731 -#: ../app/controllers/ops_controller/settings.rb:165 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:271 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:174 -#: ../app/controllers/ops_controller/settings/ldap.rb:61 -#: ../app/controllers/ops_controller/settings/ldap.rb:182 -#: ../app/controllers/ops_controller/settings/schedules.rb:80 -#: ../app/controllers/ops_controller/settings/tags.rb:100 -#: ../app/controllers/ops_controller/settings/zones.rb:32 -#: ../app/controllers/orchestration_stack_controller.rb:259 -#: ../app/controllers/pxe_controller/iso_datastores.rb:180 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:128 -#: ../app/controllers/pxe_controller/pxe_servers.rb:66 -#: ../app/controllers/pxe_controller/pxe_servers.rb:200 -#: ../app/controllers/pxe_controller/pxe_servers.rb:251 -#: ../app/controllers/report_controller/reports.rb:33 -#: ../app/controllers/report_controller/reports/editor.rb:72 -#: ../app/controllers/report_controller/schedules.rb:246 -#: ../app/controllers/report_controller/widgets.rb:63 -#: ../app/controllers/storage_manager_controller.rb:167 -#: ../app/controllers/vm_common.rb:958 -msgid "%{model} \"%{name}\" was saved" -msgstr "已保存 %{model} \"%{name}\"" +msgid "%{record_name} has no snapshots" +msgstr "%{record_name} 没有快照" -#: ../app/controllers/application_controller/buttons.rb:353 -#: ../app/controllers/application_controller/buttons.rb:523 -msgid "Error during 'edit': %{field_name} %{error_message}" -msgstr "在 'edit' 过程中出错:%{field_name} %{error_message}" +msgid "%{record_name} no longer exists in the database" +msgstr "数据库中不再存在 %{record_name}" -#: ../app/controllers/application_controller/buttons.rb:382 -#: ../app/controllers/application_controller/buttons.rb:465 -#: ../app/controllers/catalog_controller.rb:913 -#: ../app/controllers/chargeback_controller.rb:138 -#: ../app/controllers/host_controller.rb:276 -#: ../app/controllers/miq_ae_class_controller.rb:644 -#: ../app/controllers/miq_ae_class_controller.rb:1191 -#: ../app/controllers/miq_ae_class_controller.rb:1226 -#: ../app/controllers/miq_ae_class_controller.rb:1255 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:225 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:283 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:54 -#: ../app/controllers/miq_policy_controller/alerts.rb:26 -#: ../app/controllers/miq_policy_controller/conditions.rb:61 -#: ../app/controllers/miq_policy_controller/miq_actions.rb:46 -#: ../app/controllers/miq_policy_controller/policies.rb:63 -#: ../app/controllers/miq_policy_controller/policies.rb:108 -#: ../app/controllers/miq_policy_controller/policy_profiles.rb:54 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:156 -#: ../app/controllers/ops_controller/settings/tags.rb:81 -#: ../app/controllers/ops_controller/settings/zones.rb:33 -#: ../app/controllers/provider_foreman_controller.rb:181 -#: ../app/controllers/pxe_controller/iso_datastores.rb:57 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:128 -#: ../app/controllers/pxe_controller/pxe_image_types.rb:52 -#: ../app/controllers/pxe_controller/pxe_servers.rb:66 -#: ../app/controllers/report_controller/reports/editor.rb:73 -#: ../app/controllers/report_controller/schedules.rb:247 -#: ../app/controllers/storage_manager_controller.rb:84 -msgid "%{model} \"%{name}\" was added" -msgstr "已添加 %{model} \"%{name}\"" +msgid "%{record} - \"%{button_text}\"" +msgstr "%{record} - \"%{button_text}\"" -#: ../app/controllers/application_controller/buttons.rb:388 -msgid "Error during 'add': %{field_name} %{error_name}" -msgstr "在 'add' 过程中出错:%{field_name} %{error_name}" +msgid "%{record} no longer exists" +msgstr "%{record} 不再存在" -#: ../app/controllers/application_controller/buttons.rb:440 -#: ../app/controllers/application_controller/buttons.rb:510 -#: ../app/controllers/application_controller/buttons.rb:539 -msgid "Edit of Button" -msgstr "编辑按钮" +msgid "%{role} on %{model}: %{name} [%{id}]" +msgstr "%{model} 上的 %{role}:%{name} [%{id}]" -#: ../app/controllers/application_controller/buttons.rb:489 -#: ../app/controllers/miq_ae_class_controller.rb:1184 -#: ../app/controllers/miq_ae_class_controller.rb:1222 -msgid "Error during 'add': %{error_message}" -msgstr "在 'add' 过程中出错:%{error_message}" +msgid "%{schedule} %{name} was deleted" +msgstr "已删除 %{schedule} %{name} " -#: ../app/controllers/application_controller/buttons.rb:582 -msgid "'Unassigned Buttons Group' can not be edited" -msgstr "'Unassigned Buttons Group' 不能被编辑" +msgid "%{server}: %{server_name} [%{server_id}] (current)" +msgstr "%{server}: %{server_name} [%{server_id}] (当前)" -#: ../app/controllers/application_controller/buttons.rb:605 -msgid "Add Button" -msgstr "添加按钮" +msgid "%{start_number} of %{total_items}" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:607 -msgid "Edit of '%{description}' Button" -msgstr "编辑 '%{description}' 按钮" +msgid "%{start_number}-%{end_number} of %{total_items}" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:686 -msgid "No fields were selected to move top" -msgstr "没有选择要移至顶部的字段" +msgid "%{start_number}-%{total_items} of %{total_items}" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:691 -msgid "Select only one or consecutive fields to move to the top" -msgstr "选择一个或连续的字段下移至顶部" +msgid "%{status} - %{time}" +msgstr "%{status} - %{time}" -#: ../app/controllers/application_controller/buttons.rb:707 -msgid "No fields were selected to move bottom" -msgstr "没有选择要移至底部的字段" +msgid "%{storage} Type" +msgstr "%{storage} 类型" -#: ../app/controllers/application_controller/buttons.rb:712 -msgid "Select only one or consecutive fields to move to the bottom" -msgstr "选择一个或连续的字段下移至底部" +msgid "%{table} (%{count})" +msgstr "%{table} (%{count})" -#: ../app/controllers/application_controller/buttons.rb:729 -msgid "Button Text is required" -msgstr "按钮文本是必需的" +msgid "%{table} no longer exists" +msgstr "%{table} 不再存在" -#: ../app/controllers/application_controller/buttons.rb:734 -msgid "Button Hover Text is required" -msgstr "按钮悬停文本是必需的" +msgid "%{table}: %{name}" +msgstr "%{table}: %{name}" -#: ../app/controllers/application_controller/buttons.rb:736 -#: ../app/controllers/miq_ae_tools_controller.rb:407 -msgid "Starting Process is required" -msgstr "启动进程是必需的" +msgid "%{task} does not apply to at least one of the selected %{model}" +msgstr "%{task} 没有应用于任何所选 %{model}" -#: ../app/controllers/application_controller/buttons.rb:737 -#: ../app/controllers/miq_ae_tools_controller.rb:409 -msgid "Request is required" -msgstr "需要请求" +msgid "%{task} does not apply to at least one of the selected items" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:739 -msgid "At least one Role must be selected" -msgstr "必须至少选择一个角色" +msgid "%{task} does not apply to this item" +msgstr "" -#: ../app/controllers/application_controller/buttons.rb:913 -msgid "Buttons for \"%{record}\"" -msgstr "\"%{record}\" 按钮" +msgid "%{task} initiated for %{count} %{model} from the %{product} Database" +msgid_plural "%{task} initiated for %{count} %{models} from the %{product} Database" +msgstr[0] "为 %{product} 数据库的 %{count} %{model} 初始化 %{task} " -#: ../app/controllers/application_controller/buttons.rb:941 -msgid "Button Group \"%{name}\"" -msgstr "按钮组 \"%{name}\"" +msgid "%{task} initiated for %{count} Host from the %{product} Database" +msgid_plural "%{task} initiated for %{count} Hosts from the %{product} Database" +msgstr[0] "为 %{product} 数据库的 %{count} 主机初始化 %{task} " -#: ../app/controllers/application_controller/buttons.rb:982 -#: ../app/controllers/catalog_controller.rb:1720 -#: ../app/views/catalog/_form_basic_info.html.haml:85 -msgid "No Dialog" -msgstr "没有对话框" +msgid "%{task} initiated for %{count} Storage Manager from the %{product} Database" +msgid_plural "%{task} initiated for %{count} Storage Managers from the %{product} Database" +msgstr[0] "为 %{product} 数据库的 %{count} 存储管理者初始化 %{task} " -#: ../app/controllers/application_controller/buttons.rb:983 -#: ../app/controllers/miq_ae_customization_controller/custom_buttons.rb:101 -msgid "Button \"%{name}\"" -msgstr "按钮 \"%{name}\"" +msgid "%{task} initiated for %{count} provider" +msgid_plural "%{task} initiated for %{count} providers)" +msgstr[0] "" +msgstr[1] "" -#: ../app/controllers/application_controller/buttons.rb:1017 -msgid "Simulation unavailable: Required Class \"System/Process\" is missing" -msgstr "模拟不可用:缺失必需的类 \"System/Process\"" +msgid "%{task} initiated for %{number} %{model} from the %{product} Database" +msgid_plural "%{task} initiated for %{number} %{models} from the %{product} Database" +msgstr[0] "为 %{product} 数据库的 %{number} %{model} 初始化 %{task} " -#: ../app/controllers/application_controller/buttons.rb:1023 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:655 -#: ../app/controllers/ops_controller/ops_rbac.rb:453 -#: ../app/controllers/report_controller/dashboards.rb:435 -#: ../app/controllers/report_controller/menus.rb:402 -#: ../app/controllers/report_controller/menus.rb:446 -#: ../app/controllers/report_controller/reports/editor.rb:824 -msgid "No fields were selected to move up" -msgstr "没有选择要移至顶部的字段" +msgid "%{tenant_name} (%{group}): %{group_description}" +msgstr "%{tenant_name} (%{group}): %{group_description}" -#: ../app/controllers/application_controller/buttons.rb:1028 -#: ../app/controllers/ops_controller/ops_rbac.rb:458 -#: ../app/controllers/report_controller/dashboards.rb:442 -#: ../app/controllers/report_controller/menus.rb:407 -#: ../app/controllers/report_controller/menus.rb:451 -msgid "Select only one or consecutive fields to move up" -msgstr "选择上移的一个或连续的字段" +msgid "%{tenant_name} (All %{groups})" +msgstr "%{tenant_name}(所有 %{groups})" -#: ../app/controllers/application_controller/buttons.rb:1044 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:664 -#: ../app/controllers/ops_controller/ops_rbac.rb:475 -#: ../app/controllers/report_controller/dashboards.rb:459 -#: ../app/controllers/report_controller/menus.rb:423 -#: ../app/controllers/report_controller/menus.rb:467 -#: ../app/controllers/report_controller/reports/editor.rb:796 -msgid "No fields were selected to move down" -msgstr "没有选择要下移的字段" +msgid "%{time} Ago" +msgstr "%{time} 之前" -#: ../app/controllers/application_controller/buttons.rb:1049 -#: ../app/controllers/ops_controller/ops_rbac.rb:480 -#: ../app/controllers/report_controller/dashboards.rb:466 -#: ../app/controllers/report_controller/menus.rb:428 -#: ../app/controllers/report_controller/menus.rb:472 -msgid "Select only one or consecutive fields to move down" -msgstr "选择下移的一个或连续的字段" +msgid "%{title_for_hosts} & %{title_for_clusters}" +msgstr "%{title_for_hosts} & %{title_for_clusters}" -#: ../app/controllers/application_controller/ci_processing.rb:35 -msgid "One or more %{model} must be selected to Set Ownership" -msgstr "必须为 Set Ownership 选择一个或多个 %{model} " +msgid "%{title} '%{description}'" +msgstr "%{title} '%{description}'" -#: ../app/controllers/application_controller/ci_processing.rb:49 -#: ../app/controllers/application_controller/ci_processing.rb:77 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:34 -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:41 -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:32 -#: ../app/helpers/application_helper/toolbar/service_center.rb:27 -#: ../app/helpers/application_helper/toolbar/services_center.rb:33 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:50 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:50 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:51 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:60 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:41 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:33 -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:32 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:41 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:32 -msgid "Set Ownership" -msgstr "设置所有权" +msgid "%{title} Default VNC Port Range" +msgstr "%{title} 默认 VNC 端口范围" -#: ../app/controllers/application_controller/ci_processing.rb:128 -msgid "Set Ownership was cancelled by the user" -msgstr "用户取消了设置所有权" +msgid "%{title} Discovery" +msgstr "%{title} 发现" -#: ../app/controllers/application_controller/ci_processing.rb:163 -msgid "Ownership saved for selected %{object_types}" -msgstr "所选 %{object_types} 的所有者设置已保存" +msgid "%{title} Discovery returned: %{error_message}" +msgstr "%{title} 发现返回:%{error_message}" -#: ../app/controllers/application_controller/ci_processing.rb:194 -msgid "Set Retirement Date does not apply to selected %{model}" -msgstr "设置退订日期不适用于所选的 %{model}" +msgid "%{title} Discovery was cancelled by the user" +msgstr "%{title} 发现被用户取消" -#: ../app/controllers/application_controller/ci_processing.rb:202 -msgid "Retire VM or Instance" -msgstr "退订虚拟机或实例" +msgid "%{title} Guide" +msgstr "%{title} 向导" -#: ../app/controllers/application_controller/ci_processing.rb:205 -msgid "Retire Service" -msgstr "退订服务" +msgid "%{title} Main Tab" +msgstr "%{title} 主标签页" -#: ../app/controllers/application_controller/ci_processing.rb:208 -msgid "Retire Orchestration Stack" -msgstr "退订 编配栈" +msgid "%{type} Information" +msgstr "%{type} 信息" -#: ../app/controllers/application_controller/ci_processing.rb:214 -msgid "At least one %{model} must be selected for tagging" -msgstr "必须为标签选择至少一个 %{model}" +msgid "%{type} Storage Adapter: %{name}" +msgstr "%{type} 存储适配器:%{name}" -#: ../app/controllers/application_controller/ci_processing.rb:272 -msgid "Set/remove retirement date was cancelled by the user" -msgstr "用户取消了设置/删除退订日期" +msgid "%{typ} %{model}" +msgstr "%{typ} %{model}" -#: ../app/controllers/application_controller/ci_processing.rb:280 -msgid "Retirement date removed" -msgstr "退订日期已删除" +msgid "%{typ} %{model} \"%{name}\"" +msgstr "%{typ} %{model} \"%{name}\"" -#: ../app/controllers/application_controller/ci_processing.rb:282 -msgid "Retirement dates removed" -msgstr "退订日期已删除" +msgid "%{typ} Button Group \"%{name}\"" +msgstr "%{typ} 按钮组 \"%{name}\"" -#: ../app/controllers/application_controller/ci_processing.rb:290 -msgid "Retirement date set to %{date}" -msgstr "退订日期设置为 %{date}" +msgid "%{typ} Button Group \"Unassigned Buttons\"" +msgstr "%{typ} 按钮组 \"Unassigned Buttons\"" -#: ../app/controllers/application_controller/ci_processing.rb:292 -msgid "Retirement dates set to %{date}" -msgstr "退订日期设置为 %{date}" +msgid "%{typ} Button Groups" +msgstr "%{typ} 按钮组" -#: ../app/controllers/application_controller/ci_processing.rb:308 -msgid "Retire %{name}" -msgstr "退订 %{name}" +msgid "%{typ} Request was Submitted, you will be notified when your %{title} are ready" +msgstr "%{typ} 请求已提交,当 %{title} 准备好时您将收到通知。" -#: ../app/controllers/application_controller/ci_processing.rb:330 -msgid "Reconfigure Instance '%{name}'" -msgstr "重新配置实例 '%{name}'" +msgid "%{typ} Request was re-submitted, you will be notified when your %{title} are ready" +msgstr "%{typ} 请求已重新提交,当 %{title} 准备好时您将收到通知。" -#: ../app/controllers/application_controller/ci_processing.rb:370 -#: ../app/controllers/application_controller/ci_processing.rb:401 -#: ../app/controllers/application_controller/ci_processing.rb:407 -msgid "Unable to reconfigure %{instance} \"%{name}\": %{details}" -msgstr "无法重新配置 %{instance} \"%{name}\": %{details}" +msgid "%{typ} in %{model} \"%{name}\"" +msgstr "%{model} \"%{name}\" 里的 %{typ}" -#: ../app/controllers/application_controller/ci_processing.rb:387 -msgid "Reconfigure of %{model} \"%{name}\" was cancelled by the user" -msgstr "重新配置 %{model} \"%{name}\" 被用户取消" +msgid "%{typ} in %{model} \"Unassigned\"" +msgstr "%{model} 里的 %{typ} 是\"未分配的\"" -#: ../app/controllers/application_controller/ci_processing.rb:395 -msgid "Reconfiguring %{instance} \"%{name}\" from %{old_flavor} to %{new_flavor}" -msgstr "从 %{old_flavor} 重新配置 %{instance} \"%{name}\" 到%{new_flavor}" +msgid "%{val} missing for %{field}" +msgstr "%{field} 缺失了 %{val} " -#: ../app/controllers/application_controller/ci_processing.rb:452 -#: ../app/controllers/application_controller/ci_processing.rb:525 -#: ../app/controllers/application_controller/ci_processing.rb:531 -msgid "Unable to live migrate %{instance} \"%{name}\": %{details}" -msgstr "无法实时迁移 %{instance} \"%{name}\": %{details}" +msgid "%{vm_or_template} Policy Assignment" +msgstr "%{vm_or_template} 策略分配" -#: ../app/controllers/application_controller/ci_processing.rb:464 -msgid "Live Migrate Instance '%{name}'" -msgstr "实时迁移实例 '%{name}'" +msgid "%{vm_or_template} Policy Simulation" +msgstr "%{vm_or_template} 策略模拟" -#: ../app/controllers/application_controller/ci_processing.rb:503 -msgid "Live Migration of %{model} \"%{name}\" was cancelled by the user" -msgstr "实时迁移 %{model} \"%{name}\" 操作被用户删除" +msgid "%{volume} \"%{volume_name}\" is not attached to any %{instances}" +msgstr "%{volume} \"%{volume_name}\" 没有附加到任何 %{instances}" -#: ../app/controllers/application_controller/ci_processing.rb:521 -msgid "Live Migrating %{instance} \"%{name}\"" -msgstr "实时迁移 %{instance} \"%{name}\"" +msgid "'%{model}' Policy Assignment" +msgstr "'%{model}' 策略分配" -#: ../app/controllers/application_controller/ci_processing.rb:553 -msgid "Evacuate Instance '%{name}'" -msgstr "撤除实例 '%{name}'" +msgid "'%{name}' Drift Analysis" +msgstr "'%{name}' 偏差分析" -#: ../app/controllers/application_controller/ci_processing.rb:575 -#: ../app/controllers/application_controller/ci_processing.rb:611 -#: ../app/controllers/application_controller/ci_processing.rb:617 -msgid "Unable to evacuate %{instance} \"%{name}\": %{details}" -msgstr "无法撤销 %{instance} \"%{name}\": %{details}" +msgid "'%{task}' successfully initiated for %{items}" +msgstr "成功地为 %{items} 初始化了 '%{task}' " -#: ../app/controllers/application_controller/ci_processing.rb:589 -msgid "Evacuation of %{model} \"%{name}\" was cancelled by the user" -msgstr "用户取消撤除 %{model} \"%{name}\"" +msgid "'%{task}' successfully initiated for %{table}" +msgstr "成功地为 %{table} 初始化了 '%{task}' " -#: ../app/controllers/application_controller/ci_processing.rb:607 -msgid "Evacuating %{instance} \"%{name}\"" -msgstr "正在撤除 %{instance} \"%{name}\"" +msgid "'%{type}' Worker restart initiated successfully" +msgstr "'%{type}' 成功地初始化了工作节点重启" -#: ../app/controllers/application_controller/ci_processing.rb:675 -#: ../app/controllers/application_controller/ci_processing.rb:729 -msgid "Unable to associate Floating IP with Instance \"%{name}\": %{details}" -msgstr "无法关联浮动 IP 和实例 \"%{name}\":%{details}" +msgid "'Default' zone cannot be deleted" +msgstr "不能删除 'Default' 区" -#: ../app/controllers/application_controller/ci_processing.rb:686 -msgid "Associate Floating IP with Instance '%{name}'" -msgstr "关联浮动 IP 和实例 '%{name}'" +msgid "'Unassigned Buttons Group' can not be deleted" +msgstr "'Unassigned Buttons Group' 不能被删除" -#: ../app/controllers/application_controller/ci_processing.rb:712 -msgid "Association of Floating IP with Instance \"%{name}\" was cancelled by the user" -msgstr "用户取消了关联浮动 IP 和实例 \"%{name}\"" +msgid "'Unassigned Buttons Group' can not be edited" +msgstr "'Unassigned Buttons Group' 不能被编辑" -#: ../app/controllers/application_controller/ci_processing.rb:719 -msgid "Associating Floating IP %{address} with Instance \"%{name}\"" -msgstr "关联浮动 IP %{address} 和实例 \"%{name}\"" +msgid "(%{number} bytes)" +msgstr "(%{number} 字节)" -#: ../app/controllers/application_controller/ci_processing.rb:723 -msgid "Unable to associate Floating IP %{address} with Instance \"%{name}\": %{details}" -msgstr "无法关联浮动 IP %{address} 和实例 \"%{name}\":%{details}" +msgid "(%{value}) * Overallocated" +msgstr "(%{value}) * 过度分配" -#: ../app/controllers/application_controller/ci_processing.rb:767 -#: ../app/controllers/application_controller/ci_processing.rb:823 -msgid "Unable to disassociate Floating IP from Instance \"%{name}\": %{details}" -msgstr "无法取消浮动 IP 和实例 \"%{name}\" 的关联:%{details}" +msgid "(All)" +msgstr "(所有)" -#: ../app/controllers/application_controller/ci_processing.rb:778 -msgid "Disssociate Floating IP from Instance '%{name}'" -msgstr "取消浮动 IP 和实例 '%{name}' 的关联" +msgid "(Check All)" +msgstr "(勾选全部)" -#: ../app/controllers/application_controller/ci_processing.rb:806 -msgid "" -"Disassociation of Floating IP from Instance \"%{name}\" was cancelled by the use" -"r" -msgstr "用户取消了取消关联浮动 IP 和实例 \"%{name}\"" +msgid "(Checked default filters will be visible.)" +msgstr "(勾选的默认过滤器将变成可见的)" -#: ../app/controllers/application_controller/ci_processing.rb:813 -msgid "Disassociating Floating IP %{address} from Instance \"%{name}\"" -msgstr "取消浮动 IP %{address} 和实例 \"%{name}\" 的关联" +msgid "(Click to remove)" +msgstr "(点击进行删除)" -#: ../app/controllers/application_controller/ci_processing.rb:817 -msgid "" -"Unable to disassociate Floating IP %{address} from Instance \"%{name}\": %{detai" -"ls}" -msgstr "无法取消浮动 IP %{address} 和实例 \"%{name}\" 的关联:%{details}" +msgid "(Default: %{email_from})" +msgstr "(默认值:%{email_from})" -#: ../app/controllers/application_controller/ci_processing.rb:848 -msgid "One or more %{model} must be selected to Right-Size Recommendations" -msgstr "必须为 Right-Size Recommendations 选择一个或多个 %{model} " +msgid "(Enter the value between 4 - 65636 MB)" +msgstr "(输入 4 - 65636 MB 之间的值)" -#: ../app/controllers/application_controller/ci_processing.rb:855 -msgid "Right-Size Recommendations does not apply to selected %{model}" -msgstr "推荐的适当大小不适用于所选的 %{model}" +msgid "(Look up %{authentication_mode_name} Groups)" +msgstr "(查找 %{authentication_mode_name} Groups)" -#: ../app/controllers/application_controller/ci_processing.rb:880 -#: ../app/controllers/catalog_controller.rb:874 -#: ../app/views/catalog/_sandt_tree_show.html.haml:145 -msgid "Reconfigure" -msgstr "重新配置" +msgid "(MB) memory" +msgstr "(MB) 内存" -#: ../app/controllers/application_controller/ci_processing.rb:900 -msgid "VM Reconfigure Request was cancelled by the user" -msgstr "用户取消了虚拟机的重配置请求" +msgid "(current)" +msgstr " (当前)" -#: ../app/controllers/application_controller/ci_processing.rb:956 -msgid "VM Reconfigure Request was saved" -msgstr "虚拟机的重配置请求已保存" +msgid "(leave blank for default)" +msgstr "(默认留空)" -#: ../app/controllers/application_controller/ci_processing.rb:1155 -#: ../app/controllers/cim_instance_controller.rb:135 -#: ../app/controllers/host_controller.rb:115 -#: ../app/controllers/host_controller.rb:122 -#: ../app/controllers/host_controller.rb:129 -#: ../app/controllers/host_controller.rb:136 -#: ../app/controllers/host_controller.rb:143 -#: ../app/controllers/storage_controller.rb:101 -#: ../app/controllers/storage_controller.rb:108 -#: ../app/controllers/storage_controller.rb:115 -msgid "%{name} (All %{tables})" -msgstr "%{name}(所有 %{tables})" +msgid "(missing)" +msgstr "(缺失的)" -#: ../app/controllers/application_controller/ci_processing.rb:1191 -#: ../app/controllers/application_controller/ci_processing.rb:1203 -msgid "%{name} (Packages)" -msgstr "%{name}(软件包)" +msgid "(optional) the address of an alternate service" +msgstr "(可选)替代服务的地址" -#: ../app/controllers/application_controller/ci_processing.rb:1194 -#: ../app/controllers/application_controller/ci_processing.rb:1206 -msgid "%{name} (Applications)" -msgstr "%{name}(应用程序)" +msgid "(optional) your HTTP proxy information" +msgstr "(可选)您的 HTTP 代理信息" -#: ../app/controllers/application_controller/ci_processing.rb:1227 -#: ../app/controllers/application_controller/ci_processing.rb:1233 -msgid "%{name} (Patches)" -msgstr "%{name}(补丁)" +msgid "* 'Name' and 'Single Value' fields cannot be edited after adding a category." +msgstr "* 在添加类别后 'Name' 和 'Single Value' 字段不能被编辑。" -#: ../app/controllers/application_controller/ci_processing.rb:1253 -#: ../app/controllers/application_controller/ci_processing.rb:1260 -msgid "%{name} (Groups)" -msgstr "%{name}(组)" +msgid "* Base the report on" +msgstr "* 报表基于" -#: ../app/controllers/application_controller/ci_processing.rb:1280 -#: ../app/controllers/application_controller/ci_processing.rb:1287 -msgid "%{name} (Users)" -msgstr "%{name}(用户)" +msgid "* Cannot be changed while this Alert belongs to an Alert Profile." +msgstr "* 当这个 Alert 属于某个 警告配置集时无法修改它。" -#: ../app/controllers/application_controller/ci_processing.rb:1308 -#: ../app/controllers/application_controller/ci_processing.rb:1314 -msgid "%{name} (Hosts)" -msgstr "%{name}(主机)" +msgid "* Caution: Changing these fields will clear all selected values below them!" +msgstr "* 警告:修改这些字段将清除它们下面选择的所有值!" -#: ../app/controllers/application_controller/ci_processing.rb:1328 -msgid "%{title} Discovery was cancelled by the user" -msgstr "%{title} 发现被用户取消" +msgid "* Caution: The value Range end will not be included in the tier." +msgstr "* 警告:值范围的结尾没有包含在这层里" -#: ../app/controllers/application_controller/ci_processing.rb:1381 -#: ../app/controllers/application_controller/ci_processing.rb:1453 -msgid "%{title} Discovery" -msgstr "%{title} 发现" +msgid "* Changing the Time Zone will reset the Starting Date and Time fields below" +msgstr "* 修改时区会重置下面的 Starting Date 和 Time 字段" -#: ../app/controllers/application_controller/ci_processing.rb:1391 -msgid "Client ID, Client Key, Azure Tenant ID and Subscription ID are required" -msgstr "客户 ID、客户密钥和 Azure 订阅 ID 是必需的" +msgid "* Changing the Zone will reset all of this Server's priorities to secondary." +msgstr "* 修改区将重置这个服务器的所有优先级为次要等级。" -#: ../app/controllers/application_controller/ci_processing.rb:1400 -#: ../app/controllers/pxe_controller/pxe_servers.rb:305 -msgid "Username is required" -msgstr "需要用户名" +msgid "* Checking this box will remove this setting from all other PXE Images on this PXE Server" +msgstr "* 选中这个复选框将将删除这个 PXE 服务器上所有其它的 PXE 镜像" -#: ../app/controllers/application_controller/ci_processing.rb:1405 -#: ../app/controllers/ems_common.rb:696 -#: ../app/controllers/ops_controller/settings/ldap.rb:171 -#: ../app/controllers/ops_controller/settings/zones.rb:123 -#: ../app/controllers/storage_manager_controller.rb:243 -msgid "Username must be entered if Password is entered" -msgstr "如果密码已输入,用户名也必须输入。" +msgid "* Daily charts only include days for which all 24 hours of data has been collected." +msgstr "* Daily 图表只包含收集全部 24 小时数据的那些天数" -#: ../app/controllers/application_controller/ci_processing.rb:1410 -#: ../app/controllers/ems_common.rb:699 -#: ../app/controllers/ops_controller/ops_rbac.rb:999 -#: ../app/controllers/pxe_controller/pxe_servers.rb:310 -msgid "Password/Verify Password do not match" -msgstr "Password/Verify Password 不匹配" +msgid "* Dashboard name cannot be changed" +msgstr "* 仪表板名称不能被修改" -#: ../app/controllers/application_controller/ci_processing.rb:1417 -msgid "At least 1 item must be selected for discovery" -msgstr "必须为发现至少选择一个项目" +msgid "* Dates/Times on this page are based on time zone: %{time_zone}." +msgstr "* 这个页面上的日期/时间是基于时区 %{time_zone} 的。" -#: ../app/controllers/application_controller/ci_processing.rb:1440 -msgid "%{title} Discovery returned: %{error_message}" -msgstr "%{title} 发现返回:%{error_message}" +msgid "* Disk space not supported for OpenStack providers" +msgstr "* 磁盘空间不支持 OpenStack 供应商" -#: ../app/controllers/application_controller/ci_processing.rb:1447 -msgid "%{model}: Discovery successfully initiated" -msgstr "%{model}:成功启动发现" +msgid "* Enter Policy Simulation options on the left and press Submit" +msgstr "* 在左侧输入策略模拟选项并按“提交”" -#: ../app/controllers/application_controller/ci_processing.rb:1460 -#: ../app/helpers/application_helper.rb:1527 -#: ../app/presenters/menu/default_menu.rb:61 -msgid "Hosts / Nodes" -msgstr "主机/节点" +msgid "* Enter a reason for this approval and press Submit" +msgstr "* 输入这次批准的原因并按“提交”" -#: ../app/controllers/application_controller/ci_processing.rb:1540 -msgid "%{model} \"%{name}\": Error during '%{task}': %{error_msg}" -msgstr "%{model} \"%{name}\":'%{task}' 过程出错:%{error_msg}" +msgid "* Enter a reason for this denial and press Submit" +msgstr "* 输入这次拒绝的原因并按“提交”" -#: ../app/controllers/application_controller/ci_processing.rb:1544 -#: ../app/controllers/application_controller/ci_processing.rb:2238 -#: ../app/controllers/ems_common.rb:1038 -#: ../app/controllers/miq_request_controller.rb:571 -#: ../app/controllers/ontap_file_share_controller.rb:70 -#: ../app/controllers/storage_manager_controller.rb:463 -msgid "%{model} \"%{name}\": %{task} successfully initiated" -msgstr "已成功初始化 %{model} \"%{name}\": %{task} " +msgid "* Fields are read only for default Widgets" +msgstr "* 字段对于默认 Widget 是只读的" -#: ../app/controllers/application_controller/ci_processing.rb:1578 -#: ../app/controllers/application_controller/ci_processing.rb:1586 -#: ../app/controllers/miq_ae_class_controller.rb:2592 -msgid "%{model} \"%{name}\": Error during delete: %{error_msg}" -msgstr "%{model} \"%{name}\":删除过程出错:%{error_msg}" +msgid "* If all Conditions are removed from a Policy, it will be unconditional and always evaluate to true." +msgstr "* 如果从策略里删除所有条件,它将是无条件的且总是为 true。" -#: ../app/controllers/application_controller/ci_processing.rb:1663 -msgid "One or more %{model} must be selected to Reconfigure" -msgstr "必须为重配置选择一个或多个 %{model} " +msgid "* Information shown is based on available trend data from %{start_time} to %{end_time} in the %{timezone} time zone." +msgstr "* 显示的信息基于 %{timezone} 时区里 %{start_time} 到 %{end_time} 的可用的趋势数据。" -#: ../app/controllers/application_controller/ci_processing.rb:1669 -msgid "Reconfigure does not apply because you selected at least one %{model}" -msgstr "因为选择了最少一个 %{model},重新配置无效" +msgid "* Information shown is based on available trend data going back %{weeks}." +msgstr "* 显示的信息基于回退 %{weeks} 的可用的趋势数据。" -#: ../app/controllers/application_controller/ci_processing.rb:1675 -msgid "" -"Reconfigure does not apply because you selected at least one un-reconfigurable" -" VM" -msgstr "因为选择了至少一个不可重新配置的虚拟机,重新配置无效" +msgid "* Items in" +msgstr "* 项" -#: ../app/controllers/application_controller/ci_processing.rb:1843 -msgid "Retire does not apply to selected %{model}" -msgstr "退订不适用于所选的 %{model}" +msgid "* Items in red italics do not change the outcome of the scope or expression." +msgstr "* red italics 里的项没有修改作用域或表达式的结果" -#: ../app/controllers/application_controller/ci_processing.rb:1855 -#: ../app/controllers/application_controller/ci_processing.rb:2251 -#: ../app/controllers/application_controller/ci_processing.rb:2542 -#: ../app/controllers/application_controller/ci_processing.rb:2630 -#: ../app/controllers/application_controller/ci_processing.rb:2698 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:1357 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:62 -#: ../app/controllers/mixins/containers_common_mixin.rb:179 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:380 -#: ../app/controllers/provider_foreman_controller.rb:84 -msgid "No %{model} were selected for %{task}" -msgstr "没有为 %{task} 选择 %{model}" +msgid "* No Actions are configured for this Event." +msgstr "* 没有为这个事件配置动作。" -#: ../app/controllers/application_controller/ci_processing.rb:1868 -#: ../app/controllers/application_controller/ci_processing.rb:1941 -#: ../app/controllers/application_controller/ci_processing.rb:2263 -#: ../app/controllers/application_controller/ci_processing.rb:2554 -#: ../app/controllers/application_controller/ci_processing.rb:2642 -#: ../app/controllers/application_controller/ci_processing.rb:2713 -#: ../app/controllers/application_controller/ci_processing.rb:2746 -#: ../app/controllers/chargeback_controller.rb:219 -#: ../app/controllers/ems_common.rb:642 ../app/controllers/ems_common.rb:1065 -#: ../app/controllers/ems_common.rb:1100 ../app/controllers/ems_common.rb:1141 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:1365 -#: ../app/controllers/miq_ae_customization_controller/old_dialogs.rb:83 -#: ../app/controllers/miq_policy_controller.rb:239 -msgid "%{record} no longer exists" -msgstr "%{record} 不再存在" +msgid "* No Reports available." +msgstr "* 没有可用的报表。" -#: ../app/controllers/application_controller/ci_processing.rb:1926 -msgid "Error during '%{task}': %{error_message}" -msgstr "在 '%{task}'过程中出错:%{error_message}" +msgid "* Only a single value can be assigned from these Tag Categories" +msgstr "* 这些标签类别(Tag Categories)只能分配单个值" -#: ../app/controllers/application_controller/ci_processing.rb:1928 -msgid "%{task} initiated for %{number} %{model} from the %{product} Database" -msgid_plural "%{task} initiated for %{number} %{models} from the %{product} Database" -msgstr[0] "为 %{product} 数据库的 %{number} %{model} 初始化 %{task} " +msgid "* Only a single value can be assigned from these categories" +msgstr "* 这些标签类别(Tag Categories)只能分配单个值" -#: ../app/controllers/application_controller/ci_processing.rb:1950 -msgid "No providers were selected for %{task}" -msgstr "没有为 %{task} 选择供应商" +msgid "* Performance Interval" +msgstr "* 性能间隔" -#: ../app/controllers/application_controller/ci_processing.rb:1964 -#: ../app/controllers/storage_manager_controller.rb:417 -msgid "Error during '%{task}': %{message}" -msgstr "在 '%{task}' 过程中出错:%{message}" +msgid "* Policy Profile is only applied to some of the items below." +msgstr "* 策略配置集(Policy Profile)只适用于下面的某些项目。" -#: ../app/controllers/application_controller/ci_processing.rb:1966 -msgid "%{task} initiated for %{count} provider (%{controller})" -msgid_plural "%{task} initiated for %{count} providers (%{controller})" -msgstr[0] "为 %{count} 供应商 (%{controller}) 初始化 %{task} " +msgid "* Primary Server Roles shown as %{bold} text." +msgstr "* 主要服务器角色(Primary Server Role)显示为 %{bold} 文本。" -#: ../app/controllers/application_controller/ci_processing.rb:2157 -msgid "At least 1 %{model} must be selected for Policy Simulation" -msgstr "必须为策略模拟至少选择一个 %{model}" +msgid "* Recommendations are subject to minimum of CPU: %{cpu} and Memory: %{memory}." +msgstr " * 推荐值受 CPU %{cpu} 和内存 %{memory} 的最小值影响。" -#: ../app/controllers/application_controller/ci_processing.rb:2184 -#: ../app/helpers/application_helper.rb:1538 -#: ../app/helpers/application_helper.rb:1551 -msgid "Cluster" -msgstr "集群" +msgid "* Report is not owned by your group so it cannot be removed" +msgstr "* 您的组不拥有报表,所以它无法被删除。" -#: ../app/controllers/application_controller/ci_processing.rb:2201 -#: ../app/controllers/application_controller/ci_processing.rb:2232 -#: ../app/controllers/application_controller/ci_processing.rb:2602 -#: ../app/controllers/catalog_controller.rb:631 -#: ../app/controllers/ems_common.rb:1031 -msgid "%{model} \"%{name}\": Error during '%{task}': %{error_message}" -msgstr "%{model} \"%{name}\": '%{task}' 过程出错:%{error_message}" +msgid "* Requirements: CSV formatted file." +msgstr "* 要求:CSV 格式的文件。" -#: ../app/controllers/application_controller/ci_processing.rb:2207 -msgid "%{model}: %{task} successfully initiated" -msgstr "%{model}: %{task} 已成功初始化" +msgid "* Requirements: File-type - PNG; Dimensions - 1280x1000." +msgstr "* 要求: 文件类型 - PNG;尺寸:1280x1000。" -#: ../app/controllers/application_controller/ci_processing.rb:2290 -#: ../app/controllers/application_controller/ci_processing.rb:2478 -#: ../app/controllers/application_controller/ci_processing.rb:2669 -#: ../app/helpers/application_helper/tasks.rb:14 -#: ../app/views/ops/_schedule_show.html.haml:49 -msgid "Analysis" -msgstr "分析" +msgid "* Requirements: File-type - PNG; Dimensions - 350x70." +msgstr "* 要求: 文件类型 - PNG;尺寸:350x70。" -#: ../app/controllers/application_controller/ci_processing.rb:2298 -#: ../app/controllers/miq_request_controller.rb:560 -#: ../app/controllers/miq_task_controller.rb:211 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:514 -#: ../app/controllers/storage_manager_controller.rb:445 -msgid "%{model} \"%{name}\": Error during '%{task}': %{message}" -msgstr "%{model} \"%{name}\":'%{task}' 过程出错:%{message}" +msgid "* Requires image file in .png or .jpg format" +msgstr "* 要求图片文件格式为 .png 或 .jpg" -#: ../app/controllers/application_controller/ci_processing.rb:2311 -#: ../app/controllers/infra_networking_controller.rb:579 -#: ../app/helpers/application_helper.rb:1523 -#: ../app/helpers/application_helper.rb:1547 -#: ../app/views/configuration/_ui_1.html.haml:25 -#: ../app/views/host/_form.html.haml:166 -#: ../app/views/host_aggregate/add_host_select.html.haml:16 -#: ../app/views/host_aggregate/remove_host_select.html.haml:16 -#: ../app/views/ops/_settings_replication_tab.html.haml:138 -#: ../app/views/ops/_settings_server_tab.html.haml:386 -msgid "Host" -msgid_plural "Hosts" -msgstr[0] "主机" +msgid "* Saving a blank date will remove all retirement dates" +msgstr "* 保存空日期将删除所有过时的日期" -#: ../app/controllers/application_controller/ci_processing.rb:2318 -msgid "%{task} initiated for %{count} Host from the %{product} Database" -msgid_plural "%{task} initiated for %{count} Hosts from the %{product} Database" -msgstr[0] "为 %{product} 数据库的 %{count} 主机初始化 %{task} " +msgid "* Select one or more consecutive fields to move up or down." +msgstr "* 选择一个或多个连续字段来上移或下移。" -#: ../app/controllers/application_controller/ci_processing.rb:2347 -#: ../app/controllers/application_controller/ci_processing.rb:2358 -#: ../app/controllers/application_controller/ci_processing.rb:2366 -msgid "\"%{task}\": not supported for %{hostname}" -msgstr "\"%{task}\":%{hostname} 不支持" +msgid "* Select one or more consecutive groups to move up or down." +msgstr "* 选择一个或多个连续组来上移或下移。" -#: ../app/controllers/application_controller/ci_processing.rb:2378 -#: ../app/controllers/application_controller/ci_processing.rb:2383 -msgid "\"%{record}\": Scheduling is %{status} now." -msgstr "\"%{record}\": 现在调度状态是 %{status} 。" +msgid "* Set in Time Profile" +msgstr "* 设置 Time 配置集" -#: ../app/controllers/application_controller/ci_processing.rb:2385 -msgid "\"%{record}\": %{task} invalid" -msgstr "\"%{record}\": %{task} 无效" +msgid "* Some charts my not produce desired results with a single sort field" +msgstr "* 某些图表用单一排序字段可能不会产生想要的结果" -#: ../app/controllers/application_controller/ci_processing.rb:2396 -msgid "" -"\"%{task}\": not available for %{hostname}. %{hostname}'s provision state must b" -"e in \"available\", \"adoptfail\", \"cleanfail\", or \"inspectfail\"" -msgstr "" -"\"%{task}\":不适用于 %{hostname}。%{hostname} 的设置状态必须为 \"available\"、\"adoptfail\"、\"clean" -"fail\" 或者 \"inspectfail\"" +msgid "* Specified NTP settings apply to this zone only and are not global." +msgstr "* 指定的 NTP 设置只适用于这个区而不是全局。" -#: ../app/controllers/application_controller/ci_processing.rb:2405 -#: ../app/controllers/application_controller/ci_processing.rb:2414 -msgid "" -"\"%{task}\": not available for %{hostname}. %{hostname}'s provision state needs " -"to be in \"manageable\"" -msgstr "\"%{task}\":不适用于 %{hostname}。%{hostname} 的设置状态需为 \"manageable\"" +msgid "* Style \"If\" conditions are evaluated top to bottom for each column" +msgstr "* 对于每列,风格 \"If\" 条件都是从上至下进行评估的。" -#: ../app/controllers/application_controller/ci_processing.rb:2423 -msgid "\"%{task}\": not available for %{hostname}" -msgstr "\"%{task}\":%{hostname} 中不可用" +msgid ", Connect at Power On = No" +msgstr ", Connect at Power On = No" -#: ../app/controllers/application_controller/ci_processing.rb:2472 -#: ../app/controllers/application_controller/ci_processing.rb:2663 -#: ../app/controllers/provider_foreman_controller.rb:107 -#: ../app/views/ems_container/_show_ad_hoc_metrics.html.haml:163 -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:92 -#: ../app/views/ops/_settings_workers_tab.html.haml:418 -#: ../app/views/shared/_topology_header.html.haml:19 -#: ../app/views/shared/_topology_header_toolbar.html.haml:17 -#: ../app/views/shared/dialogs/_dialog_field_check_box.html.haml:14 -#: ../app/views/shared/dialogs/_dialog_field_date_and_date_time_control.html.haml:45 -#: ../app/views/shared/dialogs/_dialog_field_drop_down_list.html.haml:33 -#: ../app/views/shared/dialogs/_dialog_field_radio_button.html.haml:41 -#: ../app/views/shared/dialogs/_dialog_field_text_area_box.html.haml:18 -#: ../app/views/shared/dialogs/_dialog_field_text_box.html.haml:19 -msgid "Refresh" -msgstr "刷新" +msgid ", Connect at Power On = Yes" +msgstr ", Connect at Power On = Yes" -#: ../app/controllers/application_controller/ci_processing.rb:2484 -msgid "Toggle Maintenance" -msgstr "切换维护模式" +msgid ", Mode: %{mode}" +msgstr ", 模式: %{mode}" -#: ../app/controllers/application_controller/ci_processing.rb:2490 -msgid "Toggle Scheduling for Cloud Service" -msgstr "为云服务切换调度" +msgid ", Percent Used Provisioned Space: %{number}%%" +msgstr ", 已使用的置备空间比例: %{number}%%" -#: ../app/controllers/application_controller/ci_processing.rb:2495 -#: ../app/views/ops/_schedule_show.html.haml:38 -msgid "Compliance Check" -msgstr "合规性检查" +msgid ", Size on disk: %{number}" +msgstr ", 磁盘大小: %{number}" -#: ../app/controllers/application_controller/ci_processing.rb:2500 -msgid "Analyze and Compliance Check" -msgstr "分析和合规性检查" +msgid ", Size: %{number}" +msgstr ", 大小: %{number}" -#: ../app/controllers/application_controller/ci_processing.rb:2506 -msgid "Manageable" -msgstr "可管理" +msgid "-- OR --" +msgstr "-- 或 --" -#: ../app/controllers/application_controller/ci_processing.rb:2512 -msgid "Introspect" -msgstr "检视" +msgid "1 - Select a Reference VM." +msgstr "1 - 选择参考虚拟机。" -#: ../app/controllers/application_controller/ci_processing.rb:2518 -msgid "Provide" -msgstr "提供" +msgid "1 Day" +msgstr "一天" -#: ../app/controllers/application_controller/ci_processing.rb:2523 -#: ../app/controllers/middleware_server_controller.rb:46 -#: ../app/controllers/middleware_server_controller.rb:81 -#: ../app/helpers/application_helper/toolbar/host_center.rb:187 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:204 -#: ../app/helpers/application_helper/toolbar/middleware_deployment_center.rb:30 -#: ../app/helpers/application_helper/toolbar/middleware_deployments_center.rb:36 -msgid "Restart" -msgstr "重启" +msgid "1 Day Ago" +msgstr "一天前" -#: ../app/controllers/application_controller/ci_processing.rb:2524 -#: ../app/helpers/application_helper/toolbar/host_center.rb:197 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:217 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:235 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:198 -#: ../app/views/catalog/_form_resources_info.html.haml:119 -msgid "Power On" -msgstr "通电" +msgid "1 Hour" +msgstr "1 小时" -#: ../app/controllers/application_controller/ci_processing.rb:2525 -#: ../app/helpers/application_helper/toolbar/host_center.rb:206 -#: ../app/helpers/application_helper/toolbar/hosts_center.rb:227 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:245 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:207 -#: ../app/views/catalog/_form_resources_info.html.haml:120 -msgid "Power Off" -msgstr "断电" +msgid "1 Minute" +msgstr "1 分钟" -#: ../app/controllers/application_controller/ci_processing.rb:2526 -#: ../app/helpers/application_helper/toolbar/host_center.rb:151 -msgid "Enter Maintenance Mode" -msgstr "进入维护模式" +msgid "1 Week" +msgstr "一周" -#: ../app/controllers/application_controller/ci_processing.rb:2527 -#: ../app/helpers/application_helper/toolbar/host_center.rb:160 -msgid "Exit Maintenance Mode" -msgstr "退出维护模式" +msgid "1 Week Ago" +msgstr "一周以前" -#: ../app/controllers/application_controller/ci_processing.rb:2528 -msgid "Shutdown to Standby Mode" -msgstr "关闭到待机模式" +msgid "1 Week before retirement" +msgstr "在退订前一周" -#: ../app/controllers/application_controller/ci_processing.rb:2579 -#: ../app/controllers/miq_ae_class_controller.rb:80 -#: ../app/controllers/miq_ae_class_controller.rb:88 -#: ../app/controllers/miq_ae_class_controller.rb:176 -#: ../app/controllers/miq_ae_class_controller.rb:1600 -#: ../app/controllers/miq_ae_class_controller.rb:2557 -#: ../app/presenters/tree_builder_ae_class.rb:17 -#: ../app/presenters/tree_builder_automate.rb:25 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:65 -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:63 -#: ../app/views/shared/views/_prov_dialog.html.haml:143 -msgid "Datastore" -msgstr "数据存储区" +msgid "1-2" +msgstr "1-2" -#: ../app/controllers/application_controller/ci_processing.rb:2590 -msgid "Delete initiated for Datastore from the %{product} Database" -msgid_plural "Delete initiated for Datastores from the %{product} Database" -msgstr[0] "从 %{product} 数据库中删除数据存储初始化。" +msgid "10 Hours Ago" +msgstr "10小时前" -#: ../app/controllers/application_controller/ci_processing.rb:2609 -msgid "\"%{record}\": Refresh successfully initiated" -msgstr "\"%{record}\": 最初成功刷新" +msgid "10 Minutes" +msgstr "10 分钟" -#: ../app/controllers/application_controller/ci_processing.rb:2626 -msgid "Smartstate Analysis" -msgstr "Smartstate 分析" +msgid "10 items" +msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2706 -msgid "\"%{datastore_name}\": cannot be removed, has vms or hosts" -msgstr "\"%{datastore_name}\":无法被删除,有虚拟机或主机" +msgid "10-11" +msgstr "10-11" -#: ../app/controllers/application_controller/ci_processing.rb:2719 -#: ../app/controllers/application_controller/ci_processing.rb:2752 -#: ../app/controllers/catalog_controller.rb:274 -#: ../app/controllers/ems_common.rb:1071 -msgid "The selected %{record} was deleted" -msgstr "所选的 %{record} 已被删除" +msgid "100 items" +msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2734 -#: ../app/controllers/catalog_controller.rb:280 -#: ../app/controllers/catalog_controller.rb:1195 -#: ../app/controllers/miq_request_controller.rb:525 -#: ../app/controllers/miq_task_controller.rb:130 -#: ../app/controllers/miq_task_controller.rb:155 -#: ../app/controllers/ops_controller/settings/ldap.rb:111 -#: ../app/controllers/ops_controller/settings/schedules.rb:197 -#: ../app/controllers/service_controller.rb:168 -msgid "No %{model} were selected for deletion" -msgstr "没有选择要删除的 %{model}" +msgid "1000 items" +msgstr "" -#: ../app/controllers/application_controller/ci_processing.rb:2738 -#: ../app/controllers/ems_common.rb:1018 ../app/controllers/ems_common.rb:1057 -msgid "Delete initiated for %{count} %{model} from the %{product} Database" -msgid_plural "Delete initiated for %{count} %{models} from the %{product} Database" -msgstr[0] "为 %{product} 数据库的 %{count} %{model} 初始化删除" +msgid "11 Hours Ago" +msgstr "11小时前" -#: ../app/controllers/application_controller/compare.rb:50 -#: ../app/controllers/application_controller/compare.rb:108 -msgid "Compare %{name}" -msgstr "比较 %{name}" +msgid "11-12" +msgstr "11-12" -#: ../app/controllers/application_controller/compare.rb:416 -msgid "%{name} Compare Report (* = Value does not match base)" -msgstr "%{name} 对比报告(* = Value 与基准不映射)" +msgid "12 Hours" +msgstr "12 小时" -#: ../app/controllers/application_controller/compare.rb:420 -msgid "%{name} '%{vm_name}' Drift Report" -msgstr "%{name} '%{vm_name}' Drift 报告" +msgid "12 Hours Ago" +msgstr "12小时前" -#: ../app/controllers/application_controller/compare.rb:564 -#: ../app/controllers/application_controller/compare.rb:592 -msgid "'%{name}' Drift Analysis" -msgstr "'%{name}' 偏差分析" +msgid "12-1" +msgstr "12-1" -#: ../app/controllers/application_controller/compare.rb:753 -#: ../app/controllers/vm_common.rb:1620 -#: ../app/helpers/ems_cluster_helper/textual_summary.rb:190 -#: ../app/helpers/host_helper/textual_summary.rb:288 -#: ../app/helpers/textual_mixins/textual_drift.rb:4 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:86 -#: ../app/views/layouts/listnav/_host.html.haml:144 -msgid "Drift History" -msgid_plural "Drift History" -msgstr[0] "偏差历史" +msgid "13 Hours Ago" +msgstr "13小时前" -#: ../app/controllers/application_controller/compare.rb:869 -#: ../app/controllers/vm_common.rb:244 ../app/controllers/vm_controller.rb:22 -#: ../app/helpers/ems_infra_helper/textual_summary.rb:149 -#: ../app/presenters/menu/default_menu.rb:68 -msgid "Virtual Machines" -msgstr "虚拟机" +msgid "14 Days Ago" +msgstr "14 天前" -#: ../app/controllers/application_controller/compare.rb:871 -msgid "VM Templates" -msgstr "虚拟机模板" +msgid "14 Hours Ago" +msgstr "14小时前" -#: ../app/controllers/application_controller/compare.rb:876 -msgid "At least 2 %{model} must be selected for Compare" -msgstr "必须为比较选择至少两个 %{model}" +msgid "15 Hours Ago" +msgstr "15小时前" -#: ../app/controllers/application_controller/compare.rb:882 -msgid "No more than 32 %{model} can be selected for Compare" -msgstr "可为 Compare 选择不多于 32 个 %{model} " +msgid "15 Minutes" +msgstr "15 分钟" -#: ../app/controllers/application_controller/compare.rb:925 -msgid "At least 2 Analyses must be selected for Drift" -msgstr "必须为 Drift 选择至少两个分析" +msgid "16 Hours Ago" +msgstr "16小时前" -#: ../app/controllers/application_controller/compare.rb:929 -msgid "No more than 10 Analyses can be selected for Drift" -msgstr "不能为 Drift 选择多于 10 分析" +msgid "17 Hours Ago" +msgstr "17小时前" -#: ../app/controllers/application_controller/compare.rb:993 -msgid "All Sections" -msgstr "所有部分" +msgid "18 Hours Ago" +msgstr "18小时前" -#: ../app/controllers/application_controller/compare.rb:999 -#: ../app/controllers/application_controller/compare.rb:1002 -#: ../app/controllers/application_controller/compare.rb:1043 -msgid "Same as previous" -msgstr "和以前的相同" +msgid "19 Hours Ago" +msgstr "19小时前" -#: ../app/controllers/application_controller/compare.rb:1004 -#: ../app/controllers/application_controller/compare.rb:1045 -msgid "Changed from previous" -msgstr "上一个中的修改" +msgid "2 - Specify the VM Options to define the source of the values used for the plan calculations." +msgstr "2 - 指定虚拟机选项来定义用于计划计算的值的来源。" -#: ../app/controllers/application_controller/compare.rb:1037 -msgid "Starting values" -msgstr "开始值" +msgid "2 Days" +msgstr "两天" -#: ../app/controllers/application_controller/compare.rb:1309 -#: ../app/controllers/application_controller/compare.rb:1933 -msgid "No Value Found" -msgstr "未找到值" +msgid "2 Days Ago" +msgstr "两天前" -#: ../app/controllers/application_controller/compare.rb:1471 -#: ../app/views/shared/_compare_header_expanded.html.haml:2 -msgid "%{name} is the base" -msgstr "%{name} 是基准" +msgid "2 Hours" +msgstr "2 小时" -#: ../app/controllers/application_controller/compare.rb:1475 -#: ../app/views/shared/_compare_header_expanded.html.haml:11 -msgid "Make %{name} the base" -msgstr "使 %{name} 作为基础" +msgid "2 Hours Ago" +msgstr "2 小时前" -#: ../app/controllers/application_controller/compare.rb:1506 -msgid "Remove this %{title} from the comparison" -msgstr "从比较中删除这个 %{title}" +msgid "2 Minutes" +msgstr "2 分钟" -#: ../app/controllers/application_controller/compare.rb:1555 -msgid "Total Matches" -msgstr "总共的匹配" +msgid "2 Months" +msgstr "两个月" -#: ../app/controllers/application_controller/compare.rb:1561 -#: ../app/controllers/application_controller/compare.rb:1599 -#: ../app/controllers/application_controller/compare.rb:1682 -msgid "% Matched" -msgstr "% 匹配" +msgid "2 Months Ago" +msgstr "两月已前" -#: ../app/controllers/application_controller/compare.rb:1561 -#: ../app/controllers/application_controller/compare.rb:1599 -msgid "% Matched:" -msgstr "% 匹配:" +msgid "2 Quarters Ago" +msgstr "两个季度已前" -#: ../app/controllers/application_controller/compare.rb:1896 -#: ../app/controllers/application_controller/compare.rb:1899 -msgid "(missing)" -msgstr "(缺失的)" +msgid "2 Weeks" +msgstr "两周" -#: ../app/controllers/application_controller/dialog_runner.rb:27 -msgid "%{model} Order was cancelled by the user" -msgstr "该用户删除 %{model} 订单" +msgid "2 Weeks Ago" +msgstr "两周前" -#: ../app/controllers/application_controller/dialog_runner.rb:34 -msgid "Error during 'Provisioning': %{error_message}" -msgstr "在 '置备ing' 过程中出错:%{error_message}" +msgid "2 Weeks before retirement" +msgstr "在退订前两周" -#: ../app/controllers/application_controller/dialog_runner.rb:44 -msgid "Order Request was Submitted" -msgstr "Order 请求被提交" +msgid "2 Years Ago" +msgstr "两年以前" -#: ../app/controllers/application_controller/dialog_runner.rb:76 -msgid "%{button_name} Button not yet implemented" -msgstr "无法实施 %{button_name} 按钮" +msgid "2-3" +msgstr "2-3" -#: ../app/controllers/application_controller/explorer.rb:74 -#: ../app/controllers/application_controller/explorer.rb:176 -msgid "invalid button action" -msgstr "无效的按钮操作" +msgid "20 Hours Ago" +msgstr "20小时前" -#: ../app/controllers/application_controller/explorer.rb:130 -msgid "Button not yet implemented %{model}:%{action}" -msgstr "按钮还未实现 %{model}: %{action}" +msgid "20 items" +msgstr "" -#: ../app/controllers/application_controller/explorer.rb:228 -#: ../app/controllers/application_controller/tags.rb:187 -#: ../app/controllers/ops_controller/ops_rbac.rb:615 -msgid "Tag Edit was cancelled by the user" -msgstr "用户取消了标签编辑" +msgid "200 items" +msgstr "" -#: ../app/controllers/application_controller/explorer.rb:246 -msgid "No Class found for explorer tree node id '%{number}'" -msgstr "没有找到浏览器树节点 ID '%{number}' 的类" +msgid "21 Hours Ago" +msgstr "21小时前" -#: ../app/controllers/application_controller/explorer.rb:253 -msgid "Last selected %{record_name} no longer exists" -msgstr "最后选择的 %{record_name} 已不存在" +msgid "22 Hours Ago" +msgstr "22小时前" -#: ../app/controllers/application_controller/feature.rb:27 -msgid "No TreeBuilder found for feature '%{name}'" -msgstr "没有找到功能 '%{name}' 的 TreeBuilder" +msgid "23 Hours Ago" +msgstr "23小时前" -#: ../app/controllers/application_controller/filter.rb:46 -#: ../app/controllers/application_controller/policy_support.rb:145 -#: ../app/controllers/availability_zone_controller.rb:109 -#: ../app/controllers/cim_instance_controller.rb:82 -#: ../app/controllers/configuration_controller.rb:56 -#: ../app/controllers/configuration_job_controller.rb:68 -#: ../app/controllers/ems_cluster_controller.rb:189 -#: ../app/controllers/host_aggregate_controller.rb:157 -#: ../app/controllers/host_controller.rb:520 -#: ../app/controllers/infra_networking_controller.rb:85 -#: ../app/controllers/miq_ae_tools_controller.rb:25 -#: ../app/controllers/miq_policy_controller.rb:84 -#: ../app/controllers/miq_request_controller.rb:23 -#: ../app/controllers/orchestration_stack_controller.rb:137 -#: ../app/controllers/storage_controller.rb:175 -#: ../app/controllers/storage_manager_controller.rb:21 -#: ../app/controllers/vm_common.rb:26 ../app/controllers/vm_common.rb:827 -#: ../app/helpers/application_helper.rb:698 -msgid "Button not yet implemented" -msgstr "按钮还未实施" +msgid "24 Hour Time Period" +msgstr "24 小时时间周期" -#: ../app/controllers/application_controller/filter.rb:100 -msgid "" -"There is an error in the selected expression element, perhaps it was imported " -"or edited manually." -msgstr "选择的表达式元素里有一个错误,它可能是手动导入或编辑的。" +msgid "3 - Specify Target Options to qualify target %{hosts} or %{clusters}." +msgstr "3 - 指定目标选项来限定目标 %{hosts} 或 %{clusters}。" -#: ../app/controllers/application_controller/filter.rb:101 -msgid "" -"This element should be removed and recreated or you can report the error to yo" -"ur %{product} administrator." -msgstr "这个元素应该被删除并重新创建,或者您可以将这个错误报告给 %{product} 管理员。" +msgid "3 Days" +msgstr "3 天" -#: ../app/controllers/application_controller/filter.rb:102 -msgid "Error details: %{message}" -msgstr "错误细节:%{message}" +msgid "3 Days Ago" +msgstr "3 天前" -#: ../app/controllers/application_controller/filter.rb:300 -msgid "Search Name is required" -msgstr "搜索名称是必需的" +msgid "3 Hours" +msgstr "3 小时" -#: ../app/controllers/application_controller/filter.rb:306 -msgid "%{model} search \"%{name}\" was saved" -msgstr "保存 %{model} 搜索 \"%{name}\"" +msgid "3 Hours Ago" +msgstr "3 小时前" -#: ../app/controllers/application_controller/filter.rb:343 -msgid "%{model} search \"%{name}\" was successfully loaded" -msgstr "成功载入 %{model} 搜索 \"%{name}\"" +msgid "3 Minutes" +msgstr "3 分钟" -#: ../app/controllers/application_controller/filter.rb:353 -msgid "%{model} \"%{name}\": Error during 'delete': %{error_message}" -msgstr "%{model} \"%{name}\":'删除' 过程出错:%{error_message}" +msgid "3 Months" +msgstr "3 个月" -#: ../app/controllers/application_controller/filter.rb:365 -msgid "%{model} search \"%{name}\": Delete successful" -msgstr "%{model} 搜索 \"%{name}\":删除成功" +msgid "3 Months Ago" +msgstr "3 个月前" -#: ../app/controllers/application_controller/filter.rb:376 -msgid "The current search details have been reset" -msgstr "当前的搜索细节已被重置" +msgid "3 Quarters Ago" +msgstr "3 个季度前" -#: ../app/controllers/application_controller/filter.rb:555 -msgid "The selected Filter record was not found" -msgstr "未找到所选的过滤器记录" +msgid "3 Weeks" +msgstr "三周" -#: ../app/controllers/application_controller/filter.rb:557 -msgid "The selected Filter can not be set as Default because it requires user input" -msgstr "所选的过滤器不能设为默认过滤器,因为它要求用户的输入。" +msgid "3 Weeks Ago" +msgstr "三周前" -#: ../app/controllers/application_controller/filter.rb:673 -msgid " - Filtered by \"%{text}\"" -msgstr " - 根据 \"%{text}\" 过滤" +msgid "3 Years Ago" +msgstr "3 年前" -#: ../app/controllers/application_controller/filter.rb:675 -msgid " - Filtered by \"%{text}\" report" -msgstr " - 根据 \"%{text}\" 报告过滤" +msgid "3-4" +msgstr "3-4" -#: ../app/controllers/application_controller/filter.rb:680 -msgid " - Filtered by custom search" -msgstr " - 根据自定义搜索过滤" +msgid "30 Days before retirement" +msgstr "在退出前 30 天" -#: ../app/controllers/application_controller/filter.rb:774 -msgid "A field must be chosen to commit this expression element" -msgstr "必须选择一个字段来提交这个表达式元素" +msgid "30 Minutes" +msgstr "30 分钟" -#: ../app/controllers/application_controller/filter.rb:782 -#: ../app/controllers/application_controller/filter.rb:803 -msgid "Field Value Error: %{msg}" -msgstr "字段值错误:%{msg}" +msgid "32 Bit Architecture" +msgstr "32 位架构" -#: ../app/controllers/application_controller/filter.rb:813 -msgid "A tag category must be chosen to commit this expression element" -msgstr "必须选择一个标签列表来提交这个表达式元素" +msgid "4 - Change the Trend Options used to calculate the daily trends, if desired." +msgstr "4 - 修改用来计算日趋势的趋势选项(如果需要)。" -#: ../app/controllers/application_controller/filter.rb:815 -msgid "A tag value must be chosen to commit this expression element" -msgstr "必须选择一个标签值来提交这个表达式元素" +msgid "4 Days" +msgstr "4 天" -#: ../app/controllers/application_controller/filter.rb:827 -msgid "A registry key name must be entered to commit this expression element" -msgstr "必须输入注册表键名称来提交这个表达式元素" +msgid "4 Days Ago" +msgstr "4 天前" -#: ../app/controllers/application_controller/filter.rb:829 -msgid "A registry value name must be entered to commit this expression element" -msgstr "必须输入注册表值名称来提交这个表达式元素" +msgid "4 Hours" +msgstr "4 小时" -#: ../app/controllers/application_controller/filter.rb:831 -msgid "Registry Value Error: %{msg}" -msgstr "注册表值错误: %{msg}" +msgid "4 Hours Ago" +msgstr "4小时前" -#: ../app/controllers/application_controller/filter.rb:847 -msgid "A find field must be chosen to commit this expression element" -msgstr "必须选择一个 find 字段来提交这个表达式元素" +msgid "4 Minutes" +msgstr "4 分钟" -#: ../app/controllers/application_controller/filter.rb:850 -msgid "A check field must be chosen to commit this expression element" -msgstr "必须选择一个 check 字段来提交这个表达式元素" +msgid "4 Months" +msgstr "4 个月" -#: ../app/controllers/application_controller/filter.rb:853 -msgid "The check count value must be an integer to commit this expression element" -msgstr "Check Count 的值必须是一个整数以提交这个表达是元素" +msgid "4 Months Ago" +msgstr "4 个月以前" -#: ../app/controllers/application_controller/filter.rb:860 -msgid "Find Value Error: %{msg}" -msgstr "查找值错误: %{msg}" +msgid "4 Quarters Ago" +msgstr "4 个季度前" -#: ../app/controllers/application_controller/filter.rb:867 -msgid "Check Value Error: %{msg}" -msgstr "检查值错误: %{msg}" +msgid "4 Weeks" +msgstr "四周" -#: ../app/controllers/application_controller/filter.rb:903 -msgid "Select an expression element type" -msgstr "选择表达式元素类型" +msgid "4 Weeks Ago" +msgstr "四周前" -#: ../app/controllers/application_controller/filter.rb:992 -#: ../app/views/miq_capacity/_bottlenecks_options.html.haml:20 -#: ../app/views/miq_request/_prov_field.html.haml:31 -msgid "ALL" -msgstr "所有的" +msgid "4 Years Ago" +msgstr "4 年前" -#: ../app/controllers/application_controller/miq_request_methods.rb:74 -msgid "Add of new %{type} Request was cancelled by the user" -msgstr "用户取消了添加新的 %{type} 请求" +msgid "4-5" +msgstr "4-5" -#: ../app/controllers/application_controller/miq_request_methods.rb:197 -msgid "Edit of %{model} Request \"%{name}\" was cancelled by the user" -msgstr "用户取消了对 %{model} 请求 \"%{name}\" 的编辑" +msgid "45 Minutes" +msgstr "45 分钟" -#: ../app/controllers/application_controller/miq_request_methods.rb:200 -msgid "Provision %{type} Request was cancelled by the user" -msgstr "置备 %{type} 请求被用户取消" +msgid "5 - Press the Submit button." +msgstr "5 - 按『提交』按钮。" -#: ../app/controllers/application_controller/miq_request_methods.rb:226 -msgid "Edit %{type}" -msgstr "编辑 %{type}" +msgid "5 Days" +msgstr "5 天" -#: ../app/controllers/application_controller/miq_request_methods.rb:228 -msgid "Add %{type}" -msgstr "添加 %{type}" +msgid "5 Days Ago" +msgstr "5 天前" -#: ../app/controllers/application_controller/miq_request_methods.rb:308 -#: ../app/helpers/provider_configuration_manager_helper.rb:14 -#: ../app/helpers/provider_foreman_helper.rb:15 -#: ../app/helpers/storage_manager_helper/textual_summary.rb:15 -#: ../app/helpers/vm_helper/textual_summary.rb:95 -#: ../app/views/host/_config.html.haml:47 -#: ../app/views/ops/_diagnostics_database_tab.html.haml:35 -#: ../app/views/ops/_ldap_domain_show.html.haml:255 -#: ../app/views/ops/_ldap_server_entries.html.haml:17 -#: ../app/views/ops/_selected_by_servers.html.haml:22 -#: ../app/views/ops/_server_desc.html.haml:9 -#: ../app/views/ops/_settings_server_tab.html.haml:16 -#: ../app/views/storage_manager/_form.html.haml:65 -msgid "Hostname" -msgid_plural "Hostnames" -msgstr[0] "主机名" +msgid "5 Hours Ago" +msgstr "5小时前" -#: ../app/controllers/application_controller/miq_request_methods.rb:309 -#: ../app/helpers/provider_foreman_helper.rb:107 -#: ../app/helpers/provider_foreman_helper.rb:188 -msgid "Configuration Location" -msgstr "配置位置" +msgid "5 Minutes" +msgstr "5 分钟" -#: ../app/controllers/application_controller/miq_request_methods.rb:310 -#: ../app/helpers/provider_foreman_helper.rb:113 -#: ../app/helpers/provider_foreman_helper.rb:194 -msgid "Configuration Organization" -msgstr "配置机构" +msgid "5 Months" +msgstr "5 个月" -#: ../app/controllers/application_controller/miq_request_methods.rb:312 -#: ../app/helpers/configuration_job_helper/textual_summary.rb:46 -#: ../app/helpers/provider_configuration_manager_helper.rb:33 -#: ../app/helpers/provider_foreman_helper.rb:44 -#: ../app/views/auth_key_pair_cloud/_form.html.haml:68 -#: ../app/views/catalog/_form_basic_info.html.haml:152 -#: ../app/views/catalog/_form_basic_info.html.haml:174 -#: ../app/views/catalog/_ot_add.html.haml:80 -#: ../app/views/catalog/_ot_copy.html.haml:63 -#: ../app/views/catalog/_ot_edit.html.haml:56 -#: ../app/views/catalog/_sandt_tree_show.html.haml:120 -#: ../app/views/host_aggregate/new.html.haml:59 -#: ../app/views/report/_form_filter_chargeback.html.haml:132 -msgid "Provider" -msgstr "供应商" +msgid "5 items" +msgstr "" -#: ../app/controllers/application_controller/miq_request_methods.rb:324 -#: ../app/controllers/application_controller/miq_request_methods.rb:347 -#: ../app/controllers/application_controller/miq_request_methods.rb:376 -#: ../app/controllers/application_controller/miq_request_methods.rb:391 -#: ../app/helpers/cim_base_storage_extent_helper/textual_summary.rb:29 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:53 -#: ../app/helpers/ontap_storage_system_helper/textual_summary.rb:43 -#: ../app/helpers/ontap_storage_volume_helper/textual_summary.rb:46 -#: ../app/helpers/pxe_helper/textual_summary.rb:52 -#: ../app/helpers/pxe_helper/textual_summary.rb:76 -#: ../app/helpers/pxe_helper/textual_summary.rb:100 -#: ../app/views/alert/_rss_list.html.haml:41 -#: ../app/views/catalog/_ot_add.html.haml:34 -#: ../app/views/catalog/_ot_copy.html.haml:41 -#: ../app/views/catalog/_ot_edit.html.haml:34 -#: ../app/views/catalog/_ot_tree_show.html.haml:24 -#: ../app/views/catalog/_sandt_tree_show.html.haml:261 -#: ../app/views/catalog/_stcat_form.html.haml:43 -#: ../app/views/catalog/_stcat_tree_show.html.haml:27 -#: ../app/views/catalog/_svccat_tree_show.html.haml:44 -#: ../app/views/chargeback/_cb_rate_edit.html.haml:16 -#: ../app/views/chargeback/_cb_rate_edit_table.html.haml:10 -#: ../app/views/chargeback/_cb_rate_show.html.haml:15 -#: ../app/views/chargeback/_cb_rate_show.html.haml:40 -#: ../app/views/configuration/_timeprofile_form.html.haml:24 -#: ../app/views/configuration/_ui_4.html.haml:16 -#: ../app/views/generic_object/explorer.html.haml:26 -#: ../app/views/generic_object/explorer.html.haml:72 -#: ../app/views/generic_object/explorer.html.haml:122 -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_class_form.html.haml:61 -#: ../app/views/miq_ae_class/_class_props.html.haml:55 -#: ../app/views/miq_ae_class/_instance_form.html.haml:63 -#: ../app/views/miq_ae_class/_ns_list.html.haml:22 -#: ../app/views/miq_ae_class/_ns_list.html.haml:124 -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:52 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:252 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:350 -#: ../app/views/miq_ae_customization/_dialog_group_form.html.haml:32 -#: ../app/views/miq_ae_customization/_dialog_info.html.haml:28 -#: ../app/views/miq_ae_customization/_dialog_info_form.html.haml:33 -#: ../app/views/miq_ae_customization/_dialog_tab_form.html.haml:31 -#: ../app/views/miq_ae_customization/_field_values.html.haml:20 -#: ../app/views/miq_ae_customization/_old_dialogs_details.html.haml:36 -#: ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:36 -#: ../app/views/miq_ae_customization/_tag_field_values.html.haml:13 -#: ../app/views/miq_policy/_action_details.html.haml:21 -#: ../app/views/miq_policy/_alert_details.html.haml:23 -#: ../app/views/miq_policy/_alert_profile_details.html.haml:21 -#: ../app/views/miq_policy/_condition_details.html.haml:20 -#: ../app/views/miq_policy/_event_details.html.haml:15 -#: ../app/views/miq_policy/_event_details.html.haml:214 -#: ../app/views/miq_policy/_event_details.html.haml:394 -#: ../app/views/miq_policy/_policy_details.html.haml:24 -#: ../app/views/miq_policy/_policy_details.html.haml:225 -#: ../app/views/miq_policy/_policy_details.html.haml:317 -#: ../app/views/miq_policy/_profile_details.html.haml:22 -#: ../app/views/miq_request/_ae_prov_show.html.haml:16 -#: ../app/views/miq_request/_request.html.haml:87 -#: ../app/views/ops/_ap_form.html.haml:38 -#: ../app/views/ops/_ap_show.html.haml:32 -#: ../app/views/ops/_category_form.html.haml:136 -#: ../app/views/ops/_classification_entries.html.haml:15 -#: ../app/views/ops/_ldap_region_form.html.haml:38 -#: ../app/views/ops/_ldap_region_show.html.haml:31 -#: ../app/views/ops/_rbac_group_details.html.haml:23 -#: ../app/views/ops/_rbac_tenant_details.html.haml:30 -#: ../app/views/ops/_schedule_form.html.haml:45 -#: ../app/views/ops/_schedule_show.html.haml:9 -#: ../app/views/ops/_settings_co_categories_tab.html.haml:12 -#: ../app/views/ops/_settings_details_tab.html.haml:19 -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:29 -#: ../app/views/ops/_settings_server_tab.html.haml:678 -#: ../app/views/ops/_tenant_form.html.haml:42 -#: ../app/views/ops/_tenant_quota_form.html.haml:27 -#: ../app/views/ops/_zone_form.html.haml:37 -#: ../app/views/orchestration_stack/_copy_orchestration_template.html.haml:34 -#: ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 -#: ../app/views/pxe/_pxe_server_details.html.haml:61 -#: ../app/views/pxe/_pxe_server_details.html.haml:108 -#: ../app/views/pxe/_template_form.html.haml:34 -#: ../app/views/report/_db_list.html.haml:51 -#: ../app/views/report/_db_list.html.haml:90 -#: ../app/views/report/_report_info.html.haml:129 -#: ../app/views/report/_report_info.html.haml:248 -#: ../app/views/report/_schedule_form.html.haml:35 -#: ../app/views/report/_show_schedule.html.haml:9 -#: ../app/views/report/_widget_form.html.haml:37 -#: ../app/views/report/_widget_show.html.haml:29 -#: ../app/views/service/_service_form.html.haml:52 -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:32 -#: ../app/views/vm_common/_config.html.haml:202 -#: ../app/views/vm_common/_form.html.haml:36 -#: ../app/views/vm_common/_snap.html.haml:30 -#: ../app/views/vm_common/_snapshots_desc.html.haml:15 -msgid "Description" -msgstr "描述" +msgid "5-6" +msgstr "5-6" -#: ../app/controllers/application_controller/miq_request_methods.rb:359 -#: ../app/helpers/storage_helper/textual_summary.rb:42 -msgid "Free Space" -msgstr "空闲空间" +msgid "50 items" +msgstr "" -#: ../app/controllers/application_controller/miq_request_methods.rb:360 -#: ../app/helpers/storage_helper/textual_summary.rb:55 -msgid "Total Space" -msgstr "空间总量" +msgid "500 items" +msgstr "" -#: ../app/controllers/application_controller/miq_request_methods.rb:361 -msgid "Storage Clusters" -msgstr "存储集群" +msgid "6 Days" +msgstr "6 天" -#: ../app/controllers/application_controller/miq_request_methods.rb:377 -#: ../app/controllers/application_controller/miq_request_methods.rb:392 -#: ../app/views/miq_policy/_policy_details.html.haml:91 -msgid "Last Updated" -msgstr "最近更新的" +msgid "6 Days Ago" +msgstr "6 天前" -#: ../app/controllers/application_controller/miq_request_methods.rb:408 -#: ../app/controllers/application_controller/miq_request_methods.rb:445 -msgid "Platform" -msgstr "平台" - -#: ../app/controllers/application_controller/miq_request_methods.rb:409 -#: ../app/helpers/flavor_helper/textual_summary.rb:35 -msgid "CPUs" -msgstr "CPU" +msgid "6 Hours" +msgstr "6 小时" -#: ../app/controllers/application_controller/miq_request_methods.rb:412 -msgid "Deprecated" -msgstr "已弃用" +msgid "6 Hours Ago" +msgstr "6小时前" -#: ../app/controllers/application_controller/miq_request_methods.rb:414 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:100 -#: ../app/helpers/vm_helper/textual_summary.rb:160 -#: ../app/helpers/vm_helper/textual_summary.rb:627 -msgid "Snapshots" -msgstr "快照" +msgid "6 Months" +msgstr "6 个月" -#: ../app/controllers/application_controller/miq_request_methods.rb:438 -#: ../app/helpers/vm_cloud_helper/textual_summary.rb:70 -#: ../app/views/host/_form.html.haml:139 -msgid "MAC Address" -msgid_plural "MAC Addresses" -msgstr[0] "MAC 地址" +msgid "6 Months Ago" +msgstr "6 个月前" -#: ../app/controllers/application_controller/miq_request_methods.rb:444 -msgid "Total VMs" -msgstr "虚拟机总数" +msgid "6-7" +msgstr "6-7" -#: ../app/controllers/application_controller/miq_request_methods.rb:447 -#: ../app/helpers/ontap_logical_disk_helper/textual_summary.rb:118 -#: ../app/views/miq_request/_ae_prov_show.html.haml:18 -msgid "State" -msgstr "状态" +msgid "64 Bit Architecture" +msgstr "64 位架构" -#: ../app/controllers/application_controller/miq_request_methods.rb:619 -msgid "" -"%{typ} Request was Submitted, you will be notified when your %{title} are read" -"y" -msgstr "%{typ} 请求已提交,当 %{title} 准备好时您将收到通知。" +msgid "7 Days Ago" +msgstr "7 天前" -#: ../app/controllers/application_controller/miq_request_methods.rb:619 -msgid "" -"%{typ} Request was re-submitted, you will be notified when your %{title} are r" -"eady" -msgstr "%{typ} 请求已重新提交,当 %{title} 准备好时您将收到通知。" +msgid "7 Hours Ago" +msgstr "7小时前" -#: ../app/controllers/application_controller/miq_request_methods.rb:781 -#: ../app/controllers/application_controller/miq_request_methods.rb:969 -msgid "Cannot create Request Info, error: %{error_message}" -msgstr "不能创建 Request Info,错误: %{error_message}" +msgid "7-8" +msgstr "7-8" -#: ../app/controllers/application_controller/performance.rb:48 -msgid "" -"No Hourly or Daily data is available, real time data from the Most Recent Hour" -" is being displayed" -msgstr "没有可用的小时或日数据,显示的是最近一个小时的实时数据。" +msgid "8 Hours" +msgstr "8 个小时" -#: ../app/controllers/application_controller/performance.rb:52 -msgid "No Daily data is available" -msgstr "Daily 数据不可用" +msgid "8 Hours Ago" +msgstr "8小时前" -#: ../app/controllers/application_controller/performance.rb:175 -msgid "Refresh of recent C&U data has been initiated" -msgstr "已初始化最近容量和利用率数据的刷新" +msgid "8-9" +msgstr "8-9" -#: ../app/controllers/application_controller/performance.rb:186 -msgid "No Utilization data available" -msgstr "没有可用的 利用率 数据" +msgid "9 Hours Ago" +msgstr "9小时前" -#: ../app/controllers/application_controller/performance.rb:271 -msgid "No %{tag} %{model} were running %{time}" -msgstr "没有 %{tag} %{model} 在运行 %{time}" +msgid "9-10" +msgstr "9-10" -#: ../app/controllers/application_controller/performance.rb:276 -msgid "%{model} (%{tag} running %{time})" -msgstr "%{model}(运行 %{time} 的 %{tag})" +msgid ": About" +msgstr "" -#: ../app/controllers/application_controller/performance.rb:289 -msgid "running" -msgstr "运行" +msgid ": All UI Tasks" +msgstr ": 所有的 UI 任务" -#: ../app/controllers/application_controller/performance.rb:289 -msgid "stopped" -msgstr "停止" +msgid ": Analysis Profiles" +msgstr ": Analysis 配置集" -#: ../app/controllers/application_controller/performance.rb:291 -msgid "No %{model} were %{state} %{time}" -msgstr "没有 %{model} 是 %{state} %{time}" +msgid ": Automation" +msgstr "" -#: ../app/controllers/application_controller/performance.rb:318 -#: ../app/controllers/application_controller/performance.rb:355 -msgid "No events available for this Cluster" -msgstr "这个集群没有可用的事件" +msgid ": Chargeback" +msgstr "" -#: ../app/controllers/application_controller/performance.rb:320 -#: ../app/controllers/application_controller/performance.rb:357 -msgid "No events available for this %{model}" -msgstr "这个 %{model} 没有可用的事件" +msgid ": Configuration" +msgstr ": 配置" -#: ../app/controllers/application_controller/performance.rb:512 -msgid "No %{model} were running %{time}" -msgstr "没有 %{model} 在运行 %{time}" +msgid ": Configuration Management" +msgstr ": 配置管理" -#: ../app/controllers/application_controller/performance.rb:523 -msgid "Chart menu selection not yet implemented" -msgstr "图表菜单选择还没有实现" +msgid ": Control" +msgstr ": 控件" -#: ../app/controllers/application_controller/performance.rb:526 -msgid "Unknown error has occurred" -msgstr "已发生未知的错误" +msgid ": Credentials" +msgstr "" -#: ../app/controllers/application_controller/performance.rb:596 -#: ../app/controllers/application_controller/performance.rb:609 -msgid "%{name} Capacity & Utilization (by %{option}:%{model})" -msgstr "%{name} 容量和利用率(根据 %{option}:%{model})" +msgid ": Dashboard" +msgstr "" -#: ../app/controllers/application_controller/performance.rb:600 -#: ../app/controllers/application_controller/performance.rb:615 -#: ../app/controllers/availability_zone_controller.rb:31 -#: ../app/controllers/cim_instance_controller.rb:127 -#: ../app/controllers/ems_cluster_controller.rb:74 -#: ../app/controllers/ems_common.rb:53 ../app/controllers/ems_common.rb:497 -#: ../app/controllers/host_aggregate_controller.rb:32 -#: ../app/controllers/host_controller.rb:58 -#: ../app/controllers/mixins/containers_common_mixin.rb:72 -#: ../app/controllers/storage_controller.rb:89 -#: ../app/controllers/vm_common.rb:304 -msgid "%{name} Capacity & Utilization" -msgstr "%{name} 容量和利用率" +msgid ": Instances" +msgstr ": 实例" -#: ../app/controllers/application_controller/performance.rb:725 -msgid "%{date_from} to %{date_to}" -msgstr "从 %{date_from} 至 %{date_to}" +msgid ": Login" +msgstr ": 登录" -#: ../app/controllers/application_controller/performance.rb:1102 -msgid "Error while generating report: %{error_message}" -msgstr "生成报表出错:%{error_message}" +msgid ": My UI Tasks" +msgstr ": 我的 UI 任务" -#: ../app/controllers/application_controller/policy_support.rb:29 -msgid "Edit policy assignments was cancelled by the user" -msgstr "用户取消了对策略分配的编辑" +msgid ": Optimize" +msgstr ": 优化" -#: ../app/controllers/application_controller/policy_support.rb:57 -msgid "Policy assignments successfully changed" -msgstr "已成功修改策略分配" +msgid ": PXE" +msgstr ": PXE" -#: ../app/controllers/application_controller/policy_support.rb:84 -#: ../app/helpers/application_helper/toolbar/miq_template_center.rb:62 -#: ../app/helpers/application_helper/toolbar/miq_templates_center.rb:78 -#: ../app/helpers/application_helper/toolbar/openstack_vm_cloud_center.rb:100 -#: ../app/helpers/application_helper/toolbar/template_clouds_center.rb:122 -#: ../app/helpers/application_helper/toolbar/template_infras_center.rb:87 -#: ../app/helpers/application_helper/toolbar/vm_clouds_center.rb:98 -#: ../app/helpers/application_helper/toolbar/vm_infras_center.rb:114 -#: ../app/helpers/application_helper/toolbar/vms_center.rb:79 -#: ../app/helpers/application_helper/toolbar/x_miq_template_center.rb:61 -#: ../app/helpers/application_helper/toolbar/x_template_cloud_center.rb:87 -#: ../app/helpers/application_helper/toolbar/x_vm_center.rb:86 -#: ../app/helpers/application_helper/toolbar/x_vm_cloud_center.rb:65 -msgid "Policy Simulation" -msgstr "策略模拟" +msgid ": Playbooks (Ansible Tower)" +msgstr "" -#: ../app/controllers/application_controller/policy_support.rb:161 -msgid "One or more %{model} must be selected to Policy assignment" -msgstr "必须为策略分配选择一个或多个 %{model} " +msgid ": Policy Simulation" +msgstr ": 策略模拟" -#: ../app/controllers/application_controller/policy_support.rb:185 -msgid "'%{model}' Policy Assignment" -msgstr "'%{model}' 策略分配" +msgid ": RSS" +msgstr ": RSS" -#: ../app/controllers/application_controller/policy_support.rb:218 -msgid "[%{name}] Policy Profile %{mode} (db:[%{db}]" -msgstr "[%{name}] 策略配置集 %{mode} (db:[%{db}]" +msgid ": Repositories" +msgstr "" -#: ../app/controllers/application_controller/policy_support.rb:266 -msgid "No Policy Profiles are available" -msgstr "没有可用的策略配置集" +msgid ": Requests" +msgstr ": 请求" -#: ../app/controllers/application_controller/report_downloads.rb:64 -msgid "Report generation returned: Status [%{status}] Message [%{message}]" -msgstr "报表生成返回:状态 [%{status}] 消息 [%{message}]" +msgid ": Servers" +msgstr ": 服务器" -#: ../app/controllers/application_controller/sysprep_answer_file.rb:12 -msgid "Sysprep \"%{params}\" upload was successful" -msgstr "Sysprep \"%{params}\" 成功上传" +msgid ": Storage - Storage Managers" +msgstr ": 存储 - 存储管理者" -#: ../app/controllers/application_controller/sysprep_answer_file.rb:16 -msgid "Error during Sysprep \"%{params}\" file upload: %{message}" -msgstr "上传 Sysprep \"%{params}\" 文件时出错:%{message}" +msgid ": VM Usage" +msgstr ": 虚拟机使用率" -#: ../app/controllers/application_controller/sysprep_answer_file.rb:22 -msgid "Use the Choose file button to locate an Upload file" -msgstr "使用 'Choose file' 按钮定位上传文件" +msgid ": Virtual Machines" +msgstr ": 虚拟机" -#: ../app/controllers/application_controller/tags.rb:136 -msgid "One or more %{model} must be selected to Smart Tagging" -msgstr "必须为 Smart Tagging 选择一个或多个 %{model} " +msgid ": Workloads" +msgstr ": 工作负载" -#: ../app/controllers/application_controller/tags.rb:162 -#: ../app/controllers/application_controller/tags.rb:384 -#: ../app/views/layouts/_tag_edit.html.haml:8 -msgid "Tag Assignment" -msgstr "标签分配" +msgid "< Back" +msgstr "< 返回" -#: ../app/controllers/application_controller/tags.rb:236 -msgid "Error during 'Save Tags': %{error_message}" -msgstr "在 'Save Tags' 过程中出错:%{error_message}" +msgid "" +msgstr "" -#: ../app/controllers/application_controller/tags.rb:238 -msgid "Tag edits were successfully saved" -msgstr "标签编辑已成功保存" +msgid "" +msgstr "" -#: ../app/controllers/application_controller/timelines.rb:24 -msgid "No events available for this timeline" -msgstr "这个时间轴没有可用的事件" +msgid "" +msgstr "<已归档的>" -#: ../app/controllers/application_controller/timelines.rb:65 -msgid "Group: %{name}" -msgstr "组: %{name}" +msgid "" +msgstr "<按组>" -#: ../app/controllers/application_controller/timelines.rb:106 -msgid "Report: %{name}" -msgstr "报表: %{name}" +msgid "" +msgstr "<按角色>" -#: ../app/controllers/application_controller/timelines.rb:232 -#: ../app/controllers/miq_capacity_controller.rb:724 -msgid "Error building timeline %{error_message}" -msgstr "构建时间线出错 %{error_message}" +msgid "" +msgstr "<选择组>" -#: ../app/controllers/application_controller/timelines.rb:236 -#: ../app/controllers/dashboard_controller.rb:619 -#: ../app/controllers/dashboard_controller.rb:747 -#: ../app/controllers/miq_capacity_controller.rb:735 -msgid "No records found for this timeline" -msgstr "没有找到这个时间轴的记录" +msgid "" +msgstr "<选择项目/租户>" -#: ../app/controllers/application_controller/timelines/options.rb:2 -msgid "Management Events" -msgstr "管理事件" +msgid "" +msgstr "<选择>" -#: ../app/controllers/application_controller/timelines/options.rb:2 -msgid "Policy Events" -msgstr "策略事件" +msgid "" +msgstr "<点击这一行新增 LDAP 服务器>" -#: ../app/controllers/application_controller/tree_support.rb:131 -msgid "Datacenter: %{name}" -msgstr "数据中心: %{name}" +msgid "" +msgstr "<点这一行新增一个类别>" -#: ../app/controllers/application_controller/tree_support.rb:189 -msgid "Folder: %{name}" -msgstr "文件夹: %{name}" +msgid "" +msgstr "<点这一行新增一个条目>" -#: ../app/controllers/application_controller/tree_support.rb:226 -#: ../app/presenters/tree_builder_clusters.rb:75 -#: ../app/presenters/tree_builder_network.rb:32 -#: ../app/presenters/tree_builder_storage_adapters.rb:23 -msgid "Host: %{name}" -msgstr "主机: %{name}" +msgid "" +msgstr "<点这一行新增一个 forest>" -#: ../app/controllers/application_controller/tree_support.rb:248 -#: ../app/presenters/tree_builder_datacenter.rb:36 -msgid "Cluster: %{name}" -msgstr "集群:%{name}" +msgid "" +msgstr "<点这一行新增一个映射规则>" -#: ../app/controllers/application_controller/tree_support.rb:278 -msgid "Resource Pool: #%{name}" -msgstr "资源池: #%{name}" +msgid "" +msgstr "<新建条目>" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:91 -#: ../app/controllers/auth_key_pair_cloud_controller.rb:134 -#: ../app/controllers/cloud_tenant_controller.rb:71 -#: ../app/controllers/cloud_volume_controller.rb:246 -#: ../app/controllers/cloud_volume_controller.rb:283 -msgid "Add New %{model}" -msgstr "添加新的 %{model}" +msgid "" +msgstr "<新建LDAP服务器>" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:109 -#: ../app/controllers/catalog_controller.rb:92 -#: ../app/controllers/catalog_controller.rb:561 -#: ../app/controllers/chargeback_controller.rb:107 -#: ../app/controllers/cloud_tenant_controller.rb:81 -#: ../app/controllers/cloud_volume_controller.rb:256 -#: ../app/controllers/host_controller.rb:266 -#: ../app/controllers/miq_ae_class_controller.rb:617 -#: ../app/controllers/miq_ae_customization_controller/dialogs.rb:196 -#: ../app/controllers/miq_policy_controller/alert_profiles.rb:11 -#: ../app/controllers/miq_policy_controller/conditions.rb:13 -#: ../app/controllers/ops_controller/ops_rbac.rb:108 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:228 -#: ../app/controllers/ops_controller/settings/label_tag_mapping.rb:9 -#: ../app/controllers/ops_controller/settings/ldap.rb:37 -#: ../app/controllers/ops_controller/settings/ldap.rb:154 -#: ../app/controllers/ops_controller/settings/schedules.rb:48 -#: ../app/controllers/ops_controller/settings/tags.rb:41 -#: ../app/controllers/pxe_controller/iso_datastores.rb:43 -#: ../app/controllers/pxe_controller/pxe_customization_templates.rb:103 -#: ../app/controllers/pxe_controller/pxe_image_types.rb:31 -#: ../app/controllers/pxe_controller/pxe_servers.rb:48 -#: ../app/controllers/report_controller/reports/editor.rb:44 -#: ../app/controllers/report_controller/schedules.rb:225 -#: ../app/controllers/report_controller/widgets.rb:47 -#: ../app/controllers/storage_manager_controller.rb:65 -msgid "Add of new %{model} was cancelled by the user" -msgstr "用户取消了添加新的 %{model}" +msgid "" +msgstr "<无 Depot>" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:117 -msgid "Creating %{model} %{name}" -msgstr "创建 %{model} %{name}" +msgid "" +msgstr "<没有配置事件>" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:121 -msgid "Unable to create %{model} %{name}. %{error}" -msgstr "无法创建 %{model} %{name}. %{error}" +msgid "" +msgstr "<无图表>" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:144 -#: ../app/controllers/cloud_volume_controller.rb:295 -#: ../app/controllers/cloud_volume_controller.rb:356 -msgid "Validation successful" -msgstr "验证成功" +msgid "" +msgstr "<没有为这个虚拟机输入注记>" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:163 -msgid "No Key Pairs were selected for deletion" -msgstr "" +msgid "" +msgstr "<无>" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:169 -#: ../app/controllers/cloud_tenant_controller.rb:214 -#: ../app/controllers/cloud_volume_controller.rb:385 -#: ../app/controllers/host_aggregate_controller.rb:333 -msgid "%{model} no longer exists." -msgstr "%{model} 不再存在。" +msgid "" +msgstr "<孤立的>" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:174 -#: ../app/controllers/cloud_volume_controller.rb:397 -#: ../app/controllers/cloud_volume_controller.rb:403 -msgid "Couldn't initiate deletion of %{model} \"%{name}\": %{details}" -msgstr "无法初始删除 %{model} \"%{name}\": %{details}" +msgid "" +msgstr "<与导入相同>" -#: ../app/controllers/auth_key_pair_cloud_controller.rb:190 -#: ../app/controllers/cloud_volume_controller.rb:420 -#: ../app/controllers/host_aggregate_controller.rb:352 -#: ../app/controllers/ops_controller/settings/analysis_profiles.rb:418 -msgid "The selected %{model} was deleted" -msgstr "所选的 %{model} 已被删除" +msgid "" -msgstr "<选择要分配的值>" +msgid "Scale Infrastructure Provider Down" +msgstr "缩减基础架构供应商" -#: ../app/views/layouts/_tag_edit_items.html.haml:5 -msgid "%{amount} %{object} Being Tagged" -msgid_plural "%{amount} %{objects} Being Tagged" -msgstr[0] "%{amount} %{object} 正在进行标注" +msgid "Scale this Infrastructure Provider" +msgstr "缩放这个基础架构供应商" -#: ../app/views/layouts/_tl_detail.html.haml:20 -msgid "Timeline View" -msgstr "时间线视图" +msgid "Scale this Infrastructure Provider down" +msgstr "缩减这个基础架构供应商" -#: ../app/views/layouts/_tl_detail.html.haml:25 -msgid "Select your desired settings and click the apply button to view timeline data." -msgstr "选择您想要的设置并点击 'Apply' 按钮来查看时间线数据。" +msgid "Scaling" +msgstr "Scaling" -#: ../app/views/layouts/_tl_options.html.haml:13 -msgid "Options %{model}: %{name}" -msgstr "选项 %{model}: %{name}" +msgid "Scan History" +msgid_plural "Scan History" +msgstr[0] "扫描历史记录" -#: ../app/views/layouts/_tl_options.html.haml:68 -msgid "Show Detailed Events" -msgstr "显示详细的事件" +msgid "Scanning" +msgstr "正在扫描" -#: ../app/views/layouts/_tl_options.html.haml:78 -msgid "Successful Events" -msgstr "成功的事件" +msgid "Schedule Info" +msgstr "时间表信息" -#: ../app/views/layouts/_tl_options.html.haml:85 -msgid "Failed Events" -msgstr "失败事件" +msgid "Schedules" +msgstr "时间表" -#: ../app/views/layouts/_tl_options.html.haml:92 -msgid "Both" -msgstr "两者" +msgid "Schema" +msgstr "模式" -#: ../app/views/layouts/_tl_options.html.haml:116 -msgid "Months" -msgstr "月" +msgid "Schema for %{model} \"%{name}\" was saved" +msgstr " %{model} \"%{name}\" 的 Schema 已保存" -#: ../app/views/layouts/_tl_options.html.haml:116 -msgid "Weeks" -msgstr "周" +msgid "Scope" +msgstr "作用域" -#: ../app/views/layouts/_tl_options.html.haml:124 -msgid "centered" -msgstr "中间日期" +msgid "Scope (Choose an element of the Policy scope to edit)" +msgstr "作用域(选择 Policy 作用域的一个元素进行编辑)" -#: ../app/views/layouts/_tl_options.html.haml:124 -msgid "ending" -msgstr "结束于" +msgid "Scope (Choose an element of the scope to edit)" +msgstr "作用域(选择作用域的一个元素进行编辑)" -#: ../app/views/layouts/_tl_show.html.haml:15 -msgid "* Dates/Times on this page are based on time zone: %{time_zone}." -msgstr "* 这个页面上的日期/时间是基于时区 %{time_zone} 的。" +msgid "Scope (Press the \"Edit\" button to edit the scope)" +msgstr "作用域(按 \"Edit\" 按钮编辑作用域)" -#: ../app/views/layouts/_user_input_filter.html.haml:110 -msgid "Apply the current filter (Enter)" -msgstr "应用当前的过滤器(输入)" +msgid "Scopes / Expressions" +msgstr "作用域 / 表达式" -#: ../app/views/layouts/_user_input_filter.html.haml:123 -msgid "Cancel (Esc)" -msgstr "取消(Esc)" +msgid "Script" +msgstr "脚本" -#: ../app/views/layouts/_user_options.html.haml:22 -msgid "Server: %{appliance_name}" -msgstr "服务器:%{appliance_name}" +msgid "Search" +msgstr "搜索" -#: ../app/views/layouts/_user_options.html.haml:32 -msgid "Change Group" -msgstr "修改组" +msgid "Search Expression" +msgstr "搜索表达式" -#: ../app/views/layouts/_user_options.html.haml:40 -msgid "Currently Selected Group" -msgstr "当前选择的组" +msgid "Search Expression Preview" +msgstr "搜索表达式预览" -#: ../app/views/layouts/_user_options.html.haml:45 -msgid "Current Group" -msgstr "当前组" +msgid "Search Name is required" +msgstr "搜索名称是必需的" -#: ../app/views/layouts/_user_options.html.haml:52 -msgid "Change to this Group" -msgstr "改为这个组" +msgid "Search by Name within results" +msgstr "在结果里按名称搜索" -#: ../app/views/layouts/_user_options.html.haml:83 -msgid "Click to Logout" -msgstr "点击以登出" +msgid "Second" +msgstr "第二个" -#: ../app/views/layouts/_user_options.html.haml:85 -msgid "Logout" -msgstr "登出" +msgid "Secondary (Display) Filter" +msgstr "二级(显示)过滤器" -#: ../app/views/layouts/_user_options.html.haml:93 -msgid "Logging into" -msgstr "登录至" +msgid "Secondary (Display) Filter - Filters the rows based on child table fields" +msgstr "二级(显示)过滤器 - 基于子表字段过滤记录" -#: ../app/views/layouts/_x_edit_buttons.html.haml:62 -#: ../app/views/layouts/_x_edit_buttons.html.haml:201 -msgid "Download Report to YAML" -msgstr "下载报表到 YAML" +msgid "Secret Access Key" +msgstr "秘密访问密钥" -#: ../app/views/layouts/_x_edit_buttons.html.haml:63 -#: ../app/views/layouts/_x_edit_buttons.html.haml:201 -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:100 -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:106 -#: ../app/views/miq_ae_tools/_import_export.html.haml:138 -#: ../app/views/miq_policy/_export.html.haml:84 -#: ../app/views/miq_policy/_export.html.haml:149 -#: ../app/views/report/_export_custom_reports.html.haml:63 -#: ../app/views/report/_export_widgets.html.haml:112 -#: ../app/views/report/_export_widgets.html.haml:139 -msgid "Export" -msgstr "导出" +msgid "Secret Access Keys do not match" +msgstr "秘密访问密钥不匹配" -#: ../app/views/layouts/_x_edit_buttons.html.haml:85 -#: ../app/views/vm_common/_snap.html.haml:63 -msgid "Create" -msgstr "创建" +msgid "Secret Key" +msgstr "密钥" -#: ../app/views/layouts/_x_edit_buttons.html.haml:123 -#: ../app/views/layouts/_x_edit_buttons.html.haml:165 -msgid "Reset All menus to %{product} defaults" -msgstr "重置所有菜单为 %{product} 默认值" +msgid "Secret Name" +msgstr "Secret 名称" -#: ../app/views/layouts/_x_pagingcontrols.html.haml:18 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:151 -#: ../app/views/miq_ae_class/_class_instances.html.haml:14 -#: ../app/views/miq_ae_class/_class_methods.html.haml:14 -#: ../app/views/miq_ae_class/_ns_details.html.haml:13 -#: ../app/views/miq_ae_class/_ns_list.html.haml:15 -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:59 -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:112 -msgid "Check All" -msgstr "勾选全部" +msgid "Section" +msgstr "节" -#: ../app/views/layouts/_x_pagingcontrols.html.haml:96 -#: ../app/views/layouts/_x_pagingcontrols.html.haml:99 -msgid "%{start_number}-%{end_number} of %{total_items}" -msgstr "" +msgid "Security" +msgstr "安全性" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:6 -#: ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:6 -msgid "New " -msgstr "新建" +msgid "Security Domain" +msgstr "安全域" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:7 -#: ../app/views/ops/_rbac_user_details.html.haml:116 -#: ../app/views/storage_manager/_form.html.haml:205 -msgid "Confirm Password" -msgstr "确认密码" +msgid "Security Group \"%{name}\" created" +msgstr "" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:13 -#: ../app/views/layouts/angular/_auth_credentials_angular.html.haml:83 -msgid "Passwords do not match" -msgstr "密码不匹配" +msgid "Security Group \"%{name}\" updated" +msgstr "" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:16 -#: ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:6 -msgid "" -"Server information, Username and matching password fields are needed to perfor" -"m verification of credentials" -msgstr "执行凭证检验需要服务器信息、用户名和匹配的密码。" +msgid "Security Group Description" +msgstr "" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:54 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:36 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:88 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:124 -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:212 -#: ../app/views/layouts/angular/_auth_service_account_angular.html.haml:33 -#: ../app/views/provider_foreman/_form.html.haml:130 -msgid "Spaces are prohibited" -msgstr "空间被禁止" +msgid "Security Group Information" +msgstr "" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_credentials_angular_bootstrap.html.haml:59 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:146 -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:172 -msgid "Invalid input format, please enter a GUID" -msgstr "无效输入格式,请输入 GUID" +msgid "Security Group Name" +msgstr "" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:11 -msgid "Change stored private key" -msgstr "修改保存的私钥" +msgid "Security Group creation: Task start failed: ID [%{id}]" +msgstr "" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:12 -msgid "Cancel private key change" -msgstr "取消私钥的改变" +msgid "Security Group no longer exists." +msgstr "" -#: -#: ../app/views/layouts/angular-bootstrap/_auth_keypair_angular_bootstrap.html.haml:13 -msgid "" -"Server information, username and private key fields are needed to perform veri" -"fication of credentials" -msgstr "需要服务器信息,用户名和私钥字段来执行验证凭证" +msgid "Security Group update failed: Task start failed: ID [%{id}]" +msgstr "" -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:78 -msgid "Must be a number (greater than 0)" -msgstr "必须是一个数字(大于 10)" +msgid "Security Groups" +msgstr "安全组" -#: ../app/views/layouts/angular-bootstrap/_endpoints_angular.html.haml:102 -#: ../app/views/ops/_diagnostics_database_tab.html.haml:51 -msgid "Database Name" -msgstr "数据库名称" +msgid "Security Protocol" +msgstr "安全协议" -#: ../app/views/layouts/angular/_auth_credentials_angular.html.haml:55 -msgid "Verify %{password_label}" -msgstr "检验 %{password_label}" +msgid "Select" +msgstr "选择" -#: ../app/views/layouts/angular/_auth_service_account_angular.html.haml:13 -msgid "Service Account JSON" -msgstr "服务帐号 JSON" +msgid "Select %{host} to validate against" +msgstr "选择要检验的 %{host}" -#: ../app/views/layouts/angular/_form_button_submit_angular.html.haml:1 -msgid "Run a Database backup now" -msgstr "现在运行数据库备份" +msgid "Select Alerts to be Evaluated" +msgstr "选择要评估的警告" -#: ../app/views/layouts/angular/_form_button_submit_angular.html.haml:2 -msgid "Username and matching password fields are needed to run a database backup" -msgstr "运行数据库备份需要用户名项和匹配密码项" +msgid "Select All" +msgstr "选择所有" -#: ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:2 -msgid "Validate the credentials by logging into the selected %{title_for_host}" -msgstr "通过登录所选的 %{title_for_host} 验证凭证" +msgid "Select Ceilometer if eventing is not enabled on AMQP." +msgstr "如果 AMQP 上所有内容没有启动选择 Ceilometer 。" -#: ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:3 -msgid "" -"%{host} to validate against, Username and matching password fields are needed " -"to perform verification of credentials" -msgstr "要检验的 %{host} ,需要用户名和密码字段来执行凭证检验。" +msgid "Select Classes to copy" +msgstr "选择要复制的类" -#: ../app/views/layouts/angular/_form_buttons_verify_angular.html.haml:44 -msgid "Validation Required" -msgstr "要求检验" +msgid "Select Destination Host" +msgstr "选择目的地主机" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:38 -msgid "Hawkular" -msgstr "Hawkular" +msgid "Select Dialogs to import" +msgstr "选择要导入的对话框" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 -msgid "" -"Access Key ID and matching Secret Access Key fields are needed to perform veri" -"fication of credentials" -msgstr "执行凭证检验需要访问密钥 ID 和匹配的秘密访问密钥字段" +msgid "Select Entry Point %{entry_point}" +msgstr "选择入口点 %{entry_point}" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 -msgid "Cancel secret access key change" -msgstr "取消秘密访问 密钥变更" +msgid "Select Host to validate against" +msgstr "选择要检验的主机" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 -msgid "Change stored secret access key" -msgstr "修改保存的安全访问密钥" +msgid "Select Instances to copy" +msgstr "选择要复制的实例" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 -msgid "Confirm Secret Access Key" -msgstr "确认安全访问密钥" +msgid "Select Methods to copy" +msgstr "选择要复制的方法" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:69 -msgid "Secret Access Keys do not match" -msgstr "秘密访问密钥不匹配" +msgid "Select Policy Profiles" +msgstr "选择策略配置集" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:136 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:155 -msgid "Cancel stored token" -msgstr "取消保存的令牌" +msgid "Select Server:" +msgstr "选择服务器:" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:136 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:155 -msgid "Change stored token" -msgstr "修改保存的令牌" +msgid "Select Start date and End date to Collect C & U Data" +msgstr "选择采集容量和利用率数据的开始日期和结束日期" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:136 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:155 -msgid "Confirm Token" -msgstr "确认令牌" +msgid "Select Tags to apply" +msgstr "选择应用的标签" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:136 -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:155 -msgid "Tokens do not match" -msgstr "令牌不匹配" +msgid "Select a Group:" +msgstr "选择组:" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:180 -msgid "Copy and paste the contents of your Service Account JSON file above." -msgstr "复制并粘贴您以上的服务账户 JSON 文件的内容。" +msgid "Select a Policy Profile to add:" +msgstr "选择要添加的策略配置集:" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:191 -msgid "Used to authenticate as a service account against your provider." -msgstr "用来作为服务帐号来在您的供应商中进行验证" +msgid "Select a Tag to Apply" +msgstr "选择应用的标签" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:207 -msgid "Required. Used to gather Utilization data." -msgstr "这是必需的设置,用于采集利用率数据。" +msgid "Select a VM to Submit the Simulation Options" +msgstr "选择虚拟机提交 Simulation 选项" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:335 -msgid "Select Ceilometer if eventing is not enabled on AMQP." -msgstr "如果 AMQP 上所有内容没有启动选择 Ceilometer 。" +msgid "Select a customer tag to assign:" +msgstr "选择要分配的客户标签:" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:346 -msgid "" -"Enable event monitoring. Used to automatically resync state when changes are p" -"erformed on VMware vCloud Director directly." -msgstr "启用事件监控。当直接在 WMWare vCloud 控制器产生变化时自动同步状态。" +msgid "Select a filter to set it as my default" +msgstr "选择设置为默认值的过滤器" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:351 -msgid "Disable event monitoring." -msgstr "禁用事件监控。" +msgid "Select a node on the left to view Bottlenecks report." +msgstr "在左侧选择节点来查看\"Bottlenecks\"报表。" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:413 -msgid "hawkular URL and API port fields are needed to perform validation." -msgstr "需要 hawkular 网址和 API 端口字段来执行验证。" +msgid "Select a node on the left to view Bottlenecks timeline." +msgstr "在左侧选择节点来查看\"Bottlenecks\"时间轴。" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:493 -msgid "" -"IPMI IP Address, Username and matching password fields are needed to perform v" -"erification of credentials" -msgstr "执行凭证检验需要 IPMI IP 地址、用户名和匹配的密码。" +msgid "Select a node on the left to view Utilization information." +msgstr "在左侧选择节点来查看\"利用率\"信息。" -#: ../app/views/layouts/angular/_multi_auth_credentials.html.haml:627 -msgid "Select Host to validate against" -msgstr "选择要检验的主机" +msgid "Select a node on the left to view Utilization report." +msgstr "在左侧选择节点来查看\"利用率\"报表。" -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:19 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:19 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:27 -#: ../app/views/layouts/angular/_x_custom_form_buttons_angular.html.haml:27 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:35 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:35 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:43 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:43 -#: ../app/views/ops/_settings_replication_tab.html.haml:500 -#: ../app/views/ops/_settings_replication_tab.html.haml:506 -#: ../app/views/static/buttons.html.haml:41 -#: ../app/views/static/buttons.html.haml:42 -#: ../app/views/vm_common/_reconfigure.html.haml:413 -#: ../app/views/vm_common/_reconfigure.html.haml:413 -msgid "Reset changes" -msgstr "重置修改" +msgid "Select a reference VM or Manual Input source to Submit the Planning Options" +msgstr "选择引用虚拟机或手动输入源来提交 计划 选项" -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:19 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:19 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:27 -#: ../app/views/layouts/angular/_x_edit_buttons_angular.html.haml:27 -#: ../app/views/static/buttons.html.haml:22 -#: ../app/views/static/buttons.html.haml:23 -#: ../app/views/static/buttons.html.haml:32 -#: ../app/views/static/buttons.html.haml:33 -msgid "Save changes" -msgstr "保存修改" +msgid "Select a single Arbitration Profile to edit" +msgstr "选择单个的仲裁配置集进行编辑" -#: ../app/views/layouts/exp_atom/_edit_count.html.haml:24 -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:31 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:27 -#: ../app/views/layouts/exp_atom/_edit_tag.html.haml:34 -msgid "Use Alias" -msgstr "使用别名" +msgid "Select a single Cloud Provider to edit" +msgstr "选择单个的云供应商进行编辑" -#: ../app/views/layouts/exp_atom/_edit_count.html.haml:46 -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:157 -#: ../app/views/layouts/exp_atom/_edit_tag.html.haml:54 -msgid "user input" -msgstr "用户输入" +msgid "Select a single Cloud Tenant to edit" +msgstr "选择单个的云租户进行编辑" -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:63 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:48 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:178 -#: ../app/views/miq_request/_pre_prov.html.haml:81 -#: ../app/views/miq_request/_prov_vm_grid.html.haml:91 -#: ../app/views/miq_request/_prov_vm_grid.html.haml:161 -#: ../app/views/report/_form_styling.html.haml:79 -msgid "false" -msgstr "false" +msgid "Select a single Containers Provider to edit" +msgstr "选择单个的容器供应商进行编辑" -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:63 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:48 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:178 -#: ../app/views/miq_request/_pre_prov.html.haml:81 -#: ../app/views/miq_request/_prov_vm_grid.html.haml:91 -#: ../app/views/miq_request/_prov_vm_grid.html.haml:161 -#: ../app/views/report/_form_styling.html.haml:79 -msgid "true" -msgstr "true" +msgid "Select a single Customization Templates to copy" +msgstr "选择单个的自定义模版进行复制" -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:103 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:216 -msgid "THROUGH" -msgstr "THROUGH" +msgid "Select a single Customization Templates to edit" +msgstr "选择单个的自定义模版进行编辑" -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:134 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:115 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:247 -msgid "Click to change to a relative Date/Time format" -msgstr "点击以修改为相对的日期/时间格式" +msgid "Select a single Datawarehouse Providers to edit" +msgstr "" -#: ../app/views/layouts/exp_atom/_edit_field.html.haml:144 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:125 -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:257 -msgid "Click to change to a specific Date/Time format" -msgstr "点击以修改为专有的日期/时间格式" +msgid "Select a single Domains to edit" +msgstr "选择单个的域进行编辑" -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:151 -msgid "Check Any" -msgstr "检查任何" +msgid "Select a single Group to edit" +msgstr "选择单个的组进行编辑" -#: ../app/views/layouts/exp_atom/_edit_find.html.haml:151 -msgid "Check Count" -msgstr "检查计数" +msgid "Select a single Host Aggregate to Add Host" +msgstr "选择单个的主机集合添加主机" -#: ../app/views/layouts/exp_atom/_edit_regkey.html.haml:6 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review.html.haml:9 -msgid "Key:" -msgstr "密钥:" +msgid "Select a single Host Aggregate to Remove Host" +msgstr "选择单个的主机集合删除主机" -#: ../app/views/layouts/exp_atom/_edit_regkey.html.haml:14 -msgid "Value:" -msgstr "值:" +msgid "Select a single Host Aggregate to edit" +msgstr "选择单个的主机集合进行编辑" -#: ../app/views/layouts/exp_atom/_edit_regkey.html.haml:30 -msgid "Data:" -msgstr "数据:" +msgid "Select a single Image to Provision Instances" +msgstr "选择单个镜像至置备实例" -#: ../app/views/layouts/exp_atom/_editor.html.haml:29 -#: ../app/views/report/_menu_form1.html.haml:79 -msgid "Commit expression element changes" -msgstr "提交表达式元素的修改" +msgid "Select a single Infrastructure Provider to edit" +msgstr "选择单个的基础架构供应商进行编辑" -#: ../app/views/layouts/exp_atom/_editor.html.haml:41 -#: ../app/views/report/_menu_form1.html.haml:92 -msgid "Discard expression element changes" -msgstr "放弃表达式元素的修改" +msgid "Select a single Instance to edit" +msgstr "选择单个的实例进行编辑" -#: ../app/views/layouts/exp_atom/_editor.html.haml:57 -msgid "NOT" -msgstr "NOT" +msgid "Select a single Item to edit" +msgstr "选择单个的项进行编辑" -#: ../app/views/layouts/exp_atom/_editor.html.haml:94 -msgid "User will input the value" -msgstr "用户将输入这个值" +msgid "Select a single LDAP Region to edit" +msgstr "选择单个的 LDAP 区域进行编辑" -#: ../app/views/layouts/gtl/_list.html.haml:117 -#: ../app/views/layouts/gtl/_list.html.haml:196 -#: ../app/views/ops/_settings_server_tab.html.haml:56 -msgid "Click to view this VM" -msgstr "点击以查看这个虚拟机" +msgid "Select a single Method to edit" +msgstr "选择单个的方法进行编辑" -#: ../app/views/layouts/gtl/_list.html.haml:202 -#: ../app/views/layouts/gtl/_list.html.haml:313 -msgid "%{agent} record no longer exists" -msgstr "%{agent} 记录不再存在" +msgid "Select a single Middleware Providers to edit" +msgstr "选择单个的中间件供应商进行编辑" -#: ../app/views/layouts/gtl/_list.html.haml:206 -msgid "Click to view %{record}" -msgstr "点击以查看 %{record}" +msgid "Select a single Namespace to edit" +msgstr "选择单个的命名空间进行编辑" -#: ../app/views/layouts/gtl/_list.html.haml:209 -msgid "No task target captured" -msgstr "没有捕获任务目标" +msgid "Select a single Network Provider to edit" +msgstr "选择单个网络供应商进行编辑" -#: ../app/views/layouts/gtl/_list.html.haml:214 -msgid "Click to view target %{model}" -msgstr "点击以查看目标 %{model}" +msgid "Select a single PXE Servers to edit" +msgstr "选择单个的 PXE 服务器进行编辑" -#: ../app/views/layouts/gtl/_list.html.haml:216 -msgid "%{number} bytes" -msgstr "%{number} 字节" +msgid "Select a single Role to copy" +msgstr "选择单个的角色进行复制" -#: ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:12 -#: ../app/views/layouts/listnav/_availability_zone.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_network.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_object_store_object.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_subnet.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:12 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:12 -#: ../app/views/layouts/listnav/_configuration_job.html.haml:12 -#: ../app/views/layouts/listnav/_container_build.html.haml:12 -#: ../app/views/layouts/listnav/_container_group.html.haml:12 -#: ../app/views/layouts/listnav/_container_image.html.haml:12 -#: ../app/views/layouts/listnav/_container_image_registry.html.haml:12 -#: ../app/views/layouts/listnav/_container_node.html.haml:12 -#: ../app/views/layouts/listnav/_container_project.html.haml:12 -#: ../app/views/layouts/listnav/_container_replicator.html.haml:12 -#: ../app/views/layouts/listnav/_container_route.html.haml:12 -#: ../app/views/layouts/listnav/_container_service.html.haml:12 -#: ../app/views/layouts/listnav/_container_template.html.haml:12 -#: ../app/views/layouts/listnav/_ems_cloud.html.haml:12 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:13 -#: ../app/views/layouts/listnav/_ems_container.html.haml:12 -#: ../app/views/layouts/listnav/_ems_datawarehouse.html.haml:10 -#: ../app/views/layouts/listnav/_ems_infra.html.haml:14 -#: ../app/views/layouts/listnav/_ems_middleware.html.haml:10 -#: ../app/views/layouts/listnav/_ems_network.html.haml:10 -#: ../app/views/layouts/listnav/_ems_storage.html.haml:10 -#: ../app/views/layouts/listnav/_flavor.html.haml:12 -#: ../app/views/layouts/listnav/_floating_ip.html.haml:12 -#: ../app/views/layouts/listnav/_host.html.haml:36 -#: ../app/views/layouts/listnav/_host_aggregate.html.haml:12 -#: ../app/views/layouts/listnav/_load_balancer.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_datasource.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_deployment.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_domain.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_messaging.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_server.html.haml:12 -#: ../app/views/layouts/listnav/_middleware_server_group.html.haml:12 -#: ../app/views/layouts/listnav/_miq_ae_class.html.haml:12 -#: ../app/views/layouts/listnav/_network_port.html.haml:12 -#: ../app/views/layouts/listnav/_network_router.html.haml:12 -#: ../app/views/layouts/listnav/_ontap_file_share.html.haml:12 -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:13 -#: ../app/views/layouts/listnav/_ontap_storage_system.html.haml:12 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:12 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:12 -#: ../app/views/layouts/listnav/_persistent_volume.html.haml:12 -#: ../app/views/layouts/listnav/_pxe_server.html.haml:12 -#: ../app/views/layouts/listnav/_resource_pool.html.haml:13 -#: ../app/views/layouts/listnav/_security_group.html.haml:12 -#: ../app/views/layouts/listnav/_service.html.haml:12 -#: ../app/views/layouts/listnav/_storage.html.haml:13 -#: ../app/views/layouts/listnav/_storage_manager.html.haml:12 -msgid "Show Summary" -msgstr "显示总结" +msgid "Select a single Role to edit" +msgstr "选择单个的角色进行编辑" -#: ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:23 -#: ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:29 -#: ../app/views/layouts/listnav/_miq_ae_class.html.haml:19 -msgid "Instances (%{count})" -msgstr "实例 (%{count})" +msgid "Select a single Storage Manager to edit" +msgstr "选择单个的存储管理者进行编辑" -#: ../app/views/layouts/listnav/_auth_key_pair_cloud.html.haml:29 -#: ../app/views/layouts/listnav/_availability_zone.html.haml:28 -#: ../app/views/layouts/listnav/_cloud_network.html.haml:25 -#: ../app/views/layouts/listnav/_cloud_subnet.html.haml:25 -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:35 -#: ../app/views/layouts/listnav/_flavor.html.haml:31 -#: ../app/views/layouts/listnav/_host_aggregate.html.haml:28 -#: ../app/views/layouts/listnav/_load_balancer.html.haml:25 -#: ../app/views/layouts/listnav/_network_router.html.haml:25 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:38 -#: ../app/views/layouts/listnav/_security_group.html.haml:25 -msgid "Show all Instances" -msgstr "显示所有的实例" +msgid "Select a single System Image Type to edit" +msgstr "选择单个的系统镜像类型进行编辑" -#: ../app/views/layouts/listnav/_availability_zone.html.haml:22 -msgid "Show this Availability Zone's parent Cloud Provider" -msgstr "显示这个可用区的父云供应商" +msgid "Select a single Template to Provision VMs" +msgstr "选择单个模板至置备虚拟机" -#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:28 -#: ../app/views/layouts/listnav/_cloud_object_store_object.html.haml:28 -msgid "%{table}: %{name}" -msgstr "%{table}: %{name}" +msgid "Select a single Template to edit" +msgstr "选择单个的模版进行编辑" -#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:37 -#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:44 -msgid "%{table} (%{count})" -msgstr "%{table} (%{count})" +msgid "Select a single Time Profile to copy" +msgstr "选择单个的 Time 配置集进行复制" -#: ../app/views/layouts/listnav/_cloud_object_store_container.html.haml:44 -msgid "Show this Cloud Object Store's child %{children}'" -msgstr "显示这个云对象库的子 %{children}" +msgid "Select a single Time Profile to edit" +msgstr "选择单个的 Time 配置集进行编辑" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:22 -msgid "Show this Cloud Tenant's parent Cloud Provider" -msgstr "显示这个云租户的父云供应商" +msgid "Select a single User to copy" +msgstr "选择单个的用户进行复制" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:28 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:46 -msgid "Show all Security Groups" -msgstr "显示所有的安全组" +msgid "Select a single User to edit" +msgstr "选择单个的用户进行编辑" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:42 -msgid "Show all Images" -msgstr "显示所有的图像" +msgid "Select a single Volume to edit" +msgstr "选择单个的卷进行编辑" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:49 -msgid "Show all Volumes" -msgstr "显示所有卷" +msgid "Select a single item to edit" +msgstr "选择单个的项进行编辑" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:56 -msgid "Show all Volume Snapshots" -msgstr "显示所有卷快照" +msgid "Select a single item to manage quotas" +msgstr "选择单个的项来管理配额" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:63 -msgid "Cloud Object Stores" -msgstr "云对象存储库" +msgid "Select a single service to edit" +msgstr "选择单个的服务进行编辑" -#: ../app/views/layouts/listnav/_cloud_tenant.html.haml:63 -msgid "Show all Cloud Object Stores" -msgstr "显示所有云对象存储库" +msgid "Select a worker to restart" +msgstr "选择要重启的工作节点" -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:28 -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:36 -msgid "Show this Cloud Volume's parent %{parent}" -msgstr "显示该云卷的上层 %{parent}" +msgid "Select an Owner:" +msgstr "选择所有者:" -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:45 -msgid "%{children} (0)" -msgstr "%{children} (0)" +msgid "Select an expression element type" +msgstr "选择表达式元素类型" -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:51 -msgid "%{children} (%{count})" -msgstr "%{children} (%{count})" +msgid "Select authenticaton type" +msgstr "选择验证类型" -#: ../app/views/layouts/listnav/_cloud_volume.html.haml:51 -msgid "Show all %{children}" -msgstr "显示所有的 %{children}" +msgid "Select currency: " +msgstr "选择币种:" -#: ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:22 -#: ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:30 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:22 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:30 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:53 -msgid "%{model}: %{name}" -msgstr "%{model}: %{name}" +msgid "Select domain you wish to import from:" +msgstr "选择您要从中导入的域:" -#: ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:22 -#: ../app/views/layouts/listnav/_cloud_volume_backup.html.haml:30 -msgid "Show this Backup's parent %{parent}" -msgstr "显示这个备份的父 %{parent}" +msgid "Select existing domain to import into:" +msgstr "选择要导入的现有域:" -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:22 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:30 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:53 -msgid "Show this Snapshot's parent %{parent}" -msgstr "显示这个快照的父 %{parent}" +msgid "Select items to configure" +msgstr "选择要配置的项" -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:39 -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:45 -msgid "Cloud Volumes based on Snapshot (%{count})" -msgstr "基于快照的云卷 (%{count})" +msgid "Select namespaces you wish to import:" +msgstr "选择您要导入的命名空间:" -#: ../app/views/layouts/listnav/_cloud_volume_snapshot.html.haml:45 -msgid "Show all Cloud Volumes based on this Snapshot" -msgstr "显示所有基于这个快照的云卷" +msgid "Select one or more Groups to delete" +msgstr "选择一个或多个要删除的组" -#: ../app/views/layouts/listnav/_compare_sections.html.haml:153 -msgid "Comparison Sections" -msgstr "比较部分" +msgid "Select one or more LDAP Regions to delete" +msgstr "选择一个或多个要删除的 LDAP 区域" -#: ../app/views/layouts/listnav/_compare_sections.html.haml:153 -msgid "Drift Sections" -msgstr "Drift 部分" +msgid "Select one or more Users to delete" +msgstr "选择一个或多个要删除的用户" -#: ../app/views/layouts/listnav/_compare_sections.html.haml:163 -#: ../app/views/layouts/listnav/_compare_sections.html.haml:163 -msgid "Apply sections" -msgstr "应用部分" +msgid "Select one or more consecutive groups to move up or down." +msgstr "选择一个或多个要上移或下移的连续的组。" -#: ../app/views/layouts/listnav/_configuration_job.html.haml:24 -msgid "Show parent %s for this Job" -msgstr "显示这个任务的父 %s" +msgid "Select one or more items to delete" +msgstr "选择一个或多个要删除的项" -#: ../app/views/layouts/listnav/_configuration_job.html.haml:32 -msgid "Show service %s for this Job" -msgstr "显示这个任务的服务 %s" +msgid "Select only one or consecutive %{member} to move down" +msgstr "选择下移的一个或连续的 %{member}" -#: ../app/views/layouts/listnav/_configuration_job.html.haml:37 -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:58 -msgid "Show all Parameters" -msgstr "显示所有的参数" +msgid "Select only one or consecutive %{member} to move up" +msgstr "选择上移的一个或连续的 %{member}" -#: ../app/views/layouts/listnav/_container_group.html.haml:19 -#: ../app/views/layouts/listnav/_container_group.html.haml:27 -#: ../app/views/layouts/listnav/_container_node.html.haml:19 -#: ../app/views/layouts/listnav/_container_node.html.haml:27 -#: ../app/views/layouts/listnav/_container_project.html.haml:19 -#: ../app/views/layouts/listnav/_container_project.html.haml:27 -#: ../app/views/layouts/listnav/_container_replicator.html.haml:19 -#: ../app/views/layouts/listnav/_container_replicator.html.haml:27 -#: ../app/views/layouts/listnav/_container_service.html.haml:19 -#: ../app/views/layouts/listnav/_container_service.html.haml:27 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:26 -#: ../app/views/layouts/listnav/_ems_container.html.haml:19 -#: ../app/views/layouts/listnav/_ems_container.html.haml:27 -#: ../app/views/layouts/listnav/_host.html.haml:71 -#: ../app/views/layouts/listnav/_storage.html.haml:18 -msgid "Capacity & Utilization" -msgstr "容量和利用率" +msgid "Select only one or consecutive %{name} to move down" +msgstr "选择下移的一个或连续的 %{name}" -#: ../app/views/layouts/listnav/_container_group.html.haml:19 -#: ../app/views/layouts/listnav/_container_node.html.haml:19 -#: ../app/views/layouts/listnav/_container_project.html.haml:19 -#: ../app/views/layouts/listnav/_container_replicator.html.haml:19 -#: ../app/views/layouts/listnav/_container_service.html.haml:19 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:26 -#: ../app/views/layouts/listnav/_ems_container.html.haml:19 -#: ../app/views/layouts/listnav/_host.html.haml:71 -#: ../app/views/layouts/listnav/_storage.html.haml:18 -msgid "Show Capacity & Utilization" -msgstr "显示容量和利用率" +msgid "Select only one or consecutive %{name} to move up" +msgstr "选择上移的一个或连续的 %{name}" -#: ../app/views/layouts/listnav/_container_group.html.haml:34 -#: ../app/views/layouts/listnav/_container_node.html.haml:34 -#: ../app/views/layouts/listnav/_container_project.html.haml:34 -#: ../app/views/layouts/listnav/_container_replicator.html.haml:34 -#: ../app/views/layouts/listnav/_ems_cloud.html.haml:14 -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:32 -#: ../app/views/layouts/listnav/_ems_container.html.haml:34 -#: ../app/views/layouts/listnav/_ems_infra.html.haml:17 -#: ../app/views/layouts/listnav/_ems_network.html.haml:15 -#: ../app/views/layouts/listnav/_ems_storage.html.haml:16 -#: ../app/views/layouts/listnav/_host.html.haml:77 -msgid "Show Timelines" -msgstr "显示时间线" +msgid "Select only one or consecutive fields to move down" +msgstr "选择下移的一个或连续的字段" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:19 -msgid "Show configuration" -msgstr "显示配置" +msgid "Select only one or consecutive fields to move to the bottom" +msgstr "选择一个或连续的字段下移至底部" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:44 -msgid "Show %{host_title}" -msgstr "显示 %{host_title}" +msgid "Select only one or consecutive fields to move to the top" +msgstr "选择一个或连续的字段下移至顶部" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:51 -msgid "Show VMs in this %{cluster_title}, but not in Resource Pools below" -msgstr "显示这个 %{cluster_title} 里但不在下面的资源池里的虚拟机" +msgid "Select only one or consecutive fields to move up" +msgstr "选择上移的一个或连续的字段" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:58 -msgid "Show all VMs in this %{cluster_title}" -msgstr "显示这个 %{cluster_title} 里的所有虚拟机" +msgid "Select the file to deploy" +msgstr "选择要部署的文件" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:65 -msgid "Show all Templates in this %{cluster_title}" -msgstr "显示这个 %{cluster_title} 里的所有模版" +msgid "Select this Host Aggregate" +msgstr "选择这个主机集合" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:72 -msgid "Show tree of all VMs by Resource Pool in this %{cluster_title}" -msgstr "显示 %{cluster_title} 里资源池的所有虚拟机的树" +msgid "Select two or more Templates to compare" +msgstr "选择两个或更多的模版进行比较" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:79 -#: ../app/views/layouts/listnav/_host.html.haml:120 -msgid "Show Resource Pools" -msgstr "显示资源池" +msgid "Select two or more items to compare" +msgstr "选择两个或更多的项进行比较" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:86 -msgid "Show %{cluster_title} drift history" -msgstr "显示 %{cluster_title} 偏差历史" +msgid "Select up to 10 timestamps for Drift Analysis" +msgstr "选择最多 10 个时间戳进行偏差分析" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:97 -msgid "Show all %{ontap_storage_system}" -msgstr "显示所有的 %{ontap_storage_system}" +msgid "Select your desired settings and click the apply button to view timeline data." +msgstr "选择您想要的设置并点击 'Apply' 按钮来查看时间线数据。" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:113 -msgid "Show all %{ontap_file_share}" -msgstr "显示所有的 %{ontap_file_share}" +msgid "Selected" +msgstr "选择的" -#: ../app/views/layouts/listnav/_ems_cluster.html.haml:121 -msgid "Show all %{base_storage_extent}" -msgstr "显示所有的 %{base_storage_extent}" +msgid "Selected %{model_name} no longer exists" +msgstr "选择的 %{model_name} 不再存在" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:28 -msgid "%{hosts} & %{clusters}" -msgstr "%{hosts} 和 %{clusters}" +msgid "Selected Chargeback Report no longer exists" +msgstr "选择的计费报表不再存在" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:28 -msgid "Show %{hosts} & %{clusters}" -msgstr "显示 %{hosts} & %{clusters}" +msgid "Selected Cluster / Deployment Roles" +msgstr "" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:34 -msgid "Show VMs & Templates" -msgstr "显示虚拟机和模版" +msgid "Selected Containers Providers" +msgstr "" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:42 -msgid "Show all managed %{cluster}" -msgstr "显示所有受管的 %{cluster}" +msgid "Selected Custom Button Group cannot be deleted" +msgstr "不能删除所选的自定义按钮组" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:49 -msgid "Show all managed %{hosts}" -msgstr "显示所有受管的 %{hosts}" +msgid "Selected Custom Button Group cannot be edited" +msgstr "不能编辑所选的自定义按钮组" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:56 -msgid "Show all managed %{storages}" -msgstr "显示所有受管的 %{storages}" +msgid "Selected Datastores" +msgstr "" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:63 -#: ../app/views/layouts/listnav/_host.html.haml:128 -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:61 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:40 -msgid "Show all VMs" -msgstr "显示所有的虚拟机" +msgid "Selected Day" +msgstr "选择的日期" -#: ../app/views/layouts/listnav/_ems_infra.html.haml:70 -#: ../app/views/layouts/listnav/_host.html.haml:136 -msgid "Show all Templates" -msgstr "显示所有的模版" +msgid "Selected Fields:" +msgstr "选择的字段:" -#: ../app/views/layouts/listnav/_flavor.html.haml:24 -msgid "Show this Flavor's parent Cloud Provider" -msgstr "显示这个 Flavor 的父云供应商" +msgid "Selected Folders" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:41 -msgid "Show %{host} devices" -msgstr "显示 %{host} 设备" +msgid "Selected Host / Nodes" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:47 -msgid "Show %{host} network" -msgstr "显示 %{host} 网络" +msgid "Selected Item" +msgstr "选择的项目" -#: ../app/views/layouts/listnav/_host.html.haml:53 -msgid "Show %{host} storage adapters" -msgstr "显示 %{host} 存储适配器" +msgid "Selected Middleware Servers" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:59 -msgid "Show %{host} OS information" -msgstr "显示 %{host} OS 信息" +msgid "Selected Providers" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:65 -msgid "Show VMM information" -msgstr "显示 VMM 信息" +msgid "Selected Reports:" +msgstr "选择的报表:" -#: ../app/views/layouts/listnav/_host.html.haml:84 -msgid "Show esx logs on this VM" -msgstr "显示这个虚拟机上的 ESX 日志" +msgid "Selected Resource Pools" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:95 -msgid "Show this parent %{provider} for this %{host}" -msgstr "显示这个 %{host} 的父 %{provider}" +msgid "Selected Resources" +msgstr "选择的资源" -#: ../app/views/layouts/listnav/_host.html.haml:105 -msgid "Show parent %{cluster} for this %{host}" -msgstr "显示这个 %{host} 的父 %{cluster}" +msgid "Selected Saved Chargeback Report no longer exists" +msgstr "选择的已保存的计费报表不再存在" -#: ../app/views/layouts/listnav/_host.html.haml:144 -msgid "Show %{host} drift history" -msgstr "显示 %{host} 偏差历史" +msgid "Selected Servers" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:185 -msgid "Show the users defined on this %{host}" -msgstr "显示这个 %{host} 上定义的用户" +msgid "Selected Template Contents" +msgstr "选择的模版内容" -#: ../app/views/layouts/listnav/_host.html.haml:192 -msgid "Show the groups defined on this %{host}" -msgstr "显示这个 %{host} 上定义的组" +msgid "Selected VM" +msgstr "选择的虚拟机" -#: ../app/views/layouts/listnav/_host.html.haml:200 -msgid "Show the patches installed on this %{host}" -msgstr "显示安装在这个 %{host} 上的补丁" +msgid "Selected branch or tag does not contain a valid domain" +msgstr "所选分支或标签不含有效域" -#: ../app/views/layouts/listnav/_host.html.haml:207 -msgid "Show the firewall rules on this %{host}" -msgstr "显示这个 %{host} 上的防火墙规则" +msgid "Selected:" +msgstr "已选择的:" -#: ../app/views/layouts/listnav/_host.html.haml:218 -msgid "Show the packages installed on this %{host}" -msgstr "显示安装在这个 %{host} 上的软件包" +msgid "Selection" +msgstr "选择" -#: ../app/views/layouts/listnav/_host.html.haml:224 -msgid "Show the services installed on this %{host}" -msgstr "显示安装在这个 %{host} 上的服务" +msgid "Selections" +msgstr "选择" -#: ../app/views/layouts/listnav/_host.html.haml:230 -msgid "Show the files on this %{host}" -msgstr "显示这个 %{host} 上的文件" +msgid "Send CTRL+ALT+DEL" +msgstr "" -#: ../app/views/layouts/listnav/_host.html.haml:236 -msgid "Show the advanced settings on this %{host}" -msgstr "显示这个 %{host} 上的高级设置" +msgid "Send E-mail" +msgstr "发送电子邮件" -#: ../app/views/layouts/listnav/_host_aggregate.html.haml:22 -msgid "Show this Host Aggregate's parent Cloud Provider" -msgstr "显示这个主机集合的父云供应商" +msgid "Send Management Event" +msgstr "发送管理事件" -#: ../app/views/layouts/listnav/_miq_ae_class.html.haml:19 -msgid "View Instances" -msgstr "查看实例" +msgid "Send SNMP Trap" +msgstr "发送 SNMP Trap" -#: ../app/views/layouts/listnav/_ontap_file_share.html.haml:53 -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:58 -#: ../app/views/layouts/listnav/_ontap_storage_system.html.haml:56 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:37 -#: ../app/views/ontap_file_share/_main.html.haml:16 -#: ../app/views/ontap_logical_disk/_main.html.haml:11 -#: ../app/views/ontap_storage_system/_main.html.haml:16 -#: ../app/views/ontap_storage_volume/_main.html.haml:16 -msgid "Infrastructure Relationships" -msgstr "基础架构关系" - -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:32 -msgid "Show all File Shares" -msgstr "显示所有文件共享" - -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:50 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:30 -#: ../app/views/layouts/listnav/_storage.html.haml:75 -msgid "Show all Base Extents" -msgstr "显示所有基本扩展" - -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:70 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:48 -msgid "Show all Hosts" -msgstr "显示所有主机" - -#: ../app/views/layouts/listnav/_ontap_logical_disk.html.haml:79 -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:56 -msgid "Show all Datastores" -msgstr "显示所有数据存储区" - -#: ../app/views/layouts/listnav/_ontap_storage_volume.html.haml:22 -msgid "Show Filer" -msgstr "显示过滤器" - -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:24 -msgid "Show parent Cloud Provider for this Stack" -msgstr "显示这个栈的父云供应商" +msgid "Send a Management Event" +msgstr "发送管理事件" -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:52 -msgid "Show all Cloud Networks" -msgstr "显示所有的云网络" +msgid "Send an E-mail" +msgstr "发送电子邮件" -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:64 -msgid "Show all Outputs" -msgstr "显示所有的输出" +msgid "Send an SNMP Trap" +msgstr "发送 SNMP Trap" -#: ../app/views/layouts/listnav/_orchestration_stack.html.haml:70 -msgid "Show all Resources" -msgstr "显示所有的资源" +msgid "Send if Report is Empty" +msgstr "发送报表是否为空" -#: ../app/views/layouts/listnav/_persistent_volume.html.haml:22 -msgid "Show this container volume's parent Containers Provider" -msgstr "显示这个容器卷的父容器供应商" +msgid "Send test email" +msgstr "发送测试邮件" -#: ../app/views/layouts/listnav/_resource_pool.html.haml:23 -#: ../app/views/layouts/listnav/_resource_pool.html.haml:33 -msgid "Parent %{title}: %{name}" -msgstr "父 %{title}: %{name}" +msgid "Server" +msgstr "服务器" -#: ../app/views/layouts/listnav/_resource_pool.html.haml:23 -msgid "Show VMs" -msgstr "显示虚拟机" +msgid "Server %{server_name} [%{server_id}] can only be deleted if it is stopped or has not responded for a while" +msgstr "如果服务器 %{server_name} [%{server_id}] 停止或一段时间未响应,只能被删除" -#: ../app/views/layouts/listnav/_resource_pool.html.haml:33 -msgid "Show Parent %{host}" -msgstr "显示父 %{host}" +msgid "Server '%{name}' restarted" +msgstr "服务器 '%{name}' 已重启" -#: ../app/views/layouts/listnav/_security_group.html.haml:34 -msgid "Show parent Orchestration Stack for this Security Group" -msgstr "显示这个安全组的父编配栈" +msgid "Server Address" +msgstr "服务器地址" -#: ../app/views/layouts/listnav/_service.html.haml:24 -#: ../app/views/layouts/listnav/_service.html.haml:30 -msgid "Member VMs (%{count})" -msgstr "成员 VM(%{count})" +msgid "Server Control" +msgstr "服务器控制" -#: ../app/views/layouts/listnav/_service.html.haml:30 -msgid "Show member VMs" -msgstr "显示成员虚拟机" +msgid "Server Groups" +msgstr "服务器组" -#: ../app/views/layouts/listnav/_show_list.html.haml:4 -msgid "No filters defined." -msgstr "没有定义过滤器。" +msgid "Server License" +msgstr "服务器许可证" -#: ../app/views/layouts/listnav/_show_list.html.haml:26 -#: ../app/views/layouts/listnav/_show_list.html.haml:52 -msgid "Apply this filter" -msgstr "应用这个过滤器" +msgid "Server Name" +msgstr "服务器名称" -#: ../app/views/layouts/listnav/_show_list.html.haml:63 -msgid "Set the current filter as my default" -msgstr "将当前过滤器设置为默认选项" +msgid "Server Roles" +msgstr "服务器角色" -#: ../app/views/layouts/listnav/_show_list.html.haml:64 -#: ../app/views/layouts/listnav/_show_list.html.haml:75 -msgid "Set Default" -msgstr "设为默认" +msgid "Server State" +msgstr "服务器状态" -#: ../app/views/layouts/listnav/_show_list.html.haml:75 -msgid "Select a filter to set it as my default" -msgstr "选择设置为默认值的过滤器" +msgid "Server information, Username and matching password fields are needed to perform verification of credentials" +msgstr "执行凭证检验需要服务器信息、用户名和匹配的密码。" -#: ../app/views/layouts/listnav/_storage.html.haml:29 -msgid "Show all registered %{hosts}" -msgstr "显示所有注册的 %{hosts}" +msgid "Server information, username and private key fields are needed to perform verification of credentials" +msgstr "需要服务器信息,用户名和私钥字段来执行验证凭证" -#: ../app/views/layouts/listnav/_storage.html.haml:37 -msgid "Show registered VMs" -msgstr "显示注册的虚拟机" +msgid "Server:" +msgstr "服务器:" -#: ../app/views/layouts/listnav/_storage.html.haml:48 -msgid "Show all Filers" -msgstr "显示所有过滤器" +msgid "Server: %{appliance_name}" +msgstr "服务器:%{appliance_name}" -#: ../app/views/layouts/listnav/_storage.html.haml:60 -msgid "Show File Shares" -msgstr "显示文件共享" +msgid "Servers" +msgstr "服务器" -#: ../app/views/layouts/listnav/_storage.html.haml:67 -msgid "Show all LUNs" -msgstr "显示所有 LUN" +msgid "Servers by Roles" +msgstr "服务器(按角色)" -#: ../app/views/layouts/listnav/_storage.html.haml:83 -#: ../app/views/miq_ae_customization/_old_dialogs_details.html.haml:53 -#: ../app/views/miq_ae_customization/_old_dialogs_form.html.haml:77 -#: ../app/views/storage/_main.html.haml:19 -msgid "Content" -msgstr "内容" +msgid "Service" +msgstr "服务" -#: ../app/views/layouts/listnav/_storage.html.haml:86 -msgid "Show all files on this Datastore" -msgstr "显示这个数据存储区上的所有文件" +msgid "Service \"%{name}\" was saved" +msgstr "服务 \"%{name}\" 已保存" -#: ../app/views/layouts/listnav/_storage.html.haml:94 -msgid "Show VM Provisioned Disk Files on this Datastore" -msgstr "显示这个数据存储区上的虚拟机置备磁盘文件" +msgid "Service Account JSON" +msgstr "服务帐号 JSON" -#: ../app/views/layouts/listnav/_storage.html.haml:102 -msgid "Show VM snapshot files on this Datastore" -msgstr "显示这个数据存储区上的虚拟机快照文件" +msgid "Service Catalogs" +msgstr "服务类别" -#: ../app/views/layouts/listnav/_storage.html.haml:110 -msgid "Show VM memory files on this Datastore" -msgstr "显示这个 数据存储区上的虚拟机内存文件" +msgid "Service Dialog \"%{name}\" was successfully created" +msgstr "已成功创建服务对话框 \"%{name}\"" -#: ../app/views/layouts/listnav/_storage.html.haml:118 -msgid "Show Other VM files on this Datastore" -msgstr "显示这个数据源上的其他虚拟机文件" +msgid "Service Dialog Import / Export" +msgstr "服务对话框导入/导出" -#: ../app/views/layouts/listnav/_storage.html.haml:126 -msgid "Show non-VM files on this Datastore" -msgstr "显示这个数据存储区上的非虚拟机文件" +msgid "Service Dialog Import/Export" +msgstr "服务对话框导入/导出" -#: ../app/views/middleware_server/_add_datasource.html.haml:35 -msgid "Create Datasource" -msgstr "创建数据源" +msgid "Service Dialog Name" +msgstr "服务区对话框名称" -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:5 -msgid "Step 1/3: Datasource Attributes" -msgstr "步骤 1/3:数据源属性" +msgid "Service Dialogs" +msgstr "服务对话框" -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:22 -msgid "Enter Datasource name" -msgstr "输入数据源名称" +msgid "Service Pack" +msgstr "服务补丁" -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:38 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:37 -msgid "Maximum length is 100" -msgstr "最长为 100" +msgid "Service Selection" +msgstr "服务选择" -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:55 -msgid "Enter JNDI name" -msgstr "输入 JNDI 名称" +msgid "Service dialog import cancelled" +msgstr "已取消服务对话框导入" -#: ../app/views/middleware_server/_add_datasource_step1.html.haml:71 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:71 -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:105 -msgid "Maximum length is 256" -msgstr "最长为 256" +msgid "Service dialogs imported successfully" +msgstr "服务对话框导入成功" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:5 -msgid "Step 2/3: JDBC Driver" -msgstr "步骤 2/3:JDBC 驱动程序" +msgid "Service is already retired" +msgstr "服务已停用" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:24 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:72 -msgid "Enter JDBC Driver name" -msgstr "输入 JDBC 驱动类" +msgid "Services" +msgstr "服务" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:48 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:92 -msgid "Module Name" -msgstr "模块名称" +msgid "Session Timeout" +msgstr "会话超时" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:57 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:101 -msgid "Enter JDBC Module name" -msgstr "输入 JDBC 模块类" +msgid "Session was timed out due to inactivity. Please log in again." +msgstr "不活跃导致会话超时。请再次登录。" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:82 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:122 -msgid "Driver Class" -msgstr "驱动类" +msgid "Set Custom Attribute Settings" +msgstr "设置自定义属性" -#: ../app/views/middleware_server/_add_datasource_step2.html.haml:91 -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:131 -msgid "Enter JDBC Driver Class" -msgstr "输入 JDBC 驱动类" +msgid "Set Default" +msgstr "设为默认" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:5 -msgid "Step 3/3: Connection Settings" -msgstr "步骤 3/3:连接设置" +msgid "Set Node to Manageable" +msgstr "将节点设置为可管理" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:37 -msgid "Must start with 'jdbc:'" -msgstr "必须以 'jdbc:' 开始" +msgid "Set Nodes to Manageable" +msgstr "将节点设置为可管理" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:55 -msgid "Enter Username" -msgstr "输入用户名" +msgid "Set Ownership" +msgstr "设置所有权" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:81 -msgid "Enter Password" -msgstr "输入密码" +msgid "Set Ownership for %{vms_or_templates}" +msgstr "设置 %{vms_or_templates} 的所有权" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:92 -msgid "Security Domain" -msgstr "安全域" +msgid "Set Ownership for Service" +msgstr "" -#: ../app/views/middleware_server/_add_datasource_step3.html.haml:98 -msgid "Enter Security Domain" -msgstr "输入安全域" +msgid "Set Ownership for the selected Services" +msgstr "为所选的服务设置所有权" -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:48 -#: ../app/views/middleware_server/_deploy.html.haml:48 -msgid "Select the file to deploy" -msgstr "选择要部署的文件" +msgid "Set Ownership for the selected Templates" +msgstr "为所选的模版设置所有权" -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:152 -msgid "Major Version" -msgstr "主要版本" +msgid "Set Ownership for the selected items" +msgstr "为所选的项设置所有权" -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:160 -msgid "Enter Major Version" -msgstr "输入主要版本" +msgid "Set Ownership for this Image" +msgstr "为这个镜像设置所有权" -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:170 -msgid "Minor Version" -msgstr "次要版本" +msgid "Set Ownership for this Instance" +msgstr "为这个实例设置所有权" -#: ../app/views/middleware_server/_add_jdbc_driver.html.haml:178 -msgid "Enter Minor Version" -msgstr "输入次要版本" +msgid "Set Ownership for this Service" +msgstr "为这个服务设置所有权" -#: ../app/views/middleware_server/_choose_datasource.html.haml:5 -msgid "Choose Datasource:" -msgstr "选择数据源:" +msgid "Set Ownership for this Template" +msgstr "为这个模版设置所有权" -#: ../app/views/middleware_server/_choose_datasource.html.haml:15 -msgid "Datasource:" -msgstr "数据源:" +msgid "Set Ownership for this VM" +msgstr "为这个虚拟机设置所有权" -#: ../app/views/middleware_server/_deploy.html.haml:36 -msgid "Add Middleware Deployment" -msgstr "添加中间件部署" +msgid "Set Ownership was cancelled by the user" +msgstr "用户取消了设置所有权" -#: ../app/views/middleware_server/_deploy.html.haml:62 -msgid "Enable Deployment" -msgstr "启用部署" +msgid "Set Retirement Date" +msgstr "设置退订日期" -#: ../app/views/middleware_server/_deploy.html.haml:81 -msgid "Runtime Name" -msgstr "Runtime 名称" +msgid "Set Retirement Date does not apply to selected %{model}" +msgstr "设置退订日期不适用于所选的 %{model}" -#: ../app/views/middleware_server/_deploy.html.haml:87 -#: ../app/views/shared/_file_chooser.html.haml:8 -msgid "No file chosen" -msgstr "没有选择任何文件" +msgid "Set Retirement Date for this Service" +msgstr "" -#: ../app/views/middleware_server/_deploy.html.haml:97 -msgid "Overwrite (if exists)" -msgstr "覆盖(如果存在)" +msgid "Set Retirement Dates" +msgstr "设置退订日期" -#: ../app/views/middleware_server/_ops_params.html.haml:49 -msgid "Timeout" -msgstr "超时" +msgid "Set Retirement Dates for the selected Orchestration Stacks" +msgstr "为所选的编配栈设置退订日期" -#: ../app/views/middleware_server/_ops_params.html.haml:64 -msgid "seconds" -msgstr "秒" +msgid "Set Retirement Dates for the selected items" +msgstr "为所选的项设置退订日期" -#: ../app/views/middleware_server/_ops_params.html.haml:74 -msgid "Timeout is required" -msgstr "超时时间是必需的" +msgid "Set Retirement Dates for this Instance" +msgstr "为这个实例设置退订日期" -#: ../app/views/middleware_server/_ops_params.html.haml:79 -msgid "Timeout min is 0" -msgstr "超时时间最小为 60" +msgid "Set Retirement Dates for this Orchestration Stack" +msgstr "为 编配栈设置退订日期" -#: ../app/views/middleware_server/_ops_params.html.haml:84 -msgid "Timeout max is 60" -msgstr "超时时间最大为 60" +msgid "Set Retirement Dates for this VM" +msgstr "为这个虚拟机设置退订日期" -#: ../app/views/middleware_topology/show.html.haml:89 -msgid "Messaging" -msgstr "消息" +msgid "Set Retirement this Service?" +msgstr "" -#: ../app/views/middleware_topology/show.html.haml:144 -msgid "Server Groups" -msgstr "服务器组" +msgid "Set Tenant" +msgstr "" -#: ../app/views/middleware_topology/show.html.haml:162 -msgid "" -"Click on the legend to show/hide entities, and double click on the entities in" -" the graph to navigate to their summary pages." -msgstr "点击上面的图标显示/隐藏条目,双击图形中的条目进入它们的概述页。" +msgid "Set filters to default" +msgstr "设置过滤器为默认选项" -#: ../app/views/miq_ae_class/_all_tabs.html.haml:11 -#: ../app/views/miq_ae_class/_class_methods.html.haml:5 -msgid "Methods" -msgstr "方法" +msgid "Set selected Actions to Asynchronous" +msgstr "设置所选的动作为异步的" -#: ../app/views/miq_ae_class/_all_tabs.html.haml:17 -#: ../app/views/miq_ae_class/_class_fields.html.haml:8 -#: ../app/views/miq_ae_class/_class_fields.html.haml:69 -msgid "Schema" -msgstr "模式" +msgid "Set selected Actions to Synchronous" +msgstr "设置所选的动作为同步的" -#: ../app/views/miq_ae_class/_all_tabs.html.haml:44 -msgid "Method Inputs" -msgstr "方法输入" +msgid "Set selected items to manageable state." +msgstr "将所选项目设定为可管理状态" -#: ../app/views/miq_ae_class/_all_tabs.html.haml:64 -msgid "Namespace Details" -msgstr "命名空间细节" +msgid "Set selected items to manageable state?" +msgstr "是否将所选项目设定为可管理状态?" -#: ../app/views/miq_ae_class/_all_tabs.html.haml:78 -msgid "Namespaces" -msgstr "命名空间" +msgid "Set the current filter as my default" +msgstr "将当前过滤器设置为默认选项" -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_inputs.html.haml:16 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:130 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:36 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:204 -msgid "Default Value" -msgstr "默认值" +msgid "Set this item to manageable state" +msgstr "将该项目设定为可管理" -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:27 -msgid "Max Retries" -msgstr "最大的重试次数" +msgid "Set this item to manageable?" +msgstr "是否将该项目设定为可管理?" -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:29 -msgid "Max Time" -msgstr "最长时间" +msgid "Set to blank" +msgstr "设置为空" -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:19 -#: ../app/views/miq_ae_class/_instance_form.html.haml:91 -msgid "On Entry" -msgstr "On Entry" +msgid "Set/Remove Retirement Date" +msgstr "设置/删除 Ritrement 日期" -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:23 -#: ../app/views/miq_ae_class/_instance_form.html.haml:95 -msgid "On Error" -msgstr "On Error" +msgid "Set/Remove retirement date for %{vm_or_template}" +msgstr "设置/删除 %{vm_or_template} 的退订日期" -#: ../app/views/miq_ae_class/_class_fields.html.haml:14 -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_instance_fields.html.haml:21 -#: ../app/views/miq_ae_class/_instance_form.html.haml:93 -msgid "On Exit" -msgstr "On Exit" +msgid "Set/Remove retirement date for Service" +msgstr "" -#: ../app/views/miq_ae_class/_class_fields.html.haml:30 -#: ../app/views/miq_ae_class/_instance_form.html.haml:109 -#: ../app/views/miq_policy/_rsop_form.html.haml:17 -#: ../app/views/miq_request/_prov_options.html.haml:62 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general-review.html.haml:19 -msgid "Type:" -msgstr "类型:" +msgid "Set/remove retirement date was cancelled by the user" +msgstr "用户取消了设置/删除退订日期" -#: ../app/views/miq_ae_class/_class_fields.html.haml:35 -#: ../app/views/miq_ae_class/_instance_form.html.haml:114 -msgid "Data Type:" -msgstr "数据类型:" +msgid "Setting priority is not allowed for the selected item" +msgstr "所选的项目不允许设置优先级" -#: ../app/views/miq_ae_class/_class_fields.html.haml:39 -#: ../app/views/miq_ae_class/_instance_form.html.haml:119 -msgid "Substitution:" -msgstr "替换:" +msgid "Setting tracing to true may cause excessive log lines to be written" +msgstr "设置 tracing 为 true 可能导致写入过多的日志记录" -#: ../app/views/miq_ae_class/_class_fields.html.haml:56 -msgid "No schema found" -msgstr "未找到 Schema" +msgid "Settings" +msgstr "设置" -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_inputs.html.haml:18 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:132 -msgid "Data Type" -msgstr "数据类型" +msgid "Settings %{model}" +msgstr "设置 %{model}" -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -#: ../app/views/miq_ae_class/_class_form.html.haml:45 -#: ../app/views/miq_ae_class/_class_props.html.haml:42 -#: ../app/views/miq_ae_class/_instance_form.html.haml:46 -#: ../app/views/miq_ae_class/_method_form.html.haml:48 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:48 -msgid "Display Name" -msgstr "显示名称" +msgid "Settings %{model} \"%{name}\"" +msgstr "设置 %{model} \"%{name}\"" -#: ../app/views/miq_ae_class/_class_fields.html.haml:79 -msgid "Sub" -msgstr "Sub" +msgid "Settings %{model} \"%{name}\" (current)" +msgstr "设置 %{model} \"%{name}\"(当前的)" -#: ../app/views/miq_ae_class/_class_fields.html.haml:93 -msgid "Are you sure you want to delete field from schema?" -msgstr "确定要从 schema 里删除字段吗?" +msgid "Settings %{text}" +msgstr "设置 %{text}" -#: ../app/views/miq_ae_class/_class_fields.html.haml:93 -msgid "Click to delete this field from schema" -msgstr "点击以从 schema 里删除这个字段" +msgid "Severity" +msgstr "" -#: ../app/views/miq_ae_class/_class_fields.html.haml:150 -msgid "New Field" -msgstr "新的字段" +msgid "Shared" +msgstr "已共享" -#: ../app/views/miq_ae_class/_class_fields.html.haml:160 -#: ../app/views/miq_ae_class/_inputs.html.haml:98 -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:7 -#: ../app/views/ops/_ap_form_file.html.haml:55 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:99 -#: ../app/views/ops/_ap_form_registry.html.haml:74 -#: ../app/views/ops/_classification_entry.html.haml:18 -#: ../app/views/ops/_ldap_forest_entries.html.haml:63 -#: ../app/views/ops/_ldap_forest_entries.html.haml:63 -msgid "Add this entry" -msgstr "添加这个条目" +msgid "Shelve" +msgstr "Shelve" -#: ../app/views/miq_ae_class/_class_instances.html.haml:50 -msgid "No instances found" -msgstr "未找到实例" +msgid "Shelve Offload" +msgstr "Shelve Offload" -#: ../app/views/miq_ae_class/_class_methods.html.haml:50 -msgid "No methods found" -msgstr "未找到方法" +msgid "Shelve Offload the selected items" +msgstr "Shelve Offload 所选的项" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:18 -msgid "From Domain" -msgstr "From 域" +msgid "Shelve Offload the selected items?" +msgstr "Shelve Offload 所选的项?" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:34 -msgid "To Domain" -msgstr "至域" +msgid "Shelve Offload this Instance" +msgstr "Shelve Offload 这个实例" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:62 -msgid "New Name" -msgstr "新的名称" +msgid "Shelve Offload this Instance?" +msgstr "Shelve Offload 这个实例?" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:78 -msgid "Copy to same path" -msgstr "复制到相同的路径" +msgid "Shelve the selected items" +msgstr "Shelve 所选的项" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:96 -msgid "Replace items if they already exist?" -msgstr "如果项目已存在也替换它们吗?" +msgid "Shelve the selected items?" +msgstr "Shelve 所选的项?" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:114 -msgid "Namespace" -msgstr "命名空间" +msgid "Shelve this Instance" +msgstr "Shelve 这个实例" -#: ../app/views/miq_ae_class/_copy_objects_form.html.haml:132 -msgid "selected to copy" -msgstr "选择复制的" +msgid "Shelve this Instance?" +msgstr "Shelve 这个实例?" -#: ../app/views/miq_ae_class/_domain_overrides.html.haml:2 -msgid "Domain Overrides (by priority)" -msgstr "域覆盖(按优先级)" +msgid "Shortcut description is required" +msgstr "简短描述是必需的" -#: ../app/views/miq_ae_class/_domain_overrides.html.haml:13 -msgid "Click to view this %{model} in the \"%{domain_name}\" Domain" -msgstr "点击以查看 \"%{domain_name}\" 域里的 %{model}" +msgid "Shortcuts" +msgstr "快捷键" -#: ../app/views/miq_ae_class/_domains_priority_form.html.haml:9 -msgid "Domains:" -msgstr "域:" +msgid "Show" +msgstr "显示" -#: ../app/views/miq_ae_class/_domains_priority_form.html.haml:25 -#: ../app/views/miq_ae_class/_fields_seq_form.html.haml:27 -#: ../app/views/ops/_ldap_seq_form.html.haml:46 -#: ../app/views/ops/_ldap_seq_form.html.haml:46 -#: ../app/views/report/_db_seq_form.html.haml:35 -#: ../app/views/shared/buttons/_column_lists.html.haml:99 -#: ../app/views/shared/buttons/_group_order_form.html.haml:41 -msgid "Move selected fields up" -msgstr "上移所选的字段" +msgid "Show %{cluster_title} drift history" +msgstr "显示 %{cluster_title} 偏差历史" -#: ../app/views/miq_ae_class/_domains_priority_form.html.haml:32 -#: ../app/views/miq_ae_class/_fields_seq_form.html.haml:39 -#: ../app/views/ops/_ldap_seq_form.html.haml:57 -#: ../app/views/ops/_ldap_seq_form.html.haml:57 -#: ../app/views/report/_db_seq_form.html.haml:47 -#: ../app/views/shared/buttons/_column_lists.html.haml:115 -#: ../app/views/shared/buttons/_group_order_form.html.haml:57 -msgid "Move selected fields down" -msgstr "下移所选的字段" +msgid "Show %{host_title}" +msgstr "显示 %{host_title}" -#: ../app/views/miq_ae_class/_domains_priority_form.html.haml:42 -#: ../app/views/report/_db_seq_form.html.haml:59 -#: ../app/views/shared/buttons/_group_order_form.html.haml:73 -msgid "* Select one or more consecutive groups to move up or down." -msgstr "* 选择一个或多个连续组来上移或下移。" +msgid "Show %{hosts} & %{clusters}" +msgstr "显示 %{hosts} & %{clusters}" -#: ../app/views/miq_ae_class/_fields_seq_form.html.haml:11 -msgid "Class Schema Sequencing:" -msgstr "Class Schema Sequencing:" +msgid "Show %{host} OS information" +msgstr "显示 %{host} OS 信息" -#: ../app/views/miq_ae_class/_fields_seq_form.html.haml:54 -msgid "* Select one or more consecutive fields to move up or down." -msgstr "* 选择一个或多个连续字段来上移或下移。" +msgid "Show %{host} devices" +msgstr "显示 %{host} 设备" -#: ../app/views/miq_ae_class/_git_domain_refresh.html.haml:17 -#: ../app/views/miq_ae_tools/_import_export.html.haml:186 -msgid "Branch/Tag" -msgstr "分支/标签" +msgid "Show %{host} drift history" +msgstr "显示 %{host} 偏差历史" -#: ../app/views/miq_ae_class/_git_domain_refresh.html.haml:33 -#: ../app/views/miq_ae_tools/_import_export.html.haml:201 -msgid "Branches" -msgstr "分支" +msgid "Show %{host} network" +msgstr "显示 %{host} 网络" -#: ../app/views/miq_ae_class/_inputs.html.haml:30 -msgid "Are you sure you want to delete input field from method?" -msgstr "确定要从方法里删除 input 字段吗?" +msgid "Show %{host} storage adapters" +msgstr "显示 %{host} 存储适配器" -#: ../app/views/miq_ae_class/_inputs.html.haml:30 -#: ../app/views/miq_ae_class/_inputs.html.haml:30 -msgid "Click to delete this input field from method" -msgstr "点击以从方法里删除这个输入字段" +msgid "Show %{label}" +msgstr "显示 %{label}" -#: ../app/views/miq_ae_class/_inputs.html.haml:69 -msgid "Click to add a new parameter" -msgstr "点击以添加新的参数" +msgid "Show %{label} '%{value}'" +msgstr "显示 %{label} '%{value}'" -#: ../app/views/miq_ae_class/_inputs.html.haml:79 -msgid "New Parameter" -msgstr "新的参数" +msgid "Show %{name}" +msgstr "显示 %{name}" -#: ../app/views/miq_ae_class/_instance_fields.html.haml:42 -msgid "Type: %{automation_type}" -msgstr "类型:%{automation_type}" +msgid "Show %{object_name} Summary" +msgstr "显示 %{object_name} 总结" -#: ../app/views/miq_ae_class/_instance_fields.html.haml:45 -msgid "Data type: %{data_type}" -msgstr "数据类型:%{data_type}" +msgid "Show %{plural_linked_name}" +msgstr "显示 %{plural_linked_name}" -#: ../app/views/miq_ae_class/_instance_fields.html.haml:47 -msgid "Substitute: %{substitute}" -msgstr "替代:%{substitute}" +msgid "Show %{title} Network" +msgstr "显示 %{title} 网络" -#: ../app/views/miq_ae_class/_instance_form.html.haml:5 -#: ../app/views/miq_ae_class/_method_form.html.haml:6 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:7 -msgid "Main Info" -msgstr "主要信息" +msgid "Show %{title} Quadrants" +msgstr "显示 %{title} 象限" -#: ../app/views/miq_ae_class/_method_data.html.haml:18 -msgid "Optional, if not specified, method name is used." -msgstr "自选,如果未指定则使用方法名称。" +msgid "Show %{title} Storage Adapters" +msgstr "显示 %{title} 存储适配器" -#: ../app/views/miq_ae_class/_method_form.html.haml:65 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:64 -msgid "Location" -msgstr "位置" +msgid "Show %{title} devices" +msgstr "显示 %{title} 设备" -#: ../app/views/miq_ae_class/_method_form.html.haml:100 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:95 -msgid "Builtin name" -msgstr "内建名称" +msgid "Show %{title} drift history" +msgstr "显示 %{title} 偏差历史" -#: ../app/views/miq_ae_class/_method_form.html.haml:100 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:95 -msgid "Data" -msgstr "数据" +msgid "Show Ad hoc Metrics for this Provider" +msgstr "" -#: ../app/views/miq_ae_class/_method_form.html.haml:106 -#: ../app/views/miq_ae_class/_method_inputs.html.haml:120 -msgid "Input Parameters" -msgstr "输入参数" +msgid "Show Capacity & Utilization" +msgstr "显示容量和利用率" -#: ../app/views/miq_ae_class/_method_form.html.haml:118 -msgid "Hide Input Parameters" -msgstr "隐藏输入参数" +msgid "Show Capacity & Utilization data for this Availability Zone" +msgstr "显示这个可用性区的容量和利用率数据" -#: ../app/views/miq_ae_class/_method_form.html.haml:118 -msgid "Show Input Parameters" -msgstr "显示输入参数" +msgid "Show Capacity & Utilization data for this Container" +msgstr "显示这个容器的容量和利用率数据" -#: ../app/views/miq_ae_class/_method_inputs.html.haml:128 -msgid "Input Name" -msgstr "输入名称" +msgid "Show Capacity & Utilization data for this Datasource" +msgstr "显示这个数据源的容量和利用率数据" -#: ../app/views/miq_ae_class/_ns_list.html.haml:81 -#: ../app/views/miq_policy/_alert_details.html.haml:13 -#: ../app/views/ops/_ap_show.html.haml:7 -#: ../app/views/resource_pool/_config.html.haml:11 -msgid "Info" -msgstr "信息" +msgid "Show Capacity & Utilization data for this Datastore" +msgstr "显示这个数据存储区的容量和利用率数据" -#: ../app/views/miq_ae_customization/_dialog_details.html.haml:15 -#: ../app/views/report/_form_styling.html.haml:126 -msgid "Sample" -msgstr "样本" +msgid "Show Capacity & Utilization data for this Group" +msgstr "显示这个组的容量和利用率数据" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:6 -msgid "Element Information" -msgstr "元素信息" +msgid "Show Capacity & Utilization data for this Instance" +msgstr "显示这个实例的容量和利用率数据" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:15 -#: ../app/views/miq_ae_customization/_dialog_group_form.html.haml:13 -#: ../app/views/miq_ae_customization/_dialog_info.html.haml:15 -#: ../app/views/miq_ae_customization/_dialog_info_form.html.haml:14 -#: ../app/views/miq_ae_customization/_dialog_tab_form.html.haml:13 -#: ../app/views/ops/_label_tag_mapping_form.html.haml:43 -msgid "Label" -msgstr "标签" +msgid "Show Capacity & Utilization data for this Middleware messaging" +msgstr "显示这个中间件消息系统的容量和利用率数据" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:88 -msgid "Only 1 Date or Date/Time element can be present in a Dialog" -msgstr "在对话框里只能出现一个 Date 或 Date/Time 元素 " +msgid "Show Capacity & Utilization data for this Node" +msgstr "显示这个节点的容量和利用率数据" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:96 -msgid "Dynamic" -msgstr "动态的" +msgid "Show Capacity & Utilization data for this Project" +msgstr "显示这个项目的容量和利用率数据" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:126 -msgid "Auto Refresh other fields when modified" -msgstr "修改时自动刷新其他字段" +msgid "Show Capacity & Utilization data for this Provider" +msgstr "显示这个供应商的容量和利用率数据" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:149 -#: ../app/views/ops/_all_tabs.html.haml:37 -msgid "Advanced" -msgstr "高级设置" +msgid "Show Capacity & Utilization data for this Replicator" +msgstr "显示这个复制器的容量和利用率数据" -#: ../app/views/miq_ae_customization/_dialog_field_form.html.haml:158 -msgid "Reconfigurable" -msgstr "可重新配置的" +msgid "Show Capacity & Utilization data for this Server" +msgstr "为该服务器显示容量和利用率数据" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_dynamic_options.html.haml:5 -msgid "Entry Point (NS/Cls/Inst)" -msgstr "入口点(NS/CLS/INST)" +msgid "Show Capacity & Utilization data for this Service" +msgstr "显示这个服务的容量和利用率数据" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_dynamic_options.html.haml:21 -msgid "Show Refresh Button" -msgstr "显示刷新按钮" +msgid "Show Capacity & Utilization data for this Template" +msgstr "显示这个模版的容量和利用率数据" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_dynamic_options.html.haml:37 -msgid "Load Values on Init" -msgstr "在 Init 时加载值" +msgid "Show Capacity & Utilization data for this VM" +msgstr "显示这个虚拟机的容量和利用率数据" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_dynamic_options.html.haml:52 -msgid "Auto refresh" -msgstr "自动刷新" +msgid "Show Capacity & Utilization data for this item" +msgstr "显示这项的容量和利用率数据" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:5 -msgid "Read only" -msgstr "只读的" +msgid "Show Chargeback preview" +msgstr "" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:19 -msgid "Visible" -msgstr "可见" +msgid "Show Compliance History of this %{model} (Last 10 Checks)" +msgstr "显示这个 %{model} 的合规性历史(最近 10 次检查)" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:71 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:226 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:324 -msgid "Value Type" -msgstr "值类型" +msgid "Show Compliance History of this %{title} (Last 10 Checks)" +msgstr "显示这个 %{title} 的合规性历史(最近 10 次检查)" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:76 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:231 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:329 -msgid "String" -msgstr "字符串" +msgid "Show Compliance History of this Container Image (Last 10 Checks)" +msgstr "显示这个容器镜像的合规性历史(最近 10 次检查)" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:92 -msgid "Protected" -msgstr "受保护的" +msgid "Show Compliance History of this Node (Last 10 Checks)" +msgstr "显示这个节点的合规性历史(最近 10 次检查)" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:121 -msgid "Validator Type" -msgstr "验证类型" +msgid "Show Compliance History of this Replicator (Last 10 Checks)" +msgstr "显示这个复制器的合规性历史(最近 10 次检查)" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:126 -msgid "Regular Expression" -msgstr "常规表达式" +msgid "Show Compliance History of this VM (Last 10 Checks)" +msgstr "显示这个虚拟机的合规性历史(最近 10 次检查)" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:142 -msgid "Validator Rule" -msgstr "验证规则" +msgid "Show Costs by" +msgstr "显示成本" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:166 -msgid "Show Past Dates" -msgstr "显示过去的日期" +msgid "Show Costs by must be selected" +msgstr "必须选择 'Show Costs by '" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:247 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:345 -#: ../app/views/report/_report_info.html.haml:45 -#: ../app/views/report/_report_list.html.haml:127 -msgid "Sort By" -msgstr "排序依据" +msgid "Show Credential" +msgstr "" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:267 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:365 -#: ../app/views/report/_form_sort.html.haml:51 -msgid "Sort Order" -msgstr "排序顺序" +msgid "Show Detailed Events" +msgstr "显示详细的事件" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:272 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:370 -#: ../app/views/report/_form_sort.html.haml:56 -msgid "Ascending" -msgstr "升序的" +msgid "Show Details of Compliance Check on %{date}" +msgstr "显示 %{date} 进行的合规性检查的细节" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:272 -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:370 -#: ../app/views/report/_form_sort.html.haml:56 -msgid "Descending" -msgstr "降序的" +msgid "Show Event Log on this VM" +msgid_plural "Show Event Logs on this VM" +msgstr[0] "显示这个虚拟机上的事件日志" -#: -#: ../app/views/miq_ae_customization/_dialog_field_form_non_dynamic_options.html.haml:308 -msgid "Single Select" -msgstr "单一选择" +msgid "Show Event Logs on this VM" +msgstr "显示这个虚拟机的事件日志" -#: ../app/views/miq_ae_customization/_dialog_group_form.html.haml:4 -msgid "Box Information" -msgstr "Box 信息" +msgid "Show Host Events" +msgstr "显示主机事件" -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:7 -msgid "Import Service Dialogs" -msgstr "导入服务对话框" +msgid "Show Input Parameters" +msgstr "显示输入参数" -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:24 -msgid "Dialog name" -msgstr "对话框名称" +msgid "Show Non-VM Files installed on this %{storage}" +msgstr "显示这个 %{storage} 上安装的非虚拟机文件" -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:65 -#: ../app/views/report/_export_widgets.html.haml:66 -msgid "Commit Changes" -msgstr "提交修改" +msgid "Show OS container information" +msgstr "显示 OS 容器信息" -#: ../app/views/miq_ae_customization/_dialog_import_export.html.haml:74 -#: ../app/views/miq_policy/_export.html.haml:8 -#: ../app/views/ops/_ldap_server_entry.html.haml:7 -#: ../app/views/ops/_ldap_server_entry.html.haml:44 -#: ../app/views/report/_export_custom_reports.html.haml:12 -#: ../app/views/report/_export_widgets.html.haml:80 -msgid "Import" -msgstr "导入" +msgid "Show Other VM Files installed on this %{storage}" +msgstr "显示这个 %{storage} 上安装的其他虚拟机文件" -#: ../app/views/miq_ae_customization/_dialog_info_form.html.haml:5 -msgid "Dialog Information" -msgstr "对话框信息" +msgid "Show Other VM files on this Datastore" +msgstr "显示这个数据源上的其他虚拟机文件" -#: ../app/views/miq_ae_customization/_dialog_res_remove.html.haml:4 -msgid "Remove this %{type}" -msgstr "删除这个 %{type}" +msgid "Show Parent %{host}" +msgstr "显示父 %{host}" -#: ../app/views/miq_ae_customization/_dialog_resource.html.haml:5 -msgid "Drag this Tab to a new location" -msgstr "将这个标签页拖至新位置" +msgid "Show Parent %{title} %{name}" +msgstr "显示父 %{title} %{name}" -#: ../app/views/miq_ae_customization/_dialog_resources.html.haml:24 -msgid "No %{types} found." -msgstr "未找到 %{types}。" +msgid "Show Parent %{title} '%{name}'" +msgstr "显示父 %{title} '%{name}'" -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:65 -msgid "at" -msgstr "于" +msgid "Show Past Dates" +msgstr "显示过去的日期" -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:88 -msgid "Option 1" -msgstr "选项 1" +msgid "Show Refresh Button" +msgstr "显示刷新按钮" -#: ../app/views/miq_ae_customization/_dialog_sample.html.haml:88 -msgid "Option 2" -msgstr "选项 2" +msgid "Show Repository" +msgstr "" -#: ../app/views/miq_ae_customization/_dialog_tab_form.html.haml:4 -msgid "Tab Information" -msgstr "标签页信息" +msgid "Show Resource Pools" +msgstr "显示资源池" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:28 -#: ../app/views/ops/_ap_form_file.html.haml:112 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:166 -#: ../app/views/ops/_ap_form_registry.html.haml:121 -#: ../app/views/ops/_classification_entry.html.haml:51 -#: ../app/views/ops/_ldap_forest_entries.html.haml:108 -#: ../app/views/ops/_ldap_forest_entries.html.haml:108 -msgid "Update this entry" -msgstr "更新这个条目" +msgid "Show Running Processes on this VM" +msgstr "显示这个虚拟机上运行的进程" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:48 -#: ../app/views/ops/_ap_form_file.html.haml:23 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:29 -#: ../app/views/ops/_ap_form_registry.html.haml:25 -#: ../app/views/ops/_classification_entry.html.haml:65 -#: ../app/views/ops/_ldap_server_entry.html.haml:84 -msgid "Click to add a new entry" -msgstr "点击以添加新的条目" +msgid "Show Sort Breaks" +msgstr "显示 Sort Break" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:58 -msgid "New Entry" -msgstr "新的条目" +msgid "Show Summary" +msgstr "显示总结" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:61 -msgid "Click on this row to create a new entry" -msgstr "点击这行来创建新的条目" +msgid "Show Timelines" +msgstr "显示时间线" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:74 -msgid "Move selected field up" -msgstr "上移所选的字段" +msgid "Show Timelines for this Availability Zone" +msgstr "显示这个可用性区的时间线" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:89 -msgid "Move selected field down" -msgstr "下移所选的字段" +msgid "Show Timelines for this Cloud Provider" +msgstr "显示这个云供应商的时间线" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:99 -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:114 -#: ../app/views/ops/_ap_form_file.html.haml:82 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:216 -#: ../app/views/ops/_ap_form_registry.html.haml:166 -#: ../app/views/ops/_classification_entry.html.haml:101 -msgid "Click to delete this entry" -msgstr "点击以删除这个条目" +msgid "Show Timelines for this Container" +msgstr "显示这个容器的时间线" -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:120 -#: ../app/views/miq_ae_customization/_field_value_entry.html.haml:126 -#: ../app/views/ops/_ap_form_file.html.haml:71 -#: ../app/views/ops/_ap_form_file.html.haml:76 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:185 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:190 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:195 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:201 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:206 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:211 -#: ../app/views/ops/_ap_form_registry.html.haml:149 -#: ../app/views/ops/_ap_form_registry.html.haml:154 -#: ../app/views/ops/_ap_form_registry.html.haml:159 -#: ../app/views/ops/_classification_entry.html.haml:86 -#: ../app/views/ops/_classification_entry.html.haml:91 -msgid "Click to update this entry" -msgstr "点击以更新这个条目" +msgid "Show Timelines for this Containers Provider" +msgstr "显示这个容器供应商的时间线" -#: ../app/views/miq_ae_customization/_field_values.html.haml:6 -msgid "Entries" -msgstr "条目" +msgid "Show Timelines for this Datawarehouse Provider" +msgstr "" -#: ../app/views/miq_ae_customization/_old_dialogs_folders.html.haml:9 -msgid "View %{name} Folder" -msgstr "查看 %{name} 文件夹" +msgid "Show Timelines for this Group" +msgstr "显示这个组的时间线" -#: ../app/views/miq_ae_customization/_tag_field_values.html.haml:3 -msgid "Category Tag Entries" -msgstr "类别标签条目" +msgid "Show Timelines for this Infrastructure Provider" +msgstr "显示这个基础架构供应商的时间线" -#: ../app/views/miq_ae_tools/_import_export.html.haml:26 -msgid "Import Datastore classes (*.zip)" -msgstr "导入数据存储区类(*.zip)" +msgid "Show Timelines for this Instance" +msgstr "显示这个实例的时间线" -#: ../app/views/miq_ae_tools/_import_export.html.haml:55 -msgid "Import Datastore via git" -msgstr "使用 git 导入数据存储区" +msgid "Show Timelines for this Middleware Provider" +msgstr "显示这个中间件供应商的时间线" -#: ../app/views/miq_ae_tools/_import_export.html.haml:68 -msgid "Git URL:" -msgstr "Git URL:" +msgid "Show Timelines for this Network Provider" +msgstr "显示这个网络供应商的时间线" -#: ../app/views/miq_ae_tools/_import_export.html.haml:81 -msgid "Username (optional):" -msgstr "用户名(可选):" +msgid "Show Timelines for this Node" +msgstr "显示这个节点的时间线" -#: ../app/views/miq_ae_tools/_import_export.html.haml:94 -msgid "Password (optional):" -msgstr "密码(可选):" +msgid "Show Timelines for this Physical Infrastructure Provider" +msgstr "" -#: ../app/views/miq_ae_tools/_import_export.html.haml:107 -#: ../app/views/provider_foreman/_form.html.haml:139 -msgid "Verify Peer Certificate" -msgstr "检验对等证书" +msgid "Show Timelines for this Project" +msgstr "显示这个项目的时间线" -#: ../app/views/miq_ae_tools/_import_export.html.haml:143 -msgid "Export all classes and instances" -msgstr "导出所有类和实例" +msgid "Show Timelines for this Replicator" +msgstr "显示这个复制器的时间线" -#: ../app/views/miq_ae_tools/_import_export.html.haml:147 -msgid "Export all classes and instances to a file" -msgstr "导出所有类和实例到文件" +msgid "Show Timelines for this Storage Manager" +msgstr "" -#: ../app/views/miq_ae_tools/_import_export.html.haml:155 -msgid "Reset all components in the following domains: %{domains}" -msgstr "重置域 %{domains} 里的所有组件" +msgid "Show Timelines for this Template" +msgstr "显示这个模版的时间线" -#: ../app/views/miq_ae_tools/_import_export.html.haml:158 -msgid "" -"All Datastore customizations will be lost. Are you sure you want to reset all " -"classes and instances to default?" -msgstr "所有数据存储区的自定义都将丢失。您确定要重置所有类和实例为默认值吗?" +msgid "Show Timelines for this VM" +msgstr "显示这个虚拟机的时间线" -#: ../app/views/miq_ae_tools/_import_export.html.haml:173 -msgid "Choose the branch or tag you would like to import" -msgstr "选择或分支或您要导入的标签" +msgid "Show Timelines for this item" +msgstr "显示这个项的时间线" -#: ../app/views/miq_ae_tools/_import_export.html.haml:248 -msgid "Import Datastore classes" -msgstr "导入数据存储区类" +msgid "Show VM Memory Files installed on this %{storage}" +msgstr "显示这个 %{storage} 上安装的虚拟机内存文件" -#: ../app/views/miq_ae_tools/_import_export.html.haml:257 -msgid "Select existing domain to import into:" -msgstr "选择要导入的现有域:" +msgid "Show VM Provisioned Disk Files installed on this %{table}" +msgstr "显示这个 %{table}上安装的虚拟机置备磁盘文件" -#: ../app/views/miq_ae_tools/_import_export.html.haml:273 -msgid "Select domain you wish to import from:" -msgstr "选择您要从中导入的域:" +msgid "Show VM Provisioned Disk Files on this Datastore" +msgstr "显示这个数据存储区上的虚拟机置备磁盘文件" -#: ../app/views/miq_ae_tools/_import_export.html.haml:286 -msgid "Select namespaces you wish to import:" -msgstr "选择您要导入的命名空间:" +msgid "Show VM Snapshot Files installed on this %{storage}" +msgstr "显示这个 %{storage} 上安装的虚拟机快照文件" -#: ../app/views/miq_ae_tools/_import_export.html.haml:293 -msgid "Toggle All/None" -msgstr "切换全部/无" +msgid "Show VM Types" +msgstr "显示虚拟机类型" -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:5 -msgid "Submit Automation Simulation with the specified options" -msgstr "有指定选项提交 Automation Simulation " +msgid "Show VM memory files on this Datastore" +msgstr "显示这个 数据存储区上的虚拟机内存文件" -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:16 -msgid "Retry state machine simulation, with preserved attributes" -msgstr "使用保留的属性重试状态机器模拟" +msgid "Show VM snapshot files on this Datastore" +msgstr "显示这个数据存储区上的虚拟机快照文件" -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:17 -msgid "Retry" -msgstr "重试" +msgid "Show VMM container information" +msgstr "显示 VMM 容器信息" -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:25 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:51 -msgid "Reset all options" -msgstr "重置所有选项" +msgid "Show VMM information" +msgstr "显示 VMM 信息" -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:36 -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:62 -msgid "Cancel Simulation to go back to Button details" -msgstr " 取消 Simulation 以返回 Button 细节" +msgid "Show VMs" +msgstr "显示虚拟机" -#: ../app/views/miq_ae_tools/_resolve_form_buttons.html.haml:47 -msgid "Starting process must be specified" -msgstr "您必须指定启动进程" +msgid "Show VMs & Templates" +msgstr "显示虚拟机和模版" -#: ../app/views/miq_ae_tools/_results_tabs.html.haml:4 -msgid "Tree View" -msgstr "树型视图" +msgid "Show VMs devices" +msgstr "显示所有的虚拟机设备" -#: ../app/views/miq_ae_tools/_results_tabs.html.haml:7 -msgid "XML View" -msgstr "XML 视图" +msgid "Show VMs in Explorer tree." +msgstr "显示资源管理器树中的 VM" -#: ../app/views/miq_ae_tools/_results_tabs.html.haml:10 -msgid "Object" -msgstr "对象" +msgid "Show VMs in this %{cluster_title}, but not in Resource Pools below" +msgstr "显示这个 %{cluster_title} 里但不在下面的资源池里的虚拟机" -#: ../app/views/miq_ae_tools/_results_tree.html.haml:10 -#: ../app/views/miq_ae_tools/_results_uri.html.haml:53 -#: ../app/views/miq_ae_tools/_results_xml.html.haml:10 -msgid "Enter Automation Simulation options on the left and press Submit." -msgstr "在左侧输入自动化模拟选项并按“提交”。" +msgid "Show VMs in this %{title}, but not in Resource Pools below" +msgstr "显示在这个 %{title} 中但不在下面的资源池中的虚拟机" -#: ../app/views/miq_ae_tools/_results_uri.html.haml:7 -msgid "Object Info" -msgstr "对象信息" +msgid "Show VMs in this Resource Pool, but not in Resource Pools below" +msgstr "显示这个资源池但非下面的资源池里的虚拟机" -#: ../app/views/miq_ae_tools/_results_uri.html.haml:30 -msgid "Object Attribute Name" -msgstr "对象属性名称" +msgid "Show Virtual Machines & Templates" +msgstr "显示虚拟机和模版" -#: ../app/views/miq_ae_tools/_results_uri.html.haml:43 -msgid "Object Attribute Type" -msgstr "对象属性类型" +msgid "Show all %{children}" +msgstr "显示所有的 %{children}" -#: ../app/views/miq_capacity/_bottlenecks_options.html.haml:15 -msgid "Event Groups" -msgstr "事件组" +msgid "Show all %{label}" +msgstr "显示所有的 %{label}" -#: ../app/views/miq_capacity/_bottlenecks_options.html.haml:38 -msgid "Show Host Events" -msgstr "显示主机事件" +msgid "Show all %{models}" +msgstr "显示所有的 %{models}" -#: ../app/views/miq_capacity/_bottlenecks_report.html.haml:3 -msgid "Select a node on the left to view Bottlenecks report." -msgstr "在左侧选择节点来查看\"Bottlenecks\"报表。" +msgid "Show all %{names}" +msgstr "显示所有的 %{names}" -#: ../app/views/miq_capacity/_bottlenecks_report.html.haml:13 -msgid "Bottleneck Event Details" -msgstr "瓶颈事件细节" +msgid "Show all %{title}" +msgstr "显示所有 %{title}" -#: ../app/views/miq_capacity/_bottlenecks_summary.html.haml:3 -msgid "Select a node on the left to view Bottlenecks timeline." -msgstr "在左侧选择节点来查看\"Bottlenecks\"时间轴。" +msgid "Show all %{volumes} based on this Snapshot." +msgstr "显示所有基于这个快照的 %{volumes}" -#: ../app/views/miq_capacity/_bottlenecks_tl_detail.html.haml:14 -msgid "No events available for this timeline." -msgstr "这个时间轴没有可用的事件" +msgid "Show all Cloud Networks" +msgstr "显示所有的云网络" -#: ../app/views/miq_capacity/_bottlenecks_tl_detail.html.haml:18 -msgid "No Timeline data available." -msgstr "没有可用的时间线数据" +msgid "Show all Cloud Object Stores" +msgstr "显示所有云对象存储库" -#: ../app/views/miq_capacity/_planning_instructions.html.haml:3 -msgid "Plan for VM placement on %{hosts} or %{clusters}" -msgstr "在 %{hosts} 或 %{clusters} 中放置虚拟机的计划" +msgid "Show all Cloud Volumes attached to this VM." +msgstr "显示所有附加到该虚拟机的云卷。" -#: ../app/views/miq_capacity/_planning_instructions.html.haml:12 -msgid "1 - Select a Reference VM." -msgstr "1 - 选择参考虚拟机。" +msgid "Show all Cloud Volumes based on this Snapshot" +msgstr "显示所有基于这个快照的云卷" -#: ../app/views/miq_capacity/_planning_instructions.html.haml:22 -msgid "" -"2 - Specify the VM Options to define the source of the values used for the pla" -"n calculations." -msgstr "2 - 指定虚拟机选项来定义用于计划计算的值的来源。" +msgid "Show all Images" +msgstr "显示所有的图像" -#: ../app/views/miq_capacity/_planning_instructions.html.haml:32 -msgid "3 - Specify Target Options to qualify target %{hosts} or %{clusters}." -msgstr "3 - 指定目标选项来限定目标 %{hosts} 或 %{clusters}。" +msgid "Show all Instances" +msgstr "显示所有的实例" -#: ../app/views/miq_capacity/_planning_instructions.html.haml:42 -msgid "4 - Change the Trend Options used to calculate the daily trends, if desired." -msgstr "4 - 修改用来计算日趋势的趋势选项(如果需要)。" +msgid "Show all Outputs" +msgstr "显示所有的输出" -#: ../app/views/miq_capacity/_planning_instructions.html.haml:52 -msgid "5 - Press the Submit button." -msgstr "5 - 按『提交』按钮。" +msgid "Show all Parameters" +msgstr "显示所有的参数" -#: ../app/views/miq_capacity/_planning_options.html.haml:9 -msgid "Reference VM Selection" -msgstr "参考虚拟机选择" +msgid "Show all Playbooks" +msgstr "" -#: ../app/views/miq_capacity/_planning_options.html.haml:16 -msgid "All VMs/Instances" -msgstr "所有虚拟机/实例" +msgid "Show all Repositories" +msgstr "" -#: ../app/views/miq_capacity/_planning_options.html.haml:16 -msgid "By Clusters / Deployment Roles" -msgstr "按集群/部署角色" +msgid "Show all Resource Pools" +msgstr "" -#: ../app/views/miq_capacity/_planning_options.html.haml:16 -msgid "By Filter" -msgstr "按过滤器" +msgid "Show all Resource Pools in this Resource Pool" +msgstr "" -#: ../app/views/miq_capacity/_planning_options.html.haml:16 -msgid "By Host" -msgstr "按主机" +msgid "Show all Resources" +msgstr "显示所有的资源" -#: ../app/views/miq_capacity/_planning_options.html.haml:16 -msgid "By Providers" -msgstr "按供应商" +msgid "Show all Security Groups" +msgstr "显示所有的安全组" -#: ../app/views/miq_capacity/_planning_options.html.haml:39 -msgid "Choose a %{host}" -msgstr "选择 %{host}" +msgid "Show all Templates" +msgstr "显示所有的模版" -#: ../app/views/miq_capacity/_planning_options.html.haml:51 -msgid "Choose a %{cluster}" -msgstr "选择 %{cluster}" +msgid "Show all Templates in this %{cluster_title}" +msgstr "显示这个 %{cluster_title} 里的所有模版" -#: ../app/views/miq_capacity/_planning_options.html.haml:62 -msgid "Choose a %{provider}" -msgstr "选择 %{provider}" +msgid "Show all Templates in this %{title}" +msgstr "显示这个 %{title} 里的所有模版" -#: ../app/views/miq_capacity/_planning_options.html.haml:73 -msgid "Choose a Filter" -msgstr "选择过滤器" +msgid "Show all VMs" +msgstr "显示所有的虚拟机" -#: ../app/views/miq_capacity/_planning_options.html.haml:91 -msgid "No VMs found" -msgstr "没有找到虚拟机" +msgid "Show all VMs in this %{cluster_title}" +msgstr "显示这个 %{cluster_title} 里的所有虚拟机" -#: ../app/views/miq_capacity/_planning_options.html.haml:94 -msgid "Choose a VM" -msgstr "选择虚拟机" +msgid "Show all VMs in this %{title}" +msgstr "显示这个 %{title} 里的所有虚拟机" -#: ../app/views/miq_capacity/_planning_options.html.haml:115 -msgid "VM Options" -msgstr "虚拟机选项" +msgid "Show all VMs in this Resource Pool" +msgstr "显示这个资源池里所有的虚拟机" -#: ../app/views/miq_capacity/_planning_options.html.haml:177 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:25 -msgid "vCPU Count" -msgstr "vCPU 计数" +msgid "Show all Volume Snapshots" +msgstr "显示所有卷快照" -#: ../app/views/miq_capacity/_planning_options.html.haml:202 -#: ../app/views/miq_capacity/_planning_options.html.haml:368 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:34 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:85 -#: ../app/views/miq_policy/_action_details.html.haml:294 -#: ../app/views/miq_policy/_action_options.html.haml:217 -#: ../app/views/ops/_selected_by_roles.html.haml:150 -#: ../app/views/ops/_selected_by_servers.html.haml:102 -#: ../app/views/ops/_server_desc.html.haml:63 -msgid "Memory Size" -msgstr "内存大小" +msgid "Show all Volumes" +msgstr "显示所有卷" -#: ../app/views/miq_capacity/_planning_options.html.haml:222 -msgid "MB" -msgstr "MB" +msgid "Show all attached %{models}" +msgstr "显示所有附加的 %{models}" -#: ../app/views/miq_capacity/_planning_options.html.haml:231 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:43 -msgid "Disk Space" -msgstr "磁盘空间" +msgid "Show all files installed on this %{table}" +msgstr "显示在这个 %{table} 上安装的所有文件" -#: ../app/views/miq_capacity/_planning_options.html.haml:255 -msgid "* Disk space not supported for OpenStack providers" -msgstr "* 磁盘空间不支持 OpenStack 供应商" +msgid "Show all files on this Datastore" +msgstr "显示这个数据存储区上的所有文件" -#: ../app/views/miq_capacity/_planning_options.html.haml:264 -msgid "Target Options / Limits" -msgstr "目标选项 / 限制" +msgid "Show all managed %{cluster}" +msgstr "显示所有受管的 %{cluster}" -#: ../app/views/miq_capacity/_planning_options.html.haml:344 -msgid "vCPUs per Core" -msgstr "每个内核的 vCPU" +msgid "Show all managed %{hosts}" +msgstr "显示所有受管的 %{hosts}" -#: ../app/views/miq_capacity/_planning_options.html.haml:392 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:94 -msgid "Datastore Space" -msgstr "数据存储区空间" +msgid "Show all managed %{storages}" +msgstr "显示所有受管的 %{storages}" -#: ../app/views/miq_capacity/_planning_options.html.haml:416 -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:105 -msgid "Trend Options" -msgstr "趋势选项" +msgid "Show all outputs" +msgstr "显示所有的输出" -#: ../app/views/miq_capacity/_planning_options.html.haml:425 -#: ../app/views/miq_capacity/_utilization_options.html.haml:16 -msgid "Trends for past" -msgstr "过去的趋势" +msgid "Show all parameters" +msgstr "显示所有的参数" -#: ../app/views/miq_capacity/_planning_report.html.haml:8 -msgid "VM Counts per %{model}" -msgstr "每 %{model} 的虚拟机计数" +msgid "Show all registered %{hosts}" +msgstr "显示所有注册的 %{hosts}" -#: ../app/views/miq_capacity/_planning_report.html.haml:14 -msgid "Total number of VMs that can fit on all of the above %{models}: %{count}" -msgstr "可以适合上述 %{models} 的虚拟机的总数:%{count}" +msgid "Show all resources" +msgstr "显示所有的资源" -#: ../app/views/miq_capacity/_planning_report.html.haml:20 -#: ../app/views/miq_capacity/_planning_summary.html.haml:75 -msgid "* Information shown is based on available trend data going back %{weeks}." -msgstr "* 显示的信息基于回退 %{weeks} 的可用的趋势数据。" +msgid "Show at Login" +msgstr "在登录时显示" -#: ../app/views/miq_capacity/_planning_summary.html.haml:7 -#: ../app/views/miq_policy/_rsop_results.html.haml:10 -msgid "Display Options" -msgstr "显示选项" +msgid "Show configuration" +msgstr "显示配置" -#: ../app/views/miq_capacity/_planning_summary.html.haml:11 -msgid "Limit Chart to" -msgstr "限制图表为" +msgid "Show daily data from" +msgstr "显示每日数据:" -#: ../app/views/miq_capacity/_planning_summary.html.haml:34 -msgid "No planning data is available for the selected item." -msgstr "选择的项目没有可用的计划数据。" +msgid "Show disk on this VM" +msgid_plural "Show disks on this VM" +msgstr[0] "显示这个虚拟机上的磁盘" -#: ../app/views/miq_capacity/_planning_summary.html.haml:39 -msgid "Eligible %{type} " -msgstr "有资格的 %{type} " +msgid "Show esx logs on this VM" +msgstr "显示这个虚拟机上的 ESX 日志" -#: ../app/views/miq_capacity/_planning_summary.html.haml:47 -msgid "Rank" -msgstr "排名" +msgid "Show full screen Report" +msgstr "显示全屏报表" -#: ../app/views/miq_capacity/_planning_summary.html.haml:51 -msgid "Max VMs" -msgstr "最大的虚拟机数量" +msgid "Show full screen report" +msgstr "显示全屏报表" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:3 -msgid "Reference VM Profile" -msgstr "参考虚拟机配置集" +msgid "Show hourly data from" +msgstr "显示小时数据:" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:54 -msgid "Target Options/Limits" -msgstr "目标选项/限制" +msgid "Show in Console" +msgstr "在控制台里显示" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:76 -msgid "vCPU per Core" -msgstr "每个内核的 vCPU" +msgid "Show list of all %{name}" +msgstr "显示所有 %{name} 的列表" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:109 -msgid "Trend for Past" -msgstr "过去的趋势" +msgid "Show list of configuration files of %{name}" +msgstr "显示 %{name} 的配置文件的列表" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:121 -msgid "No Time Profile Selected" -msgstr "没有选择 Time Profile" +msgid "Show list of failed %{name}" +msgstr "显示失败的 %{name} 的列表" -#: ../app/views/miq_capacity/_planning_vm_profile.html.haml:137 -msgid "* Set in Time Profile" -msgstr "* 设置 Time 配置集" +msgid "Show list of hosts with %{name}" +msgstr "显示具有 %{name} 的主机的列表" -#: ../app/views/miq_capacity/_utilization_details.html.haml:16 -#: ../app/views/miq_capacity/_utilization_summary.html.haml:51 -msgid "Select a node on the left to view Utilization information." -msgstr "在左侧选择节点来查看\"利用率\"信息。" +msgid "Show list of hosts with failed %{name}" +msgstr "显示具有失败的 %{name} 的主机的列表" -#: ../app/views/miq_capacity/_utilization_details.html.haml:18 -#: ../app/views/miq_capacity/_utilization_report.html.haml:29 -#: ../app/views/miq_capacity/_utilization_summary.html.haml:53 -msgid "No performance data is available for the selected item." -msgstr "选择的项目没有可用的性能数据。" +msgid "Show list of hosts with running %{name}" +msgstr "显示具有运行的 %{name} 的主机的列表" -#: ../app/views/miq_capacity/_utilization_details.html.haml:26 -#: ../app/views/miq_capacity/_utilization_report.html.haml:69 -#: ../app/views/miq_capacity/_utilization_summary.html.haml:59 -msgid "" -"* Information shown is based on available trend data from %{start_time} to %{e" -"nd_time} in the %{timezone} time zone." -msgstr "* 显示的信息基于 %{timezone} 时区里 %{start_time} 到 %{end_time} 的可用的趋势数据。" +msgid "Show list of running %{name}" +msgstr "显示运行 %{name} 的列表" -#: ../app/views/miq_capacity/_utilization_options.html.haml:40 -msgid "Classification" -msgstr "分类" +msgid "Show member VMs" +msgstr "显示成员虚拟机" -#: ../app/views/miq_capacity/_utilization_options.html.haml:94 -msgid "Selected Day" -msgstr "选择的日期" +msgid "Show non-VM files on this Datastore" +msgstr "显示这个数据存储区上的非虚拟机文件" -#: ../app/views/miq_capacity/_utilization_report.html.haml:27 -msgid "Select a node on the left to view Utilization report." -msgstr "在左侧选择节点来查看\"利用率\"报表。" +msgid "Show on Timeline" +msgstr "显示时间线" -#: ../app/views/miq_capacity/planning.html.haml:9 -msgid "Submit Planning options" -msgstr "提交\"计划\"选项" +msgid "Show out of scope items:" +msgstr "显示超出范围的项目:" -#: ../app/views/miq_capacity/planning.html.haml:19 -#: ../app/views/miq_capacity/planning.html.haml:36 -msgid "Reset all Planning options" -msgstr "重置所有\"计划\"选项" +msgid "Show parent %s for this Job" +msgstr "显示这个任务的父 %s" -#: ../app/views/miq_capacity/planning.html.haml:32 -msgid "Select a reference VM or Manual Input source to Submit the Planning Options" -msgstr "选择引用虚拟机或手动输入源来提交 计划 选项" +msgid "Show parent %{cluster} for this %{host}" +msgstr "显示这个 %{host} 的父 %{cluster}" -#: ../app/views/miq_policy/_action_details.html.haml:42 -msgid "Action Type" -msgstr "动作类型" +msgid "Show parent Cloud Provider for this Stack" +msgstr "显示这个栈的父云供应商" -#: ../app/views/miq_policy/_action_details.html.haml:69 -#: ../app/views/miq_policy/_action_options.html.haml:152 -msgid "Snapshot Settings" -msgstr "快照设置" +msgid "Show parent Orchestration Stack for this Security Group" +msgstr "显示这个安全组的父编配栈" -#: ../app/views/miq_policy/_action_details.html.haml:89 -#: ../app/views/miq_policy/_action_options.html.haml:178 -msgid "Snapshot Age Settings" -msgstr "快照年龄设置" +msgid "Show parent and child VMs" +msgstr "显示父和子虚拟机" -#: ../app/views/miq_policy/_action_details.html.haml:95 -msgid "Delete if older than" -msgstr "如果旧于...则删除" +msgid "Show policies:" +msgstr "显示策略:" -#: ../app/views/miq_policy/_action_details.html.haml:110 -#: ../app/views/miq_policy/_action_options.html.haml:267 -msgid "Custom Automation" -msgstr "自定义自动化" +msgid "Show policy details for %{item_name}" +msgstr "" -#: ../app/views/miq_policy/_action_details.html.haml:132 -msgid "Starting Message" -msgstr "启动消息" +msgid "Show policy details for %{name}" +msgstr "显示 %{name} 的策略细节" -#: ../app/views/miq_policy/_action_details.html.haml:181 -msgid "No Attribute/Value Pairs found" -msgstr "没有找到属性/值对" +msgid "Show registered VMs" +msgstr "显示注册的虚拟机" -#: ../app/views/miq_policy/_action_details.html.haml:187 -#: ../app/views/miq_policy/_action_options.html.haml:10 -msgid "E-mail Settings" -msgstr "电子邮件设置" +msgid "Show resources of this VM" +msgstr "显示这个虚拟机的资源" -#: ../app/views/miq_policy/_action_details.html.haml:196 -#: ../app/views/miq_policy/_action_options.html.haml:19 -#: ../app/views/ops/_settings_server_tab.html.haml:532 -msgid "From E-mail Address" -msgstr "发自" +msgid "Show service %s for this Job" +msgstr "显示这个任务的服务 %s" -#: ../app/views/miq_policy/_action_details.html.haml:209 -#: ../app/views/miq_policy/_action_options.html.haml:42 -msgid "To E-mail Address" -msgstr "发至电子邮件" +msgid "Show the %{label} installed on this VM" +msgstr "显示这个虚拟机上安装的 %{label}" -#: ../app/views/miq_policy/_action_details.html.haml:224 -msgid "Set Custom Attribute Settings" -msgstr "设置自定义属性" +msgid "Show the Advanced Setting installed on this %{title}" +msgid_plural "Show the Advanced Settings installed on this %{title}" +msgstr[0] "显示这个 %{title} 上安装的高级设置" -#: ../app/views/miq_policy/_action_details.html.haml:233 -#: ../app/views/miq_policy/_action_options.html.haml:68 -msgid "Attribute Name" -msgstr "属性名称" +msgid "Show the File System Driver installed on this VM" +msgid_plural "Show the File System Drivers installed on this VM" +msgstr[0] "显示这个虚拟机上安装的文件系统驱动" -#: ../app/views/miq_policy/_action_details.html.haml:246 -#: ../app/views/miq_policy/_action_options.html.haml:85 -msgid "Value to Set" -msgstr "要设置的值" +msgid "Show the File installed on this %{title}" +msgid_plural "Show the Files installed on this %{title}" +msgstr[0] "显示这个 %{title} 上安装的文件" -#: ../app/views/miq_policy/_action_details.html.haml:261 -#: ../app/views/miq_policy/_action_options.html.haml:236 -msgid "Reconfigure CPU" -msgstr "重新配置 CPU" +msgid "Show the File installed on this VM" +msgid_plural "Show the Files installed on this VM" +msgstr[0] "显示这个虚拟机上安装的文件" -#: ../app/views/miq_policy/_action_details.html.haml:270 -#: ../app/views/miq_policy/_action_options.html.haml:245 -msgid "Number of CPU's" -msgstr "CPU 的数量" +msgid "Show the Firewall Rule defined on this %{title}" +msgid_plural "Show the Firewall Rules defined on this %{title}" +msgstr[0] "显示这个 %{title} 上定义的防火墙规则" -#: ../app/views/miq_policy/_action_details.html.haml:285 -#: ../app/views/miq_policy/_action_options.html.haml:208 -msgid "Reconfigure Memory" -msgstr "重新配置内存" +msgid "Show the Group defined on this %{title}" +msgid_plural "Show the Groups defined on this %{title}" +msgstr[0] "显示这个 %{title} 上定义的组" -#: ../app/views/miq_policy/_action_details.html.haml:309 -#: ../app/views/miq_policy/_action_options.html.haml:102 -msgid "Applied Tag" -msgstr "应用的标签" +msgid "Show the Group defined on this VM" +msgid_plural "Show the Groups defined on this VM" +msgstr[0] "显示这个虚拟机上定义的组" -#: ../app/views/miq_policy/_action_details.html.haml:333 -#: ../app/views/miq_policy/_alert_snmp.html.haml:9 -msgid "SNMP Trap" -msgstr "SNMP Trap" +msgid "Show the Init Process installed on this VM" +msgid_plural "Show the Init Processes installed on this VM" +msgstr[0] "显示这个虚拟机上安装的 初始进程" -#: ../app/views/miq_policy/_action_details.html.haml:364 -#: ../app/views/miq_policy/_action_options.html.haml:413 -#: ../app/views/miq_policy/_alert_details.html.haml:379 -#: ../app/views/miq_policy/_alert_snmp.html.haml:80 -msgid "Trap Number" -msgstr "Trap Number" +msgid "Show the Kernel Driver installed on this VM" +msgid_plural "Show the Kernel Drivers installed on this VM" +msgstr[0] "显示这个虚拟机上安装的内核驱动" -#: ../app/views/miq_policy/_action_details.html.haml:364 -#: ../app/views/miq_policy/_action_options.html.haml:413 -#: ../app/views/miq_policy/_alert_details.html.haml:379 -#: ../app/views/miq_policy/_alert_snmp.html.haml:80 -msgid "Trap Object ID" -msgstr "Trap Object ID" +msgid "Show the Package installed on this %{title}" +msgid_plural "Show the Packages installed on this %{title}" +msgstr[0] "显示这个 %{title} 上安装的软件包" -#: ../app/views/miq_policy/_action_details.html.haml:387 -msgid "No variables configured." -msgstr "没有配置变量。" +msgid "Show the Patch defined on this %{title}" +msgid_plural "Show the Patches defined on this %{title}" +msgstr[0] "显示这个 %{title} 上定义的补丁" -#: ../app/views/miq_policy/_action_details.html.haml:396 -#: ../app/views/miq_policy/_action_options.html.haml:445 -msgid "Object ID" -msgstr "对象 ID" +msgid "Show the Patch defined on this VM" +msgid_plural "Show the Patches defined on this VM" +msgstr[0] "显示这个虚拟机上定义的补丁" -#: ../app/views/miq_policy/_action_details.html.haml:430 -msgid "Analysis Profile" -msgstr "Analysis 配置集" +msgid "Show the Registry Item installed on this VM" +msgid_plural "Show the Registry Items installed on this VM" +msgstr[0] "显示这个虚拟机上安装的注册表项" -#: ../app/views/miq_policy/_action_details.html.haml:439 -msgid "Assigned Analysis Profile" -msgstr "分配的 Analysis 配置集" +msgid "Show the Service installed on this %{title}" +msgid_plural "Show the Services installed on this %{title}" +msgstr[0] "显示这个 %{title} 上安装的服务" -#: ../app/views/miq_policy/_action_details.html.haml:454 -msgid "Alerts to Evaluate" -msgstr "要评估的警告" +msgid "Show the User defined on this VM" +msgid_plural "Show the Users defined on this VM" +msgstr[0] "显示这个虚拟机上定义的用户" -#: ../app/views/miq_policy/_action_details.html.haml:458 -msgid "No Alerts have been selected." -msgstr "没有选择警告。" +msgid "Show the Win32 Service installed on this VM" +msgid_plural "Show the Win32 Services installed on this VM" +msgstr[0] "显示这个虚拟机上安装的 Win32 服务" -#: ../app/views/miq_policy/_action_details.html.haml:465 -msgid "View This Alert" -msgstr "查看这个警告" +msgid "Show the advanced settings on this %{host}" +msgstr "显示这个 %{host} 上的高级设置" -#: ../app/views/miq_policy/_action_details.html.haml:480 -msgid "Inherit Tags" -msgstr "继承标签" +msgid "Show the advanced settings on this VM" +msgstr "显示这个虚拟机上的高级设置" -#: ../app/views/miq_policy/_action_details.html.haml:489 -#: ../app/views/miq_policy/_action_options.html.haml:547 -msgid "Parent Type" -msgstr "父类型" +msgid "Show the files on this %{host}" +msgstr "显示这个 %{host} 上的文件" -#: ../app/views/miq_policy/_action_details.html.haml:502 -#: ../app/views/miq_policy/_action_details.html.haml:526 -#: ../app/views/miq_policy/_action_options.html.haml:568 -#: ../app/views/miq_policy/_action_options.html.haml:598 -#: ../app/views/ops/_all_tabs.html.haml:77 -#: ../app/views/ops/_ap_show.html.haml:67 -msgid "Categories" -msgstr "类别" +msgid "Show the firewall rules on this %{host}" +msgstr "显示这个 %{host} 上的防火墙规则" -#: ../app/views/miq_policy/_action_details.html.haml:517 -msgid "Remove Tags" -msgstr "删除标签" +msgid "Show the groups defined on this %{host}" +msgstr "显示这个 %{host} 上定义的组" -#: ../app/views/miq_policy/_action_details.html.haml:540 -#: ../app/views/miq_policy/_condition_details.html.haml:123 -#: ../app/views/miq_policy/_event_details.html.haml:52 -msgid "Assigned to Policies" -msgstr "分配的策略" +msgid "Show the packages installed on this %{host}" +msgstr "显示安装在这个 %{host} 上的软件包" -#: ../app/views/miq_policy/_action_details.html.haml:543 -msgid "This Action is not assigned to any Policies." -msgstr "这个动作没有分配给任何策略。" +msgid "Show the patches installed on this %{host}" +msgstr "显示安装在这个 %{host} 上的补丁" -#: ../app/views/miq_policy/_action_details.html.haml:550 -#: ../app/views/miq_policy/_condition_details.html.haml:133 -#: ../app/views/miq_policy/_event_details.html.haml:62 -msgid "Click to view Policy" -msgstr "点击以查看策略" +msgid "Show the services installed on this %{host}" +msgstr "显示安装在这个 %{host} 上的服务" -#: ../app/views/miq_policy/_action_list.html.haml:4 -msgid "No Actions are defined" -msgstr "没有定义任何动作" +msgid "Show the snapshot info for this VM" +msgstr "显示这个虚拟机的快照信息" -#: ../app/views/miq_policy/_action_list.html.haml:6 -msgid "No Actions are defined that match the entered search string '%s'" -msgstr "输入的搜索字符串 '%s' 与任何定义的动作均不匹配。" +msgid "Show the users defined on this %{host}" +msgstr "显示这个 %{host} 上定义的用户" -#: ../app/views/miq_policy/_action_options.html.haml:59 -msgid "Custom Attribute Settings" -msgstr "自定义属性设置" +msgid "Show this %{entity_name}'s parent %{linked_entity_name}" +msgstr "显示这个 %{entity_name} 的父 %{linked_entity_name}" -#: ../app/views/miq_policy/_action_options.html.haml:111 -msgid "Tag to Apply" -msgstr "要应用的标签" +msgid "Show this %{host_title}'s %{cluster_title}" +msgstr "显示这个 %{host_title} 的 %{cluster_title}" -#: ../app/views/miq_policy/_action_options.html.haml:128 -msgid "Select a Tag to Apply" -msgstr "选择应用的标签" +msgid "Show this %{title}'s %{label}" +msgstr "显示这个 %{title} 的 %{label}" -#: ../app/views/miq_policy/_action_options.html.haml:187 -msgid "Delete if Older than" -msgstr "如果旧于...则删除" +msgid "Show this Availability Zone's parent Cloud Provider" +msgstr "显示这个可用区的父云供应商" -#: ../app/views/miq_policy/_action_options.html.haml:228 -msgid "(Enter the value between 4 - 65636 MB)" -msgstr "(输入 4 - 65636 MB 之间的值)" +msgid "Show this Backup's %{parent}" +msgstr "显示这个备份的 %{parent}" -#: ../app/views/miq_policy/_action_options.html.haml:287 -msgid "Select Alerts to be Evaluated" -msgstr "选择要评估的警告" +msgid "Show this Backup's parent %{parent}" +msgstr "显示这个备份的父 %{parent}" -#: ../app/views/miq_policy/_action_options.html.haml:300 -msgid "Available Alerts:" -msgstr "可用的警告:" +msgid "Show this Cloud Object Store's child %{children}" +msgstr "显示这个云对象库的子 %{children}" -#: ../app/views/miq_policy/_action_options.html.haml:304 -msgid " Selected Alerts:" -msgstr " 选择的警告:" +msgid "Show this Cloud Object Store's child %{children}'" +msgstr "显示这个云对象库的子 %{children}" -#: ../app/views/miq_policy/_action_options.html.haml:325 -msgid "Move selected Alerts into this Action" -msgstr "移动所选的警告至这个动作" +msgid "Show this Cloud Object Store's parent %{parent}" +msgstr "显示这个云对象库的父 %{parent}" -#: ../app/views/miq_policy/_action_options.html.haml:336 -msgid "Remove selected Alerts from this Action" -msgstr "从这个动作删除所选的警告" +msgid "Show this Cloud Object's parent %{parent}" +msgstr "显示这个云对象的父 %{parent}" -#: ../app/views/miq_policy/_action_options.html.haml:369 -msgid "SNMP Trap Settings" -msgstr "SNMP Trap 设置" +msgid "Show this Cloud Tenant's parent Cloud Provider" +msgstr "显示这个云租户的父云供应商" -#: ../app/views/miq_policy/_action_options.html.haml:538 -msgid "Inherit Tags Settings" -msgstr "继承标签设置" +msgid "Show this Cloud Volume's parent %{parent}" +msgstr "显示该云卷的上层 %{parent}" -#: ../app/views/miq_policy/_action_options.html.haml:589 -msgid "Remove Tags Settings" -msgstr "删除标签设置" +msgid "Show this Flavor's parent Cloud Provider" +msgstr "显示这个 Flavor 的父云供应商" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:29 -msgid "No type set" -msgstr "没有类型集" +msgid "Show this Host Aggregate's parent Cloud Provider" +msgstr "显示这个主机集合的父云供应商" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:173 -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:183 -msgid "Per Minute" -msgstr "每分钟" +msgid "Show this Image's parent" +msgstr "显示这个镜像的父镜像" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:207 -msgid "Caution:" -msgstr "警告:" +msgid "Show this Orchestration Template" +msgstr "显示这个编配模版" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:210 -msgid "Setting tracing to true may cause excessive log lines to be written" -msgstr "设置 tracing 为 true 可能导致写入过多的日志记录" +msgid "Show this Parent Provider" +msgstr "显示这个父供应商" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:220 -msgid "Message Filter" -msgstr "消息过滤器" +msgid "Show this Service" +msgstr "显示这个服务" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:248 -msgid "Hardware Attribute" -msgstr "硬件属性" +msgid "Show this Service's Job" +msgstr "显示这个服务的任务" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:287 -msgid "No %{types} found" -msgstr "未找到 %{types} " +msgid "Show this Service's Parent Service" +msgstr "显示这个服务的父服务" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:307 -msgid "Provider no longer exists, this alert must be reconfigured" -msgstr "供应商不再存在,必须重新配置这个警告。" +msgid "Show this Service's Parent Service Catalog" +msgstr "显示这个服务的父服务目录" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:326 -msgid "No alarms found for the selected Provider" -msgstr "没有找到可用于所选供应商的警告" +msgid "Show this Snapshot's %{parent}" +msgstr "显示这个快照的 %{parent}" -#: ../app/views/miq_policy/_alert_builtin_exp.html.haml:340 -msgid "Choose a %{provider} first" -msgstr "先选择 %{provider}" +msgid "Show this Snapshot's parent %{parent}" +msgstr "显示这个快照的父 %{parent}" -#: ../app/views/miq_policy/_alert_details.html.haml:67 -#: ../app/views/miq_policy/_alert_profile_assign.html.haml:17 -#: ../app/views/report/_report_info.html.haml:66 -msgid "Based On" -msgstr "基于" +msgid "Show this VM's %{label}" +msgstr "显示这个虚拟机的 %{label}" -#: ../app/views/miq_policy/_alert_details.html.haml:87 -msgid "* Cannot be changed while this Alert belongs to an Alert Profile." -msgstr "* 当这个 Alert 属于某个 警告配置集时无法修改它。" +msgid "Show this VM's %{label} '%{name}'" +msgstr "显示这个虚拟机的 %{label} '%{name}'" -#: ../app/views/miq_policy/_alert_details.html.haml:104 -msgid "What to Evaluate" -msgstr "要评估的内容" +msgid "Show this VM's %{title}" +msgstr "显示这个虚拟机的 %{title}" -#: ../app/views/miq_policy/_alert_details.html.haml:110 -#: ../app/views/miq_policy/_alert_details.html.haml:113 -msgid "Expression (Custom)" -msgstr "表达式(自定义 )" +msgid "Show this VM's Resource Pool" +msgstr "显示这个虚拟机的资源池" -#: ../app/views/miq_policy/_alert_details.html.haml:128 -#: ../app/views/miq_policy/_alert_details.html.haml:239 -#: ../app/views/miq_policy/_condition_details.html.haml:70 -#: ../app/views/miq_policy/_policy_details.html.haml:268 -msgid "Expression" -msgstr "表达式" +msgid "Show this Volume's %{availability_zone}" +msgstr "显示该卷的 %{availability_zone}" -#: ../app/views/miq_policy/_alert_details.html.haml:141 -#: ../app/views/miq_policy/_alert_details.html.haml:164 -msgid "Driving Event" -msgstr "驱动事件" +msgid "Show this Volume's %{cloud_tenant}" +msgstr "显示该卷的 %{cloud_tenant}" -#: ../app/views/miq_policy/_alert_details.html.haml:181 -msgid "Notification Frequency" -msgstr "通知频率" +msgid "Show this Volume's %{parent}" +msgstr "显示这个卷的 %{parent}" -#: ../app/views/miq_policy/_alert_details.html.haml:215 -#: ../app/views/miq_policy/_form_expression.html.haml:3 -msgid "Expression (Choose an element of the expression to edit)" -msgstr "表达式(选择表达式的元素进行编辑)" +msgid "Show this container volume's parent Containers Provider" +msgstr "显示这个容器卷的父容器供应商" -#: ../app/views/miq_policy/_alert_details.html.haml:257 -msgid "An alert must contain a valid expression." -msgstr "警告必须包含有效的表达式。" +msgid "Show this parent %{provider} for this %{host}" +msgstr "显示这个 %{host} 的父 %{provider}" -#: ../app/views/miq_policy/_alert_details.html.haml:291 -msgid "Send E-mail" -msgstr "发送电子邮件" +msgid "Show topology" +msgstr "显示拓扑结构" -#: ../app/views/miq_policy/_alert_details.html.haml:335 -msgid "Send SNMP Trap" -msgstr "发送 SNMP Trap" +msgid "Show tree of all VMs by Resource Pool in this %{cluster_title}" +msgstr "显示 %{cluster_title} 里资源池的所有虚拟机的树" -#: ../app/views/miq_policy/_alert_details.html.haml:401 -#: ../app/views/miq_policy/_alert_snmp.html.haml:106 -msgid "Variable Object ID" -msgstr "变量对象 ID" +msgid "Show tree of all VMs by Resource Pool in this %{title}" +msgstr "显示这个 %{title} 里资源池的所有虚拟机的树" -#: ../app/views/miq_policy/_alert_details.html.haml:435 -#: ../app/views/miq_policy/_alert_evm_event.html.haml:5 -msgid "Timeline Event" -msgstr "时间线事件" +msgid "Show tree of all VMs in this Resource Pool" +msgstr "显示这个资源池里的所有虚拟机树" -#: ../app/views/miq_policy/_alert_details.html.haml:444 -#: ../app/views/miq_policy/_alert_evm_event.html.haml:16 -msgid "Show on Timeline" -msgstr "显示时间线" +msgid "Show virtual machine analysis history" +msgstr "显示虚拟机分析历史" -#: ../app/views/miq_policy/_alert_details.html.haml:462 -msgid "Send Management Event" -msgstr "发送管理事件" +msgid "Show virtual machine drift history" +msgstr "显示虚拟机偏差历史" -#: ../app/views/miq_policy/_alert_details.html.haml:471 -#: ../app/views/miq_policy/_alert_mgmt_event.html.haml:33 -msgid "Event Name" -msgstr "事件名称" +msgid "Show virtual machine genealogy" +msgstr "显示虚拟机族系" -#: ../app/views/miq_policy/_alert_details.html.haml:493 -msgid "Belongs to Alert Profiles" -msgstr "所属 警告配置集" +msgid "Showing first" +msgstr "" -#: ../app/views/miq_policy/_alert_details.html.haml:496 -msgid "This Alert is not assigned to any Alert Profiles." -msgstr "这个警告没有分配给任何 Alert 策略。" +msgid "Shutdown" +msgstr "关闭" -#: ../app/views/miq_policy/_alert_details.html.haml:503 -#: ../app/views/miq_policy/_alert_profile_list.html.haml:16 -msgid "View this Alert Profile" -msgstr "查看这个警告配置集" +msgid "Shutdown Guest" +msgstr "关闭客户" -#: ../app/views/miq_policy/_alert_details.html.haml:524 -msgid "Referenced by Actions" -msgstr "动作所引用的" +msgid "Shutdown the Guest OS on the selected items" +msgstr "关闭所选项上的客户操作系统" -#: ../app/views/miq_policy/_alert_details.html.haml:527 -msgid "This Alert is not referenced by any Actions." -msgstr "这个警告没有被任何动作所引用。" +msgid "Shutdown the Guest OS on the selected items?" +msgstr "关闭所选项上的客户操作系统?" -#: ../app/views/miq_policy/_alert_details.html.haml:534 -msgid "View this Action" -msgstr "查看这个动作" +msgid "Shutdown the Guest OS on this VM" +msgstr "关闭这个虚拟机上的客户操作系统" -#: ../app/views/miq_policy/_alert_list.html.haml:4 -msgid "No Alerts are defined" -msgstr "没有定义任何警告" +msgid "Shutdown the Guest OS on this VM?" +msgstr "关闭这个虚拟机上的客户操作系统?" -#: ../app/views/miq_policy/_alert_list.html.haml:6 -msgid "No Alerts are defined that match the entered search string '%s'" -msgstr "输入的搜索字符串 '%s' 与任何定义的警告均不匹配。" +msgid "Shutdown the selected items" +msgstr "关闭所选的项" -#: ../app/views/miq_policy/_alert_mgmt_event.html.haml:5 -msgid "Management Event" -msgstr "管理事件" +msgid "Shutdown the selected items to Standby Mode" +msgstr "关闭所选的项至待机模式" -#: ../app/views/miq_policy/_alert_mgmt_event.html.haml:16 -msgid "Send a Management Event" -msgstr "发送管理事件" +msgid "Shutdown the selected items to Standy Mode?" +msgstr "关闭所选的项至待机模式?" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:42 -msgid "No Alerts are defined." -msgstr "没有定义警告。" +msgid "Shutdown the selected items?" +msgstr "关闭所选的项?" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:48 -msgid "View this Alert" -msgstr "查看这个警告" +msgid "Shutdown this item" +msgstr "关闭这个项" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:64 -msgid "Alert Selection" -msgstr "Alert 选择" +msgid "Shutdown this item to Standby Mode" +msgstr "关闭这个项至待机模式" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:70 -msgid "Available %{model} Alerts:" -msgstr "可用的 %{model} 警告:" +msgid "Shutdown this item to Standby Mode?" +msgstr "关闭这个项至待机模式?" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:74 -msgid "Profile Alerts:" -msgstr "配置集警告:" +msgid "Shutdown this item?" +msgstr "关闭这个项?" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:93 -msgid "Move selected Alerts into this Profile" -msgstr "移动所选的警告至这个配置集" +msgid "Shutdown to Standby Mode" +msgstr "关闭到待机模式" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:105 -msgid "Remove all Alerts from this Profile" -msgstr "从这个配置集里删除所有的警告" +msgid "Signal" +msgstr "信号" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:116 -msgid "Remove selected Alerts from this Profile" -msgstr "从这个配置集删除所选的警告" +msgid "Simulate" +msgstr "模拟" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:178 -#: ../app/views/miq_policy/_condition_details.html.haml:115 -#: ../app/views/miq_policy/_policy_details.html.haml:405 -#: ../app/views/miq_policy/_profile_details.html.haml:183 -msgid "No notes have been entered." -msgstr "没有输入注记。" +msgid "Simulate using Button details" +msgstr "用按钮细节模拟" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:187 -msgid "Assigned To" -msgstr "分配给" +msgid "Simulation" +msgstr "模拟" -#: ../app/views/miq_policy/_alert_profile_details.html.haml:238 -msgid "%{alert_profiles} with %{type} Tags" -msgstr "具有 %{type} 标签的 %{alert_profiles} " +msgid "Simulation Parameters" +msgstr "模拟参数" -#: ../app/views/miq_policy/_alert_profile_folders.html.haml:10 -#: ../app/views/miq_policy/_policy_folders.html.haml:33 -msgid "Open Folder" -msgstr "打开文件夹" +msgid "Simulation unavailable: Required Class \"System/Process\" is missing" +msgstr "模拟不可用:缺失必需的类 \"System/Process\"" -#: ../app/views/miq_policy/_alert_profile_list.html.haml:7 -msgid "No %{alert_profile_type} Alert Profiles are defined." -msgstr "未定义 %{alert_profile_type} 警报配置集。" +msgid "Single Select" +msgstr "单一选择" -#: ../app/views/miq_policy/_alert_profile_list.html.haml:9 -msgid "" -"No %{alert_profile_type} Alert Profiles are defined that match the entered sea" -"rch string." -msgstr "输入的搜索字符串与所有定义的 %{alert_profile_type} 警报配置集均不匹配。" +msgid "Single VM/Instance" +msgstr "" -#: ../app/views/miq_policy/_alert_snmp.html.haml:19 -msgid "Send an SNMP Trap" -msgstr "发送 SNMP Trap" +msgid "Single Value" +msgstr "单个值" -#: ../app/views/miq_policy/_condition_details.html.haml:62 -#: ../app/views/miq_policy/_form_scope.html.haml:25 -msgid "No scope defined, the scope of this condition includes all elements." -msgstr "没有定义作用域,这个条件的作用域涵盖所有的元素。" +msgid "Size" +msgstr "大小" -#: ../app/views/miq_policy/_condition_details.html.haml:87 -msgid "A condition must contain a valid expression." -msgstr "条件必须包含有效的表达式" +msgid "Size (in gigabytes)" +msgstr "大小(GB)" -#: ../app/views/miq_policy/_condition_details.html.haml:126 -msgid "This Condition is not assigned to any Policies." -msgstr "这个条件没有分配给任何策略。" +msgid "Small Trees" +msgstr "小型树" -#: ../app/views/miq_policy/_condition_folders.html.haml:10 -msgid "View Condition" -msgstr "查看条件" +msgid "Smart Management" +msgstr "智能管理" -#: ../app/views/miq_policy/_condition_folders.html.haml:20 -msgid "%{object} Conditions" -msgstr "%{object} 条件" +msgid "SmartProxy Affinity" +msgstr "SmartProxy Affinity" -#: ../app/views/miq_policy/_condition_list.html.haml:10 -msgid "No %{model} Conditions are defined." -msgstr "没有定义%{model} 条件。" +msgid "SmartProxy Server IP" +msgstr "SmartProxy 服务器 IP" -#: ../app/views/miq_policy/_condition_list.html.haml:12 -msgid "No %{model} Conditions are defined that match the entered search string." -msgstr "输入的搜索字符串与所有定义的%{model} 条件均不匹配。" +msgid "SmartState Analysis cannot be performed when there is no active Host" +msgstr "" -#: ../app/views/miq_policy/_condition_list.html.haml:19 -#: ../app/views/miq_policy/_policy_details.html.haml:234 -msgid "View this Condition" -msgstr "查看这个条件" +msgid "Smartstate Analysis" +msgstr "Smartstate 分析" -#: ../app/views/miq_policy/_event_details.html.haml:30 -msgid "Event Group" -msgstr "事件组" +msgid "Snapshot" +msgid_plural "Snapshots" +msgstr[0] "快照" -#: ../app/views/miq_policy/_event_details.html.haml:41 -msgid "Attached to Policy" -msgstr "附加到策略" +msgid "Snapshot Age Settings" +msgstr "快照年龄设置" -#: ../app/views/miq_policy/_event_details.html.haml:55 -msgid "This Event is not assigned to any Policies." -msgstr "这个事件没有分配给任何策略。" +msgid "Snapshot Age must be selected" +msgstr "必须选择快照时限" -#: ../app/views/miq_policy/_event_details.html.haml:78 -msgid "Order of Actions if ALL Conditions are True" -msgstr "如果所有条件都为 True 时的动作顺序" +msgid "Snapshot Create" +msgstr "快照创建" -#: ../app/views/miq_policy/_event_details.html.haml:85 -#: ../app/views/miq_policy/_event_details.html.haml:261 -msgid "Available Actions:" -msgstr "可用的动作:" +msgid "Snapshot Delete" +msgstr "快照删除" -#: ../app/views/miq_policy/_event_details.html.haml:89 -#: ../app/views/miq_policy/_event_details.html.haml:265 -msgid " Selected Actions:" -msgstr " 选择的动作:" +msgid "Snapshot Information" +msgstr "快照信息" -#: ../app/views/miq_policy/_event_details.html.haml:111 -msgid "Move selected Actions into this Event" -msgstr "移动所选的动作至这个事件" +msgid "Snapshot Name" +msgstr "快照名称" -#: ../app/views/miq_policy/_event_details.html.haml:121 -msgid "Remove all Actions from this Event" -msgstr "从这个事件里删除所有的动作" +msgid "Snapshot Settings" +msgstr "快照设置" -#: ../app/views/miq_policy/_event_details.html.haml:130 -msgid "Remove selected Actions from this Event" -msgstr "从这个事件删除所选的动作" +msgid "Snapshot VM '%{name}'" +msgstr "快照虚拟机 '%{name}'" -#: ../app/views/miq_policy/_event_details.html.haml:156 -msgid "Move selected Action up" -msgstr "上移所选的动作" +msgid "Snapshot VM '%{name}''" +msgstr "快照虚拟机 '%{name}'" -#: ../app/views/miq_policy/_event_details.html.haml:166 -msgid "Move selected Action down" -msgstr "下移所选的动作" +msgid "Snapshot VM memory" +msgstr "快照虚拟机内存" -#: ../app/views/miq_policy/_event_details.html.haml:176 -msgid "Set selected Actions to Synchronous" -msgstr "设置所选的动作为同步的" +msgid "Snapshot for Cloud Volume \"%{name}\" created" +msgstr "已创建云卷 \"%{name}\" 的创建" -#: ../app/views/miq_policy/_event_details.html.haml:186 -msgid "Set selected Actions to Asynchronous" -msgstr "设置所选的动作为异步的" +msgid "Snapshot of Cloud Volume \"%{name}\" was cancelled by the user" +msgstr "用户取消了云卷 %{name} 的快照" -#: ../app/views/miq_policy/_event_details.html.haml:203 -msgid "This Event has no true Actions." -msgstr "这个事件没有对应“True”的动作。" +msgid "Snapshot of VM %{name} was cancelled by the user" +msgstr "用户取消了虚拟机 %{name} 的快照" -#: ../app/views/miq_policy/_event_details.html.haml:216 -#: ../app/views/miq_policy/_event_details.html.haml:396 -msgid "Synchronous" -msgstr "同步的" +msgid "Snapshots" +msgstr "快照" -#: ../app/views/miq_policy/_event_details.html.haml:228 -#: ../app/views/miq_policy/_event_details.html.haml:408 -#: ../app/views/miq_policy/_policy_details.html.haml:352 -#: ../app/views/miq_policy/_policy_details.html.haml:367 -msgid "View this Event Action" -msgstr "查看这个 Event 动作" +msgid "Sockets" +msgstr "套接字" -#: ../app/views/miq_policy/_event_details.html.haml:254 -msgid "Order of Actions if ANY Conditions are False" -msgstr "如果任何条件为 False 时的动作顺序" +msgid "Soft Reboot" +msgstr "软重启" -#: ../app/views/miq_policy/_event_details.html.haml:383 -msgid "This Event has no false Actions." -msgstr "这个事件没有对应“False”的 动作。" +msgid "Soft Reboot the selected items" +msgstr "软重启所选的项" -#: ../app/views/miq_policy/_event_list.html.haml:5 -msgid "No Events are defined" -msgstr "没有定义任何事件" +msgid "Soft Reboot the selected items?" +msgstr "软重启所选的项?" -#: ../app/views/miq_policy/_event_list.html.haml:7 -msgid "No Events are defined that match the entered search string '%s'" -msgstr "输入的搜索字符串 '%s' 与任何定义的事件均不匹配。" +msgid "Soft Reboot this Instance" +msgstr "软重启这个实例" -#: ../app/views/miq_policy/_event_list.html.haml:14 -msgid "View this Event" -msgstr "查看这个事件" +msgid "Soft Reboot this Instance?" +msgstr "软重启这个实例?" -#: ../app/views/miq_policy/_export.html.haml:17 -#: ../app/views/miq_policy/import.html.haml:54 -#: ../app/views/miq_policy/import.html.haml:54 -msgid "Resolve conflicts to import the file" -msgstr "解决冲突以导入文件" +msgid "Software" +msgstr "软件" -#: ../app/views/miq_policy/_export.html.haml:23 -#: ../app/views/miq_policy/import.html.haml:60 -#: ../app/views/miq_policy/import.html.haml:60 -msgid "Commit Import" -msgstr "提交导入" +msgid "Software updates have not yet been configured. Select Edit Registration to register appliances in this region with Red Hat to receive software updates and other benefits." +msgstr "还未配置软件更新。清选择 Edit Registration 在这个区域里注册应用程序以接受软件更新和享有其他益处。" -#: ../app/views/miq_policy/_export.html.haml:33 -#: ../app/views/miq_policy/import.html.haml:73 -msgid "Cancel Import" -msgstr "取消导入" +msgid "Something is wrong, try reloading the page" +msgstr "" -#: ../app/views/miq_policy/_export.html.haml:102 -msgid "Export:" -msgstr "导出:" +msgid "Sorry, the username or password you entered is incorrect." +msgstr "对不起,您输入的用户或密码不正确。" -#: ../app/views/miq_policy/_export.html.haml:122 -msgid "Available %{title}:" -msgstr "可用的 %{title}:" +msgid "Sort By" +msgstr "排序依据" -#: ../app/views/miq_policy/_export.html.haml:148 -msgid "Export Selected %{title}" -msgstr "导出所选的 %{title}" +msgid "Sort Criteria" +msgstr "选择标准" -#: ../app/views/miq_policy/_form_expression.html.haml:8 -msgid "Expression (Press the \"Edit\" button to edit the expression)" -msgstr "表达式(按 \"Edit\" 按钮来编辑表达式)" +msgid "Sort Order" +msgstr "排序顺序" -#: ../app/views/miq_policy/_form_expression.html.haml:10 -#: ../app/views/report/_form_filter.html.haml:22 -#: ../app/views/report/_form_filter.html.haml:62 -msgid "Edit this Expression" -msgstr "编辑这个表达式" +msgid "Sort the Report By" +msgstr "报表排序" -#: ../app/views/miq_policy/_form_expression.html.haml:21 -msgid "No expression defined, a condition must contain a valid expression." -msgstr "没有定义表达式,条件必须包含有效的表达式。" +msgid "Source" +msgstr "来源" -#: ../app/views/miq_policy/_form_scope.html.haml:3 -msgid "Scope (Choose an element of the scope to edit)" -msgstr "作用域(选择作用域的一个元素进行编辑)" +msgid "Spaces are prohibited" +msgstr "空间被禁止" -#: ../app/views/miq_policy/_form_scope.html.haml:10 -msgid "Scope (Press the \"Edit\" button to edit the scope)" -msgstr "作用域(按 \"Edit\" 按钮编辑作用域)" +msgid "Specific Hosts" +msgstr "" -#: ../app/views/miq_policy/_form_scope.html.haml:12 -msgid "Edit this Scope" -msgstr "编辑这个作用域" +msgid "Specified NTP settings applied here will override Zone NTP settings." +msgstr "在这里应用指定的 NTP 设置将覆盖区的 NTP 设置。" -#: ../app/views/miq_policy/_policy_details.html.haml:82 -msgid "By Username %{username} %{created_on}" -msgstr "按用户名 %{username} %{created_on}" +msgid "Specify CDN configuration" +msgstr "指定 CDN 配置" -#: ../app/views/miq_policy/_policy_details.html.haml:97 -msgid "By Username %{username} %{updated_on}" -msgstr "按用户名 %{username} %{updated_on}" +msgid "Specify Calculations for Summary Rows" +msgstr "为总结行指定计算方式" -#: ../app/views/miq_policy/_policy_details.html.haml:107 -msgid "Scope (Choose an element of the Policy scope to edit)" -msgstr "作用域(选择 Policy 作用域的一个元素进行编辑)" +msgid "Specify Calculations of Numeric Values for Grouped Records" +msgstr "对分组记录指定数字值的计算方式" -#: ../app/views/miq_policy/_policy_details.html.haml:130 -msgid "No Policy scope defined, the scope of this policy includes all elements." -msgstr "没有定义策略作用域,这个策略的作用域包含所有的元素。" +msgid "Specify Column Headers and Formats" +msgstr "指定列头部和格式" -#: ../app/views/miq_policy/_policy_details.html.haml:138 -msgid "Condition Selection" -msgstr "条件选择" +msgid "Specify Column Styles" +msgstr "指定列风格" -#: ../app/views/miq_policy/_policy_details.html.haml:144 -msgid "Available %{model} Conditions:" -msgstr "可用的 %{model} 条件:" +msgid "Specify Driver" +msgstr "" -#: ../app/views/miq_policy/_policy_details.html.haml:148 -msgid "Policy Conditions:" -msgstr "策略条件:" +msgid "Specify a list of machines to deploy on (No existing provider)" +msgstr "指定进行部署的主机列表(没有现存的供应商)" -#: ../app/views/miq_policy/_policy_details.html.haml:172 -msgid "Move selected Conditions into this Policy" -msgstr "移动所选的条件至这个策略" +msgid "Specify role(s) for this host" +msgstr "指定这个主机的角色" -#: ../app/views/miq_policy/_policy_details.html.haml:172 -msgid "Remove all Conditions from this Policy" -msgstr "从这个配置集里删除所有的条件" +msgid "Stack" +msgstr "栈 " -#: ../app/views/miq_policy/_policy_details.html.haml:172 -msgid "Remove selected Conditions from this Policy" -msgstr "从这个策略删除所选的条件" +msgid "Stacks" +msgstr "栈" -#: ../app/views/miq_policy/_policy_details.html.haml:207 -msgid "" -"* If all Conditions are removed from a Policy, it will be unconditional and al" -"ways evaluate to true." -msgstr "* 如果从策略里删除所有条件,它将是无条件的且总是为 true。" +msgid "Standard NFS Server" +msgstr "标准的 NFS 服务器" -#: ../app/views/miq_policy/_policy_details.html.haml:214 -msgid "" -"No conditions defined. This policy is unconditional and will ALWAYS return tru" -"e." -msgstr "没有定义条件。这个策略是无条件的且总是返回 true。" +msgid "Start" +msgstr "开始" -#: ../app/views/miq_policy/_policy_details.html.haml:227 -msgid "Scopes / Expressions" -msgstr "作用域 / 表达式" +msgid "Start Date" +msgstr "开始日期" -#: ../app/views/miq_policy/_policy_details.html.haml:286 -#: ../app/views/miq_policy/_rsop_form.html.haml:15 -msgid "Event Selection" -msgstr "事件选择" +msgid "Start Page" +msgstr "启动页面" -#: ../app/views/miq_policy/_policy_details.html.haml:306 -msgid "This policy does not currently respond to any Events." -msgstr "这个策略目前没有响应任何事件。" +msgid "Start Role" +msgstr "启动角色" -#: ../app/views/miq_policy/_policy_details.html.haml:328 -#: ../app/views/miq_policy/_policy_details.html.haml:334 -msgid "View this Policy Event" -msgstr "查看这个 Policy 事件" +msgid "Start Server" +msgstr "启动服务器" -#: ../app/views/miq_policy/_policy_details.html.haml:345 -msgid "* No Actions are configured for this Event." -msgstr "* 没有为这个事件配置动作。" +msgid "Start Server Group" +msgstr "" -#: ../app/views/miq_policy/_policy_details.html.haml:414 -msgid "Belongs to Profiles" -msgstr "所属配置集" +msgid "Start Servers in this Server Group" +msgstr "" -#: ../app/views/miq_policy/_policy_details.html.haml:417 -msgid "This Policy is not assigned to any Profiles." -msgstr "这个策略没有分配给任何配置集。" +msgid "Start TLS Automatically" +msgstr "自动启动 TLS" -#: ../app/views/miq_policy/_policy_details.html.haml:424 -#: ../app/views/miq_policy/_profile_list.html.haml:16 -#: ../app/views/report/_role_list.html.haml:31 -msgid "View this Profile" -msgstr "查看这个配置集" +msgid "Start Timestamp" +msgstr "启动时间戳" -#: ../app/views/miq_policy/_policy_list.html.haml:8 -msgid "No %{model} %{mode} Policies are defined." -msgstr "没有定义 %{model} %{mode} 策略。" +msgid "Start is not allowed for the selected item" +msgstr "所选的项不允许启动" -#: ../app/views/miq_policy/_policy_list.html.haml:10 -msgid "No %{model} %{mode} Policies are defined that match the entered search string." -msgstr "输入的搜索字符串与所有定义的 %{model} %{mode} 策略均不匹配。" +msgid "Start successfully initiated" +msgstr "启动已成功初始化" -#: ../app/views/miq_policy/_profile_details.html.haml:45 -msgid "Policy Selection" -msgstr "策略选择" +msgid "Start the %{host} Discovery" +msgstr "启动 %{host} 发现" -#: ../app/views/miq_policy/_profile_details.html.haml:51 -msgid "Available Policies:" -msgstr "可用的策略:" +msgid "Start the %{server_role_description} Role on Server %{server_name} [%{server_id}]" +msgstr "启动服务器 %{server_name} [%{server_id}] 上的 %{server_role_description} 角色" -#: ../app/views/miq_policy/_profile_details.html.haml:55 -msgid "Profile Policies:" -msgstr "配置集策略:" +msgid "Start the %{server_role_description} Role on Server %{server_name} [%{server_id}]?" +msgstr "启动服务器 %{server_name} [%{server_id}] 上的 %{server_role_description} 角色?" -#: ../app/views/miq_policy/_profile_details.html.haml:77 -msgid "Move selected Policies into this Profile" -msgstr "移动所选的策略至这个配置集" +msgid "Start the selected items" +msgstr "启动所选的项" -#: ../app/views/miq_policy/_profile_details.html.haml:87 -msgid "Remove all Policies from this Profile" -msgstr "从这个配置集里删除所有的策略" +msgid "Start the selected items?" +msgstr "启动所选的项?" -#: ../app/views/miq_policy/_profile_details.html.haml:96 -msgid "Remove selected Policies from this Profile" -msgstr "从这个配置删除所选的策略" +msgid "Start this Instance" +msgstr "启动这个实例" -#: ../app/views/miq_policy/_profile_details.html.haml:128 -msgid "No Policies are defined." -msgstr "没有定义策略。" +msgid "Start this Instance?" +msgstr "启动这个实例?" -#: ../app/views/miq_policy/_profile_details.html.haml:134 -msgid "View this %{model} Policy" -msgstr "查看这个 %{model} 策略" +msgid "Start this server" +msgstr "启动这个服务器" -#: ../app/views/miq_policy/_profile_list.html.haml:7 -msgid "No %{mode} Policy Profiles are defined." -msgstr "没有定义 %{mode} 策略配置集。" +msgid "Started" +msgstr "" -#: ../app/views/miq_policy/_profile_list.html.haml:9 -msgid "No %{mode} Policy Profiles are defined that match the entered search string." -msgstr "输入的搜索字符串与所有定义的 %{mode} 策略配置集均不匹配。" +msgid "Started At" +msgstr "启动于" -#: ../app/views/miq_policy/_rsop_form.html.haml:47 -msgid "By %{clusters}" -msgstr "按 %{clusters}" +msgid "Started On" +msgstr "开始日期" -#: ../app/views/miq_policy/_rsop_form.html.haml:47 -msgid "By %{hosts}" -msgstr "按 %{hosts}" +msgid "Started:" +msgstr "已启动:" -#: ../app/views/miq_policy/_rsop_form.html.haml:47 -msgid "By Cloud/Infrastructure Providers" -msgstr "按云/基础架构供应商" +msgid "Starting Class must be selected" +msgstr "必需选择启动类" -#: ../app/views/miq_policy/_rsop_form.html.haml:47 -msgid "Single VM" -msgstr "单个虚拟机" +msgid "Starting Date" +msgstr "开始日期" -#: ../app/views/miq_policy/_rsop_options.html.haml:11 -msgid "Submit Policy Simulation for the selected VMs" -msgstr "为所选的虚拟机提交策略模拟" +msgid "Starting Message" +msgstr "启动消息" -#: ../app/views/miq_policy/_rsop_options.html.haml:21 -#: ../app/views/miq_policy/_rsop_options.html.haml:39 -msgid "Reset all Policy Simulation options" -msgstr "重置所有策略模拟选项" +msgid "Starting Process is required" +msgstr "启动进程是必需的" -#: ../app/views/miq_policy/_rsop_options.html.haml:35 -msgid "Select a VM to Submit the Simulation Options" -msgstr "选择虚拟机提交 Simulation 选项" +msgid "Starting Time" +msgstr "开始时间" -#: ../app/views/miq_policy/_rsop_results.html.haml:18 -#: ../app/views/vm_common/_policy_options.html.haml:16 -msgid "Show out of scope items:" -msgstr "显示超出范围的项目:" +msgid "Starting process must be specified" +msgstr "您必须指定启动进程" -#: ../app/views/miq_policy/_rsop_results.html.haml:34 -#: ../app/views/vm_common/_policy_options.html.haml:32 -msgid "Show policies:" -msgstr "显示策略:" +msgid "Starting values" +msgstr "开始值" -#: ../app/views/miq_policy/_rsop_results.html.haml:46 -msgid "Passed" -msgstr "已通过" +msgid "State" +msgstr "状态" + +msgid "State Changed On" +msgstr "状态修改" -#: ../app/views/miq_policy/_rsop_results.html.haml:57 -#: ../app/views/vm_common/_policy_options.html.haml:54 -msgid "Failed" -msgstr "失败的" +msgid "States of Root Orchestration Stacks" +msgstr "Root 编配栈的状态" -#: ../app/views/miq_policy/_rsop_results.html.haml:65 -msgid "Policy Simulation Results" -msgstr "策略模拟结果" +msgid "Status" +msgstr "状态" -#: ../app/views/miq_policy/_rsop_results.html.haml:71 -msgid "* Items in" -msgstr "* 项" +msgid "Status = %{row}" +msgstr "状态 = %{row}" -#: ../app/views/miq_policy/_rsop_results.html.haml:77 -msgid "red italics" -msgstr "red italics" +msgid "Status = Queued" +msgstr "" -#: ../app/views/miq_policy/_rsop_results.html.haml:81 -msgid "do not change the outcome of the scope or expression" -msgstr "不要修改作用域或表达式的结果" +msgid "Status = Running" +msgstr "" -#: ../app/views/miq_policy/_rsop_results.html.haml:101 -msgid "* Enter Policy Simulation options on the left and press Submit" -msgstr "* 在左侧输入策略模拟选项并按“提交”" +msgid "Status of Regional Roles for Servers in %{kind} %{description}" +msgstr "%{kind} %{description} 里服务器的 Regional 角色的状态" -#: ../app/views/miq_request/_ae_prov_show.html.haml:3 -msgid "Automations Tasks" -msgstr "自动化任务" +msgid "Status of Roles for Servers in %{kind} %{description}" +msgstr "%{kind} %{description} 里服务器的角色的状态" -#: ../app/views/miq_request/_pre_prov.html.haml:8 -msgid "Provision %{what} based on the selected %{type}" -msgstr "根据所选 %{type} 提供 %{what}" +msgid "Status: " +msgstr "状态:" -#: ../app/views/miq_request/_pre_prov.html.haml:18 -msgid "Hide deprecated" -msgstr "" +msgid "Step 1/3: Datasource Attributes" +msgstr "步骤 1/3:数据源属性" -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:11 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:11 -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:11 -#: ../app/views/shared/views/_prov_dialog.html.haml:10 -msgid "Request Information" -msgstr "请求信息" +msgid "Step 2/3: JDBC Driver" +msgstr "步骤 2/3:JDBC 驱动程序" -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:18 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:18 -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:19 -#: ../app/views/shared/views/_prov_dialog.html.haml:19 -msgid "Manager" -msgstr "管理者" +msgid "Step 3/3: Connection Settings" +msgstr "步骤 3/3:连接设置" -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:26 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:26 -#: ../app/views/shared/views/_prov_dialog.html.haml:28 -msgid "Select Tags to apply" -msgstr "选择应用的标签" +msgid "Stop" +msgstr "停止" -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:50 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:82 -#: ../app/views/shared/views/_prov_dialog.html.haml:339 -#: ../app/views/shared/views/_prov_dialog.html.haml:373 -msgid "IP Address Information" -msgstr "IP 地址信息" +msgid "Stop Server" +msgstr "停止服务器" -#: ../app/views/miq_request/_prov_configured_system_foreman_dialog.html.haml:60 -#: ../app/views/miq_request/_prov_host_dialog.html.haml:117 -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:82 -#: ../app/views/report/_show_schedule.html.haml:3 -#: ../app/views/shared/views/_prov_dialog.html.haml:408 -msgid "Schedule Info" -msgstr "时间表信息" +msgid "Stop Server Group" +msgstr "" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:11 -msgid "(MB) memory" -msgstr "(MB) 内存" +msgid "Stop Servers in this Server Group" +msgstr "" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:11 -msgid "instances" -msgstr "实例" +msgid "Stop the selected items" +msgstr "停止所选的项" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:11 -msgid "vcpus" -msgstr "vcpus" +msgid "Stop the selected items?" +msgstr "停止所选的项?" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:18 -msgid "Cloud Quota" -msgstr "云配额" +msgid "Stop this Instance" +msgstr "停止这个实例" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:22 -msgid "Cloud Tenant:" -msgstr "云租户:" +msgid "Stop this Instance?" +msgstr "要停止这个实例吗?" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:30 -msgid "Please select a Cloud Tenant from the Environment Tab" -msgstr "请从 Environment 标签页里选择一个云租户" +msgid "Stop this Middleware Server" +msgstr "停止这个中间件服务器" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:34 -msgid "Instance Type:" -msgstr "实例类型:" +msgid "Stop this server" +msgstr "停止这个服务器" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:45 -#: ../app/views/ops/_selected_by_servers.html.haml:186 -msgid "available" -msgstr "可用的" +msgid "Stopped On" +msgstr "停止日期" -#: ../app/views/miq_request/_prov_dialog_cloud_quota.html.haml:50 -msgid "Please select an Instance Type from above" -msgstr "请从上面选择一个实例类型" +msgid "Storage" +msgstr "存储" -#: ../app/views/miq_request/_prov_field.html.haml:161 -#: ../app/views/miq_request/_prov_field.html.haml:166 -msgid "Lookup" -msgstr "查找" +msgid "Storage Adapters" +msgstr "存储适配器" -#: ../app/views/miq_request/_prov_field.html.haml:166 -#: ../app/views/ops/_rbac_group_details.html.haml:172 -#: ../app/views/ops/_rbac_group_details.html.haml:244 -msgid "LDAP Group Lookup" -msgstr "LDAP 组查找" +msgid "Storage Chargeback Rate \"%{name}\"" +msgstr "" -#: ../app/views/miq_request/_prov_field.html.haml:185 -#: ../app/views/miq_request/_prov_field.html.haml:194 -msgid "VM Number" -msgstr "虚拟机数量" +msgid "Storage Chargeback Rates" +msgstr "存储计费费率" -#: ../app/views/miq_request/_prov_field.html.haml:212 -#: ../app/views/miq_request/_prov_field.html.haml:277 -#: ../app/views/miq_request/_prov_field.html.haml:329 -#: ../app/views/miq_request/_prov_field.html.haml:448 -#: ../app/views/miq_request/_prov_field.html.haml:498 -#: ../app/views/miq_request/_prov_field.html.haml:541 -msgid "No Choices Available" -msgstr "没有可用的选择" +msgid "Storage Clusters" +msgstr "存储集群" -#: ../app/views/miq_request/_prov_field.html.haml:397 -msgid "* Only a single value can be assigned from these Tag Categories" -msgstr "* 这些标签类别(Tag Categories)只能分配单个值" +msgid "Storage Manager" +msgstr "" -#: ../app/views/miq_request/_prov_form_buttons.html.haml:16 -#: ../app/views/miq_request/_prov_form_buttons.html.haml:46 -msgid "Cancel this provisioning request" -msgstr "取消这个设置请求" +msgid "Storage Managers" +msgstr "存储管理者" -#: ../app/views/miq_request/_prov_form_buttons.html.haml:19 -msgid "Submit this provisioning request" -msgstr "提交这个置备请求" +msgid "Storage Medium Type" +msgstr "存储媒介类型" -#: ../app/views/miq_request/_prov_form_buttons.html.haml:22 -msgid "Continue this provisioning request" -msgstr "继续这个设置请求" +msgid "Storage Profile" +msgstr "存储配置集" -#: ../app/views/miq_request/_prov_host_dialog.html.haml:90 -#: ../app/views/shared/views/_prov_dialog.html.haml:347 -#: ../app/views/shared/views/_prov_dialog.html.haml:381 -#: ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:35 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:101 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:230 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:323 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:388 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:49 -msgid "DNS" -msgstr "DNS" +msgid "Storage Rate Assignments" +msgstr "存储比例分配" -#: ../app/views/miq_request/_prov_host_dialog.html.haml:98 -#: ../app/views/shared/views/_prov_dialog.html.haml:389 -msgid "Customize Template" -msgstr "自定义脚本" +msgid "String" +msgstr "字符串" -#: ../app/views/miq_request/_prov_host_dialog.html.haml:107 -#: ../app/views/shared/views/_prov_dialog.html.haml:398 -msgid "Selected Template Contents" -msgstr "选择的模版内容" +msgid "String List" +msgstr "字符串列表" -#: ../app/views/miq_request/_prov_options.html.haml:8 -#: ../app/views/miq_task/_tasks_options.html.haml:6 -msgid "Filter By" -msgstr "过滤" +msgid "Style" +msgstr "风格" -#: ../app/views/miq_request/_prov_options.html.haml:18 -msgid "Requester:" -msgstr "请求者:" +msgid "Styling" +msgstr "风格化" -#: ../app/views/miq_request/_prov_options.html.haml:34 -#: ../app/views/ops/_settings_server_tab.html.haml:222 -msgid "None Available" -msgstr "没有可用的" +msgid "Styling for '%{item}', first value is in error: %{message}" +msgstr "'%{item}' 的风格,第一个值有错误:%{message}" -#: ../app/views/miq_request/_prov_options.html.haml:42 -msgid "Approval State:" -msgstr "批准状态:" +msgid "Styling for '%{item}', second value is in error: %{message}" +msgstr "'%{item}' 的风格,第二个值有错误:%{message}" -#: ../app/views/miq_request/_prov_options.html.haml:86 -msgid "Request Date:" -msgstr "请求日期:" +msgid "Styling for '%{item}', third value is in error: %{message}" +msgstr "'%{item}' 的风格,第三个值有错误:%{message}" -#: ../app/views/miq_request/_prov_options.html.haml:106 -msgid "Reason:" -msgstr "原因:" +msgid "Styling tab is not available until at least 1 field has been selected" +msgstr "在最少一个项被选择前,Styling 标签页不可用" -#: ../app/views/miq_request/_prov_options.html.haml:129 -#: ../app/views/miq_request/_prov_options.html.haml:163 -#: ../app/views/miq_task/_tasks_options.html.haml:162 -#: ../app/views/miq_task/_tasks_options.html.haml:195 -msgid "Set filters to default" -msgstr "设置过滤器为默认选项" +msgid "Sub" +msgstr "Sub" -#: ../app/views/miq_request/_prov_options.html.haml:143 -#: ../app/views/miq_task/_tasks_options.html.haml:175 -msgid "Apply the selected filters" -msgstr "应用所选的过滤器" +msgid "Sub-claim" +msgstr "Sub-claim" -#: ../app/views/miq_request/_prov_options.html.haml:153 -#: ../app/views/miq_task/_tasks_options.html.haml:185 -msgid "Reset filter changes" -msgstr "重置过滤器修改" +msgid "Sub-claim:" +msgstr "Sub-claim:" -#: ../app/views/miq_request/_prov_vm_migrate_dialog.html.haml:73 -msgid "VM Hardware" -msgstr "虚拟机硬件" +msgid "Submit" +msgstr "提交" -#: ../app/views/miq_request/_reconfigure_show.html.haml:35 -msgid "Processor Sockets" -msgstr "处理器套接字" +msgid "Submit Automation Simulation with the specified options" +msgstr "有指定选项提交 Automation Simulation " -#: ../app/views/miq_request/_reconfigure_show.html.haml:49 -msgid "Processor Cores_Per_Socket" -msgstr "每个套接字的处理器核心" +msgid "Submit Changes" +msgstr "提交修改" -#: ../app/views/miq_request/_reconfigure_show.html.haml:63 -#: ../app/views/vm_common/_reconfigure.html.haml:147 -msgid "Total Processors" -msgstr "总共的处理器" +msgid "Submit Planning options" +msgstr "提交\"计划\"选项" -#: ../app/views/miq_request/_reconfigure_show.html.haml:77 -msgid "Add Disks" -msgstr "添加磁盘" +msgid "Submit Policy Simulation for the selected VMs" +msgstr "为所选的虚拟机提交策略模拟" -#: ../app/views/miq_request/_reconfigure_show.html.haml:93 -msgid "Remove Disks" -msgstr "删除磁盘" +msgid "Submit this provisioning request" +msgstr "提交这个置备请求" -#: ../app/views/miq_request/_reconfigure_show.html.haml:111 -#: ../app/views/vm_common/_reconfigure.html.haml:387 -msgid "Affected VMs" -msgstr "受影响的虚拟机" +msgid "Subnet" +msgstr "" -#: ../app/views/miq_request/_request.html.haml:7 -#: ../app/views/miq_request/_request_details.html.haml:8 -msgid "Request Details" -msgstr "请求细节" +msgid "Subnet \"%{subnetname}\" added to Router \"%{name}\"" +msgstr "" -#: ../app/views/miq_request/_request.html.haml:18 -msgid "Request ID" -msgstr "请求 ID" +msgid "Subnet \"%{subnetname}\" removed from Router \"%{name}\"" +msgstr "" -#: ../app/views/miq_request/_request.html.haml:44 -msgid "Request State" -msgstr "请求状态" +msgid "Subnet CIDR" +msgstr "子网 CIDR" -#: ../app/views/miq_request/_request.html.haml:58 -msgid "Requester" -msgstr "请求者" +msgid "Subnet Mask" +msgstr "子网掩码" -#: ../app/views/miq_request/_request.html.haml:71 -msgid "Request Type" -msgstr "请求类型" +msgid "Subnet Name" +msgstr "子网名称" -#: ../app/views/miq_request/_request.html.haml:100 -#: ../app/views/miq_request/_request_details.html.haml:108 -#: ../app/views/ops/_logs_selected.html.haml:35 -#: ../app/views/ops/rhn/_server_table.html.haml:101 -msgid "Last Message" -msgstr "最后一条消息" +msgid "Subnet Range" +msgstr "子网范围" -#: ../app/views/miq_request/_request.html.haml:126 -#: ../app/views/miq_request/_request_details.html.haml:31 -msgid "Last Update" -msgstr "最近更新日期" +msgid "Subnets" +msgstr "子网" -#: ../app/views/miq_request/_request.html.haml:140 -msgid "Completed" -msgstr "完成" +msgid "Subscribe to this feed" +msgstr "订阅这个 Feed" -#: ../app/views/miq_request/_request.html.haml:159 -msgid "Approval State" -msgstr "批准状态" +msgid "Subscription Credentials validated successfully" +msgstr "订阅凭证验证成功" -#: ../app/views/miq_request/_request.html.haml:173 -#: ../app/views/miq_request/_request_details.html.haml:58 -msgid "Approved/Denied by" -msgstr "批准/拒绝者" +msgid "Subscription ID" +msgstr "订阅 ID" -#: ../app/views/miq_request/_request.html.haml:186 -msgid "Approved/Denied on" -msgstr "批准/拒绝日期" +msgid "Subscriptions" +msgstr "订阅" -#: ../app/views/miq_request/_request.html.haml:224 -msgid "Provisioned VMs" -msgstr "置备虚拟机" +msgid "Substitute: %{substitute}" +msgstr "替代:%{substitute}" -#: ../app/views/miq_request/_request.html.haml:228 -#: ../app/views/miq_request/_request.html.haml:242 -#: ../app/views/ops/_ldap_region_show.html.haml:83 -#: ../app/views/report/_report_list.html.haml:53 -#: ../app/views/report/_report_list.html.haml:86 -#: ../app/views/report/_report_list.html.haml:147 -#: ../app/views/shared/buttons/_ab_list.html.haml:19 -#: ../app/views/shared/buttons/_ab_list.html.haml:64 -#: ../app/views/shared/buttons/_ab_list.html.haml:93 -#: ../app/views/shared/buttons/_ab_list.html.haml:207 -msgid "Click to view details" -msgstr "点击以查看细节" +msgid "Substitution:" +msgstr "替换:" -#: ../app/views/miq_request/_request.html.haml:239 -msgid "Provisioned Hosts" -msgstr "置备主机" +msgid "Subtype" +msgstr "子类型" -#: ../app/views/miq_request/_request.html.haml:255 -msgid "* Enter a reason for this approval and press Submit" -msgstr "* 输入这次批准的原因并按“提交”" +msgid "Subtype is required." +msgstr "子类型是必需的。" -#: ../app/views/miq_request/_request.html.haml:258 -msgid "* Enter a reason for this denial and press Submit" -msgstr "* 输入这次拒绝的原因并按“提交”" +msgid "Success" +msgstr "成功" -#: ../app/views/miq_request/_request_details.html.haml:18 -msgid "Requested by" -msgstr "请求者" +msgid "Successful" +msgstr "成功的" -#: ../app/views/miq_request/_request_details.html.haml:71 -msgid "Date Approved/Denied" -msgstr "批准/拒绝日期" +msgid "Successful Events" +msgstr "成功的事件" -#: ../app/views/miq_request/_service_reconfigure_show.html.haml:12 -#: ../app/views/miq_request/_st_prov_show.html.haml:11 -msgid "Dialog Options" -msgstr "对话框选项" +msgid "Successfully deleted Saved Report from the %{product} Database" +msgid_plural "Successfully deleted Saved Reports from the %{product} Database" +msgstr[0] "从 %{product} 数据库删除 Saved Report 成功" -#: ../app/views/miq_task/_tasks_options.html.haml:22 -msgid "All Zones" -msgstr "所有区" +msgid "Successfully refreshed!" +msgstr "成功刷新!" -#: ../app/views/miq_task/_tasks_options.html.haml:59 -msgid "24 Hour Time Period" -msgstr "24 小时时间周期" +msgid "Sum 'Other' values" +msgstr "总计 'Other' 值" -#: ../app/views/miq_task/_tasks_options.html.haml:79 -msgid "Task Status" -msgstr "任务状态" +msgid "Summary" +msgstr "概述" -#: ../app/views/miq_task/_tasks_options.html.haml:100 -msgid "Running" -msgstr "运行中" +msgid "Summary Screens" +msgstr "" -#: ../app/views/miq_task/_tasks_options.html.haml:110 -msgid "Ok" -msgstr "确定" +msgid "Summary View" +msgstr "概述视图" -#: ../app/views/miq_task/_tasks_options.html.haml:130 -msgid "Warn" -msgstr "警告" +msgid "Summary tab is not available until at least 1 field has been selected" +msgstr "在最少一个项被选择前,总结标签页不可用。" -#: ../app/views/miq_task/_tasks_options.html.haml:138 -msgid "Task State" -msgstr "任务状态" +msgid "Sunday" +msgstr "周日" -#: ../app/views/network_router/edit.html.haml:7 -msgid "Edit Router" -msgstr "编辑路由器" +msgid "Super Administrator can not be copied" +msgstr "" -#: ../app/views/network_router/edit.html.haml:16 -#: ../app/views/network_router/new.html.haml:45 -msgid "Router Name" -msgstr "路由器名称" +msgid "Support Case must be provided to collect logs" +msgstr "必须提供支持用例来收集日志信息" -#: ../app/views/network_topology/show.html.haml:90 -msgid "Floating Ips" -msgstr "浮动 IP" +msgid "Surveys" +msgstr "调查" -#: ../app/views/network_topology/show.html.haml:185 -#: ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:28 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:94 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:220 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:333 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:365 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:38 -msgid "Load Balancer" -msgstr "负载平衡器" +msgid "Suspend" +msgstr "暂停" -#: ../app/views/ontap_file_share/_create_datastore.html.haml:67 -msgid "Submit this Create Datastore request" -msgstr "提交这个 Create Datastore 请求" +msgid "Suspend Role" +msgstr "暂停角色" -#: ../app/views/ontap_logical_disk/_main.html.haml:16 -#: ../app/views/ops/_db_summary.html.haml:7 -msgid "Capacity Data" -msgstr "容量数据" +msgid "Suspend Server" +msgstr "暂停服务器" -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:26 -msgid "Aggregate (free space)" -msgstr "总计(空闲空间)" +msgid "Suspend Server Group" +msgstr "" -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:41 -msgid "Size (GB)" -msgstr "大小(GB)" +msgid "Suspend Server in this Server Group" +msgstr "" -#: ../app/views/ontap_storage_system/_create_logical_disk.html.haml:64 -msgid "Submit this Create Logical Disk request" -msgstr "提交这个 Create Logical Disk 请求" +msgid "Suspend is not allowed for the selected item" +msgstr "所选的项不允许暂停" -#: ../app/views/ops/_all_tabs.html.haml:11 -msgid "SmartProxy Affinity" -msgstr "SmartProxy Affinity" +msgid "Suspend successfully initiated" +msgstr "暂停已成功初始化" -#: ../app/views/ops/_all_tabs.html.haml:24 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:53 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:98 -msgid "Server" -msgstr "服务器" +msgid "Suspend the %{server_role_description} Role on Server %{server_name} [%{server_id}]" +msgstr "暂停服务器 %{server_name} [%{server_id}] 上的 %{server_role_description} 角色" -#: ../app/views/ops/_all_tabs.html.haml:30 -#: ../app/views/ops/_all_tabs.html.haml:169 -msgid "Workers" -msgstr "工作节点" +msgid "Suspend the %{server_role_description} Role on Server %{server_name} [%{server_id}]?" +msgstr "暂停服务器 %{server_name} [%{server_id}] 上的 %{server_role_description} 角色?" -#: ../app/views/ops/_all_tabs.html.haml:34 -msgid "Custom Logos" -msgstr "自定义 Logo" +msgid "Suspend the selected items" +msgstr "暂停所选的项" -#: ../app/views/ops/_all_tabs.html.haml:72 -msgid "C & U Collection" -msgstr "容量和利用率采集" +msgid "Suspend the selected items?" +msgstr "暂停所选的项?" -#: ../app/views/ops/_all_tabs.html.haml:85 -msgid "Import Tags" -msgstr "导入标签" +msgid "Suspend this Instance" +msgstr "暂停这个实例" -#: ../app/views/ops/_all_tabs.html.haml:88 -msgid "Import Variables" -msgstr "导入变量" +msgid "Suspend this Instance?" +msgstr "暂停这个实例?" -#: ../app/views/ops/_all_tabs.html.haml:91 -msgid "Map Tags" -msgstr "映射标签" +msgid "Suspend this VM" +msgstr "暂停这个虚拟机" -#: ../app/views/ops/_all_tabs.html.haml:94 -msgid "Red Hat Updates" -msgstr "Red Hat 更新" +msgid "Suspend this VM?" +msgstr "暂停这个虚拟机?" -#: ../app/views/ops/_all_tabs.html.haml:97 -msgid "Replication" -msgstr "复制" +msgid "Suspend this server" +msgstr "暂停这个服务器" -#: ../app/views/ops/_all_tabs.html.haml:132 -#: ../app/views/ops/_all_tabs.html.haml:226 -msgid "Roles by Servers" -msgstr "角色(按服务器)" +msgid "Switch" +msgstr "" -#: ../app/views/ops/_all_tabs.html.haml:135 -#: ../app/views/ops/_all_tabs.html.haml:229 -msgid "Servers by Roles" -msgstr "服务器(按角色)" +msgid "Switch: %{name}" +msgstr "交换机:%{name}" -#: ../app/views/ops/_all_tabs.html.haml:144 -msgid "C & U Gap Collection" -msgstr "容量和利用率 Gap Collection" +msgid "Switches" +msgstr "交换机" -#: ../app/views/ops/_all_tabs.html.haml:176 -msgid "%{product} Log" -msgstr "%{product} 日志" +msgid "Switches for %{model} \"%{name}\"" +msgstr "%{model} \"%{name}\" 的交换机" -#: ../app/views/ops/_all_tabs.html.haml:179 -msgid "Audit Log" -msgstr "审计日志" +msgid "Synchronizing" +msgstr "正在同步" -#: ../app/views/ops/_all_tabs.html.haml:239 -msgid "Orphaned Data" -msgstr "孤立的数据" +msgid "Synchronous" +msgstr "同步的" -#: ../app/views/ops/_all_tabs.html.haml:291 -msgid "Client Connections" -msgstr "客户连接" +msgid "Syntax error in YAML file: %{error_message}" +msgstr "YAML 文件里的语法错误:%{error_message}" -#: ../app/views/ops/_amazon_verify_button.html.haml:2 -msgid "Validate the Amazon Settings" -msgstr "验证 Amazon 设置" +msgid "Sysprep" +msgstr "Sysprep" -#: ../app/views/ops/_amazon_verify_button.html.haml:16 -msgid "Amazon access key and secret are needed to validate Amazon Settings" -msgstr "检验 Amazon 设置需要 Amazon 访问密钥和 secret。" +msgid "Sysprep \"%{params}\" upload was successful" +msgstr "Sysprep \"%{params}\" 成功上传" -#: ../app/views/ops/_ap_form.html.haml:73 -#: ../app/views/ops/_ap_form.html.haml:83 -#: ../app/views/ops/_settings_import_tab.html.haml:42 -msgid "File" -msgstr "文件" +msgid "System" +msgstr "系统" -#: ../app/views/ops/_ap_form_file.html.haml:4 -msgid "File Entry" -msgstr "文件条目" +msgid "System BIOS UUID" +msgstr "系统 BIOS UUID" -#: ../app/views/ops/_ap_form_file.html.haml:14 -#: ../app/views/ops/_ap_show.html.haml:96 -msgid "Collect Contents?" -msgstr "收集内容?" +msgid "System Default" +msgstr "系统默认" -#: ../app/views/ops/_ap_form_file.html.haml:25 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:31 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:33 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:35 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:37 -#: ../app/views/ops/_ap_form_nteventlog.html.haml:39 -#: ../app/views/ops/_ap_form_registry.html.haml:28 -#: ../app/views/ops/_ap_form_registry.html.haml:30 -#: ../app/views/ops/_ap_form_registry.html.haml:32 -#: ../app/views/ops/_classification_entry.html.haml:69 -msgid "" -msgstr "<新建条目>" +msgid "System Image Types" +msgstr "系统镜像类型" -#: ../app/views/ops/_ap_form_nteventlog.html.haml:4 -msgid "Event Log Entry" -msgstr "事件日志条目" +msgid "System Type" +msgstr "系统类型" -#: ../app/views/ops/_ap_form_nteventlog.html.haml:14 -msgid "Filter Message" -msgstr "过滤器消息" +msgid "System/Process" +msgstr "系统/进程" -#: ../app/views/ops/_ap_form_nteventlog.html.haml:16 -msgid "Level" -msgstr "级别" +msgid "System/Process/" +msgstr "系统/进程/" -#: ../app/views/ops/_ap_form_nteventlog.html.haml:20 -msgid " # of Days" -msgstr " # 天" +msgid "THROUGH" +msgstr "THROUGH" -#: ../app/views/ops/_ap_form_registry.html.haml:4 -msgid "Registry Entry" -msgstr "注册表条目" +msgid "Tab" +msgstr "标签页" -#: ../app/views/ops/_ap_form_registry.html.haml:12 -msgid "Registry Hive" -msgstr "注册表 Hive" +msgid "Tab Information" +msgstr "标签页信息" -#: ../app/views/ops/_ap_form_registry.html.haml:16 -msgid "Registry Value" -msgstr "注册表值" +msgid "Tab Label is required" +msgstr "标签页标签是必需的" -#: ../app/views/ops/_ap_form_registry.html.haml:48 -#: ../app/views/ops/_ap_form_registry.html.haml:95 -#: ../app/views/ops/_ap_form_registry.html.haml:151 -msgid "HKLM" -msgstr "HKLM" +msgid "Tab Title" +msgstr "标签页标题" -#: ../app/views/ops/_ap_form_set.html.haml:6 -msgid "Category Selection" -msgstr "类别选择" +msgid "Tab Title must be unique for this group" +msgstr "标签页标题在这个组里必须是唯一的" -#: ../app/views/ops/_ap_show.html.haml:86 -msgid "File Items" -msgstr "文件项" +msgid "Table" +msgstr "表" -#: ../app/views/ops/_ap_show.html.haml:113 -msgid "Registry Items" -msgstr "注册表项目" +msgid "Tables" +msgstr "表" -#: ../app/views/ops/_ap_show.html.haml:132 -msgid "Event Log Items" -msgstr "事件日志项目" +msgid "Tables with Most Rows" +msgstr "行数最多的表" -#: ../app/views/ops/_category_form.html.haml:4 -msgid "Category Information" -msgstr "类别信息" +msgid "Tables with Most Wasted Space" +msgstr "浪费空间最多的表" -#: ../app/views/ops/_category_form.html.haml:56 -#: ../app/views/ops/_category_form.html.haml:176 -#: ../app/views/ops/_settings_co_categories_tab.html.haml:14 -#: ../app/views/ops/_settings_co_tags_tab.html.haml:51 -msgid "Show in Console" -msgstr "在控制台里显示" +msgid "Tables with the Most Rows" +msgstr "行数最多的表" -#: ../app/views/ops/_category_form.html.haml:71 -#: ../app/views/ops/_category_form.html.haml:194 -#: ../app/views/ops/_settings_co_categories_tab.html.haml:16 -msgid "Single Value" -msgstr "单个值" +msgid "Tabular View" +msgstr "列表视图" -#: ../app/views/ops/_category_form.html.haml:91 -#: ../app/views/ops/_category_form.html.haml:213 -msgid "Capture C & U Data by Tag" -msgstr "捕获容量和利用率数据(按标签)" +msgid "Tag" +msgstr "标签" -#: ../app/views/ops/_category_form.html.haml:229 -msgid "* 'Name' and 'Single Value' fields cannot be edited after adding a category." -msgstr "* 在添加类别后 'Name' 和 'Single Value' 字段不能被编辑。" +msgid "Tag Assignment" +msgstr "标签分配" -#: ../app/views/ops/_classification_entry.html.haml:72 -msgid "" -msgstr "<点这一行新增一个条目>" +msgid "Tag Assignment (Tags common to all selected items)" +msgstr "标签分配(所有所选项的公用标签)" -#: ../app/views/ops/_classification_entry.html.haml:100 -msgid "" -"Deleting the '%{entry_name}' entry will also unassign it from all items, are y" -"ou sure?" -msgstr "删除 '%{entry_name}' 条目也会从所有项目里取消分配这个条目,您确定吗?" +msgid "Tag Category" +msgstr "标签类别" -#: ../app/views/ops/_db_info.html.haml:91 -#: ../app/views/ops/_db_info.html.haml:184 -#: ../app/views/ops/_db_info.html.haml:221 -msgid "Percent Bloat" -msgstr "Percent Bloat" +msgid "Tag Edit was cancelled by the user" +msgstr "用户取消了标签编辑" -#: ../app/views/ops/_db_info.html.haml:109 -msgid "Table" -msgstr "表" +msgid "Tag edits were successfully saved" +msgstr "标签编辑已成功保存" -#: ../app/views/ops/_db_info.html.haml:204 -msgid "No Indexes found for this table." -msgstr "没有找到这个表的索引。" +msgid "Tag list" +msgstr "" -#: ../app/views/ops/_db_info.html.haml:228 -msgid "Click to view index" -msgstr "点击以查看索引" +msgid "Tag to Apply" +msgstr "要应用的标签" -#: ../app/views/ops/_db_summary.html.haml:12 -msgid "Tables with Most Rows" -msgstr "行数最多的表" +msgid "Tag: %{description}" +msgstr "标签: %{description}" -#: ../app/views/ops/_diagnostics_cu_repair_tab.html.haml:15 -msgid "Collection Options" -msgstr "收集选项" +msgid "Tagged Cluster / Deployment Roles" +msgstr "" -#: ../app/views/ops/_diagnostics_cu_repair_tab.html.haml:43 -msgid "Start Date" -msgstr "开始日期" +msgid "Tagged Container Images" +msgstr "" -#: ../app/views/ops/_diagnostics_cu_repair_tab.html.haml:59 -msgid "End Date" -msgstr "结束日期" +msgid "Tagged Datastores" +msgstr "" -#: ../app/views/ops/_diagnostics_cu_repair_tab.html.haml:73 -msgid "Note: Gap Collection is only available for VMware vSphere Infrastructures" -msgstr "注意:Gap Collection 只适用于 VMware vSphere 基础架构" +msgid "Tagged Host / Nodes" +msgstr "" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:84 -msgid "Run a Database Backup Now" -msgstr "现在运行数据库备份" +msgid "Tagged Providers" +msgstr "" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:95 -msgid "Backup Schedules" -msgstr "备份时间表" +msgid "Tagged Resource Pools" +msgstr "" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:102 -msgid "Fetch settings from a schedule" -msgstr "从时间表获取设置" +msgid "Tagged VMs and Instances" +msgstr "" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:110 -msgid "No Backup Schedules are defined" -msgstr "没有定义备份时间表" +msgid "Tagging" +msgstr "标签" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:185 -msgid "Are you sure you want to Run a Database Backup Now?" -msgstr "您确定现在运行数据库备份?" +msgid "Tags" +msgstr "标签" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:197 -#: ../app/views/ops/_diagnostics_database_tab.html.haml:216 -msgid "Run Database Garbage Collection Now" -msgstr "现在运行数据库垃圾收集" +msgid "Take this item out of Maintenance Mode" +msgstr "使这个项离开维护模式" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:204 -msgid "Press submit to start the Database Vacuum process" -msgstr "按 Submit 启动数据库清理过程" +msgid "Take this item out of Maintenance Mode?" +msgstr "要使这个项离开维护模式吗?" -#: ../app/views/ops/_diagnostics_database_tab.html.haml:219 -msgid "Are you sure you want to Run Database Garbage Collection Now?" -msgstr "您确定现在运行数据库垃圾收集?" +msgid "Target Machine" +msgstr "" -#: ../app/views/ops/_diagnostics_roles_servers_tab.html.haml:19 -#: ../app/views/ops/_diagnostics_servers_roles_tab.html.haml:19 -msgid "No Servers found." -msgstr "没有找到服务器。" +msgid "Target Options / Limits" +msgstr "目标选项 / 限制" -#: ../app/views/ops/_diagnostics_savedreports.html.haml:3 -msgid "Report Results by User" -msgstr "报表结果(按用户)" +msgid "Target Options/Limits" +msgstr "目标选项/限制" -#: ../app/views/ops/_diagnostics_savedreports.html.haml:20 -#: ../app/views/ops/_settings_workers_tab.html.haml:22 -#: ../app/views/ops/_settings_workers_tab.html.haml:73 -#: ../app/views/ops/_settings_workers_tab.html.haml:183 -#: ../app/views/ops/_settings_workers_tab.html.haml:224 -#: ../app/views/ops/_settings_workers_tab.html.haml:274 -#: ../app/views/ops/_settings_workers_tab.html.haml:327 -#: ../app/views/ops/_settings_workers_tab.html.haml:377 -#: ../app/views/ops/_settings_workers_tab.html.haml:457 -#: ../app/views/ops/_settings_workers_tab.html.haml:507 -msgid "Count" -msgstr "计数" +msgid "Target Port" +msgstr "目标端口" -#: ../app/views/ops/_diagnostics_savedreports.html.haml:28 -msgid "Are you sure you want to delete orphaned records for user '%{user}'?" -msgstr "确定要删除用户 '%{user}' 的孤立记录吗?" +msgid "Target: %{text}" +msgstr "目标: %{text}" -#: ../app/views/ops/_diagnostics_savedreports.html.haml:31 -msgid "Click to delete Orphaned Records for this user" -msgstr "点击以删除这个用户的孤立的记录" +msgid "Task State" +msgstr "任务状态" -#: ../app/views/ops/_diagnostics_timelines_tab.html.haml:16 -#: ../app/views/ops/_diagnostics_utilization_tab.html.haml:13 -msgid "This Server's Virtual Machine has not been identified." -msgstr "这个服务器的虚拟机还未确定。" +msgid "Task Status" +msgstr "任务状态" -#: ../app/views/ops/_diagnostics_utilization_tab.html.haml:11 -msgid "No Utilization data available for this Server's Virtual Machine." -msgstr "这个服务器的虚拟机没有可用的 利用率 数据。" +msgid "Tasks" +msgstr "任务" -#: ../app/views/ops/_diagnostics_zones_tab.html.haml:6 -#: ../app/views/ops/_settings_list_tab.html.haml:6 -msgid "No Zones found." -msgstr "没有找到区。" +msgid "Tasks for %{name}" +msgstr "%{name} 的任务" -#: ../app/views/ops/_diagnostics_zones_tab.html.haml:12 -msgid "View this Zone" -msgstr "查看这个区" +msgid "Template" +msgstr "模版" -#: ../app/views/ops/_diagnostics_zones_tab.html.haml:28 -msgid "(current)" -msgstr " (当前)" +msgid "Template Analysis" +msgstr "模版分析" -#: ../app/views/ops/_email_verify_button.html.haml:3 -#: ../app/views/ops/_email_verify_button.html.haml:3 -msgid "Send test email" -msgstr "发送测试邮件" +msgid "Template Selection" +msgstr "模版选择" -#: ../app/views/ops/_email_verify_button.html.haml:19 -msgid "" -"SMTP E-mail Server settings and Test E-mail Address are needed to send test em" -"ail" -msgstr "发送测试邮件需要 SMTP 邮件服务器和测试邮件地址" +msgid "Template Type" +msgstr "模版类型" -#: ../app/views/ops/_label_tag_mapping_form.html.haml:12 -msgid "Container entity and label" -msgstr "容器实体及标签" +msgid "Template:" +msgstr "模板:" -#: ../app/views/ops/_label_tag_mapping_form.html.haml:15 -msgid "Choose a container entity and label" -msgstr "选择容器实体和标签" +msgid "Templates" +msgstr "模版" -#: ../app/views/ops/_label_tag_mapping_form.html.haml:21 -msgid "Entity" -msgstr "实体" +msgid "Templates & Images" +msgstr "模版和镜像" -#: ../app/views/ops/_label_tag_mapping_form.html.haml:57 -msgid "Choose a tag category to map to" -msgstr "选择要与之映射的标签类别" +msgid "Tenancy" +msgstr "租期" -#: ../app/views/ops/_ldap_auth_users.html.haml:9 -msgid "LDAP Groups for User" -msgstr "用户的 LDAP 组" +msgid "Tenant" +msgstr "租户" -#: ../app/views/ops/_ldap_domain_show.html.haml:242 -#: ../app/views/ops/_ldap_server_entries.html.haml:7 -msgid "LDAP Servers" -msgstr "LDAP 服务器" +msgid "Tenant ID" +msgstr "租户 ID" -#: ../app/views/ops/_ldap_domain_show.html.haml:257 -#: ../app/views/ops/_ldap_forest_entries.html.haml:20 -#: ../app/views/ops/_ldap_server_entries.html.haml:19 -#: ../app/views/ops/_settings_authentication_tab.html.haml:50 -#: ../app/views/ops/_settings_server_tab.html.haml:584 -#: ../app/views/vm_common/_disks.html.haml:11 -#: ../app/views/vm_common/_reconfigure.html.haml:205 -msgid "Mode" -msgstr "模式" +msgid "Tenant ID, Client ID and matching Client Key fields are needed to perform verification of credentials" +msgstr "执行凭证检验需要访问租户 ID、客户 ID 和匹配的秘密访问密钥字段" -#: ../app/views/ops/_ldap_forest_entries.html.haml:4 -msgid "Trusted Forest Settings" -msgstr "信任的 Forest 设置" +msgid "Tenant Mapping Enabled" +msgstr "已启用租户映射" -#: ../app/views/ops/_ldap_forest_entries.html.haml:18 -msgid "LDAP Hostname" -msgstr "LDAP 主机名" +msgid "Tenant Name" +msgstr "租户名称" -#: ../app/views/ops/_ldap_forest_entries.html.haml:22 -#: ../app/views/ops/_settings_authentication_tab.html.haml:113 -msgid "LDAP Port" -msgstr "LDAP 端口" +msgid "Tenant Quota" +msgstr "租户配额" -#: ../app/views/ops/_ldap_forest_entries.html.haml:35 -msgid "Click to add a new forest" -msgstr "点击以添加新的预测" +msgid "Tenant no longer exists" +msgstr "租户不再存在" -#: ../app/views/ops/_ldap_forest_entries.html.haml:44 -msgid "" -msgstr "<点这一行新增一个 forest>" +msgid "Tenants" +msgstr "租户" -#: ../app/views/ops/_ldap_forest_entries.html.haml:76 -#: ../app/views/ops/_ldap_forest_entries.html.haml:121 -msgid "ldap" -msgstr "ldap" +msgid "Tenants (%{tenants_count})" +msgstr "租户 (%{tenants_count})" -#: ../app/views/ops/_ldap_forest_entries.html.haml:76 -#: ../app/views/ops/_ldap_forest_entries.html.haml:121 -msgid "ldaps" -msgstr "ldaps" +msgid "Test E-mail Address" +msgstr "测试邮件地址" -#: ../app/views/ops/_ldap_forest_entries.html.haml:152 -msgid "Are you sure you want to delete forest %{ldaphost} ?" -msgstr "确定要删除 forest %{ldaphost} 吗?" +msgid "Text" +msgstr "文本" -#: ../app/views/ops/_ldap_forest_entries.html.haml:153 -msgid "Click to delete this forest" -msgstr "点击以删除这个预测" +msgid "Text (REGEX)" +msgstr "Text (REGEX)" -#: ../app/views/ops/_ldap_forest_entries.html.haml:158 -#: ../app/views/ops/_ldap_forest_entries.html.haml:163 -#: ../app/views/ops/_ldap_forest_entries.html.haml:168 -#: ../app/views/ops/_ldap_forest_entries.html.haml:173 -#: ../app/views/ops/_ldap_forest_entries.html.haml:178 -#: ../app/views/ops/_ldap_forest_entries.html.haml:183 -msgid "Click to edit this forest" -msgstr "点击以编辑这个 预测" +msgid "Textual View" +msgstr "" -#: ../app/views/ops/_ldap_region_show.html.haml:58 -msgid "LDAP Domains" -msgstr "LDAP 域" +msgid "The %{product} Server is still starting, you have been redirected to the diagnostics page for problem determination" +msgstr "%{product} 服务器仍在启动,您已被重定向到确定问题的诊断页面。" -#: ../app/views/ops/_ldap_region_show.html.haml:77 -msgid "User Suffix" -msgstr "用户后缀" +msgid "The %{product} Server is still starting. If this message persists, please contact your %{product} administrator." +msgstr "%{product} 服务器仍在启动。如果这个信息仍存在,请联系您的 %{product} 管理员。" -#: ../app/views/ops/_ldap_seq_form.html.haml:17 -msgid "User Group Sequencing for LDAP Look Up:" -msgstr "用于 LDAP 查找的用户组序列:" +msgid "The Enterprise" +msgstr "企业" -#: ../app/views/ops/_ldap_seq_form.html.haml:75 -msgid "Select one or more consecutive groups to move up or down." -msgstr "选择一个或多个要上移或下移的连续的组。" +msgid "The Host Default VNC Port Range ending port must be equal to or higher than the starting point" +msgstr "主机默认的 VNC 端口范围的结束端口必须等于或大于起始端口" -#: ../app/views/ops/_ldap_server_entry.html.haml:7 -msgid "Add this LDAP Server" -msgstr "添加这个 LDAP 服务器" +msgid "The Remote Console is connecting" +msgstr "远程控制台正在连接" -#: ../app/views/ops/_ldap_server_entry.html.haml:44 -msgid "Update this LDAP Server" -msgstr "更新这个 LDAP 服务器" +msgid "The Subscription Management Service you register with will provide your systems with updates and allow additional management." +msgstr "注册的订阅管理服务将提供系统更新且允许额外的管理。" -#: ../app/views/ops/_ldap_server_entry.html.haml:93 -msgid "" -msgstr "<新建LDAP服务器>" +msgid "" +"The VM has been suspended, powered off or the connection to the server has been lost. \n" +"This console window will now close." +msgstr "" +"虚拟机已暂停、关机、或到服务器的连接已丢失。\n" +"这个控制台窗口现在将关闭。" -#: ../app/views/ops/_ldap_server_entry.html.haml:98 -msgid "" -msgstr "<点击这一行新增 LDAP 服务器>" +msgid "The check count value must be an integer to commit this expression element" +msgstr "Check Count 的值必须是一个整数以提交这个表达是元素" -#: ../app/views/ops/_ldap_server_entry.html.haml:112 -msgid "Deleting the '%{hostname}' LDAP Server, are you sure?" -msgstr "正在删除 '%{hostname}' LDAP 服务器,您确定吗?" +msgid "The current search details have been reset" +msgstr "当前的搜索细节已被重置" -#: ../app/views/ops/_ldap_server_entry.html.haml:113 -msgid "Click to delete this LDAP Server" -msgstr "点击以删除这个 LDAP 服务器" +msgid "The number of Masters must be 1, 3, or 5" +msgstr "主服务器的编号必须是 1、3 或 5" -#: ../app/views/ops/_ldap_server_entry.html.haml:118 -msgid "Click to update this LDAP Server" -msgstr "点击以更新这个 LDAP 服务器" +msgid "The selected %{label} is not in the current region" +msgstr "所选的 %{label} 没有位于当前的区域" -#: ../app/views/ops/_ldap_server_entry.html.haml:135 -#: ../app/views/ops/_ldap_verify_button.html.haml:4 -#: ../app/views/ops/_ldap_verify_button.html.haml:4 -msgid "Validate the LDAP Settings by binding with the %{host}" -msgstr "通过绑定 %{host} 验证 LDAP 设置" +msgid "The selected %{models} was deleted" +msgstr "所选的 %{models} 已被删除" -#: ../app/views/ops/_ldap_verify_button.html.haml:18 -msgid "" -"LDAP Hostname and Port fields are needed to perform verification of LDAP Setti" -"ngs" -msgstr "执行 LDAP 设置的验证需要 LDAP 主机名和端口字段" +msgid "The selected %{model} was deleted" +msgstr "所选的 %{model} 已被删除" -#: ../app/views/ops/_log_viewer.html.haml:4 -msgid "Last 1000 lines from server %{name} [%{id}] in zone %{zone}" -msgstr "区 %{zone} 里服务器 %{name} [%{id}] 的最后 1000 行" +msgid "The selected %{model} were marked as %{action}" +msgstr "所选的 %{model} 被标记为 %{action}" -#: ../app/views/ops/_logs_selected.html.haml:14 -msgid "Log Depot URI" -msgstr "Log Depot URI" +msgid "The selected %{number} Catalog Item was deleted" +msgid_plural "The selected %{number} Catalog Items were deleted" +msgstr[0] "所选的 %{number} 目录项已被删除" -#: ../app/views/ops/_logs_selected.html.haml:24 -msgid "Last Log Collection" -msgstr "最近的日志采集" +msgid "The selected %{record} was deleted" +msgstr "所选的 %{record} 已被删除" -#: ../app/views/ops/_rbac_details_tab.html.haml:36 -#: ../app/views/ops/_rbac_details_tab.html.haml:41 -msgid "View Users" -msgstr "查看用户" +msgid "The selected %{schedules} were deleted" +msgstr "已删除所选的 %{schedules}" -#: ../app/views/ops/_rbac_details_tab.html.haml:43 -msgid "Users (%{users_count})" -msgstr "用户(%{users_count})" +msgid "The selected %{schedules} were disabled" +msgstr "所选的 %{schedules} 已被禁用" -#: ../app/views/ops/_rbac_details_tab.html.haml:50 -#: ../app/views/ops/_rbac_details_tab.html.haml:55 -msgid "View Groups" -msgstr "查看组" +msgid "The selected %{schedules} were enabled" +msgstr "所选的 %{schedules} 已被启用" -#: ../app/views/ops/_rbac_details_tab.html.haml:57 -msgid "Groups (%{groups_count})" -msgstr "组 (%{groups_count})" +msgid "The selected %{tables} were deleted" +msgstr "所选的 %{tables} 已被删除" -#: ../app/views/ops/_rbac_details_tab.html.haml:64 -#: ../app/views/ops/_rbac_details_tab.html.haml:69 -msgid "View Roles" -msgstr "查看角色" +msgid "The selected %{table} was deleted" +msgstr "所选的 %{table} 已被删除" -#: ../app/views/ops/_rbac_details_tab.html.haml:71 -msgid "Roles (%{roles_count})" -msgstr "角色 (%{roles_count})" +msgid "The selected Cloud Network was deleted" +msgstr "" -#: ../app/views/ops/_rbac_details_tab.html.haml:78 -#: ../app/views/ops/_rbac_details_tab.html.haml:83 -msgid "View Tenants" -msgstr "查看租户" +msgid "The selected Cloud Subnet was deleted" +msgstr "" -#: ../app/views/ops/_rbac_details_tab.html.haml:85 -msgid "Tenants (%{tenants_count})" -msgstr "租户 (%{tenants_count})" +msgid "The selected Cloud Volume Snapshot was deleted" +msgstr "已删除所选云卷快照" -#: ../app/views/ops/_rbac_group_details.html.haml:11 -msgid "Group Information" -msgstr "组信息" +msgid "The selected Filter can not be set as Default because it requires user input" +msgstr "所选的过滤器不能设为默认过滤器,因为它要求用户的输入。" -#: ../app/views/ops/_rbac_group_details.html.haml:45 -msgid "(Look up %{authentication_mode_name} Groups)" -msgstr "(查找 %{authentication_mode_name} Groups)" +msgid "The selected Filter record was not found" +msgstr "未找到所选的过滤器记录" -#: ../app/views/ops/_rbac_group_details.html.haml:63 -#: ../app/views/ops/_rbac_user_details.html.haml:202 -msgid "View this Role" -msgstr "查看这个角色" +msgid "The selected Floating IP was deleted" +msgstr "" -#: ../app/views/ops/_rbac_group_details.html.haml:88 -msgid "Project/Tenant" -msgstr "Project/Tenant" +msgid "The selected Router was deleted" +msgstr "已删除所选路由器" -#: ../app/views/ops/_rbac_group_details.html.haml:100 -msgid "View this Project" -msgstr "查看这个项目" +msgid "The selected Saved Report was deleted" +msgstr "所选的已保存报表被删除" -#: ../app/views/ops/_rbac_group_details.html.haml:100 -msgid "View this Tenant" -msgstr "查看这个租户" +msgid "The selected Schedule has been queued to run" +msgstr "所选的时间表已放入队列等待运行" -#: ../app/views/ops/_rbac_group_details.html.haml:120 -msgid "Users in this Group" -msgstr "这个组里的用户" +msgid "The selected Schedules have been queued to run" +msgstr "所选的时间表已放入队列等待运行" -#: ../app/views/ops/_rbac_group_details.html.haml:127 -msgid "View this User" -msgstr "查看这个用户" +msgid "The selected Schedules were disabled" +msgstr "所选的时间表已被禁用。" -#: ../app/views/ops/_rbac_group_details.html.haml:148 -msgid "LDAP Group Look Up" -msgstr "LDAP 组查找" +msgid "The selected Schedules were enabled" +msgstr "所选的时间表已被启用。" -#: ../app/views/ops/_rbac_group_details.html.haml:157 -#: ../app/views/ops/_rbac_group_details.html.haml:191 -msgid "User to Look Up" -msgstr "查找的用户" +msgid "The selected Security Group was deleted" +msgstr "" -#: ../app/views/ops/_rbac_group_details.html.haml:266 -msgid "Assign Filters" -msgstr "分配过滤器" +msgid "The selected Task was cancelled" +msgstr "所选的任务已被取消" -#: ../app/views/ops/_rbac_group_details.html.haml:266 -msgid "Assigned Filters (read only)" -msgstr "分配的过滤器(只读)" +msgid "The selected datasources were removed" +msgstr "所选的数据源已被删除" -#: ../app/views/ops/_rbac_group_details.html.haml:279 -msgid "%{title_for_hosts} & %{title_for_clusters}" -msgstr "%{title_for_hosts} & %{title_for_clusters}" +msgid "The selected job no longer exists, Delete all older Tasks was not completed" +msgstr "所选的任务不再存在,删除所有更旧的任务还未完成。" -#: ../app/views/ops/_rbac_group_details.html.haml:288 -msgid "This user is limited to items with the selected tags." -msgstr "这个用户受限于具有所选标签的项目。" +msgid "The selected snapshot will be permanently deleted. Are you sure you want to delete the selected snapshot?" +msgstr "所选的快照将被永久删除。您确定要删除所选的快照吗 ?" -#: ../app/views/ops/_rbac_group_details.html.haml:299 -msgid "This user is limited to the selected items and their children." -msgstr "这个用户受限于所选的项目及子项目。" +msgid "The server is initializing; access is being retried every 10 seconds . . ." +msgstr "服务器正在初始化;每隔 10 秒重新尝试访问..." -#: ../app/views/ops/_rbac_group_details.html.haml:319 -msgid "This user is limited to the selected folders and their children." -msgstr "这个用户受限于所选的文件夹和子文件夹。" +msgid "The test email is being delivered, check \"%{email}\" to verify it was successful" +msgstr "正在递送测试邮件,请检查 \"%{email}\" 来验证是否成功。" -#: ../app/views/ops/_rbac_role_details.html.haml:14 -msgid "Role Information" -msgstr "角色信息" +msgid "The user is not authorized for this task or item." +msgstr "这个任务或项目没有对用户授权。" -#: ../app/views/ops/_rbac_role_details.html.haml:49 -msgid "Access Restriction for Services, VMs, and Templates" -msgstr "" +msgid "The user's role is not authorized for any access, please contact the administrator!" +msgstr "未授权该用户的角色进行任何访问,请联络管理员!" -#: ../app/views/ops/_rbac_role_details.html.haml:62 -msgid "none" -msgstr "无" +msgid "The web-based VNC console is not available because the VM is not powered on" +msgstr "因为虚拟机没有开机,基于 WEB 的 VNC 控制台不可用" -#: ../app/views/ops/_rbac_role_details.html.haml:79 -msgid "Groups Using this Role" -msgstr "使用这个角色的组" +msgid "The web-based console is not available because the VM is not powered on" +msgstr "因为虚拟机没有开机,基于 WEB 的控制台不可用" -#: ../app/views/ops/_rbac_role_details.html.haml:86 -#: ../app/views/ops/_rbac_tenant_details.html.haml:68 -#: ../app/views/ops/_rbac_user_details.html.haml:167 -msgid "View this Group" -msgstr "查看这个组" +msgid "The web-based console is only available on IE, Firefox or Chrome (Windows/Linux)" +msgstr "基于 WEB 的控制台仅在 IE, Firefox 或 Chrome (Windows/Linux) 上可用" -#: ../app/views/ops/_rbac_role_details.html.haml:98 -msgid "Product Features (Editing)" -msgstr "产品功能(正在编辑)" +msgid "The widget \"%{widget_name}\" is already part of the edited dashboard" +msgstr "Widget \"%{widget_name}\" 已经是被修改的仪表板的一部分" -#: ../app/views/ops/_rbac_role_details.html.haml:101 -msgid "Product Features (Read Only)" -msgstr "产品功能(只读)" +msgid "There are no Cloud Volumes available to attach to this Instance." +msgstr "" -#: ../app/views/ops/_rbac_role_details.html.haml:118 -msgid "Double click a feature to open/close all children." -msgstr "双击功能以打开/关闭所有的子项。" +msgid "There are no Floating IPs available to this Instance." +msgstr "这个实例没有可用的浮动 IP。" -#: ../app/views/ops/_rbac_tag_box.html.haml:19 -msgid "No %{tenant_name} Tags have been assigned" -msgstr "没有分配 %{tenant_name} 标签" +msgid "There are no running Hosts with valid credentials for this Datastore" +msgstr "" -#: ../app/views/ops/_rbac_tenant_details.html.haml:8 -msgid "%{type} Information" -msgstr "%{type} 信息" +msgid "There is an error in the selected expression element, perhaps it was imported or edited manually." +msgstr "选择的表达式元素里有一个错误,它可能是手动导入或编辑的。" -#: ../app/views/ops/_rbac_tenant_details.html.haml:45 -msgid "Parent" -msgstr "父" +msgid "There should be at least 2 Dashboards to Edit Sequence" +msgstr "" -#: ../app/views/ops/_rbac_tenant_details.html.haml:49 -msgid "View Parent Tenant" -msgstr "查看父租户" +msgid "These VMs can not be migrated together." +msgstr "" -#: ../app/views/ops/_rbac_tenant_details.html.haml:59 -msgid "Groups in this %{type}" -msgstr "类型为 %{type} 的组" +msgid "Thin Provisioning Used" +msgstr "使用瘦置备" -#: ../app/views/ops/_rbac_tenant_details.html.haml:85 -msgid "Child Tenants" -msgstr "子租户" +msgid "This %{klass} is read only and cannot be modified" +msgstr "这个 %{klass} 是只读的且不能被修改" -#: ../app/views/ops/_rbac_tenant_details.html.haml:99 -msgid "Click to view child Tenant" -msgstr "点击以查看子租户" +msgid "This Action belongs to a read only Policy and cannot be modified" +msgstr "这个操作属于只读的策略且不能被修改" -#: ../app/views/ops/_rbac_tenant_details.html.haml:125 -msgid "Click to view child TenantProject" -msgstr "点击以查看子租户项目" +msgid "This Action is not assigned to any Policies." +msgstr "这个动作没有分配给任何策略。" -#: ../app/views/ops/_rbac_tenant_details.html.haml:143 -msgid "Note: Total quota can be restricted by quotas defined at upper levels" -msgstr "注意:总共的配额只能由上级定义的配额来限制" +msgid "This Alert is not assigned to any Alert Profiles." +msgstr "这个警告没有分配给任何 Alert 策略。" -#: ../app/views/ops/_rbac_user_details.html.haml:17 -msgid "User Information" -msgstr "用户信息" +msgid "This Alert is not referenced by any Actions." +msgstr "这个警告没有被任何动作所引用。" -#: ../app/views/ops/_rbac_user_details.html.haml:180 -msgid "" -msgstr "<选择组>" +msgid "This Condition is not assigned to any Policies." +msgstr "这个条件没有分配给任何策略。" -#: ../app/views/ops/_schedule_form_timer.html.haml:5 -#: ../app/views/ops/_schedule_show.html.haml:187 -msgid "Timer Options" -msgstr "定时器选项" +msgid "This Event belongs to a read only Policy and cannot be modified" +msgstr "这个事件属于只读的策略且不能被修改" -#: ../app/views/ops/_schedule_form_timer.html.haml:13 -#: ../app/views/report/_schedule_form_timer.html.haml:15 -msgid "Run" -msgstr "运行" +msgid "This Event has no false Actions." +msgstr "这个事件没有对应“False”的 动作。" -#: ../app/views/ops/_schedule_form_timer.html.haml:26 -#: ../app/views/report/_schedule_form_timer.html.haml:32 -#: ../app/views/report/_schedule_form_timer.html.haml:44 -#: ../app/views/report/_schedule_form_timer.html.haml:56 -#: ../app/views/report/_schedule_form_timer.html.haml:68 -msgid "every" -msgstr "每" +msgid "This Event has no true Actions." +msgstr "这个事件没有对应“True”的动作。" -#: ../app/views/ops/_schedule_form_timer.html.haml:57 -#: ../app/views/report/_schedule_form_timer.html.haml:103 -msgid "* Changing the Time Zone will reset the Starting Date and Time fields below" -msgstr "* 修改时区会重置下面的 Starting Date 和 Time 字段" +msgid "This Event is not assigned to any Policies." +msgstr "这个事件没有分配给任何策略。" -#: ../app/views/ops/_schedule_form_timer.html.haml:66 -#: ../app/views/report/_schedule_form_timer.html.haml:111 -msgid "Starting Date" -msgstr "开始日期" +msgid "This Group is Read Only and can not be deleted" +msgstr "该组只读且不能删除" -#: ../app/views/ops/_schedule_form_timer.html.haml:96 -#: ../app/views/report/_schedule_form_timer.html.haml:126 -msgid "Starting Time" -msgstr "开始时间" +msgid "This Group is Read Only and can not be edited" +msgstr "该组只读且不能编辑" -#: ../app/views/ops/_schedule_show.html.haml:44 -msgid "Automate Task" -msgstr "自动化任务" +msgid "This Host can not be provisioned because the MAC address is not known" +msgstr "因为 MAC 地址未知,不能置备该主机" -#: ../app/views/ops/_schedule_show.html.haml:133 -msgid "Object Type" -msgstr "对象类型" +msgid "This Hour" +msgstr "这个小时" -#: ../app/views/ops/_schedule_show.html.haml:146 -msgid "Object Selection" -msgstr "对象选择" +msgid "This Instance has no attached Cloud Volumes." +msgstr "" -#: ../app/views/ops/_schedule_show.html.haml:191 -#: ../app/views/report/_show_schedule.html.haml:82 -#: ../app/views/report/_widget_show.html.haml:286 -msgid "Run At" -msgstr "运行于" +msgid "This Month" +msgstr "本月" -#: ../app/views/ops/_schedule_show.html.haml:201 -#: ../app/views/report/_report_info.html.haml:144 -#: ../app/views/report/_show_schedule.html.haml:92 -#: ../app/views/report/_widget_show.html.haml:87 -msgid "Last Run Time" -msgstr "最近运行时间" +msgid "This Month (partial)" +msgstr "本月(部分)" -#: ../app/views/ops/_schedule_show.html.haml:215 -#: ../app/views/report/_report_info.html.haml:149 -#: ../app/views/report/_show_schedule.html.haml:106 -#: ../app/views/report/_widget_show.html.haml:296 -msgid "Next Run Time" -msgstr "下次运行时间" +msgid "This Policy is not assigned to any Profiles." +msgstr "这个策略没有分配给任何配置集。" -#: ../app/views/ops/_selected.html.haml:8 -msgid "Selected Item" -msgstr "选择的项目" +msgid "This Quarter" +msgstr "本季度" -#: ../app/views/ops/_selected_by_roles.html.haml:28 -#: ../app/views/ops/_selected_by_servers.html.haml:209 -msgid "Max Concurrent" -msgstr "最大的并行数量" +msgid "This Role is Read Only and can not be deleted" +msgstr "该角色只读且不能删除" -#: ../app/views/ops/_selected_by_roles.html.haml:32 -#: ../app/views/ops/_selected_by_servers.html.haml:213 -msgid "unlimited" -msgstr "无限制的" +msgid "This Role is Read Only and can not be edited" +msgstr "该角色只读且不能编辑" -#: ../app/views/ops/_selected_by_roles.html.haml:78 -#: ../app/views/ops/_selected_by_servers.html.haml:194 -msgid "Priority" -msgstr "优先级" +msgid "This Role is already active on this Server" +msgstr "该角色已经在该服务器上激活" -#: ../app/views/ops/_selected_by_roles.html.haml:84 -#: ../app/views/ops/_selected_by_servers.html.haml:199 -msgid "primary" -msgstr "主接口" +msgid "This Role is in use by one or more Groups and can not be deleted" +msgstr "该角色被一个或多个组使用,不能删除" -#: ../app/views/ops/_selected_by_roles.html.haml:87 -#: ../app/views/ops/_selected_by_servers.html.haml:202 -msgid "secondary" -msgstr "从接口" +msgid "This Server's Virtual Machine has not been identified." +msgstr "这个服务器的虚拟机还未确定。" -#: ../app/views/ops/_selected_by_roles.html.haml:90 -#: ../app/views/ops/_selected_by_servers.html.haml:205 -msgid "normal" -msgstr "普通的" +msgid "This Template is already orderable" +msgstr "这个模版已经是可排序的" -#: ../app/views/ops/_selected_by_roles.html.haml:96 -msgid "Process ID" -msgstr "进程 ID" +msgid "This Template is not orderable" +msgstr "这个模版不是可排序的" -#: ../app/views/ops/_selected_by_roles.html.haml:109 -#: ../app/views/ops/_selected_by_servers.html.haml:61 -#: ../app/views/ops/_server_desc.html.haml:39 -msgid "Started On" -msgstr "开始日期" +msgid "This Template will revert to selected snapshot. Are you sure you want to revert to the selected snapshot?" +msgstr "这个模版将还原到所选的快照。您确定要还原到所选的快照吗?" -#: ../app/views/ops/_selected_by_roles.html.haml:123 -#: ../app/views/ops/_selected_by_servers.html.haml:75 -msgid "Stopped On" -msgstr "停止日期" +msgid "This VM will revert to selected snapshot. Are you sure you want to revert to the selected snapshot?" +msgstr "这个虚拟机将还原到所选的快照。您确定要还原到所选的快照吗?" -#: ../app/views/ops/_selected_by_roles.html.haml:163 -#: ../app/views/ops/_selected_by_servers.html.haml:115 -#: ../app/views/ops/_server_desc.html.haml:73 -msgid "CPU Time" -msgstr "CPU 时间" +msgid "This Week" +msgstr "本周" -#: ../app/views/ops/_selected_by_roles.html.haml:176 -#: ../app/views/ops/_selected_by_servers.html.haml:128 -#: ../app/views/ops/_server_desc.html.haml:83 -msgid "CPU Percent" -msgstr "CPU 比例" +msgid "This Week (partial)" +msgstr "本周(部分)" -#: ../app/views/ops/_selected_by_roles.html.haml:189 -#: ../app/views/ops/_selected_by_servers.html.haml:141 -#: ../app/views/ops/_server_desc.html.haml:93 -msgid "Version / Build" -msgstr "版本 / 构建" +msgid "This Widget content generation is already running or queued up" +msgstr "该 Widget 内容生成已经在运行或排队" -#: ../app/views/ops/_selected_by_servers.html.haml:172 -msgid "%{role} on %{model}: %{name} [%{id}]" -msgstr "%{model} 上的 %{role}:%{name} [%{id}]" +msgid "This Year" +msgstr "今年" -#: ../app/views/ops/_selected_by_servers.html.haml:186 -msgid "active" -msgstr "激活的" +msgid "This Zone do not have Log Depot settings configured, collection not allowed" +msgstr "该区没有配置日志仓库设置,采集不被允许" -#: ../app/views/ops/_selected_by_servers.html.haml:189 -msgid "unavailable" -msgstr "不可用的" +msgid "This element is disabled because it is read only" +msgstr "这个元素被禁用,因为它是只读的。" -#: ../app/views/ops/_settings_advanced_tab.html.haml:18 -msgid "Caution: Manual changes to configuration files can disable the Server!" -msgstr "警告:对配置文件的手动修改可能禁用服务器!" +msgid "This element should be removed and recreated or you can report the error to your %{product} administrator." +msgstr "这个元素应该被删除并重新创建,或者您可以将这个错误报告给 %{product} 管理员。" -#: ../app/views/ops/_settings_authentication_tab.html.haml:16 -msgid "Session Timeout" -msgstr "会话超时" +msgid "This object already exists in the database with the same name" +msgstr "" -#: ../app/views/ops/_settings_authentication_tab.html.haml:55 -msgid "External (httpd)" -msgstr "外部的(HTTPD)" +msgid "This page requires the VMware MKS plugin. Install the plugin and try again." +msgstr "这个页面要求 VMWare MKS 插件。请安装插件并再次尝试。" -#: ../app/views/ops/_settings_authentication_tab.html.haml:80 -msgid "LDAP Host Names" -msgstr "LDAP 主机名" +msgid "This policy does not currently respond to any Events." +msgstr "这个策略目前没有响应任何事件。" -#: ../app/views/ops/_settings_authentication_tab.html.haml:157 -msgid "Domain Prefix: \\" -msgstr "域前缀:\\" +msgid "This report isn't generated yet. It cannot be rendered." +msgstr "" -#: ../app/views/ops/_settings_authentication_tab.html.haml:212 -msgid "Amazon Primary AWS Account Settings for IAM" -msgstr "IAM 的 Amazon Primary AWS 帐号设置" +msgid "This role can only be managed at the Region level" +msgstr "该角色仅能在该区域等级被管理" -#: ../app/views/ops/_settings_authentication_tab.html.haml:220 -msgid "Access Key" -msgstr "访问密钥" +msgid "This user is limited to items with the selected tags." +msgstr "这个用户受限于具有所选标签的项目。" -#: ../app/views/ops/_settings_authentication_tab.html.haml:237 -msgid "Secret Key" -msgstr "密钥" +msgid "This user is limited to the selected folders and their children." +msgstr "这个用户受限于所选的文件夹和子文件夹。" -#: ../app/views/ops/_settings_authentication_tab.html.haml:284 -msgid "Default Group for Users" -msgstr "用户的默认组" +msgid "This user is limited to the selected items and their children." +msgstr "这个用户受限于所选的项目及子项目。" -#: ../app/views/ops/_settings_authentication_tab.html.haml:412 -msgid "Get User Groups from Amazon" -msgstr "从 Amazon 获取用户组" +msgid "This will show the chart and the entire report (all rows) in your browser. Do you want to proceed?" +msgstr "这将在您的浏览器里显示图表和整个报表(所有行)。您要继续吗?" -#: ../app/views/ops/_settings_authentication_tab.html.haml:438 -msgid "External Authentication (httpd) Settings" -msgstr "外部的验证(HTTPD)设置" +msgid "This will show the entire report (all rows) in your browser. Do you want to proceed?" +msgstr "这将在您的浏览器里显示整个报表(所有行)。您要继续吗?" -#: ../app/views/ops/_settings_authentication_tab.html.haml:447 -msgid "Enable Single Sign-On" -msgstr "启用单点登录" +msgid "This will show the entire report (all rows) in your browser. Do you want to proceed?" +msgstr "这将在您的浏览器里显示整个报表(所有行)。您要继续吗?" -#: ../app/views/ops/_settings_authentication_tab.html.haml:462 -msgid "Enable SAML" -msgstr "启用 SAML" +msgid "Thursday" +msgstr "周四" -#: ../app/views/ops/_settings_authentication_tab.html.haml:474 -msgid "Disable Local Login" -msgstr "禁用本地登录" +msgid "Tile View" +msgstr "平铺视图" -#: ../app/views/ops/_settings_authentication_tab.html.haml:501 -msgid "Get User Groups from External Authentication (httpd)" -msgstr "从外部验证(HTTPD)获取用户组" +msgid "Time" +msgstr "" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:18 -msgid "Capture C & U Data" -msgstr "捕获容量和利用率数据" +msgid "Time Profile" +msgstr "Time 配置集" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:28 -msgid "Click to add a new category" -msgstr "点击以添加新的类别" +msgid "Time Profile Information" +msgstr "Time 配置集信息" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:32 -msgid "" -msgstr "<点这一行新增一个类别>" +msgid "Time Profiles" +msgstr "Time 配置集" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:56 -msgid "Click to edit this category" -msgstr "点击以编辑这个类别" +msgid "Time Zone" +msgstr "时区" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:90 -msgid "Category '%{category_name}' cannot be deleted" -msgstr "无法删除类别 '%{category_name}' " +msgid "Time threshold for the field criteria must be selected" +msgstr "必须选择该字段标准的时间阈值" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:101 -msgid "Are you sure you want to delete category '%{category_name}'?" -msgstr "确定要删除类别 '%{category_name}'?" +msgid "TimeProfile \"%{name}\": Error during 'save': %{error_message}" +msgstr "TimeProfile \"%{name}\": 在 'save' 时出错:%{error_message}" -#: ../app/views/ops/_settings_co_categories_tab.html.haml:102 -msgid "Click to delete this category" -msgstr "点击以删除这个类别" +msgid "Timeline" +msgstr "时间线" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:25 -msgid "Collect for All %{clusters}" -msgstr "为所有 %{clusters} 收集" +msgid "Timeline Event" +msgstr "时间线事件" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:41 -msgid "" -"Note: Collect for All %{clusters} must be checked to be able to collect C & U " -"data from Cloud Providers such as Red Hat OpenStack or Amazon EC2" -msgstr "注: 必须选中采集所有 %{clusters},以便以从云供应商采集容量和使用率数据, 例如 Red Hat OpenStack 或 Amazon EC2" +msgid "Timeline Preview (up to 50 rows)" +msgstr "时间线预览(最多 50 行)" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:48 -msgid "No %{clusters} found in the current region." -msgstr "在当前区域中没有找到的 %{clusters}。" +msgid "Timeline Settings" +msgstr "时间线设置" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:53 -msgid "Enable Collection by %{clusters}" -msgstr "按 %{clusters} 启用收集" +msgid "Timeline View" +msgstr "时间线视图" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:69 -msgid "" -"VM data will be collected for VMs under selected %{hosts} only. Data is collec" -"ted for a %{cluster} and all of its %{hosts} when at least one %{host} is sele" -"cted." -msgstr "" -"将只为选择的 %{hosts} 下的虚拟机采集虚拟机数据。当选择了至少一个 %{host} 时,%{cluster} 及其所有的 %{hosts} 都将采" -"集数据。" +msgid "Timeline tab is not available unless at least 1 time field has been selected" +msgstr "时间线标签不可用,除非至少选择了一个时间字段。" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:84 -msgid "Collect for All Datastores" -msgstr "为所有数据存储区收集" +msgid "Timeline tab is not available until at least 1 field has been selected" +msgstr "在最少一个项被选择前,时间线标签页不可用" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:101 -msgid "No Datastores found in the current region." -msgstr "在当前区域里没有找到数据存储区。" +msgid "Timelines" +msgstr "时间线" -#: ../app/views/ops/_settings_cu_collection_tab.html.haml:106 -msgid "Enable Collection by Datastore" -msgstr "启用收集(按数据存储区)" +msgid "Timelines for %{virtual_machine} \"%{name}\"" +msgstr "%{virtual_machine} \"%{name}\" 的时间线" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:5 -msgid "Custom Logo Image (Shown on top right of all screens)" -msgstr "自定义的 Logo 图像(显示在所有屏幕的右上角)" +msgid "Timelines for Container \"%{container_name}\"" +msgstr "" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:11 -msgid "No custom logo image has been uploaded yet." -msgstr "还没有上传自定义 logo 图片" +msgid "Timeout" +msgstr "超时" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:30 -msgid "* Requirements: File-type - PNG; Dimensions - 350x70." -msgstr "* 要求: 文件类型 - PNG;尺寸:350x70。" +msgid "Timeout (ms)" +msgstr "超时 (ms)" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:43 -msgid "Use Custom Logo Image" -msgstr "使用自定义 Logo 图像" +msgid "Timeout is required" +msgstr "超时时间是必需的" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:55 -msgid "Custom Login Background Image" -msgstr "自定义的登录背景图像" +msgid "Timeout max is 60" +msgstr "超时时间最大为 60" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:67 -msgid "Image shown at 25% of actual size" -msgstr "以 25% 实际尺寸显示的图像" +msgid "Timeout min is 0" +msgstr "超时时间最小为 60" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:74 -msgid "No custom login image has been uploaded yet." -msgstr "还没有上传自定义登录图片" +msgid "Timer" +msgstr "定时器" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:93 -msgid "* Requirements: File-type - PNG; Dimensions - 1280x1000." -msgstr "* 要求: 文件类型 - PNG;尺寸:1280x1000。" +msgid "Timer Options" +msgstr "定时器选项" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:107 -msgid "Use Custom Login Background Image" -msgstr "使用自定义登录背景图像" +msgid "Timestamp" +msgstr "时间戳" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:121 -msgid "Custom Login Panel Text (" -msgstr "自定义的登录面板文本" +msgid "Timezone" +msgstr "时区" -#: ../app/views/ops/_settings_custom_logos_tab.html.haml:145 -msgid "Use Custom Login Text" -msgstr "使用自定义登录文本" +msgid "Title" +msgstr "标题" -#: ../app/views/ops/_settings_details_tab.html.haml:10 -msgid "Region Information" -msgstr "区域信息" +msgid "To" +msgstr "至" -#: ../app/views/ops/_settings_details_tab.html.haml:49 -#: ../app/views/ops/_settings_details_tab.html.haml:54 -msgid "Edit this Region" -msgstr "编辑这个区域" +msgid "To Address" +msgstr "结束地址" -#: ../app/views/ops/_settings_details_tab.html.haml:64 -#: ../app/views/ops/_settings_details_tab.html.haml:69 -msgid "View Analysis Profiles" -msgstr "查看 Analysis 配置集" +msgid "To All" +msgstr "所有人" -#: ../app/views/ops/_settings_details_tab.html.haml:79 -#: ../app/views/ops/_settings_details_tab.html.haml:84 -msgid "View Zones" -msgstr "查看区" +msgid "To All Users" +msgstr "所有用户" -#: ../app/views/ops/_settings_details_tab.html.haml:94 -#: ../app/views/ops/_settings_details_tab.html.haml:99 -msgid "View Schedules" -msgstr "查看时间表" +msgid "To Domain" +msgstr "至域" -#: ../app/views/ops/_settings_details_tab.html.haml:110 -#: ../app/views/ops/_settings_details_tab.html.haml:115 -msgid "View LDAP Regions" -msgstr "查看 LDAP 区域" +msgid "To E-mail" +msgstr "发至电子邮件" -#: ../app/views/ops/_settings_details_tab.html.haml:117 -msgid "LDAP Regions" -msgstr "LDAP 区域" +msgid "To E-mail Address" +msgstr "发至电子邮件" -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:45 -#: ../app/views/ops/_zone_form.html.haml:57 -msgid "SmartProxy Server IP" -msgstr "SmartProxy 服务器 IP" +msgid "To configure the Host Default VNC Port Range, both start and end ports are required" +msgstr "配置主机默认 VNC 端口范围(Host Default VNC Port Range),起始和结束端口都是必需的。" -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:61 -#: ../app/views/ops/_settings_server_tab.html.haml:329 -#: ../app/views/ops/_zone_form.html.haml:78 -msgid "NTP Servers" -msgstr "NTP 服务器" +msgid "Today" +msgstr "今天" -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:78 -msgid "Max active VM Scans" -msgstr "最大的激活虚拟机扫描次数" +msgid "Today (partial)" +msgstr "今天(部分)" -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:166 -msgid "No Servers Found." -msgstr "没有找到服务器。" +msgid "Toggle All/None" +msgstr "切换全部/无" -#: ../app/views/ops/_settings_evm_servers_tab.html.haml:172 -msgid "View this MiqServer" -msgstr "查看这个 MiqServer" +msgid "Toggle Fullscreen" +msgstr "" -#: ../app/views/ops/_settings_import_tab.html.haml:3 -#: ../app/views/ops/_settings_import_tags_tab.html.haml:6 -msgid "Messages" -msgstr "消息" +msgid "Toggle Maintenance" +msgstr "切换维护模式" -#: ../app/views/ops/_settings_import_tab.html.haml:9 -msgid "Upload Custom Variable Values" -msgstr "上传自定义变量的值" +msgid "Toggle Maintenance Mode" +msgstr "切换维护模式" -#: ../app/views/ops/_settings_import_tab.html.haml:25 -msgid "Vm" -msgstr "Vm" +msgid "Toggle Scheduling" +msgstr "切换调度" -#: ../app/views/ops/_settings_import_tab.html.haml:54 -#: ../app/views/ops/_settings_import_tags_tab.html.haml:39 -msgid "* Requirements: CSV formatted file." -msgstr "* 要求:CSV 格式的文件。" +msgid "Toggle Scheduling for Cloud Service" +msgstr "为云服务切换调度" -#: ../app/views/ops/_settings_import_tags_tab.html.haml:15 -msgid "Upload %{customer_name} Tag Assignments for VMs" -msgstr "未虚拟机上传 %{customer_name} Tag 分配" +msgid "Toggle Scheduling for this Cloud Service?" +msgstr "为该云服务切换调度?" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:10 -msgid "Container Entity" -msgstr "容器实体" +msgid "Toggle maintenance mode for this item" +msgstr "为这个项切换维护模式" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:12 -msgid "Container Label" -msgstr "容器标签" +msgid "Toggle maintenance mode for this item?" +msgstr "为这个项切换维护模式?" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:22 -msgid "map a new label to tag" -msgstr "将新标签与标记对应" +msgid "Toggle navigation" +msgstr "切换导航" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:26 -msgid "" -msgstr "<点这一行新增一个映射规则>" +msgid "Token" +msgstr "令牌" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:41 -msgid "Click to edit this mapping rule" -msgstr "点击以编辑这个映射规则" +msgid "Token-Endpoint" +msgstr "Token-Endpoint" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:59 -msgid "Are you sure you want to delete mapping '%{label_name}'?" -msgstr "确定要删除映射 '%{label_name}' 吗?" +msgid "Token-Endpoint:" +msgstr "Token-Endpoint:" -#: ../app/views/ops/_settings_label_tag_mapping_tab.html.haml:60 -msgid "Click to delete this mapping" -msgstr "点击删除这个映射" +msgid "Tokens do not match" +msgstr "令牌不匹配" -#: ../app/views/ops/_settings_list_tab.html.haml:13 -msgid "View this Zone's settings" -msgstr "查看这个区的设置" +msgid "Top Level" +msgstr "" -#: ../app/views/ops/_settings_list_tab.html.haml:27 -msgid " (current)" -msgstr " (当前)" +msgid "Top values to show" +msgstr "要显示的最高值" -#: ../app/views/ops/_settings_replication_tab.html.haml:106 -msgid "Subscriptions" -msgstr "订阅" +msgid "Topology" +msgstr "拓扑结构" -#: ../app/views/ops/_settings_replication_tab.html.haml:113 -msgid "At least 1 subscription must be added to save server replication type" -msgstr "必须添加至少一个订阅来保存服务器复制类型" +msgid "Topology Default Items in View" +msgstr "" -#: ../app/views/ops/_settings_replication_tab.html.haml:123 -msgid "Add Subscription" -msgstr "添加订阅" +msgid "Topology View" +msgstr "拓扑视图" -#: ../app/views/ops/_settings_replication_tab.html.haml:146 -msgid "Central Admin Enabled" -msgstr "启用中央管理" +msgid "Total %{title} CPU Cores" +msgstr "总共的 %{title} CPU 核心" -#: ../app/views/ops/_settings_replication_tab.html.haml:208 -#: ../app/views/ops/_settings_replication_tab.html.haml:420 -msgid "Accept" -msgstr "接受" +msgid "Total %{title} CPU Resources" +msgstr "总共的 %{title} CPU 资源" -#: ../app/views/ops/_settings_replication_tab.html.haml:245 -#: ../app/views/ops/_settings_replication_tab.html.haml:457 -#: ../app/views/report/_menu_form1.html.haml:102 -#: ../app/views/report/_menu_form2.html.haml:183 -msgid "Discard" -msgstr "放弃" +msgid "Total %{title} CPUs" +msgstr "总共的 %{title} CPU" -#: ../app/views/ops/_settings_replication_tab.html.haml:350 -#: ../app/views/vm_common/_reconfigure.html.haml:372 -msgid "Cancel Delete" -msgstr "取消删除" +msgid "Total %{title} Memory" +msgstr "总共的 %{title} 内存" -#: ../app/views/ops/_settings_replication_tab.html.haml:393 -msgid "Re-Enable Central Admin" -msgstr "重新启用中央管理" +msgid "Total Allocation" +msgstr "总共的分配" -#: ../app/views/ops/_settings_replication_tab.html.haml:401 -msgid "Enable Central Admin" -msgstr "启用中央管理" +msgid "Total CPU Resources" +msgstr "总的 CPU 资源" -#: ../app/views/ops/_settings_replication_tab.html.haml:409 -msgid "Disable Central Admin" -msgstr "禁用中央管理" +msgid "Total CPUs" +msgstr "CPU 总数" -#: ../app/views/ops/_settings_replication_tab.html.haml:473 -msgid "Excluded Tables" -msgstr "" +msgid "Total Configured CPUs" +msgstr "已配置的 CPU 总数" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:11 -msgid "Red Hat Software Updates" -msgstr "Red Hat 软件更新" +msgid "Total Configured Memory" +msgstr "已配置的内存总数" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:14 -msgid "" -"The Subscription Management Service you register with will provide your system" -"s with updates and allow additional management." -msgstr "注册的订阅管理服务将提供系统更新且允许额外的管理。" +msgid "Total Configured VM CPUs" +msgstr "已配置的虚拟机 CPU 总数" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:26 -msgid "Register to" -msgstr "注册" +msgid "Total Configured VM Memory" +msgstr "已配置的虚拟机内存总数" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:67 -msgid "Repository Name(s):" -msgstr "资料库名称:" +msgid "Total Datastore Used Space" +msgstr "数据存储区已使用的空间总数" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:91 -msgid "HTTP Proxy:" -msgstr "HTTP 代理:" +msgid "Total Index Nodes" +msgstr "总共的索引节点" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:101 -msgid "Use HTTP Proxy" -msgstr "使用 HTTP 代理" +msgid "Total Matches" +msgstr "总共的匹配" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:153 -#: ../app/views/ops/rhn/_info_subscribed.html.haml:61 -msgid "Organization" -msgstr "机构" +msgid "Total Memory" +msgstr "内存总数" -#: ../app/views/ops/_settings_rhn_edit_tab.html.haml:171 -msgid "Forgot your login or password? Look it up at" -msgstr "忘记登录账号或密码? 查找于" +msgid "Total Processors" +msgstr "总共的处理器" -#: ../app/views/ops/_settings_rhn_tab.html.haml:28 -msgid "Edit Registration" -msgstr "编辑 Registration" +msgid "Total Quota" +msgstr "总共的配额" -#: ../app/views/ops/_settings_server_tab.html.haml:48 -msgid "Resides on VM" -msgstr "驻留在虚拟机上" +msgid "Total Space" +msgstr "空间总量" -#: ../app/views/ops/_settings_server_tab.html.haml:71 -msgid "Company Name" -msgstr "公司名称" +msgid "Total Space on Volume" +msgstr "卷上的空间总数" -#: ../app/views/ops/_settings_server_tab.html.haml:88 -msgid "Appliance Name" -msgstr "应用名称" +msgid "Total VMs" +msgstr "虚拟机总数" -#: ../app/views/ops/_settings_server_tab.html.haml:105 -msgid "Zone*" -msgstr "区*" +msgid "Total number of VMs that can fit on all of the above %{models}: %{count}" +msgstr "可以适合上述 %{models} 的虚拟机的总数:%{count}" -#: ../app/views/ops/_settings_server_tab.html.haml:135 -msgid "Appliance Time Zone" -msgstr "应用时区" +msgid "Totals for %{hosts}" +msgstr "%{hosts} 总数" -#: ../app/views/ops/_settings_server_tab.html.haml:156 -msgid "Default Locale" -msgstr "默认地区" +msgid "Totals for Availability Zone" +msgstr "可用性区的总数" -#: ../app/views/ops/_settings_server_tab.html.haml:176 -msgid "* Changing the Zone will reset all of this Server's priorities to secondary." -msgstr "* 修改区将重置这个服务器的所有优先级为次要等级。" +msgid "Totals for Service VMs" +msgstr "服务虚拟机的总数" -#: ../app/views/ops/_settings_server_tab.html.haml:183 -msgid "Server Control" -msgstr "服务器控制" +msgid "Totals for VMs" +msgstr "虚拟机总数" -#: ../app/views/ops/_settings_server_tab.html.haml:192 -msgid "Server Roles" -msgstr "服务器角色" +msgid "Trap Number" +msgstr "Trap Number" -#: ../app/views/ops/_settings_server_tab.html.haml:199 -msgid "Off" -msgstr "" +msgid "Trap Number is required" +msgstr "Trap Number 是必需的" -#: ../app/views/ops/_settings_server_tab.html.haml:199 -msgid "On" -msgstr "" +msgid "Trap Object ID" +msgstr "Trap Object ID" -#: ../app/views/ops/_settings_server_tab.html.haml:216 -msgid "Default Repository SmartProxy" -msgstr "默认资料库 SmartProxy" +msgid "Trap Object ID is required" +msgstr "Trap Object ID 是必需的" -#: ../app/views/ops/_settings_server_tab.html.haml:241 -msgid "VMware Console Support" -msgstr "VMware 控制台支持" +msgid "Tree View" +msgstr "树型视图" -#: ../app/views/ops/_settings_server_tab.html.haml:250 -msgid "Use" -msgstr "使用" +msgid "Trend Options" +msgstr "趋势选项" -#: ../app/views/ops/_settings_server_tab.html.haml:255 -msgid "VMware MKS Plugin" -msgstr "VMware MKS 插件" +msgid "Trend Steepness must be an integer" +msgstr "Trend Steepness 必须为一个整数" -#: ../app/views/ops/_settings_server_tab.html.haml:255 -msgid "VMware VMRC Plugin" -msgstr "VMware VMRC 插件" +msgid "Trend Target Limit" +msgstr "Trend 目标限制" -#: ../app/views/ops/_settings_server_tab.html.haml:255 -msgid "VNC" -msgstr "VNC" +msgid "Trend Target Limit must be configured" +msgstr "必须配置 Trend Target Limit" -#: ../app/views/ops/_settings_server_tab.html.haml:272 -msgid "VMware MKS Plugin Version" -msgstr "VMware MKS 插件版本" +msgid "Trend Target Limit must be numeric" +msgstr "Trend Target Limit 必须是数字的" -#: ../app/views/ops/_settings_server_tab.html.haml:294 -msgid "VNC Proxy Address" -msgstr "VNC 代理地址" +msgid "Trend Target Limit: Value must be numeric" +msgstr "Trend Target Limit:值必须是数字的" -#: ../app/views/ops/_settings_server_tab.html.haml:311 -msgid "VNC Proxy Port" -msgstr "VNC 代理端口" +msgid "Trend Target Percents" +msgstr "Trend 目标比例" -#: ../app/views/ops/_settings_server_tab.html.haml:370 -msgid "Specified NTP settings applied here will override Zone NTP settings." -msgstr "在这里应用指定的 NTP 设置将覆盖区的 NTP 设置。" +msgid "Trend for Past" +msgstr "过去的趋势" -#: ../app/views/ops/_settings_server_tab.html.haml:377 -msgid "Outgoing SMTP E-mail Server" -msgstr "转出 SMTP 邮件服务器" +msgid "Trending for" +msgstr "Trending for" -#: ../app/views/ops/_settings_server_tab.html.haml:437 -msgid "Start TLS Automatically" -msgstr "自动启动 TLS" +msgid "Trending for is required" +msgstr "Trending for 是必需的" -#: ../app/views/ops/_settings_server_tab.html.haml:457 -msgid "SSL Verify Mode" -msgstr "SSL 检验模式" +msgid "Trends for past" +msgstr "过去的趋势" -#: ../app/views/ops/_settings_server_tab.html.haml:549 -msgid "Test E-mail Address" -msgstr "测试邮件地址" +msgid "True" +msgstr "True" -#: ../app/views/ops/_settings_server_tab.html.haml:623 -msgid "Logging" -msgstr "日志" +msgid "Truncate Long Text" +msgstr "截断长文本" -#: ../app/views/ops/_settings_server_tab.html.haml:632 -msgid "Log Level" -msgstr "日志级别" +msgid "Trusted CA Certificates" +msgstr "" -#: ../app/views/ops/_settings_server_tab.html.haml:652 -msgid "Custom Support URL" -msgstr "自定义支持 URL" +msgid "Trusted Forest Settings" +msgstr "信任的 Forest 设置" -#: ../app/views/ops/_settings_server_tab.html.haml:661 -msgid "URL (i.e. www.mypage.com)" -msgstr "URL (例如:www.mypage.com)" +msgid "Tuesday" +msgstr "周二" -#: ../app/views/ops/_settings_workers_tab.html.haml:13 -msgid "Generic Workers" -msgstr "通用工作节点" +msgid "Type" +msgstr "类型" -#: ../app/views/ops/_settings_workers_tab.html.haml:42 -#: ../app/views/ops/_settings_workers_tab.html.haml:93 -#: ../app/views/ops/_settings_workers_tab.html.haml:123 -#: ../app/views/ops/_settings_workers_tab.html.haml:153 -#: ../app/views/ops/_settings_workers_tab.html.haml:244 -#: ../app/views/ops/_settings_workers_tab.html.haml:294 -#: ../app/views/ops/_settings_workers_tab.html.haml:347 -#: ../app/views/ops/_settings_workers_tab.html.haml:397 -#: ../app/views/ops/_settings_workers_tab.html.haml:427 -#: ../app/views/ops/_settings_workers_tab.html.haml:477 -msgid "Memory threshold" -msgstr "内存极限" +msgid "Type is required" +msgstr "类型是必需的" -#: ../app/views/ops/_settings_workers_tab.html.haml:64 -msgid "C & U Data Collectors" -msgstr "容量和利用率数据采集器" +msgid "Type missing for %{field}" +msgstr "%{field} 缺失了类型" -#: ../app/views/ops/_settings_workers_tab.html.haml:114 -msgid "Event Monitor" -msgstr "事件监控器" +msgid "Type:" +msgstr "类型:" -#: ../app/views/ops/_settings_workers_tab.html.haml:144 -msgid "Connection Broker" -msgstr "连接代理" +msgid "Type: " +msgstr "类型:" + +msgid "Type: %{automation_type}" +msgstr "类型:%{automation_type}" -#: ../app/views/ops/_settings_workers_tab.html.haml:174 msgid "UI Worker" msgstr "UI 工作节点" -#: ../app/views/ops/_settings_workers_tab.html.haml:208 -msgid " * Multiple UI workers can not be configured with session store as memory" -msgstr "* 不能用会话存储区配置多个 UI 工作节点为内存" +msgid "UNUSED?" +msgstr "" -#: ../app/views/ops/_settings_workers_tab.html.haml:215 -msgid "Reporting Workers" -msgstr "工作节点报表" +msgid "URI" +msgstr "URI" -#: ../app/views/ops/_settings_workers_tab.html.haml:265 -msgid "Web Service Workers" -msgstr "Web 服务工作节点" +msgid "URI Prefix" +msgstr "URI 前缀" -#: ../app/views/ops/_settings_workers_tab.html.haml:318 -msgid "Priority Workers" -msgstr "优先级工作节点" +msgid "URI is required" +msgstr "URI 是必需的" -#: ../app/views/ops/_settings_workers_tab.html.haml:368 -msgid "C & U Data Processors" -msgstr "容量和利用率数据处理器" +msgid "URL" +msgstr "URL" -#: ../app/views/ops/_settings_workers_tab.html.haml:448 -msgid "VM Analysis Collectors" -msgstr "虚拟机分析采集器" +msgid "URL (i.e. www.mypage.com)" +msgstr "URL (例如:www.mypage.com)" -#: ../app/views/ops/_settings_workers_tab.html.haml:498 -msgid "Websocket Workers" -msgstr "Websocket 工作节点" +msgid "URL:" +msgstr "URL:" -#: ../app/views/ops/_smartproxy_affinity.html.haml:3 -msgid "" -"Assign Hosts and Datastores to Embedded SmartProxies in Zone: \"%{zone_descript" -"ion}\"" -msgstr "分配主机和数据存储区到区: \"%{zone_description}\" 中内置的 SmartProxies " +msgid "US Executive - 7.25in x 10.5in" +msgstr "US Executive - 7.25in x 10.5in" -#: ../app/views/ops/_smartproxy_affinity.html.haml:13 -msgid "No Servers with the SmartProxy role are in Zone: \"%{zone_description}\"" -msgstr "区中没有拥有 SmartProxy 角色的服务器: \"%{zone_description}\"" +msgid "US Folio - 8.5in x 13.0in" +msgstr "US Folio - 8.5in x 13.0in" -#: ../app/views/ops/_tenant_form.html.haml:67 -msgid "Use Configuration Settings" -msgstr "使用配置设置" +msgid "US Government - 8.0in x 11.0in" +msgstr "US Government - 8.0in x 11.0in" -#: ../app/views/ops/_tenant_quota_form.html.haml:72 -msgid " Valid numeric quota value required " -msgstr " 要求有效的数字配额值" +msgid "US Ledger - 17.0in x 11.0in" +msgstr "US Ledger - 17.0in x 11.0in" -#: ../app/views/ops/_zone_form.html.haml:7 -msgid "Zone Information" -msgstr "区信息" +msgid "US Legal - 8.5in x 14.0in" +msgstr "US Legal - 8.5in x 14.0in" -#: ../app/views/ops/_zone_form.html.haml:117 -msgid "* Specified NTP settings apply to this zone only and are not global." -msgstr "* 指定的 NTP 设置只适用于这个区而不是全局。" +msgid "US Letter - 8.5in x 11.0in" +msgstr "US Letter - 8.5in x 11.0in" -#: ../app/views/ops/_zone_form.html.haml:124 -msgid "Credentials - Windows Domain" -msgstr "凭证 - Windows 域" +msgid "US Statement - 5.5in x 8.5in" +msgstr "US Statement - 5.5in x 8.5in" -#: ../app/views/ops/_zone_form.html.haml:194 -msgid "Max Active VM Scans" -msgstr "最大的激活虚拟机扫描" +msgid "US Tabloid - 11.0in x 17.0in" +msgstr "US Tabloid - 11.0in x 17.0in" -#: ../app/views/ops/_zone_tree.html.haml:5 -msgid "Status of Regional Roles for Servers in %{kind} %{description}" -msgstr "%{kind} %{description} 里服务器的 Regional 角色的状态" +msgid "Unable to add Subnet \"%{name}\": %{details}" +msgstr "" -#: ../app/views/ops/_zone_tree.html.haml:8 -msgid "Status of Roles for Servers in %{kind} %{description}" -msgstr "%{kind} %{description} 里服务器的角色的状态" +msgid "Unable to add nodes: %{error}" +msgstr "无法添加节点:%{error}" -#: ../app/views/ops/_zone_tree.html.haml:14 -msgid "* Primary Server Roles shown as %{bold} text." -msgstr "* 主要服务器角色(Primary Server Role)显示为 %{bold} 文本。" +msgid "Unable to associate Floating IP %{address} with Instance \"%{name}\": %{details}" +msgstr "无法关联浮动 IP %{address} 和实例 \"%{name}\":%{details}" -#: ../app/views/ops/_zone_tree.html.haml:14 -msgid "bold" -msgstr "黑体的" +msgid "Unable to associate Floating IP with Instance \"%{name}\": %{details}" +msgstr "无法关联浮动 IP 和实例 \"%{name}\":%{details}" -#: ../app/views/ops/_zone_tree.html.haml:17 -msgid "Region based nodes shown as %{dimmed} text." -msgstr "基于区域的节点显示为 %{dimmed} 文本" +msgid "Unable to attach Cloud Volume \"%{volume_name}\" to %{vm_name}: %{details}" +msgstr "" -#: ../app/views/ops/_zone_tree.html.haml:17 -msgid "dimmed" -msgstr "暗灰色的" +msgid "Unable to create %{model} \"%{name}\": %{details}" +msgstr "无法创建 %{model} \"%{name}\":%{details}" -#: ../app/views/ops/rhn/_info_subscribed.html.haml:3 -msgid "Appliances in this region can be registered with:" -msgstr "这个区域里的应用可以注册:" +msgid "Unable to create Cloud Network \"%{name}\": %{details}" +msgstr "" + +msgid "Unable to create Cloud Subnet: %{details}" +msgstr "" + +msgid "Unable to create Cloud Tenant \"%{name}\": %{details}" +msgstr "" -#: ../app/views/ops/rhn/_info_subscribed.html.haml:45 -msgid "Account" -msgstr "帐号" +msgid "Unable to create Cloud Volume \"%{name}\": %{details}" +msgstr "" -#: ../app/views/ops/rhn/_info_subscribed.html.haml:75 -msgid "Repository Name(s)" -msgstr "资料库名称" +msgid "Unable to create Floating IP \"%{name}\": %{details}" +msgstr "" -#: ../app/views/ops/rhn/_info_unsubscribed.html.haml:5 -msgid "" -"Software updates have not yet been configured. Select Edit Registration to reg" -"ister appliances in this region with Red Hat to receive software updates and o" -"ther benefits." -msgstr "还未配置软件更新。清选择 Edit Registration 在这个区域里注册应用程序以接受软件更新和享有其他益处。" +msgid "Unable to create Key Pair \"%{name}\": %{details}" +msgstr "" -#: ../app/views/ops/rhn/_info_unsubscribed.html.haml:9 -msgid "You will need the following to register:" -msgstr "您将需要下列信息来注册:" +msgid "Unable to create Security Group \"%{name}\": %{details}" +msgstr "" -#: ../app/views/ops/rhn/_info_unsubscribed.html.haml:15 -msgid "Your Red Hat Account login or Red Hat Network Satellite login" -msgstr "您的 Red Hat 帐号或 Red Hat Network Satellite 帐号" +msgid "Unable to create a new template copy \"%{name}\": new template content cannot be empty." +msgstr "无法创建新的模版备份 \"%{name}\":新的模版内容不能为空。" -#: ../app/views/ops/rhn/_info_unsubscribed.html.haml:17 -msgid "A Red Hat subscription that covers your product" -msgstr "涵盖您的产品的红帽订阅" +msgid "Unable to create a new template copy \"%{name}\": old and new template content have to differ." +msgstr "无法创建新的模版备份 \"%{name}\":旧的和新的模版内容必须不同。" -#: ../app/views/ops/rhn/_info_unsubscribed.html.haml:19 -msgid "(optional) your HTTP proxy information" -msgstr "(可选)您的 HTTP 代理信息" +msgid "Unable to create backup for %{model} \"%{name}\": %{details}" +msgstr "无法为 %{model} \"%{name}\" 创建备份:%{details}" -#: ../app/views/ops/rhn/_info_unsubscribed.html.haml:21 -msgid "(optional) the address of an alternate service" -msgstr "(可选)替代服务的地址" +msgid "Unable to create snapshot for Cloud Volume \"%{name}\": %{details}" +msgstr "无法为云卷 \"%{name}\" 创建快照:%{details}" -#: ../app/views/ops/rhn/_server_table.html.haml:5 -msgid "Appliance Updates" -msgstr "应用更新" +msgid "Unable to deploy %s on this server %s\"" +msgstr "" -#: ../app/views/ops/rhn/_server_table.html.haml:16 -msgid "Available Product version:" -msgstr "可用的产品版本:" +msgid "Unable to detach Cloud Volume \"%{volume_name}\" from %{vm_name}: %{details}" +msgstr "" -#: ../app/views/ops/rhn/_server_table.html.haml:31 -msgid "Refresh List" -msgstr "刷新列表" +msgid "Unable to disassociate Floating IP %{address} from Instance \"%{name}\": %{details}" +msgstr "无法取消浮动 IP %{address} 和实例 \"%{name}\" 的关联:%{details}" -#: ../app/views/ops/rhn/_server_table.html.haml:40 -msgid "Check for Updates" -msgstr "检查更新" +msgid "Unable to disassociate Floating IP from Instance \"%{name}\": %{details}" +msgstr "无法取消浮动 IP 和实例 \"%{name}\" 的关联:%{details}" -#: ../app/views/ops/rhn/_server_table.html.haml:62 -msgid "Apply %{product} Update" -msgstr "应用 %{product} 更新" +msgid "Unable to evacuate %{instance} \"%{name}\": %{details}" +msgstr "无法撤销 %{instance} \"%{name}\": %{details}" -#: ../app/views/ops/rhn/_server_table.html.haml:89 -msgid "Appliance" -msgstr "应用" +msgid "Unable to initiate scaling: %{message}" +msgstr "无法初始扩容: %{message}" -#: ../app/views/ops/rhn/_server_table.html.haml:93 -msgid "Update Status" -msgstr "更新状态" +msgid "Unable to install the Datasource on this server." +msgstr "" -#: ../app/views/ops/rhn/_server_table.html.haml:95 -msgid "Last Checked for updates" -msgstr "最近对更新的检查" +msgid "Unable to live migrate %{instance} \"%{name}\": %{details}" +msgstr "无法实时迁移 %{instance} \"%{name}\": %{details}" -#: ../app/views/ops/rhn/_server_table.html.haml:97 -msgid "%{product} Version" -msgstr "%{product} 版本" +msgid "Unable to live migrate Instance \"%{name}\": %{details}" +msgstr "" -#: ../app/views/ops/rhn/_server_table.html.haml:99 -msgid "Platform Updates Available" -msgstr "可用的平台更新" +msgid "Unable to reconfigure %{instance} \"%{name}\": %{details}" +msgstr "无法重新配置 %{instance} \"%{name}\": %{details}" -#: ../app/views/orchestration_stack/_stack_orchestration_template.html.haml:19 -msgid "Orderable" -msgstr "可订购的" +msgid "Unable to remove Subnet \"%{name}\": %{details}" +msgstr "" -#: ../app/views/persistent_volume/_main.html.haml:10 -msgid "Volume Claim" -msgstr "卷声明" +msgid "Unable to restore %{model} \"%{name}\" from backup: %{details}" +msgstr "无法使用备份恢复 %{model} \"%{name}\":%{details}" -#: ../app/views/persistent_volume/_main.html.haml:22 -msgid "Capacity" -msgstr "能力" +msgid "Unable to update %{model} \"%{name}\": %{details}" +msgstr "无法更新 %{model} \"%{name}\": %{details}" -#: ../app/views/provider_foreman/_configuration_script.html.haml:18 -msgid "Surveys" -msgstr "调查" +msgid "Unable to update Cloud Network \"%{name}\": %{details}" +msgstr "" -#: ../app/views/provider_foreman/_form.html.haml:108 -msgid "Url" -msgstr "URL" +msgid "Unable to update Cloud Subnet \"%{name}\": %{details}" +msgstr "" -#: ../app/views/provider_foreman/_main.html.haml:16 -#: ../app/views/provider_foreman/_main_configuration_profile.html.haml:16 -msgid "Tenancy" -msgstr "租期" +msgid "Unable to update Cloud Tenant \"%{name}\": %{details}" +msgstr "" -#: ../app/views/pxe/_iso_datastore_details.html.haml:31 -msgid "View this ISO Image" -msgstr "查看这个 ISO 镜像" +msgid "Unable to update Cloud Volume \"%{name}\": %{details}" +msgstr "" -#: ../app/views/pxe/_pxe_form.html.haml:34 -msgid "Depot Type" -msgstr "Depot 类型" +msgid "Unable to update Floating IP \"%{name}\": %{details}" +msgstr "" -#: ../app/views/pxe/_pxe_form.html.haml:146 -#: ../app/views/pxe/_pxe_server_details.html.haml:17 -#: ../app/views/pxe/_pxe_server_details.html.haml:25 -msgid "PXE Image Menus" -msgstr "PXE 镜像菜单" +msgid "Unable to update Security Group \"%{name}\": %{details}" +msgstr "" -#: ../app/views/pxe/_pxe_image_type_form.html.haml:39 -msgid "Any" -msgstr "任何" +msgid "Unable to update stack, obtaining of status failed: %{message}" +msgstr "无法更新堆栈,获取状态失败: %{message}" -#: ../app/views/pxe/_pxe_img_form.html.haml:48 -msgid "" -"* Checking this box will remove this setting from all other PXE Images on this" -" PXE Server" -msgstr "* 选中这个复选框将将删除这个 PXE 服务器上所有其它的 PXE 镜像" +msgid "Unacknowledge" +msgstr "" -#: ../app/views/pxe/_pxe_server_details.html.haml:65 -msgid "Windows Boot Env" -msgstr "Windows 引导环境" +msgid "Unacknowledged" +msgstr "" -#: ../app/views/pxe/_pxe_server_details.html.haml:72 -msgid "View this PXE Image" -msgstr "查看这个 PXE 镜像" +msgid "Unassign" +msgstr "" -#: ../app/views/pxe/_pxe_server_details.html.haml:119 -msgid "View this Windows Image" -msgstr "查看这个 Windows 镜像" +msgid "Unassign Alert" +msgstr "" -#: ../app/views/pxe/_template_details.html.haml:16 -#: ../app/views/pxe/_template_form.html.haml:91 -msgid "Script" -msgstr "脚本" +msgid "Unassigned" +msgstr "未分配的" -#: ../app/views/pxe/_template_folders.html.haml:9 -msgid "View Examples (read only)' Folder" -msgstr "查看 Examples(只读)文件夹" +msgid "Unassigned Profiles Group" +msgstr "未分配的配置集组" -#: ../app/views/pxe/_template_folders.html.haml:21 -msgid "View '%{name}' Folder" -msgstr "查看 '%{name}' 文件夹" +msgid "Unassigned:" +msgstr "未分配的" -#: ../app/views/pxe/_template_form.html.haml:73 -msgid "CloudInit" -msgstr "CloudInit" +msgid "Unattended GUI" +msgstr "无人值守的 GUI" -#: ../app/views/pxe/_template_form.html.haml:73 -msgid "Kickstart" -msgstr "Kickstart" +msgid "Unauthorized object or action" +msgstr "未授权对象或操作" -#: ../app/views/pxe/_template_form.html.haml:73 -msgid "Sysprep" -msgstr "Sysprep" +msgid "Uncknowledge Alert" +msgstr "" -#: ../app/views/report/_column_lists.html.haml:9 -msgid "Available Fields:" -msgstr "可用的字段:" +msgid "Uncommitted Space" +msgstr "未提交的空间" -#: ../app/views/report/_column_lists.html.haml:38 -#: ../app/views/report/_column_lists.html.haml:91 -msgid "down" -msgstr "down" +msgid "Undeploy" +msgstr "卸载" -#: ../app/views/report/_column_lists.html.haml:38 -#: ../app/views/report/_column_lists.html.haml:91 -msgid "up" -msgstr "向上" +msgid "Undeploy these Middleware Deployments" +msgstr "卸载这些中间件部署" -#: ../app/views/report/_column_lists.html.haml:40 -#: ../app/views/report/_column_lists.html.haml:95 -msgid "Move selected fields %{where}" -msgstr "移动选择的字段 %{where}" +msgid "Undeploy this Middleware Deployment" +msgstr "卸载这个中间件部署" -#: ../app/views/report/_column_lists.html.haml:69 -msgid "Selected Fields:" -msgstr "选择的字段:" +msgid "Undeployment initiated for selected deployment(s)" +msgstr "启动所选部署的卸载" -#: ../app/views/report/_column_lists.html.haml:91 -msgid "to bottom" -msgstr "到底部" +msgid "Underlying %{name}" +msgstr "底层 %{name}" -#: ../app/views/report/_column_lists.html.haml:91 -msgid "to top" -msgstr "停止" +msgid "Undo the last change" +msgstr "取消最后的修改" -#: ../app/views/report/_db_form.html.haml:41 -#: ../app/views/report/_db_show.html.haml:28 -msgid "Tab Title" -msgstr "标签页标题" +msgid "Unexpected error encountered" +msgstr "遇到意外的错误" -#: ../app/views/report/_db_form.html.haml:74 -msgid "* Dashboard name cannot be changed" -msgstr "* 仪表板名称不能被修改" +msgid "Ungrouped" +msgstr "" -#: ../app/views/report/_db_list.html.haml:23 -msgid "Click to view '%{title}'" -msgstr "点击以查看 '%{title}'" +msgid "Units" +msgstr "单位" -#: ../app/views/report/_db_list.html.haml:60 -msgid "Click to view %{group} " -msgstr "点击以查看 %{group}" +msgid "Unknown" +msgstr "未知的" -#: ../app/views/report/_db_list.html.haml:77 -msgid "No Dashboards are defined for this group. Default dashboard will be shown." -msgstr "没有为这个组定义仪表板。将显示默认的仪表板。" +msgid "Unknown Action" +msgstr "未知操作" -#: ../app/views/report/_db_list.html.haml:99 -msgid "Click to view '%{widgetset_description} (%{widgetset_name})'" -msgstr "点击以查看 '%{widgetset_description} (%{widgetset_name})'" +msgid "Unknown error has occurred" +msgstr "已发生未知的错误" -#: ../app/views/report/_db_seq_form.html.haml:11 -msgid "Dashboards:" -msgstr "仪表板:" +msgid "Unknown server group operation: " +msgstr "" -#: ../app/views/report/_db_widget.html.haml:5 -msgid "Drag/drop Widget \"%{widget_title}\"" -msgstr "拖/放 Widget \"%{widget_title}\"" +msgid "Unknown server operation: %{operation}" +msgstr "" -#: ../app/views/report/_db_widget.html.haml:8 -msgid "View this Widget" -msgstr "查看这个 Widget" +msgid "Unlimited" +msgstr "无限制的" -#: ../app/views/report/_db_widget_remove.html.haml:4 -msgid "Remove this widget" -msgstr "删除这个 widget" +msgid "Unlock this Domain" +msgstr "删除这个域" -#: ../app/views/report/_db_widgets.html.haml:5 -msgid "Sample Dashboard" -msgstr "样本仪表板" +msgid "Unlocked" +msgstr "解锁的" -#: ../app/views/report/_export.html.haml:5 -msgid "Choose a Import/Export type from the menus on the left." -msgstr "从左侧的菜单里选择导入/导出类型" +msgid "Unmanaged VMs" +msgstr "未管理的虚拟机" -#: ../app/views/report/_export_custom_reports.html.haml:30 -msgid "Overwrite existing reports?" -msgstr "覆盖现有的报表?" +msgid "Unused/Overcommited Allocation" +msgstr "未用/过度的分配" -#: ../app/views/report/_export_custom_reports.html.haml:73 -msgid "Available Custom Reports:" -msgstr "可用的自定义报告:" +msgid "Up" +msgstr "" -#: ../app/views/report/_export_widgets.html.haml:7 -msgid "Import Widgets" -msgstr "导入 Widget" +msgid "Update" +msgstr "更新" -#: ../app/views/report/_export_widgets.html.haml:24 -msgid "Widget name" -msgstr "Widget 名称" +msgid "Update Password" +msgstr "更新密码" -#: ../app/views/report/_export_widgets.html.haml:120 -msgid "Available Widgets:" -msgstr "可用的 Widget" +msgid "Update Status" +msgstr "更新状态" -#: ../app/views/report/_form.html.haml:14 -msgid "Basic Report Info" -msgstr "基本报表信息" +msgid "Update aggregate not supported by %{model} \"%{name}\"" +msgstr "%{model} \"%{name}\" 不支持更新集合" -#: ../app/views/report/_form.html.haml:21 -msgid "Menu Name" -msgstr "菜单名称" +msgid "Update password" +msgstr "更新密码" -#: ../app/views/report/_form_chart.html.haml:6 -msgid "Chart Settings" -msgstr "图表设置" +msgid "Update this LDAP Server" +msgstr "更新这个 LDAP 服务器" -#: ../app/views/report/_form_chart.html.haml:15 -msgid "Choose a chart type" -msgstr "选择图表类型" +msgid "Update this entry" +msgstr "更新这个条目" -#: ../app/views/report/_form_chart.html.haml:20 -msgid "" -msgstr "<无图表>" +msgid "Updated" +msgstr "上次更新" -#: ../app/views/report/_form_chart.html.haml:37 -msgid "Chart mode" -msgstr "图表模式" +msgid "Updated - %{time}" +msgstr "更新于 - %{time}" -#: ../app/views/report/_form_chart.html.haml:43 -#: ../app/views/report/_form_chart.html.haml:54 -#: ../app/views/report/_form_sort.html.haml:78 -msgid "Counts" -msgstr "计数" +msgid "Updated - %{update_time}, Last valid connection - %{valid_time}" +msgstr "更新于 - %{update_time},上次有效连接时间 - %{valid_time}" -#: ../app/views/report/_form_chart.html.haml:43 -msgid "Values" -msgstr "值" +msgid "Updated On" +msgstr "更新日期" -#: ../app/views/report/_form_chart.html.haml:62 -msgid "Data column" -msgstr "数据列" +msgid "Upload" +msgstr "上传" -#: ../app/views/report/_form_chart.html.haml:83 -msgid "Top values to show" -msgstr "要显示的最高值" +msgid "Upload %{customer_name} Tag Assignments for VMs" +msgstr "未虚拟机上传 %{customer_name} Tag 分配" -#: ../app/views/report/_form_chart.html.haml:104 -msgid "Sum 'Other' values" -msgstr "总计 'Other' 值" +msgid "Upload Custom Variable Values" +msgstr "上传自定义变量的值" -#: ../app/views/report/_form_chart.html.haml:117 -msgid "* Some charts my not produce desired results with a single sort field" -msgstr "* 某些图表用单一排序字段可能不会产生想要的结果" +msgid "Upload File" +msgstr "上传文件" -#: ../app/views/report/_form_columns.html.haml:9 -msgid "Configure Report Columns" -msgstr "配置报表列" +msgid "Uploaded File '%{filename}'" +msgstr "上传的文件 '%{filename}'" -#: ../app/views/report/_form_columns.html.haml:16 -msgid "* Base the report on" -msgstr "* 报表基于" +msgid "Url" +msgstr "URL" -#: ../app/views/report/_form_columns.html.haml:45 -msgid "* Caution: Changing these fields will clear all selected values below them!" -msgstr "* 警告:修改这些字段将清除它们下面选择的所有值!" +msgid "Usage" +msgstr "用度" -#: ../app/views/report/_form_columns.html.haml:52 -msgid "Report Creation Timeout" -msgstr "报表创建超时设置" +msgid "Usage: " +msgstr "使用: " -#: ../app/views/report/_form_columns.html.haml:61 -msgid "Cancel after" -msgstr "多久后取消" +msgid "Usage: Unknown" +msgstr "使用: 未知" -#: ../app/views/report/_form_columns.html.haml:66 -msgid "%{number} Hour" -msgid_plural "%{number} Hours" -msgstr[0] "%{number} 小时" +msgid "Use" +msgstr "使用" -#: ../app/views/report/_form_columns.html.haml:66 -msgid "System Default" -msgstr "系统默认" +msgid "Use Alias" +msgstr "使用别名" -#: ../app/views/report/_form_columns_performance.html.haml:6 -msgid "* Performance Interval" -msgstr "* 性能间隔" +msgid "Use CTRL-ALT-Enter to toggle full screen" +msgstr "使用 CTRL-ALT-Enter 进行全屏切换" -#: ../app/views/report/_form_columns_performance.html.haml:31 -msgid "Averages Based On" -msgstr "基于...的平均值" +msgid "Use CTRL-ALT-INS for CTRL-ALT-DEL" +msgstr "为 CTRL-ALT-DEL 使用 CTRL-ALT-INS " -#: ../app/views/report/_form_columns_performance.html.haml:36 -msgid "Available Active Data" -msgstr "可用的激活数据" +msgid "Use Configuration Settings" +msgstr "使用配置设置" -#: ../app/views/report/_form_columns_performance.html.haml:36 -msgid "Performance Interval" -msgstr "性能间隔" +msgid "Use Custom Login & 'About' Screen Background Image" +msgstr "" -#: ../app/views/report/_form_columns_trend.html.haml:6 -msgid "Trending for" -msgstr "Trending for" +msgid "Use Custom Login Text" +msgstr "使用自定义登录文本" -#: ../app/views/report/_form_columns_trend.html.haml:29 -msgid "Trend Target Limit" -msgstr "Trend 目标限制" +msgid "Use Custom Logo Image" +msgstr "使用自定义 Logo 图像" -#: ../app/views/report/_form_columns_trend.html.haml:39 -msgid "Column" -msgstr "列" +msgid "Use Existing" +msgstr "" -#: ../app/views/report/_form_columns_trend.html.haml:80 -msgid "Trend Target Percents" -msgstr "Trend 目标比例" +msgid "Use HTTP Proxy" +msgstr "使用 HTTP 代理" -#: ../app/views/report/_form_consolidate.html.haml:6 -msgid "Group Records by up to 3 Columns" -msgstr "最多三列的组记录" +msgid "Use existing VMs from an existing provider" +msgstr "使用现有供应商里现有的虚拟机" -#: ../app/views/report/_form_consolidate.html.haml:15 -#: ../app/views/report/_widget_columns.html.haml:6 -msgid "Column 1" -msgstr "列 1" +msgid "Use existing VMs from an existing provider: " +msgstr "使用现有供应商里现有的虚拟机:" -#: ../app/views/report/_form_consolidate.html.haml:37 -#: ../app/views/report/_widget_columns.html.haml:28 -msgid "Column 2" -msgstr "列 2" +msgid "Use the Choose file button to locate .png image file" +msgstr "使用 'Choose file' 按钮定位 .png 图像文件" -#: ../app/views/report/_form_consolidate.html.haml:59 -#: ../app/views/report/_widget_columns.html.haml:50 -msgid "Column 3" -msgstr "列 3" +msgid "Use the Choose file button to locate CSV file" +msgstr "使用 'Choose file' 按钮定位 CSV 文件" -#: ../app/views/report/_form_consolidate.html.haml:81 -#: ../app/views/report/_form_consolidate.html.haml:149 -msgid "Note:" -msgstr "注意:" +msgid "Use the Choose file button to locate a .png or .jpg image file" +msgstr "使用 'Choose file' 按钮定位 .png 或 .jpg 图像文件" -#: ../app/views/report/_form_consolidate.html.haml:84 -msgid "Consolidating records will not show detail records in the report." -msgstr "合并记录将不会显示报表里的细节" +msgid "Use the Choose file button to locate an Import file" +msgstr "使用 'Choose file' 按钮定位导入文件" -#: ../app/views/report/_form_consolidate.html.haml:91 -msgid "Specify Calculations of Numeric Values for Grouped Records" -msgstr "对分组记录指定数字值的计算方式" +msgid "Use the Choose file button to locate an Upload file" +msgstr "使用 'Choose file' 按钮定位上传文件" -#: ../app/views/report/_form_consolidate.html.haml:102 -#: ../app/views/report/_form_formatting.html.haml:48 -#: ../app/views/report/_form_sort.html.haml:236 -#: ../app/views/report/_form_styling.html.haml:21 -msgid "Column Name" -msgstr "列名称" +msgid "Use the Choose file button to locate an import file" +msgstr "使用 'Choose file' 按钮定位导入文件" -#: ../app/views/report/_form_consolidate.html.haml:107 -#: ../app/views/report/_form_sort.html.haml:246 -msgid "Calculations" -msgstr "计算" +msgid "Used" +msgstr "已用的" -#: ../app/views/report/_form_consolidate.html.haml:152 -msgid "" -"Leave all options unchecked to show the original column value from the first r" -"ecord in the group." -msgstr "不勾选任何选项以显示组里第一条记录原始的列值" +msgid "Used + Uncommitted Space" +msgstr "已用的 + 未提交的空间" -#: ../app/views/report/_form_filter.html.haml:14 -msgid "Primary (Record) Filter - Filters the %{model} table records" -msgstr "主(记录)过滤器 - 过滤 %{model} 图表记录" +msgid "Used Index Nodes" +msgstr "使用的索引节点" -#: ../app/views/report/_form_filter.html.haml:22 -msgid "Edit the Record Filter" -msgstr "编辑 Record Filter" +msgid "Used Size" +msgstr "已用大小" -#: ../app/views/report/_form_filter.html.haml:33 -msgid "No Record Filter defined." -msgstr "没有定义记录过滤器。" +msgid "Used Space" +msgstr "使用的空间" -#: ../app/views/report/_form_filter.html.haml:55 -msgid "Secondary (Display) Filter - Filters the rows based on child table fields" -msgstr "二级(显示)过滤器 - 基于子表字段过滤记录" +msgid "Used Space on Volume" +msgstr "卷上使用的空间" -#: ../app/views/report/_form_filter.html.haml:73 -msgid "No Display Filter defined." -msgstr "没有定义显示过滤器。" +msgid "Used for SSH connection to all %{hosts} in this provider." +msgstr "用于这个供应商里的所有 %{hosts} 的 SSH 连接。" -#: ../app/views/report/_form_filter_chargeback.html.haml:4 -msgid "Chargeback Filters" -msgstr "计费 过滤器" +msgid "Used for access to IPMI." +msgstr "用于访问 IPMI。" -#: ../app/views/report/_form_filter_chargeback.html.haml:14 -#: ../app/views/report/_form_filter_chargeback.html.haml:249 -msgid "Show Costs by" -msgstr "显示成本" +msgid "Used for access to Web Services." +msgstr "用于访问 Web 服务。" -#: ../app/views/report/_form_filter_chargeback.html.haml:23 -#: ../app/views/report/_form_filter_chargeback.html.haml:27 -#: ../app/views/report/_form_filter_chargeback.html.haml:44 -#: ../app/views/report/_form_filter_chargeback.html.haml:182 -msgid "Owner" -msgstr "所有者" +msgid "Used to authenticate as a service account against your provider." +msgstr "用来作为服务帐号来在您的供应商中进行验证" -#: ../app/views/report/_form_filter_chargeback.html.haml:49 -msgid "Choose an Owner" -msgstr "选择所有者" +msgid "Used to authenticate with OpenStack AMQP Messaging Bus for event handling. Configure AMQP if eventing is not enabled on Ceilometer." +msgstr "用来与 OpenStack AMQP 消息总线进行验证来处理事件。如果事件没有在 Ceilometer 中启用,配置 AMQP。" -#: ../app/views/report/_form_filter_chargeback.html.haml:71 -msgid "Choose a tenant" -msgstr "选择一个租户" +msgid "Used to gather Capacity & Utilization metrics." +msgstr "用于收集容量和利用率度量。" -#: ../app/views/report/_form_filter_chargeback.html.haml:115 -msgid "Choose a Value" -msgstr "选择值" +msgid "User" +msgid_plural "Users" +msgstr[0] "用户" -#: ../app/views/report/_form_filter_chargeback.html.haml:137 -msgid "All Providers" -msgstr "" +msgid "User '%{user_id}' is not authorized to access '%{model}' record id '%{record_id}'" +msgstr "用户 '%{user_id}' 没有被授权可以访问 '%{model}' 记录 id '%{record_id}'" -#: ../app/views/report/_form_filter_chargeback.html.haml:137 -msgid "Choose Provider" -msgstr "" +msgid "User '%{username}' is not authorized to access '%{controller_name}'" +msgstr "以后 '%{username}' 没有被授权可以访问 '%{controller_name}'" -#: ../app/views/report/_form_filter_chargeback.html.haml:162 -msgid "Choose %{entity}" -msgstr "选择 %{entity}" +msgid "User Accounts" +msgstr "用户帐号" -#: ../app/views/report/_form_filter_chargeback.html.haml:219 -msgid "Group by Tag" -msgstr "按标签分组" +msgid "User Data" +msgstr "用户数据" -#: ../app/views/report/_form_filter_chargeback.html.haml:240 -msgid "Chargeback Interval" -msgstr "计费 间隔" +msgid "User Group Sequence was saved" +msgstr "用户组序列已保存" -#: ../app/views/report/_form_filter_chargeback.html.haml:269 -msgid "%{chargeback_interval} Ending with" -msgstr "%{chargeback_interval} 结束于" +msgid "User Group Sequencing for LDAP Look Up:" +msgstr "用于 LDAP 查找的用户组序列:" -#: ../app/views/report/_form_filter_chargeback.html.haml:276 -msgid "%{number} Days Ago" -msgstr "%{number} 天之前" +msgid "User Information" +msgstr "用户信息" -#: ../app/views/report/_form_filter_chargeback.html.haml:276 -msgid "1 Week Ago" -msgstr "一周以前" +msgid "User Interface Configuration" +msgstr "用户界面配置" -#: ../app/views/report/_form_filter_chargeback.html.haml:276 -msgid "Today (partial)" -msgstr "今天(部分)" +msgid "User Interface settings saved for User %{name}" +msgstr "为用户 %{name} 保存用户界面设置" -#: ../app/views/report/_form_filter_chargeback.html.haml:278 -msgid "%d Weeks Ago" -msgstr "%d 周以前" +msgid "User Interface settings saved for this session" +msgstr "为这个会话保存的用户界面设置" -#: ../app/views/report/_form_filter_chargeback.html.haml:278 -msgid "This Week (partial)" -msgstr "本周(部分)" +msgid "User Name" +msgstr "用户名" -#: ../app/views/report/_form_filter_chargeback.html.haml:280 -msgid "%d Months Ago" -msgstr "%d 个月以前" +msgid "User Password must be entered to perform LDAP Group Look Up" +msgstr "执行 LDAP Group Look Up 时需要输入用户密码" -#: ../app/views/report/_form_filter_chargeback.html.haml:280 -msgid "This Month (partial)" -msgstr "本月(部分)" +msgid "User Principal Name" +msgstr "用户主体名" -#: ../app/views/report/_form_filter_chargeback.html.haml:290 -#: ../app/views/report/_form_filter_performance.html.haml:32 -msgid "going back" -msgstr "回退" +msgid "User Role" +msgstr "用户角色" -#: ../app/views/report/_form_filter_chargeback.html.haml:294 -msgid "%{number} Day" -msgid_plural "%{number} Days" -msgstr[0] "%{number} 天" +msgid "User Roles" +msgstr "用户角色" -#: ../app/views/report/_form_filter_chargeback.html.haml:294 -#: ../app/views/report/_form_filter_chargeback.html.haml:296 -msgid "%{number} Week" -msgid_plural "%{number} Weeks" -msgstr[0] "%{number} 周" +msgid "User Suffix" +msgstr "用户后缀" -#: ../app/views/report/_form_filter_chargeback.html.haml:298 -msgid "%{number} Month" -msgid_plural "%{number} Months" -msgstr[0] "%{number} 月" +msgid "User Suffix:" +msgstr "用户后缀:" -#: ../app/views/report/_form_filter_performance.html.haml:4 -msgid "Performance Timeframe" -msgstr "性能时间框架" +msgid "User Type" +msgstr "用户类型" -#: ../app/views/report/_form_filter_performance.html.haml:14 -msgid "Show hourly data from" -msgstr "显示小时数据:" +msgid "User is not authorized to view %{model} \"%{name}\"" +msgstr "用户没有被授权可以查看 %{model} \"%{name}\"" -#: ../app/views/report/_form_filter_performance.html.haml:17 -msgid "Show daily data from" -msgstr "显示每日数据:" +msgid "User must be entered to perform LDAP Group Look Up" +msgstr "执行 LDAP Group Look Up 需要输入用户" -#: ../app/views/report/_form_filter_performance.html.haml:76 -msgid "Note: Only Time Profiles with 'Roll Up Performance' set are shown." -msgstr "注意:只显示设置了 'Roll Up Performance' 的 Time 配置集。" +msgid "User no longer exists" +msgstr "用户不再存在" -#: ../app/views/report/_form_formatting.html.haml:6 -msgid "PDF Output" -msgstr "PDF 输出" +msgid "User to Look Up" +msgstr "查找的用户" -#: ../app/views/report/_form_formatting.html.haml:15 -msgid "Page Size" -msgstr "页面大小" +msgid "User will input the value" +msgstr "用户将输入这个值" -#: ../app/views/report/_form_formatting.html.haml:37 -msgid "Specify Column Headers and Formats" -msgstr "指定列头部和格式" +msgid "Username" +msgstr "用户名" -#: ../app/views/report/_form_formatting.html.haml:53 -#: ../app/views/report/_form_sort.html.haml:241 -msgid "Header" -msgstr "头部信息" +msgid "Username (optional):" +msgstr "用户名(可选):" -#: ../app/views/report/_form_formatting.html.haml:88 -#: ../app/views/report/_form_sort.html.haml:119 -msgid "Reset to Default" -msgstr "重置为默认值" +msgid "Username and matching password fields are needed to run a database backup" +msgstr "运行数据库备份需要用户名项和匹配密码项" -#: ../app/views/report/_form_preview.html.haml:8 -msgid "Timeline Preview (up to 50 rows)" -msgstr "时间线预览(最多 50 行)" +msgid "Username is required" +msgstr "需要用户名" -#: ../app/views/report/_form_preview.html.haml:24 -msgid "Chart Preview (up to 50 rows)" -msgstr "图表预览(最多 50 行)" +msgid "Username must be entered if Password is entered" +msgstr "如果密码已输入,用户名也必须输入。" -#: ../app/views/report/_form_preview.html.haml:42 -msgid "Report Preview (up to 50 rows)" -msgstr "报表预览(最多 50 行)" +msgid "Username must be entered to perform LDAP Group Look Up" +msgstr "执行 LDAP Group Look Up 时需要输入用户名" -#: ../app/views/report/_form_preview.html.haml:51 -msgid "Generate Report Preview" -msgstr "生成报告预览" +msgid "Username:" +msgstr "用户名:" -#: ../app/views/report/_form_preview.html.haml:53 -msgid "Generate Report preview" -msgstr "生成报告预览" +msgid "Users" +msgstr "用户" -#: ../app/views/report/_form_sort.html.haml:6 -msgid "Sort Criteria" -msgstr "选择标准" +msgid "Users (%{users_count})" +msgstr "用户(%{users_count})" -#: ../app/views/report/_form_sort.html.haml:15 -msgid "Sort the Report By" -msgstr "报表排序" +msgid "Users are only allowed to delete their own requests" +msgstr "用户只被允许删除自己的请求" -#: ../app/views/report/_form_sort.html.haml:35 -#: ../app/views/report/_form_sort.html.haml:183 -msgid "Original Value" -msgstr "原始值" +msgid "Users in this Group" +msgstr "这个组里的用户" -#: ../app/views/report/_form_sort.html.haml:73 -msgid "Show Sort Breaks" -msgstr "显示 Sort Break" +msgid "Utilization" +msgstr "利用率" -#: ../app/views/report/_form_sort.html.haml:96 -msgid "Hide Detail Rows" -msgstr "隐藏细节行" +msgid "Utilization Summary" +msgstr "利用率概述" -#: ../app/views/report/_form_sort.html.haml:114 -msgid "Format on Summary Row" -msgstr "总结行的格式" +msgid "VC Custom Attributes" +msgstr "VC 自定义属性" -#: ../app/views/report/_form_sort.html.haml:138 -msgid "Label on Summary Row" -msgstr "总结行上的标签" +msgid "VM" +msgstr "虚拟机" -#: ../app/views/report/_form_sort.html.haml:163 -msgid "Within Above Field, Sort By" -msgstr "上面的字段的排序依据:" +msgid "VM \"%{name}\"" +msgstr "虚拟机 \"%{name}\"" -#: ../app/views/report/_form_sort.html.haml:200 -msgid "Number of Rows to Show" -msgstr "要显示的行数" +msgid "VM %{name} Remote Console" +msgstr "虚拟机 %{name} 远程控制台" -#: ../app/views/report/_form_sort.html.haml:206 -msgid "First %{number}" -msgstr "第一个 %{number}" +msgid "VM Analysis" +msgstr "虚拟机分析" -#: ../app/views/report/_form_sort.html.haml:225 -msgid "Specify Calculations for Summary Rows" -msgstr "为总结行指定计算方式" +msgid "VM Analysis Collectors" +msgstr "虚拟机分析采集器" -#: ../app/views/report/_form_styling.html.haml:10 -msgid "Specify Column Styles" -msgstr "指定列风格" +msgid "VM Compliance Check" +msgstr "虚拟机合规检查" -#: ../app/views/report/_form_styling.html.haml:26 -msgid "Style" -msgstr "风格" +msgid "VM Configuration" +msgstr "虚拟机配置" -#: ../app/views/report/_form_styling.html.haml:31 -msgid "If" -msgstr "如果" +msgid "VM Console" +msgstr "" -#: ../app/views/report/_form_styling.html.haml:57 -msgid "Normal" -msgstr "普通的" +msgid "VM Counts per %{model}" +msgstr "每 %{model} 的虚拟机计数" -#: ../app/views/report/_form_styling.html.haml:137 -msgid "* Style \"If\" conditions are evaluated top to bottom for each column" -msgstr "* 对于每列,风格 \"If\" 条件都是从上至下进行评估的。" +msgid "VM Hardware" +msgstr "虚拟机硬件" -#: ../app/views/report/_form_tl_sample.html.haml:7 -msgid "Sample Timeline" -msgstr "样本时间线" +msgid "VM Limits" +msgstr "虚拟机限制" -#: ../app/views/report/_form_tl_settings.html.haml:6 -msgid "Timeline Settings" -msgstr "时间线设置" +msgid "VM Memory Files" +msgstr "虚拟机内存文件" -#: ../app/views/report/_form_tl_settings.html.haml:19 -msgid "Base Timeline on" -msgstr "时间线基于" +msgid "VM Number" +msgstr "虚拟机数量" -#: ../app/views/report/_form_tl_settings.html.haml:47 -msgid "Event to position at" -msgstr "Event to position at" +msgid "VM Options" +msgstr "虚拟机选项" -#: ../app/views/report/_menu_form1.html.haml:45 -msgid "Move selected folder top" -msgstr "移动所选的文件夹至顶部" +msgid "VM Power Functions" +msgstr "虚拟机电源功能" -#: ../app/views/report/_menu_form1.html.haml:119 -msgid "Manage Accordions & Folders" -msgstr "管理折叠菜单和文件夹" +msgid "VM Provisioned Disk Files" +msgstr "虚拟机的 置备ed 磁盘文件" -#: ../app/views/report/_menu_form1.html.haml:130 -msgid "Please select a node from the tree to edit." -msgstr "请从树里选择一个节点进行编辑。" +msgid "VM Reconfigure Request was cancelled by the user" +msgstr "用户取消了虚拟机的重配置请求" -#: ../app/views/report/_menu_form2.html.haml:8 -msgid "Manage Reports" -msgstr "管理报表" +msgid "VM Reconfigure Request was saved" +msgstr "虚拟机的重配置请求已保存" -#: ../app/views/report/_menu_form2.html.haml:19 -msgid "Available Reports:" -msgstr "可用的报表:" +msgid "VM Remote Access" +msgstr "" -#: ../app/views/report/_menu_form2.html.haml:26 -msgid "Selected Reports:" -msgstr "选择的报表:" +msgid "VM Reservations" +msgstr "虚拟机保留" -#: ../app/views/report/_menu_form2.html.haml:53 -msgid "Move selected reports right" -msgstr "右移所选的报表" +msgid "VM Selection" +msgstr "虚拟机选择" -#: ../app/views/report/_menu_form2.html.haml:69 -msgid "Move selected reports left" -msgstr "左移所选的报表" +msgid "VM Snapshot Files" +msgstr "虚拟机快照文件" -#: ../app/views/report/_menu_form2.html.haml:85 -msgid "Move selected reports to top" -msgstr "移动所选的报表至顶部" +msgid "VM Templates" +msgstr "虚拟机模板" -#: ../app/views/report/_menu_form2.html.haml:101 -msgid "Move selected reports up" -msgstr "上移所选的报表" +msgid "VM VMRC Console error: %{error}" +msgstr "虚拟机 VMRC 控制台错误: %{error}" -#: ../app/views/report/_menu_form2.html.haml:117 -msgid "Move selected reports down" -msgstr "下移所选的报表" +msgid "VM Visibility" +msgstr "VM 可视性" -#: ../app/views/report/_menu_form2.html.haml:133 -msgid "Move selected reports to bottom" -msgstr "移动所选的报表至底部" +msgid "VM and Instance Conditions" +msgstr "虚拟机和实例条件" -#: ../app/views/report/_menu_form2.html.haml:163 -msgid "Commit report management changes" -msgstr "提交报表管理的修改" +msgid "VM data will be collected for VMs under selected %{hosts} only. Data is collected for a %{cluster} and all of its %{hosts} when at least one %{host} is selected." +msgstr "将只为选择的 %{hosts} 下的虚拟机采集虚拟机数据。当选择了至少一个 %{host} 时,%{cluster} 及其所有的 %{hosts} 都将采集数据。" -#: ../app/views/report/_menu_form2.html.haml:174 -msgid "Discard report management changes" -msgstr "放弃报表管理的修改" +msgid "VM has too many parents." +msgstr "" -#: ../app/views/report/_menu_form2.html.haml:193 -msgid "* Report is not owned by your group so it cannot be removed" -msgstr "* 您的组不拥有报表,所以它无法被删除。" +msgid "VM is already retired" +msgstr "虚拟机已经停用" -#: ../app/views/report/_report_info.html.haml:20 -#: ../app/views/report/_report_list.html.haml:117 -msgid "Primary (Record) Filter" -msgstr "主要的(记录)过滤器" +msgid "VM successfully removed from service \"%{name}\"" +msgstr "虚拟机被成功从服务 \"%{name}\" 中删除" -#: ../app/views/report/_report_info.html.haml:31 -#: ../app/views/report/_report_list.html.haml:122 -msgid "Secondary (Display) Filter" -msgstr "二级(显示)过滤器" +msgid "VM/Instance Name" +msgstr "虚拟机/实例名称" -#: ../app/views/report/_report_info.html.haml:113 -msgid "Report is not Scheduled." -msgstr "报表未调度。" +msgid "VM: %{name} (Click to view)" +msgstr "虚拟机: %{name} (点击查看)" -#: ../app/views/report/_report_info.html.haml:169 -msgid "View this Schedule" -msgstr "查看这个时间线" +msgid "VMDB" +msgstr "VMDB" -#: ../app/views/report/_report_info.html.haml:232 -msgid "Report doesn't belong to Widgets." -msgstr "报表不属于 Widget" +msgid "VMDB \"%{name}\" Table Utilization" +msgstr "VMDB \"%{name}\" 表利用率" -#: ../app/views/report/_report_info.html.haml:261 -msgid "Click to view selected widget" -msgstr "点击以查看所选的 widget" +msgid "VMDB Client Connections" +msgstr "VMDB 客户端连接" -#: ../app/views/report/_report_list.html.haml:198 -msgid "Report Info" -msgstr "报表信息" +msgid "VMDB Settings" +msgstr "VMDB 设置" -#: ../app/views/report/_report_list.html.haml:214 -#: ../app/views/report/_reports.html.haml:2 -msgid "Choose a Report to view from the menus on the left." -msgstr "从左侧的菜单里选择要查看的报表" +msgid "VMDB Summary" +msgstr "VMDB 概述" -#: ../app/views/report/_report_saved_reports.html.haml:6 -#: ../app/views/report/_role_list.html.haml:25 -msgid "No Saved Reports available." -msgstr "没有可用的保存的报表。" +msgid "VMDB Utilization" +msgstr "VMDB 利用率" -#: ../app/views/report/_role_list.html.haml:45 -msgid "Choose a Role to edit from the left." -msgstr "从左侧选择要编辑的角色" +msgid "VMM Information" +msgstr "VMM 信息" -#: ../app/views/report/_savedreports_list.html.haml:22 -msgid "* No Reports available." -msgstr "* 没有可用的报表。" +msgid "VMs" +msgstr "虚拟机" -#: ../app/views/report/_savedreports_list.html.haml:29 -#: ../app/views/report/show_saved.html.haml:3 -msgid "Choose a Report from the menus on the left." -msgstr "从左侧的菜单里选择报表" +msgid "VMs & Instances" +msgstr "虚拟机和实例" -#: ../app/views/report/_schedule_email_options.html.haml:7 -msgid "E-mail Options" -msgstr "电子邮件选项" +msgid "VMs & Templates" +msgstr "虚拟机和模版" -#: ../app/views/report/_schedule_email_options.html.haml:16 -msgid "Send if Report is Empty" -msgstr "发送报表是否为空" +msgid "VMs And Templates" +msgstr "虚拟机和模版" -#: ../app/views/report/_schedule_email_options.html.haml:30 -msgid "Attachments" -msgstr "附件" +msgid "VMsafe" +msgstr "VMsafe" -#: ../app/views/report/_schedule_email_options.html.haml:50 -msgid "CSV" -msgstr "CSV" +msgid "VMware Console Support" +msgstr "VMware 控制台支持" -#: ../app/views/report/_schedule_email_options.html.haml:60 -msgid "PDF" -msgstr "PDF" +msgid "VMware MKS Plugin" +msgstr "VMware MKS 插件" -#: ../app/views/report/_schedule_form.html.haml:68 -msgid "E-mail after Running" -msgstr "运行后的电子邮件" +msgid "VMware MKS Plugin Version" +msgstr "VMware MKS 插件版本" -#: ../app/views/report/_schedule_form_filter.html.haml:6 -msgid "Report Selection" -msgstr "报表选择" +msgid "VMware Server" +msgstr "VMware 服务器" -#: ../app/views/report/_schedule_form_timer.html.haml:6 -#: ../app/views/report/_widget_show.html.haml:279 -msgid "Timer" -msgstr "定时器" +msgid "VMware VMRC Plugin" +msgstr "VMware VMRC 插件" -#: ../app/views/report/_schedule_form_timer.html.haml:20 -msgid "Monthly" -msgstr "每月" +msgid "VMware vCenter" +msgstr "VMware vCenter" -#: ../app/views/report/_schedule_form_timer.html.haml:20 -msgid "Once" -msgstr "一次" +msgid "VNC" +msgstr "VNC" -#: ../app/views/report/_schedule_form_timer.html.haml:20 -msgid "Weekly" -msgstr "每周" +msgid "VNC consoles are unsupported on VMware ESXi 6.5 and later." +msgstr "" -#: ../app/views/report/_schedule_form_timer.html.haml:151 -msgid "h" -msgstr "h" +msgid "VNF Templates" +msgstr "VNF 模板" -#: ../app/views/report/_schedule_form_timer.html.haml:164 -msgid "m" -msgstr "m" +msgid "Valid" +msgstr "有效" -#: ../app/views/report/_schedule_list.html.haml:12 -msgid "No Schedules available." -msgstr "没有可用的时间表。" +msgid "Validate" +msgstr "验证" -#: ../app/views/report/_schedule_list.html.haml:18 -msgid "Choose a Schedule to view from the menus on the left." -msgstr "从左侧的菜单里选择要查看的时间表" +msgid "Validate the Amazon Settings" +msgstr "验证 Amazon 设置" -#: ../app/views/report/_show_schedule.html.haml:29 -msgid "E-Mail after Running" -msgstr "运行后发送电子邮件" +msgid "Validate the LDAP Settings by binding with the %{host}" +msgstr "通过绑定 %{host} 验证 LDAP 设置" -#: ../app/views/report/_show_schedule.html.haml:44 -msgid "From E-mail" -msgstr "发自" +msgid "Validate the credentials" +msgstr "检验凭证" -#: ../app/views/report/_show_schedule.html.haml:58 -msgid "To E-mail" -msgstr "发至电子邮件" +msgid "Validate the credentials by logging into the Server" +msgstr "通过登录服务器验证凭证" -#: ../app/views/report/_show_schedule.html.haml:72 -#: ../app/views/report/_widget_show.html.haml:126 -msgid "Report Filter" -msgstr "报表过滤器" +msgid "Validate the credentials by logging into the selected %{host}" +msgstr "通过登录所选的 %{host} 验证凭证" -#: ../app/views/report/_widget_columns.html.haml:72 -msgid "Column 4" -msgstr "列 4" +msgid "Validate the credentials by logging into the selected %{title_for_host}" +msgstr "通过登录所选的 %{title_for_host} 验证凭证" -#: ../app/views/report/_widget_form.html.haml:76 -#: ../app/views/report/_widget_show.html.haml:338 -msgid "* Fields are read only for default Widgets" -msgstr "* 字段对于默认 Widget 是只读的" +msgid "Validation Required" +msgstr "要求检验" -#: ../app/views/report/_widget_form_chart.html.haml:4 -#: ../app/views/report/_widget_show.html.haml:112 -msgid "Chart Report" -msgstr "图表报表" +msgid "Validation successful" +msgstr "验证成功" -#: ../app/views/report/_widget_form_menu.html.haml:4 -#: ../app/views/report/_widget_show.html.haml:116 -msgid "Menu Shortcuts" -msgstr "菜单快捷键" +msgid "Validator Rule" +msgstr "验证规则" -#: ../app/views/report/_widget_form_menu.html.haml:7 -msgid "Add a Shortcut" -msgstr "" +msgid "Validator Type" +msgstr "验证类型" -#: ../app/views/report/_widget_form_menu.html.haml:23 -msgid "Drag this Shortcut to a new location" -msgstr "将这个快捷键拖至新位置" +msgid "Value" +msgstr "值" -#: ../app/views/report/_widget_form_menu.html.haml:33 -msgid "Remove this Shortcut" -msgstr "删除这个快捷键" +msgid "Value Threshold must be an integer" +msgstr "值的阈值必须是一个整数" -#: ../app/views/report/_widget_form_menu.html.haml:42 -msgid "Reset this Shortcut's text" -msgstr "重置这个快捷键的文本" +msgid "Value Type" +msgstr "值类型" -#: ../app/views/report/_widget_form_report.html.haml:4 -#: ../app/views/report/_widget_show.html.haml:110 -msgid "Report Options" -msgstr "报表选项" +msgid "Value and Description fields can't be blank" +msgstr "值和描述项不能为空" -#: ../app/views/report/_widget_form_report.html.haml:59 -msgid "No Widget compatible Reports found" -msgstr "没有找到兼容 Widget 的报表" +msgid "Value missing for %{field}" +msgstr "%{field} 缺少值" -#: ../app/views/report/_widget_form_report.html.haml:69 -#: ../app/views/report/_widget_form_rss.html.haml:86 -#: ../app/views/report/_widget_show.html.haml:268 -msgid "Row Count" -msgstr "行计数" +msgid "Value to Set" +msgstr "要设置的值" -#: ../app/views/report/_widget_form_rss.html.haml:4 -#: ../app/views/report/_widget_show.html.haml:114 -msgid "RSS Feed Options" -msgstr "RSS Feed 选项" +msgid "Value:" +msgstr "值:" -#: ../app/views/report/_widget_form_rss.html.haml:20 -#: ../app/views/report/_widget_show.html.haml:164 -msgid "External" -msgstr "外部的" +msgid "Values" +msgstr "值" -#: ../app/views/report/_widget_form_rss.html.haml:20 -#: ../app/views/report/_widget_show.html.haml:164 -msgid "Internal" -msgstr "内部的" +msgid "Variable" +msgstr "变量" -#: ../app/views/report/_widget_form_rss.html.haml:37 -#: ../app/views/report/_widget_show.html.haml:183 -msgid "Internal RSS Feed" -msgstr "内部的 RSS Feed" +msgid "Variable Object ID" +msgstr "变量对象 ID" -#: ../app/views/report/_widget_form_rss.html.haml:59 -#: ../app/views/report/_widget_show.html.haml:204 -msgid "External RSS Feed/URL" -msgstr "外部的 RSS Feed/URL" +msgid "Variables" +msgstr "变量" -#: ../app/views/report/_widget_form_rss.html.haml:64 -msgid "Enter URL Manually" -msgstr "手动输入 URL" +msgid "Variables & Default Values" +msgstr "" -#: ../app/views/report/_widget_list.html.haml:4 -#: ../app/views/report/_widget_list.html.haml:11 -msgid "No Widgets available." -msgstr "没有可用的 Widget。" +msgid "Vendor" +msgstr "厂商" -#: ../app/views/report/_widget_show.html.haml:71 -msgid "Current Status" -msgstr "当前状态" +msgid "Verbosity" +msgstr "" -#: ../app/views/report/_widget_show.html.haml:139 -msgid "Report no longer exists" -msgstr "报表不再存在" +msgid "Verify" +msgstr "检验" -#: ../app/views/report/_widget_show.html.haml:160 -msgid "Chart no longer exists" -msgstr "图表不再存在" +msgid "Verify %{password_label}" +msgstr "检验 %{password_label}" -#: ../app/views/report/_widget_show.html.haml:196 -msgid "RSS Feed no longer exists" -msgstr "RSS Feed 不再存在" +msgid "Verify Password" +msgstr "检验密码" -#: ../app/views/report/_widget_show.html.haml:218 -msgid "Shortcuts" -msgstr "快捷键" +msgid "Verify Peer Certificate" +msgstr "检验对等证书" -#: ../app/views/report/_widget_show.html.haml:256 -msgid "Column %{index}" -msgstr "列 %{index}" +msgid "Verify TLS Certificates" +msgstr "" -#: ../app/views/report/_widget_show.html.haml:314 -msgid "No timer is attached to this Widget, its contents will not be updated." -msgstr "这个 Widget 没有附加定时器,它的内容不会被更新。" +msgid "Version" +msgstr "版本" -#: ../app/views/report/_widget_show.html.haml:316 -msgid "Edit this Widget to configure a timer." -msgstr "编辑这个 Widget 以配置定时器。" +msgid "Version / Build" +msgstr "版本 / 构建" -#: ../app/views/security_group/_main.html.haml:20 -msgid "Direction" -msgstr "方向" +msgid "View %{name} Folder" +msgstr "查看 %{name} 文件夹" -#: ../app/views/security_group/_main.html.haml:20 -msgid "End Port" -msgstr "端点" +msgid "View '%{name}' Cluster" +msgstr "查看 '%{name}' 集群" -#: ../app/views/security_group/_main.html.haml:20 -msgid "Host Protocol" -msgstr "主机协议" +msgid "View '%{name}' Folder" +msgstr "查看 '%{name}' 文件夹" -#: ../app/views/security_group/_main.html.haml:20 -msgid "Network Protocol" -msgstr "网络协议" +msgid "View Analysis Profiles" +msgstr "查看 Analysis 配置集" -#: ../app/views/service/_svcs_show.html.haml:18 -msgid "Totals for Service VMs" -msgstr "服务虚拟机的总数" +msgid "View Compute Rates" +msgstr "查看计算费率" -#: ../app/views/shared/_file_chooser.html.haml:9 -msgid "Choose file" -msgstr "选择文件" +msgid "View Condition" +msgstr "查看条件" -#: ../app/views/shared/_topology_header.html.haml:9 -#: ../app/views/shared/_topology_header_toolbar.html.haml:7 -msgid "Display Names" -msgstr "显示名称" +msgid "View Examples (read only)' Folder" +msgstr "查看 Examples(只读)文件夹" -#: ../app/views/shared/buttons/_ab_form.html.haml:7 -msgid "Paste object details for use in a Button." -msgstr "在 Button 里使用的 Paste 对象的细节" +msgid "View Graph" +msgstr "" -#: ../app/views/shared/buttons/_ab_form.html.haml:18 -msgid "" -"Paste is not available, no object information has been copied from the Simulat" -"ion screen" -msgstr "Paste 不可用,没有从 Simulation 屏幕复制对象信息" +msgid "View Groups" +msgstr "查看组" -#: ../app/views/shared/buttons/_ab_form.html.haml:36 -#: ../app/views/shared/buttons/_ab_list.html.haml:134 -#: ../app/views/shared/buttons/_ab_show.html.haml:15 -msgid "Button Text" -msgstr "按钮文本" +msgid "View Instances" +msgstr "查看实例" -#: ../app/views/shared/buttons/_ab_form.html.haml:55 -#: ../app/views/shared/buttons/_ab_list.html.haml:146 -#: ../app/views/shared/buttons/_ab_show.html.haml:27 -#: ../app/views/shared/buttons/_group_form.html.haml:36 -msgid "Display on Button" -msgstr "Display on Button" +msgid "View LDAP Regions" +msgstr "查看 LDAP 区域" -#: ../app/views/shared/buttons/_ab_form.html.haml:69 -#: ../app/views/shared/buttons/_ab_list.html.haml:154 -#: ../app/views/shared/buttons/_ab_show.html.haml:35 -msgid "Button Hover Text" -msgstr "按钮悬停文本" +msgid "View Parent Tenant" +msgstr "查看父租户" -#: ../app/views/shared/buttons/_ab_form.html.haml:85 -msgid "Button Image" -msgstr "按钮图像" +msgid "View Policy Simulation for the selected Templates" +msgstr "查看所选模板的策略模拟" -#: ../app/views/shared/buttons/_ab_form.html.haml:90 -#: ../app/views/shared/buttons/_group_form.html.haml:73 -msgid "No Image" -msgstr "没有镜像" +msgid "View Policy Simulation for the selected items" +msgstr "查看所选项的策略模拟" -#: ../app/views/shared/buttons/_ab_form.html.haml:105 -msgid "" -msgstr "<无>" +msgid "View Policy Simulation for this Image" +msgstr "查看这个镜像的策略模拟" -#: ../app/views/shared/buttons/_ab_form.html.haml:116 -#: ../app/views/shared/buttons/_ab_show.html.haml:74 -msgid "Open URL" -msgstr "" +msgid "View Policy Simulation for this Instance" +msgstr "查看这个实例的策略模拟" -#: ../app/views/shared/buttons/_ab_list.html.haml:32 -msgid "No Items found." -msgstr "未找到项目。" +msgid "View Policy Simulation for this Template" +msgstr "查看这个模板的策略模拟" -#: ../app/views/shared/buttons/_ab_list.html.haml:56 -#: ../app/views/shared/buttons/_ab_list.html.haml:198 -msgid "Hover Text" -msgstr "悬停文本" +msgid "View Policy Simulation for this VM" +msgstr "查看这个虚拟机的策略模拟" -#: ../app/views/shared/buttons/_ab_list.html.haml:167 -#: ../app/views/shared/buttons/_ab_show.html.haml:48 -msgid "Image" -msgstr "镜像" +msgid "View Roles" +msgstr "查看角色" -#: ../app/views/shared/buttons/_ab_list.html.haml:180 -msgid "No Buttons found." -msgstr "未找到按钮。" +msgid "View SOP" +msgstr "" -#: ../app/views/shared/buttons/_ab_show.html.haml:98 -msgid "System/Process/" -msgstr "系统/进程/" +msgid "View Schedules" +msgstr "查看时间表" -#: ../app/views/shared/buttons/_ab_show.html.haml:181 -msgid "No Attribute/Value Pairs found." -msgstr "没有找到属性/值对" +msgid "View Storage Rates" +msgstr "查看存储费率" -#: ../app/views/shared/buttons/_ab_show.html.haml:214 -msgid "By Role" -msgstr "按角色" +msgid "View Tenants" +msgstr "查看租户" -#: ../app/views/shared/buttons/_ab_show.html.haml:214 -msgid "To All" -msgstr "所有人" +msgid "View This Alert" +msgstr "查看这个警告" -#: ../app/views/shared/buttons/_column_lists.html.haml:39 -msgid "Move selected fields right" -msgstr "右移所选的字段" +msgid "View Users" +msgstr "查看用户" -#: ../app/views/shared/buttons/_column_lists.html.haml:55 -msgid "Move selected fields left" -msgstr "左移所选的字段" +msgid "View Zones" +msgstr "查看区" -#: ../app/views/shared/buttons/_column_lists.html.haml:83 -msgid "Move selected fields to top" -msgstr "移动所选的字段至顶部" +msgid "View the %{title} Guide" +msgstr "查看 %{title} 向导" -#: ../app/views/shared/buttons/_column_lists.html.haml:131 -msgid "Move selected fields to bottom" -msgstr "移动所选的字段至底部" +msgid "View the table" +msgstr "查看表" -#: ../app/views/shared/buttons/_group_form.html.haml:17 -msgid "Button Group Text" -msgstr "按钮组文本" +msgid "View this %{model} Policy" +msgstr "查看这个 %{model} 策略" -#: ../app/views/shared/buttons/_group_form.html.haml:50 -msgid "Button Group Hover Text" -msgstr "按钮组悬停文本" +msgid "View this Action" +msgstr "查看这个动作" -#: ../app/views/shared/buttons/_group_form.html.haml:66 -msgid "Button Group Image" -msgstr "按钮组图像" +msgid "View this Alert" +msgstr "查看这个警告" -#: ../app/views/shared/buttons/_group_form.html.haml:91 -msgid "Assign Buttons" -msgstr "分配按钮" +msgid "View this Alert Profile" +msgstr "查看这个警告配置集" -#: ../app/views/shared/buttons/_group_order_form.html.haml:17 -msgid "Button Group Order:" -msgstr "按钮组顺序:" +msgid "View this Condition" +msgstr "查看这个条件" -#: ../app/views/shared/summary/_textual_listview.html.haml:30 -msgid "View the table" -msgstr "查看表" +msgid "View this Event" +msgstr "查看这个事件" -#: ../app/views/shared/views/_ownership.html.haml:11 -msgid "Changes" -msgstr "修改" +msgid "View this Event Action" +msgstr "查看这个 Event 动作" -#: ../app/views/shared/views/_ownership.html.haml:20 -msgid "Select an Owner:" -msgstr "选择所有者:" +msgid "View this Group" +msgstr "查看这个组" -#: ../app/views/shared/views/_ownership.html.haml:26 -#: ../app/views/shared/views/_ownership.html.haml:51 -msgid "Don't change" -msgstr "请勿修改" +msgid "View this ISO Image" +msgstr "查看这个 ISO 镜像" -#: ../app/views/shared/views/_ownership.html.haml:26 -#: ../app/views/shared/views/_ownership.html.haml:28 -msgid "No Owner" -msgstr "没有所有者" +msgid "View this MiqServer" +msgstr "查看这个 MiqServer" -#: ../app/views/shared/views/_ownership.html.haml:45 -msgid "Select a Group:" -msgstr "选择组:" +msgid "View this Orchestration Template in Catalogs" +msgstr "在目录中查看编配模版" -#: ../app/views/shared/views/_ownership.html.haml:69 -msgid "Affected Items" -msgstr "受影响的项" +msgid "View this PXE Image" +msgstr "查看这个 PXE 镜像" -#: ../app/views/shared/views/_prov_dialog.html.haml:37 -msgid "Select" -msgstr "选择" +msgid "View this Policy Event" +msgstr "查看这个 Policy 事件" -#: ../app/views/shared/views/_prov_dialog.html.haml:37 -msgid "Selected VM" -msgstr "选择的虚拟机" +msgid "View this Profile" +msgstr "查看这个配置集" -#: ../app/views/shared/views/_prov_dialog.html.haml:56 -msgid "ISO" -msgstr "ISO" +msgid "View this Project" +msgstr "查看这个项目" -#: ../app/views/shared/views/_prov_dialog.html.haml:64 -msgid "Number of Instances" -msgstr "实例的数量" +msgid "View this Report" +msgstr "查看这个报表" -#: ../app/views/shared/views/_prov_dialog.html.haml:64 -msgid "Number of VMs" -msgstr "虚拟机的数量" +msgid "View this Role" +msgstr "查看这个角色" -#: ../app/views/shared/views/_prov_dialog.html.haml:73 -#: ../app/views/shared/views/_prov_dialog.html.haml:284 -msgid "Naming" -msgstr "命名" +msgid "View this Schedule" +msgstr "查看这个时间线" -#: ../app/views/shared/views/_prov_dialog.html.haml:126 -msgid "Folder" -msgstr "文件夹" +msgid "View this Tenant" +msgstr "查看这个租户" -#: ../app/views/shared/views/_prov_dialog.html.haml:152 -msgid "Placement - Options" -msgstr "位置 - 选项" +msgid "View this User" +msgstr "查看这个用户" -#: ../app/views/shared/views/_prov_dialog.html.haml:163 -msgid "Hardware" -msgstr "硬件" +msgid "View this Widget" +msgstr "查看这个 Widget" -#: ../app/views/shared/views/_prov_dialog.html.haml:173 -msgid "VM Limits" -msgstr "虚拟机限制" +msgid "View this Windows Image" +msgstr "查看这个 Windows 镜像" -#: ../app/views/shared/views/_prov_dialog.html.haml:181 -msgid "VM Reservations" -msgstr "虚拟机保留" +msgid "View this Zone" +msgstr "查看这个区" -#: ../app/views/shared/views/_prov_dialog.html.haml:197 -msgid "Network Adapter Information" -msgstr "网络适配器信息" +msgid "View this Zone's settings" +msgstr "查看这个区的设置" -#: ../app/views/shared/views/_prov_dialog.html.haml:207 -msgid "Basic Options" -msgstr "基本选项" +msgid "View this item" +msgstr "查看这个项" -#: ../app/views/shared/views/_prov_dialog.html.haml:216 -#: ../app/views/shared/views/_prov_dialog.html.haml:293 -#: ../app/views/shared/views/_prov_dialog.html.haml:330 -msgid "Custom Specification" -msgstr "自定义规格" +msgid "Virtual Machine" +msgstr "虚拟机器" -#: ../app/views/shared/views/_prov_dialog.html.haml:225 -msgid "Unattended GUI" -msgstr "无人值守的 GUI" +msgid "Virtual Machines" +msgstr "虚拟机" -#: ../app/views/shared/views/_prov_dialog.html.haml:233 -msgid "Identification" -msgstr "标识" +msgid "Virtual Private Cloud" +msgstr "虚拟私有云" -#: ../app/views/shared/views/_prov_dialog.html.haml:242 -msgid "Domain Information" -msgstr "域信息" +msgid "Virtualization Type" +msgstr "虚拟化类型" -#: ../app/views/shared/views/_prov_dialog.html.haml:251 -msgid "Workgroup Information" -msgstr "工作组信息" +msgid "Visibility" +msgstr "可视性" -#: ../app/views/shared/views/_prov_dialog.html.haml:259 -msgid "User Data" -msgstr "用户数据" +msgid "Visible" +msgstr "可见" -#: ../app/views/shared/views/_prov_dialog.html.haml:267 -#: ../app/views/shared/views/_prov_dialog.html.haml:301 -msgid "Windows Options" -msgstr "Windows 选项" +msgid "Visual" +msgstr "可视化" -#: ../app/views/shared/views/_prov_dialog.html.haml:275 -msgid "Server License" -msgstr "服务器许可证" +msgid "Vm" +msgstr "Vm" -#: ../app/views/shared/views/_prov_dialog.html.haml:310 -msgid "Upload File" -msgstr "上传文件" +msgid "Vm Compliance Policies" +msgstr "Vm 遵循策略" -#: ../app/views/shared/views/_prov_dialog.html.haml:319 -msgid "Uploaded File '%{filename}'" -msgstr "上传的文件 '%{filename}'" +msgid "Vm Control Policies" +msgstr "Vm 控制策略" -#: ../app/views/shared/views/_prov_dialog.html.haml:356 -msgid "WINS Server" -msgstr "WINS 服务器" +msgid "Volume" +msgstr "卷" -#: ../app/views/shared/views/_prov_dialog.html.haml:416 -msgid "Lifespan" -msgstr "有效期" +msgid "Volume Backups" +msgstr "" -#: ../app/views/shared/views/_retire.html.haml:9 -msgid "Set/Remove Retirement Date" -msgstr "设置/删除 Ritrement 日期" +msgid "Volume Claim" +msgstr "卷声明" -#: ../app/views/shared/views/_retire.html.haml:35 -msgid "Set to blank" -msgstr "设置为空" +msgid "Volume ID" +msgstr "卷 ID" -#: ../app/views/shared/views/_retire.html.haml:44 -msgid "Retirement Warning" -msgstr "退订警告" +msgid "Volume Name" +msgstr "卷名称" -#: ../app/views/shared/views/_retire.html.haml:49 -msgid "1 Week before retirement" -msgstr "在退订前一周" +msgid "Volume Path" +msgstr "卷路径" -#: ../app/views/shared/views/_retire.html.haml:49 -msgid "2 Weeks before retirement" -msgstr "在退订前两周" +msgid "Volume Snapshots" +msgstr "卷快照" -#: ../app/views/shared/views/_retire.html.haml:49 -msgid "30 Days before retirement" -msgstr "在退出前 30 天" +msgid "Volumes" +msgstr "卷" -#: ../app/views/shared/views/_retire.html.haml:69 -msgid "* Saving a blank date will remove all retirement dates" -msgstr "* 保存空日期将删除所有过时的日期" +msgid "WINS Server" +msgstr "WINS 服务器" -#: ../app/views/shared/views/_retire.html.haml:77 -msgid "New setting will affect Service" -msgid_plural "New setting will affect Services" -msgstr[0] "新的设置将影响服务" +msgid "Waiting to Start" +msgstr "等待启动" -#: ../app/views/shared/views/_retire.html.haml:80 -msgid "New setting will affect Orchestration Stack" -msgid_plural "New setting will affect Orchestration Stacks" -msgstr[0] "新的设置将影响编配栈" +msgid "Warn" +msgstr "警告" -#: ../app/views/shared/views/_retire.html.haml:84 -msgid "New setting will affect VM" -msgid_plural "New setting will affect VMs" -msgstr[0] "新的设置将影响虚拟机" +msgid "Warning" +msgstr "" -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:105 -msgid "Aggregated Node Utilization" -msgstr "总计节点利用" +msgid "Warning Count" +msgstr "" -#: ../app/views/shared/views/_show_containers_dashboard.html.haml:214 -msgid "Node Utilization" -msgstr "节点利用率" +msgid "Warning: Enabling this option may cause performance issues in large environments (i.e. thousands of VMs)" +msgstr "警告:启用这个选项可能会造成大环境中的性能问题(比如说前台 VM)" -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:72 -msgid "Global Utilization" -msgstr "全局利用率" +msgid "Warning: Finished tasks will be permanently removed from the database!" +msgstr "警告: 完成的任务将永久从数据库中删除!" -#: ../app/views/shared/views/_show_ems_infra_dashboard.html.haml:129 -msgid "Cluster Utilization" -msgstr " 集群利用率" +msgid "Warning: Selected node will be restarted, do you want to continue?" +msgstr "警告: 所选的节点将重启,您确定要继续吗?" -#: ../app/views/shared/views/ems_common/_form.html.haml:100 -msgid "Openstack Infra provider" -msgstr "Openstack Infra 供应商" +msgid "Warning: Server will be restarted, do you want to continue?" +msgstr "警告: 服务器将重启,您确定要继续吗?" -#: ../app/views/shared/views/ems_common/_form.html.haml:147 -msgid "Host Default VNC Port Range" -msgstr "主机的默认 VNC 端口范围" +msgid "Warning: Tasks that are older than selected task will be permanently removed from the database!" +msgstr "警告: 比所选任务更老的任务将永久从数据库中删除!" -#: ../app/views/shared/views/ems_common/_form.html.haml:180 -msgid "Add this %{provider}" -msgstr "添加这个 %{provider}" +msgid "Warning: The selected Analysis Profiles and ALL of their components will be permanently removed!" +msgstr "警告: 所选的 Analysis 配置集及其全部组件都将被永久从 VMDB 中删除!" -#: ../app/views/shared/views/ems_common/_form.html.haml:188 -msgid "Add of new %{provider} was cancelled by the user" -msgstr "用户取消了添加新的 %{provider}" +msgid "Warning: The selected Block Storage Managers and ALL of their components will be permanently removed!" +msgstr "" -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:124 -msgid "Tenant ID" -msgstr "租户 ID" +msgid "Warning: The selected Button Group will be permanently removed!" +msgstr "警告: 所选的 Button 组都将被永久删除!" -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:276 -msgid "Openstack Infra Provider" -msgstr "Openstack Infra 供应商" +msgid "Warning: The selected Catalogs will be permanently removed!" +msgstr "警告: 所选类别将被永久删除!" -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:281 -msgid "blank" -msgstr "空的" +msgid "Warning: The selected Chargeback Rate will be permanently removed!" +msgstr "警告: 所选的费率将被永久删除!" -#: ../app/views/shared/views/ems_common/angular/_form.html.haml:326 -msgid "Tenant Mapping Enabled" -msgstr "已启用租户映射" +msgid "Warning: The selected Cloud Providers and ALL of their components will be permanently removed from the Virtual Management Database. Are you sure you want to remove the selected Cloud Providers?" +msgstr "警告: 所选的云供应商以及它们的所有组件都将被永久从 Virtual Management 数据库中删除。您确定要删除所选的云供应商吗?" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:7 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:73 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:190 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:283 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:378 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:7 -msgid "Master" -msgstr "主" +msgid "Warning: The selected Cloud Providers and ALL related components will be permanently removed!" +msgstr "警告: 所选的云供应商及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-add-roles-popover.html.haml:42 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:108 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:240 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:348 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:411 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:56 -msgid "Etcd" -msgstr "Etcd" +msgid "Warning: The selected Cloud Tenants will be permanently deleted!" +msgstr "警告: 所选云租户及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-mode-review.html.haml:9 -msgid "Authentication Type:" -msgstr "验证类型:" +msgid "Warning: The selected Cloud Volume and ALL of their components will be removed!" +msgstr "警告: 所选的云卷及其全部组件都将被删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:11 -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:65 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-review.html.haml:19 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review.html.haml:19 -msgid "Username:" -msgstr "用户名:" +msgid "Warning: The selected Containers Providers and ALL of their components will be permanently removed!" +msgstr "警告: 所选的容器供应商及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:21 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-review.html.haml:29 -msgid "Password:" -msgstr "密码:" +msgid "Warning: The selected Customization Templates will be permanently removed!" +msgstr "警告: 所选的定制模版将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:35 -msgid "ID:" -msgstr "ID:" +msgid "Warning: The selected Datastores and ALL of their components will be permanently removed!" +msgstr "警告: 所选的数据库及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:45 -msgid "Email:" -msgstr "电子邮件:" +msgid "Warning: The selected Datawarehouse Providers and ALL of their components will be permanently removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:55 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general-review.html.haml:9 -msgid "Name:" -msgstr "名称:" +msgid "Warning: The selected Dialog will be permanently removed from the Virtual Management Database!" +msgstr "警告: 所选的对话将被永久从 Virtual Management 数据库中删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:75 -msgid "BindDN:" -msgstr "BindDN:" +msgid "Warning: The selected Dialog will be permanently removed!" +msgstr "警告: 所选的对话框将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:85 -msgid "Bind Password:" -msgstr "绑定密码:" +msgid "Warning: The selected Host Aggregates will be permanently deleted!" +msgstr "警告: 所选主机集合及其全部组件都将被永久删除!" + +msgid "Warning: The selected ISO Datastores and ALL of their components will be permanently removed!" +msgstr "警告: 所选的 ISO 数据库及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:95 -msgid "CA:" -msgstr "CA:" +msgid "Warning: The selected Infrastructure Providers and ALL of their components will be permanently removed!" +msgstr "警告: 所选的基础架构供应商及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:105 -msgid "Insecure:" -msgstr "不安全:" +msgid "Warning: The selected Items and ALL of their components will be permanently removed!" +msgstr "警告: 所选的项及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:115 -msgid "URL:" -msgstr "URL:" +msgid "Warning: The selected Jobs and ALL of their components will be permanently removed!" +msgstr "警告: 所选的任务及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:128 -msgid "Challenge URL:" -msgstr "Challenge URL:" +msgid "Warning: The selected Key Pair and ALL of its components will be permanently removed!" +msgstr "警告: 所选的密钥对及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:138 -msgid "Login URL:" -msgstr "登录 URL:" +msgid "Warning: The selected Key Pairs and ALL of their components will be permanently removed!" +msgstr "警告: 所选的密钥对及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:148 -msgid "Client CA:" -msgstr "客户 CA:" +msgid "Warning: The selected Middleware Providers and ALL of their components will be permanently removed!" +msgstr "警告: 所选的中间件架构供应商及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:158 -msgid "Headers:" -msgstr "头部信息:" +msgid "Warning: The selected Network Providers and ALL of their components will be permanently removed!" +msgstr "警告: 所选的网络架构供应商及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:171 -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:224 -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:257 -msgid "Client ID:" -msgstr "客户 ID:" +msgid "Warning: The selected Object Storage Container and ALL related Objects will be permanently removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:181 -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:234 -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:267 -msgid "Client Secret:" -msgstr "客户秘密:" +msgid "Warning: The selected Object Storage Containers and ALL related Objects will be permanently removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:191 -msgid "Sub-claim:" -msgstr "Sub-claim:" +msgid "Warning: The selected Object Storage Managers and ALL of their components will be permanently removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:201 -msgid "Authorization-Endpoint:" -msgstr "Authorization-Endpoint:" +msgid "Warning: The selected Object Storage Object will be permanently removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:211 -msgid "Token-Endpoint:" -msgstr "Token-Endpoint:" +msgid "Warning: The selected Orchestration Stacks and ALL of their components will be permanently removed!" +msgstr "警告: 所选的编配栈及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-auth-settings-review.html.haml:244 -msgid "Hosted Domain:" -msgstr "托管的域:" +msgid "Warning: The selected PXE Servers and ALL of their components will be permanently removed!" +msgstr "警告: 所选的 PXE 服务器及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:2 -msgid "Authentication Type" -msgstr "验证类型" +msgid "Warning: The selected Provider and ALL of their components will be permanently removed!" +msgstr "警告: 所选的供应商及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:6 -msgid "Select authenticaton type" -msgstr "选择验证类型" +msgid "Warning: The selected Reports will be permanently removed from the database!" +msgstr "警告: 完成的报表将永久从数据库中删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:15 -msgid "Allow All" -msgstr "允许所有" +msgid "Warning: The selected Resource Pools and ALL of their components will be permanently removed!" +msgstr "警告: 所选的资源池及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:23 -msgid "HTPassword" -msgstr "HTPassword" +msgid "Warning: The selected Routers and ALL of their components will be removed!" +msgstr "警告: 所选路由器及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:39 -msgid "Request Header" -msgstr "请求头部信息" +msgid "Warning: The selected Saved Reports will be permanently removed from the database!" +msgstr "警告: 所选的已保存的报表将永久从数据库中删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:47 -msgid "OpenID Connect" -msgstr "OpenID 连接" +msgid "Warning: The selected Schedules and ALL of their components will be permanently removed!" +msgstr "警告: 所选的时间表及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:55 -msgid "Google" -msgstr "Google" +msgid "Warning: The selected Services and ALL of their components will be permanently removed!" +msgstr "警告: 所选的服务及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-mode.html.haml:63 -msgid "GitHub" -msgstr "GitHub" +msgid "Warning: The selected Storage Managers and ALL of their components will be permanently removed!" +msgstr "警告: 所选的存储管理者及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:5 -msgid "Authentication Details" -msgstr "验证细节" +msgid "Warning: The selected System Image Types will be permanently removed!" +msgstr "警告: 所选的系统镜像类型将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:50 -msgid "ID" -msgstr "ID" +msgid "Warning: The selected Templates and ALL of their components will be permanently removed!" +msgstr "警告: 所选的模版及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:57 -msgid "Email Address" -msgstr "电子邮件地址" +msgid "Warning: The selected Time Profiles will be permanently removed!" +msgstr "警告: 所选的 Time 配置集将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:75 -msgid "BindDN" -msgstr "BindDN" +msgid "Warning: The selected Volumes and ALL of their components will be permanently removed!" +msgstr "警告: 所选的卷及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:92 -msgid "CA" -msgstr "CA" +msgid "Warning: The selected items and ALL of their components will be permanently removed!" +msgstr "警告: 所选的项及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:107 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:165 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:24 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:24 -msgid "Browse" -msgstr "浏览" +msgid "Warning: The selected items and ALL of their components will be permanently removed!?" +msgstr "警告: 所选项目及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:116 -msgid "Insecure" -msgstr "不安全" +msgid "Warning: The selected task will be cancelled. Are you sure you want to cancel the task?" +msgstr "警告: 所选的任务将被取消。您确定要删除所选的任务吗?" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:122 -msgid "URL" -msgstr "URL" +msgid "Warning: The selected tasks will be permanently removed from the database!" +msgstr "警告: 所选的任务将永久从数据库中删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:131 -msgid "Challenge URL" -msgstr "Challenge URL" +msgid "Warning: This 'Run Once' timer is in the past and will never run as currently configured" +msgstr "警告:这个 'Run Once' 定时器已过时,无法作为当前配置运行。" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:138 -msgid "Login URL" -msgstr "登录 URL" +msgid "Warning: This Analysis Profile and ALL of its components will be permanently removed!" +msgstr "警告: 这个 Analysis 配置集及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:149 -msgid "Client CA" -msgstr "客户 CA" +msgid "Warning: This Button will be permanently removed from the Virtual Management Database!" +msgstr "警告: 这个按钮被永久从 Virtual Management 数据库中删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:174 -msgid "Headers" -msgstr "头部信息" +msgid "Warning: This Catalog Items and ALL of their components will be permanently removed!" +msgstr "警告: 这个目录项及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:191 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:228 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:252 -msgid "Client Secret" -msgstr "客户秘密" +msgid "Warning: This Catalog will be permanently removed!" +msgstr "警告: 这个项目将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:198 -msgid "Sub-claim" -msgstr "Sub-claim" +msgid "Warning: This Chargeback Rate will be permanently removed!" +msgstr "警告: 这个费率将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:204 -msgid "Authorization-Endpoint" -msgstr "Authorization-Endpoint" +msgid "Warning: This Cloud Network and ALL of its components will be removed!" +msgstr "警告: 这个云网络及其所有组件都将被删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:211 -msgid "Token-Endpoint" -msgstr "Token-Endpoint" +msgid "Warning: This Cloud Provider and ALL of its components will be permanently removed!" +msgstr "警告: 这个云供应商及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-auth-settings.html.haml:235 -msgid "Hosted Domain" -msgstr "托管的域" +msgid "Warning: This Cloud Subnet and ALL of its components will be removed!" +msgstr "警告: 这个云子网及其全部组件都将被删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:9 -msgid "Configure:" -msgstr "配置:" +msgid "Warning: This Cloud Volume and ALL of its components will be removed!" +msgstr "警告: 这个云卷及其全部组件都将被删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:20 -msgid "Configure Router" -msgstr "配置路由器" +msgid "Warning: This Containers Provider and ALL of its components will be permanently removed!" +msgstr "警告: 这个容器供应商及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:28 -msgid "Configure Registry" -msgstr "配置注册表" +msgid "Warning: This Customization Template will be permanently removed!" +msgstr "警告:这个定制模版将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:36 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:64 -msgid "Server:" -msgstr "服务器:" +msgid "Warning: This Dashboard and ALL of its components will be permanently removed!" +msgstr "警告: 这个仪表板及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:46 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:74 -msgid "Path:" -msgstr "路径:" +msgid "Warning: This Datastore and ALL of its components will be permanently removed!" +msgstr "警告: 这个数据存储区及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings-review.html.haml:56 -msgid "Configure Metrics" -msgstr "配置度量" +msgid "Warning: This Datawarehouse Provider and ALL of its components will be permanently removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:8 -msgid "Select items to configure" -msgstr "选择要配置的项" +msgid "Warning: This Dialog will be permanently removed from the Virtual Management Database!" +msgstr "警告: 这个对话将被永久从 Virtual Management 数据库中删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:19 -msgid "Standard NFS Server" -msgstr "标准的 NFS 服务器" +msgid "Warning: This Dialog will be permanently removed!" +msgstr "警告: 这个对话框将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:31 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:143 -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:187 -msgid "Router" -msgstr "路由器" +msgid "Warning: This Floating IP and ALL of its components will be removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-config-settings.html.haml:131 -msgid "Integrated NFS Server (POC only)" -msgstr "集成的 NFS 服务器(仅适用于 POC)" +msgid "Warning: This ISO Datastore and ALL of its components will be permanently removed!" +msgstr "警告: 这个 ISO 数据存储区及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:4 -msgid "CDN Channel" -msgstr "CDN 频道" +msgid "Warning: This Image and ALL of its components will be permanently removed!" +msgstr "警告: 这个镜像及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:8 -msgid "Specify CDN configuration" -msgstr "指定 CDN 配置" +msgid "Warning: This Infrastructure Provider and ALL of its components will be permanently removed!" +msgstr "警告: 这个基础架构供应商及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:19 -msgid "Enable CDN Channel" -msgstr "启用 CDN 频道" +msgid "Warning: This Instance and ALL of its components will be permanently removed!" +msgstr "警告: 这个实例及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:39 -msgid "SKU" -msgstr "SKU" +msgid "Warning: This Job and ALL of its components will be permanently removed!" +msgstr "警告: 这个任务及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-channel.html.haml:54 -msgid "RHN Satellite URL" -msgstr "RHN Satellite URL" +msgid "Warning: This Middleware Provider and ALL of its components will be permanently removed!" +msgstr "警告: 这个中间件供应商及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-review.html.haml:9 -msgid "CDN Channel:" -msgstr "CDN 频道:" +msgid "Warning: This Network Provider and ALL of its components will be permanently removed!" +msgstr "警告: 这个网络供应商及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-review.html.haml:39 -msgid "SKU:" -msgstr "SKU:" +msgid "Warning: This Orchestration Stack and ALL of its components will be permanently removed!" +msgstr "警告: 这个编配栈及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-cdn-review.html.haml:49 -msgid "RHN Satellite URL:" -msgstr "RHN Satellite URL:" +msgid "Warning: This PXE Server and ALL of its components will be permanently removed!" +msgstr "警告: 这个 PXE 服务器及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:5 -msgid "New VM Settings" -msgstr "新建虚拟机设置" +msgid "Warning: This Resource Pool and ALL of its components will be permanently removed!" +msgstr "警告: 这个资源池及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:9 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:5 -msgid "Master configuration" -msgstr "主配置" +msgid "Warning: This Router and ALL of its components will be removed!" +msgstr "警告:将删除这个路由器及其全部组件!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:14 -msgid "Number of Masters" -msgstr "主机数量" +msgid "Warning: This Saved Report and ALL of its components will be permanently removed!" +msgstr "警告: 这个已保存的报表及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:34 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:97 -msgid "Base Name" -msgstr "基础名称" +msgid "Warning: This Schedule and ALL of its components will be permanently removed!" +msgstr "警告: 这个进度表及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:72 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:35 -msgid "Node configuration" -msgstr "节点配置" +msgid "Warning: This Security Group and ALL of its components will be removed!" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:77 -msgid "Number of Nodes" -msgstr "节点数量" +msgid "Warning: This Service and ALL of their components will be permanently removed!" +msgstr "警告: 这个服务及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-create-vms.html.haml:111 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:56 -msgid "Same as Master configuration" -msgstr "与主配置相同" +msgid "Warning: This Storage Manager and ALL of its components will be permanently removed!" +msgstr "警告: 这个存储管理者及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:9 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:9 -msgid "Private SSH Key" -msgstr "私有 SSH 密钥" +msgid "Warning: This System Image Type will be permanently removed!" +msgstr "警告: 这个系统镜像类型将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:42 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:42 -msgid "" -"Add tags individually for each VM or select multiple rows and edit tags as a g" -"roup." -msgstr "为每个虚拟机单独添加标签或选择多行并分组进行编辑。" +msgid "Warning: This Template and ALL of its components will be permanently removed!" +msgstr "警告: 这个模板及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:56 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:64 -msgid "Edit Roles" -msgstr "编辑角色" +msgid "Warning: This Virtual Machine and ALL of its components will be permanently removed!" +msgstr "警告: 这个虚拟机及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:67 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:355 -msgid "Select All" -msgstr "选择所有" +msgid "Warning: This Volume and ALL of its components will be permanently removed!" +msgstr "警告: 这个卷及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:148 -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:154 -msgid "VM/Instance Name" -msgstr "虚拟机/实例名称" +msgid "Warning: This Widget and ALL of its components will be permanently removed!" +msgstr "警告: 这个 Widget 及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-existing-vms.html.haml:288 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:12 -msgid "Masters" -msgstr "主" +msgid "Warning: This item and ALL of its components will be permanently removed!" +msgstr "警告: 这个项及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:21 -msgid "OpenShift Origin" -msgstr "OpenShift Origin" +msgid "Warning: This item and ALL of its components will be permanently removed!?" +msgstr "警告: 这个项及其全部组件都将被永久删除!" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:29 -msgid "OpenShift Enterprise" -msgstr "OpenShift Enterprise" +msgid "Wasted" +msgstr "已浪费的" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:37 -msgid "Provider to provision on" -msgstr "供应商提供" +msgid "Web Console" +msgstr "" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:48 -msgid "Use existing VMs from an existing provider" -msgstr "使用现有供应商里现有的虚拟机" +msgid "Web Service Workers" +msgstr "Web 服务工作节点" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-general.html.haml:62 -msgid "Create new VMs on provider" -msgstr "创建供应商上新的虚拟机" +msgid "Web Services" +msgstr "Web 服务" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:55 -msgid "Add VM" -msgstr "添加虚拟机" +msgid "Web Services Listen Port must be numeric" +msgstr "Web 服务监听的端口号需要是数字" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:318 -msgid "Add Host" -msgstr "添加主机" +msgid "Web Services Password and Verify Password fields do not match" +msgstr "Web 服务的密码和验证密码不匹配" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:324 -msgid "Enter a name or IP address" -msgstr "输入名称或 IP 地址" +msgid "Websocket Workers" +msgstr "Websocket 工作节点" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:329 -msgid "Private Host Name" -msgstr "私有主机名" +msgid "Wednesday" +msgstr "周三" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:335 -msgid "Public Host Name" -msgstr "公共主机名" +msgid "Week" +msgstr "周" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-details-no-provider.html.haml:344 -msgid "Specify role(s) for this host" -msgstr "指定这个主机的角色" +msgid "Weekly" +msgstr "每周" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:16 -msgid "Masters Base Name:" -msgstr "主基础名称:" +msgid "Weeks" +msgstr "周" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:26 -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:65 -msgid "Template:" -msgstr "模板:" +msgid "What to Evaluate" +msgstr "要评估的内容" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-create-vms.html.haml:44 -msgid "Nodes Base Name:" -msgstr "节点基础名称:" +msgid "Widget content generation error: %{message}" +msgstr "Widget 内容产生错误: %{message}" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:61 -msgid "Etcds" -msgstr "Etcds" +msgid "Widget has to be assigned to a dashboard to generate content" +msgstr "Widget 必须被分配给仪表板来产生内容" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-master-nodes-review-tables.html.haml:74 -msgid "Infrastructures" -msgstr "基础架构" +msgid "Widget import cancelled" +msgstr "Widget 导入已取消" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-masters-nodes.html.haml:4 -msgid "Masters & Nodes" -msgstr "主 & 节点" +msgid "Widget name" +msgstr "Widget 名称" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-progress.html.haml:12 -msgid "Deployment in Progress" -msgstr "部署进行中" +msgid "Widgets" +msgstr "Widget" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-progress.html.haml:17 -msgid "" -"Your deployment %{name} is currently in progress. Updates will be posted here " -"shortly." -msgstr "您的部署 %{name} 正在进行。稍后更新将在这里发布。" +msgid "Widgets imported successfully" +msgstr "Widget 已成功导入" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-progress.html.haml:22 -msgid "" -"If you choose to close this wizard, deployment status can be monitored under r" -"equests." -msgstr "如果选择关闭这个向导,则可根据要求监控部署状态。" +msgid "Win32 Service" +msgid_plural "Win32 Services" +msgstr[0] "Win32 服务" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-progress.html.haml:32 -msgid "Deployment %{name} was sucessful." -msgstr "部署 %{name} 已成功。" +msgid "Win32 Services" +msgstr "Win32 服务" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-progress.html.haml:39 -msgid "Failed to deploy %{name}. Error:" -msgstr "部署 %{name} 失败。错误为:" +msgid "Windows Boot Env" +msgstr "Windows 引导环境" -#: -#: ../app/views/static/deploy_containers_provider/deploy-provider-review-summary.html.haml:40 -msgid "Loading summary..." -msgstr "正在加载概述......" +msgid "Windows Boot Environment" +msgstr "Windows 引导环境" -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:56 -msgid "Key Pair" -msgstr "密钥对" +msgid "Windows Images" +msgstr "Windows 镜像" -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:103 -msgid "Flavor" -msgstr "Flavor" +msgid "Windows Images Directory" +msgstr "Windows 的镜像目录" -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:127 -msgid "Cloud Network" -msgstr "云网络" +msgid "Windows Options" +msgstr "Windows 选项" -#: ../app/views/static/ems_cloud/arbitration_profile_edit.html.haml:175 -msgid "Security Group" -msgstr "安全组" +msgid "Within Above Field, Sort By" +msgstr "上面的字段的排序依据:" -#: ../app/views/static/notification_drawer/notification-body.html.haml:50 -#: ../app/views/static/notification_drawer/notification-body.html.haml:100 -msgid "% Complete" -msgstr "% 完成" +msgid "Worker on Server '%{name}' restarted" +msgstr "服务器 '%{name}' 上的工作节点重启" -#: ../app/views/static/notification_drawer/notification-body.html.haml:83 -msgid "Started:" -msgstr "已启动:" +msgid "Workers" +msgstr "工作节点" -#: ../app/views/static/notification_drawer/notification-body.html.haml:110 -msgid "Completed:" -msgstr "已完成的:" +msgid "Workgroup Information" +msgstr "工作组信息" -#: ../app/views/static/notification_drawer/notification-footer.html.haml:11 -msgid "Mark All Read" -msgstr "全部标记为已读" +msgid "Workloads" +msgstr "工作负载" -#: ../app/views/static/notification_drawer/notification-footer.html.haml:24 -msgid "Clear All" -msgstr "清除所有" +msgid "Wrap this expression element with a NOT" +msgstr "用 NOT 包裹这个表达式元素" -#: ../app/views/static/wizard.html.haml:21 -msgid "Initialization in progress..." -msgstr "正在进行初始化......" +msgid "XA Datasource:" +msgstr "" -#: ../app/views/storage/_main.html.haml:9 -msgid "Information for Registered VMs" -msgstr "已注册的虚拟机的信息" +msgid "XA Properties" +msgstr "" -#: ../app/views/storage/_storage_pod_folders.html.haml:10 -msgid "View '%{name}' Cluster" -msgstr "查看 '%{name}' 集群" +msgid "XML View" +msgstr "XML 视图" -#: ../app/views/storage_manager/_form.html.haml:240 -msgid "Add this Storage Manager" -msgstr "添加这个存储管理者" +msgid "Yellow" +msgstr "黄色" -#: ../app/views/support/show.html.haml:19 -msgid "View the %{title} Guide" -msgstr "查看 %{title} 向导" +msgid "Yellow Background" +msgstr "黄色背景" -#: ../app/views/support/show.html.haml:31 -msgid "%{title} Guide" -msgstr "%{title} 向导" +msgid "Yellow Text" +msgstr "黄色文本" -#: ../app/views/support/show.html.haml:45 -msgid "For questions or problem reporting, visit " -msgstr "如果有疑问或报告问题,请访问:" +msgid "Yes" +msgstr "是" -#: ../app/views/vm_cloud/_main.html.haml:17 -#: ../app/views/vm_common/_main.html.haml:16 -msgid "VMsafe" -msgstr "VMsafe" +msgid "Yes; VM will run at most 24 hours." +msgstr "是;虚拟机将最多运行 24 小时。" -#: ../app/views/vm_cloud/_main.html.haml:28 -#: ../app/views/vm_common/_main.html.haml:29 -msgid "Power Management" -msgstr "电源管理" +msgid "Yesterday" +msgstr "昨天" -#: ../app/views/vm_common/_add_to_service.html.haml:22 -msgid "Service Selection" -msgstr "服务选择" +msgid "You are about to enter fullscreen mode. Press Ctl+Alt to return to windowed mode." +msgstr "您将进入全屏模式。按 Ctl+Alt 返回窗口模式。" -#: ../app/views/vm_common/_add_to_service.html.haml:49 -msgid "Add VM to the selected Service" -msgstr "添加虚拟机到所选的服务" +msgid "You are not authorized to view %{model_name} '%{resource_name}'" +msgstr "您没有权力查看 %{model_name} '%{resource_name}'" -#: ../app/views/vm_common/_associate_floating_ip.html.haml:7 -msgid "Associate Floating IP" -msgstr "关联浮动 IP" +msgid "You can only specify one Storage Node" +msgstr "您只可以指定一个存储节点" -#: ../app/views/vm_common/_associate_floating_ip.html.haml:16 -#: ../app/views/vm_common/_disassociate_floating_ip.html.haml:16 -msgid "Floating IP" -msgstr "浮动 IP" +msgid "You can specify at most one DNS Node" +msgstr "您可以指定最多一个 DNS 节点" -#: ../app/views/vm_common/_attach.html.haml:16 -#: ../app/views/vm_common/_detach.html.haml:16 -msgid "Volume" -msgstr "卷" +msgid "You must select at least one Node" +msgstr "您必须选择至少一个节点" -#: ../app/views/vm_common/_config.html.haml:74 -#: ../app/views/vm_common/_config.html.haml:230 -msgid "Account Policies" -msgstr "帐号政策" +msgid "You must select at least one namespace to import" +msgstr "您必须选择至少一个命名空间来导入" -#: ../app/views/vm_common/_config.html.haml:168 -msgid "Network Type" -msgstr "网络类型" +msgid "You must select one Storage Node when using Integrated NFS storage" +msgstr "在使用集成的 NFS 存储时您必须选择一个存储节点" -#: ../app/views/vm_common/_config.html.haml:196 -msgid "Network Adapter" -msgstr "网络适配器" +msgid "You need two or more domains to edit domain priorities" +msgstr "" -#: ../app/views/vm_common/_config.html.haml:202 -msgid "DHCP Enabled" -msgstr "已启用 DHCP" +msgid "You will need the following to register:" +msgstr "您将需要下列信息来注册:" -#: ../app/views/vm_common/_config.html.haml:202 -msgid "DHCP Server" -msgstr "DHCP 服务器" +msgid "Your Red Hat Account login or Red Hat Network Satellite login" +msgstr "您的 Red Hat 帐号或 Red Hat Network Satellite 帐号" -#: ../app/views/vm_common/_config.html.haml:202 -msgid "DNS Server" -msgstr "DNS 服务器" +msgid "Your deployment %{name} is currently in progress. Updates will be posted here shortly." +msgstr "您的部署 %{name} 正在进行。稍后更新将在这里发布。" -#: ../app/views/vm_common/_config.html.haml:202 -msgid "Default Gateway" -msgstr "默认网关" +msgid "Zone" +msgstr "区" -#: ../app/views/vm_common/_config.html.haml:202 -msgid "IPv6 Address" -msgstr "IPv6 地址" +msgid "Zone Information" +msgstr "区信息" -#: ../app/views/vm_common/_config.html.haml:202 -msgid "Subnet Mask" -msgstr "子网掩码" +msgid "Zone name is required" +msgstr "需要区名称" -#: ../app/views/vm_common/_disassociate_floating_ip.html.haml:7 -msgid "Disassociate Floating IP" -msgstr "取消浮动 IP 的关联" +msgid "Zone*" +msgstr "区*" -#: ../app/views/vm_common/_disks.html.haml:7 -msgid "Device Type" -msgstr "设备类型" +msgid "Zone:" +msgstr "区:" -#: ../app/views/vm_common/_disks.html.haml:13 -msgid "Partitions Aligned" -msgstr "对齐的分区" +msgid "Zones" +msgstr "区" -#: ../app/views/vm_common/_disks.html.haml:15 -msgid "Provisioned Size" -msgstr "置备的大小" +msgid "Zoom in on this chart" +msgstr "放大显示这个图表" -#: ../app/views/vm_common/_disks.html.haml:17 -msgid "Used Size" -msgstr "已用大小" +msgid "[%{name}] Policy Profile %{mode} (db:[%{db}]" +msgstr "[%{name}] 策略配置集 %{mode} (db:[%{db}]" -#: ../app/views/vm_common/_disks.html.haml:19 -msgid "Percent Used of Provisioned Size" -msgstr "设置大小的使用百分比" +msgid "[%{name}] Record added (" +msgstr "[%{name}] 记录被添加 (" -#: ../app/views/vm_common/_evacuate.html.haml:7 -msgid "Evacuate Host" -msgstr "撤除主机" +msgid "[%{name}] Record created (" +msgstr "[%{name}] 记录被创建 (" -#: ../app/views/vm_common/_evacuate.html.haml:16 -#: ../app/views/vm_common/_live_migrate.html.haml:16 -msgid "Auto-select Host?" -msgstr "自动选择主机?" +msgid "[%{name}] Record delete initiated" +msgstr "[%{name}] 记录删除被初始" -#: ../app/views/vm_common/_evacuate.html.haml:40 -msgid "On Shared Storage" -msgstr "在共享存储上" +msgid "[%{name}] Record deleted" +msgstr "[%{name}] 记录被删除" -#: ../app/views/vm_common/_evacuate.html.haml:55 -msgid "Admin Password" -msgstr "管理密码" +msgid "[%{name}] Record updated (" +msgstr "[%{name}] 记录被更新 (" -#: ../app/views/vm_common/_evacuate.html.haml:71 -#: ../app/views/vm_common/_live_migrate.html.haml:75 -msgid "Select Destination Host" -msgstr "选择目的地主机" +msgid "[New Box]" +msgstr "[New Box]" -#: ../app/views/vm_common/_evacuate.html.haml:80 -#: ../app/views/vm_common/_live_migrate.html.haml:84 -msgid "Destination Host" -msgstr "目的地主机" +msgid "[New Dialog]" +msgstr "[New Dialog]" -#: ../app/views/vm_common/_evm_relationship.html.haml:17 -msgid "Select Server:" -msgstr "选择服务器:" +msgid "[New Element]" +msgstr "[New Element]" -#: ../app/views/vm_common/_evm_relationship.html.haml:22 -msgid "Not a Server" -msgstr "不是服务器" +msgid "[New Tab]" +msgstr "[New Tab]" -#: ../app/views/vm_common/_form.html.haml:64 -msgid "Parent VM Selection" -msgstr "父虚拟机选择" +msgid "[Region: %{description} [%{region}]]" +msgstr "[Region: %{description} [%{region}]]" -#: ../app/views/vm_common/_form.html.haml:96 -msgid "Child VM Selection" -msgstr "子虚拟机选择" +msgid "active" +msgstr "激活的" -#: ../app/views/vm_common/_form.html.haml:102 -msgid "Child VMs:" -msgstr "子虚拟机:" +msgid "alerts" +msgstr "" + +msgid "ansible_tower" +msgstr "ansible_tower" -#: ../app/views/vm_common/_form.html.haml:106 -msgid "Available VMs:" -msgstr "可用的虚拟机:" +msgid "at" +msgstr "于" -#: ../app/views/vm_common/_form.html.haml:128 -msgid "Move selected VMs to right" -msgstr "右移所选的虚拟机" +msgid "available" +msgstr "可用的" -#: ../app/views/vm_common/_form.html.haml:139 -msgid "Move all VMs to right" -msgstr "右移所有的虚拟机" +msgid "back" +msgstr "返回" -#: ../app/views/vm_common/_form.html.haml:150 -msgid "Move selected VMs to left" -msgstr "左移所选的虚拟机" +msgid "blank" +msgstr "空的" -#: ../app/views/vm_common/_live_migrate.html.haml:40 -msgid "Block Migration" -msgstr "块迁移" +msgid "bold" +msgstr "黑体的" -#: ../app/views/vm_common/_live_migrate.html.haml:57 -msgid "Disk Over Commit" -msgstr "提交的磁盘" +msgid "centered" +msgstr "中间日期" -#: ../app/views/vm_common/_main.html.haml:18 -msgid "Normal Operating Ranges (over 30 days)" -msgstr "正常的操作范围(多于 30 天)" +msgid "clear" +msgstr "清除" -#: ../app/views/vm_common/_main.html.haml:35 -msgid "Datastore Allocation Summary" -msgstr "数据存储区分配总结" +msgid "description:[%{session}] to [%{name}]" +msgstr "描述:[%{session}] to [%{name}]" -#: ../app/views/vm_common/_main.html.haml:37 -msgid "Datastore Actual Usage Summary" -msgstr "数据存储区实际使用总结" +msgid "dimmed" +msgstr "暗灰色的" -#: ../app/views/vm_common/_policies.html.haml:11 -msgid "Policy Simulation Details" -msgstr "策略模拟细节" +msgid "disabling deployment" +msgstr "正在禁用部署" -#: ../app/views/vm_common/_policies.html.haml:24 -msgid "" -"* Items in red italics do not change the outco" -"me of the scope or expression." -msgstr "* red italics 里的项没有修改作用域或表达式的结果" +msgid "do not change the outcome of the scope or expression" +msgstr "不要修改作用域或表达式的结果" -#: ../app/views/vm_common/_policy_options.html.haml:44 -msgid "Successful" -msgstr "成功的" +msgid "down" +msgstr "down" -#: ../app/views/vm_common/_reconfigure.html.haml:50 -msgid " Memory value not in range or not a multiple of 4" -msgstr " 内存值不在范围内或不是 4 的倍数" +msgid "enabling deployment" +msgstr "正在启用部署" -#: ../app/views/vm_common/_reconfigure.html.haml:55 -msgid " Valid memory value required" -msgstr " 必须填写有效内存值" +msgid "ending" +msgstr "结束于" -#: ../app/views/vm_common/_reconfigure.html.haml:96 -msgid " Processor Options" -msgstr "处理器选项" +msgid "every" +msgstr "每" -#: ../app/views/vm_common/_reconfigure.html.haml:103 -msgid "Sockets" -msgstr "套接字" +msgid "false" +msgstr "false" -#: ../app/views/vm_common/_reconfigure.html.haml:124 -msgid "Cores Per Socket" -msgstr "每个插槽的内核数" +msgid "foreman" +msgstr "foreman" -#: ../app/views/vm_common/_reconfigure.html.haml:164 -msgid " Total processors value larger than the maximum allowed" -msgstr " 总处理器数超过最大允许值" +msgid "going back" +msgstr "回退" -#: ../app/views/vm_common/_reconfigure.html.haml:184 -msgid "Add Disk" -msgstr "添加磁盘" +msgid "h" +msgstr "h" -#: ../app/views/vm_common/_reconfigure.html.haml:211 -msgid "Dependent" -msgstr "从属的" +msgid "hawkular URL and API port fields are needed to perform validation." +msgstr "需要 hawkular 网址和 API 端口字段来执行验证。" -#: ../app/views/vm_common/_reconfigure.html.haml:213 -msgid "Delete Backing" -msgstr "删除 Backing" +msgid "instances" +msgstr "实例" -#: ../app/views/vm_common/_reconfigure.html.haml:215 -msgid "Bootable" -msgstr "可引导的" +msgid "invalid button action" +msgstr "无效的按钮操作" -#: ../app/views/vm_common/_reconfigure.html.haml:263 -msgid " Valid numeric disk size required " -msgstr "磁盘大小要求为有效的数字" +msgid "killing" +msgstr "正在杀死" -#: ../app/views/vm_common/_reconfigure.html.haml:300 -msgid " Add " -msgstr "添加" +msgid "ldap" +msgstr "ldap" -#: ../app/views/vm_common/_reconfigure.html.haml:376 -msgid "Cancel Add" -msgstr "取消添加" +msgid "ldaps" +msgstr "ldaps" -#: ../app/views/vm_common/_resize.html.haml:9 -msgid "Reconfigure Instance" -msgstr "重新配置实例" +msgid "m" +msgstr "m" -#: ../app/views/vm_common/_resize.html.haml:18 -msgid "Current Flavor" -msgstr "当前的 Flavor" +msgid "map a new label to tag" +msgstr "将新标签与标记对应" -#: ../app/views/vm_common/_resize.html.haml:31 -msgid "Choose Flavor" -msgstr "选择 Flavor" +msgid "name:[%{session}] to [%{name}]" +msgstr "从名称:[%{session}] 到 [%{name}]" -#: ../app/views/vm_common/_right_size.html.haml:8 -msgid "Normal Operating Ranges (up to 30 days' data)" -msgstr "正常的操作范围(最多 30 天的数据)" +msgid "no value" +msgstr "没有值" -#: ../app/views/vm_common/_right_size.html.haml:187 -msgid "Right-Sizing (Conservative - derived from Absolute Maximum)" -msgstr "适当大小 (保守的 - 源自绝对最大值)" +msgid "none" +msgstr "无" -#: ../app/views/vm_common/_right_size.html.haml:197 -#: ../app/views/vm_common/_right_size.html.haml:281 -#: ../app/views/vm_common/_right_size.html.haml:364 -msgid "Current" -msgstr "当前值" +msgid "normal" +msgstr "普通的" -#: ../app/views/vm_common/_right_size.html.haml:199 -#: ../app/views/vm_common/_right_size.html.haml:283 -#: ../app/views/vm_common/_right_size.html.haml:366 -msgid "Recommended" -msgstr "推荐的" +msgid "not yet available" +msgstr "尚无法使用" -#: ../app/views/vm_common/_right_size.html.haml:201 -#: ../app/views/vm_common/_right_size.html.haml:285 -#: ../app/views/vm_common/_right_size.html.haml:368 -msgid "% Savings" -msgstr "% 存款" +msgid "primary" +msgstr "主接口" -#: ../app/views/vm_common/_right_size.html.haml:203 -#: ../app/views/vm_common/_right_size.html.haml:287 -#: ../app/views/vm_common/_right_size.html.haml:370 -msgid "Savings" -msgstr "Savings" +msgid "primary, " +msgstr "主要的," -#: ../app/views/vm_common/_right_size.html.haml:271 -msgid "Right-Sizing (Moderate - derived from High NORM)" -msgstr "适当大小 (中等的 - 源自高 NORM)" +msgid "red italics" +msgstr "red italics" -#: ../app/views/vm_common/_right_size.html.haml:354 -msgid "Right-Sizing (Aggressive - derived from Average NORM)" -msgstr "适当大小 (激进的 - 源自平均 NORM)" +msgid "reloading" +msgstr "正在重载" -#: ../app/views/vm_common/_right_size.html.haml:438 -msgid "* Recommendations are subject to minimum of CPU: %{cpu} and Memory: %{memory}." -msgstr " * 推荐值受 CPU %{cpu} 和内存 %{memory} 的最小值影响。" +msgid "removed datasources" +msgstr "已删除数据源" -#: ../app/views/vm_common/_snap.html.haml:9 -msgid "Snapshot Information" -msgstr "快照信息" +msgid "restarting" +msgstr "正在重启" -#: ../app/views/vm_common/_snap.html.haml:43 -msgid "Snapshot VM memory" -msgstr "快照虚拟机内存" +msgid "restarting deployment" +msgstr "正在重启部署" -#: ../app/views/vm_common/_snap.html.haml:63 -msgid "Create snapshot" -msgstr "创建快照" +msgid "resuming" +msgstr "正在恢复" -#: ../app/views/vm_common/_snapshots_desc.html.haml:41 -msgid "(%{number} bytes)" -msgstr "(%{number} 字节)" +msgid "running" +msgstr "运行" -#: ../app/views/vm_common/_snapshots_desc.html.haml:63 -msgid "%{record_name} has no snapshots" -msgstr "%{record_name} 没有快照" +msgid "secondary" +msgstr "从接口" -#: ../app/views/vm_common/_snapshots_tree.html.haml:5 -msgid "Available Snapshots" -msgstr "可用的快照" +msgid "secondary, " +msgstr "次要的," -#: ../app/views/vm_common/console_mks.html.haml:8 -#: ../app/views/vm_common/console_mks.html.haml:95 -msgid "VM %{name} Remote Console" -msgstr "虚拟机 %{name} 远程控制台" +msgid "seconds" +msgstr "秒" -#: ../app/views/vm_common/console_mks.html.haml:32 -msgid "" -"You are about to enter fullscreen mode. Press Ctl+Alt to return to windowed mo" -"de." -msgstr "您将进入全屏模式。按 Ctl+Alt 返回窗口模式。" +msgid "selected to copy" +msgstr "选择复制的" -#: ../app/views/vm_common/console_mks.html.haml:43 -msgid "Press Ctl+Alt to release cursor." -msgstr "按 Ctl+Alt 释放光标。" +msgid "shutting down" +msgstr "正在关闭" -#: ../app/views/vm_common/console_mks.html.haml:138 -msgid "Connection failed." -msgstr "连接失败。" +msgid "starting" +msgstr "开始于" -#: ../app/views/vm_common/console_mks.html.haml:147 -msgid "Press Ctrl+Alt to release cursor." -msgstr "按 Ctrl+Alt 释放光标。" +msgid "stopped" +msgstr "停止" -#: ../app/views/vm_common/console_mks.html.haml:202 -msgid "This page requires the VMware MKS plugin. Install the plugin and try again." -msgstr "这个页面要求 VMWare MKS 插件。请安装插件并再次尝试。" +msgid "stopping" +msgstr "正在停止" -#: ../app/views/vm_common/console_spice.html.haml:9 -msgid "SPICE Console" -msgstr "SPICE 控制台" +msgid "suspending" +msgstr "暂停中" -#: ../app/views/vm_common/console_spice.html.haml:30 -msgid "Connecting (unencrypted) to: %{url}" -msgstr "连接(未加密的)至:%{url}" +msgid "to bottom" +msgstr "到底部" -#: ../app/views/vm_common/console_vmrc.html.haml:74 -#: ../app/views/vm_common/console_vmrc.html.haml:99 -msgid "Hint: Press Ctrl-Alt to release the cursor from the guest" -msgstr "提示:按 Ctrl-Alt 从客体释放光标" +msgid "to top" +msgstr "停止" -#: ../app/views/vm_common/console_vmrc.html.haml:83 -msgid "" -"The VM has been suspended, powered off or the connection to the server has bee" -"n lost. \n" -"This console window will now close." -msgstr "" -"虚拟机已暂停、关机、或到服务器的连接已丢失。\n" -"这个控制台窗口现在将关闭。" +msgid "true" +msgstr "true" -#: ../app/views/vm_common/console_vmrc.html.haml:423 -msgid "Remote Console plugin is not properly installed." -msgstr "远程控制台没有正确安装" +msgid "true/false" +msgstr "true/false" -#: ../app/views/vm_common/console_vmrc.html.haml:451 -msgid "Full Screen" -msgstr "全屏" +msgid "unavailable" +msgstr "不可用的" -#: ../app/views/vm_common/console_vmrc.html.haml:460 -msgid "Send Ctrl-Alt-Delete" -msgstr "发送 Ctrl-Alt-Delete" +msgid "undeploying deployment" +msgstr "正在取消部署" -#: ../app/views/vm_common/console_vmrc.html.haml:481 -msgid "Use CTRL-ALT-INS for CTRL-ALT-DEL" -msgstr "为 CTRL-ALT-DEL 使用 CTRL-ALT-INS " +msgid "unknown tree in replace_trees: %{name}" +msgstr "replace_trees: %{name} 中未知的树" -#: ../app/views/vm_common/console_vmrc.html.haml:485 -msgid "Use CTRL-ALT-Enter to toggle full screen" -msgstr "使用 CTRL-ALT-Enter 进行全屏切换" +msgid "unlimited" +msgstr "无限制的" -#: ../app/views/vm_common/console_vmrc.html.haml:490 -msgid "The Remote Console is connecting" -msgstr "远程控制台正在连接" +msgid "up" +msgstr "向上" -#: ../app/views/vm_common/console_vnc.html.haml:9 -msgid "VNC Console" -msgstr "VNC 控制台" +msgid "user input" +msgstr "用户输入" -#: ../app/views/vm_common/console_vnc.html.haml:30 -msgid "Loading ..." -msgstr "加载中..." +msgid "vApp" +msgstr "vApp" -#: ../app/views/vm_common/console_vnc.html.haml:38 -msgid "Canvas not supported." -msgstr "不支持 Canvas。" +msgid "vApp Templates" +msgstr "vApp 模板" -#: ../lib/report_formatter/chart_common.rb:344 -#: ../lib/report_formatter/chart_common.rb:403 -#: ../lib/report_formatter/chart_common.rb:404 -#: ../lib/report_formatter/chart_common.rb:434 -#: ../lib/report_formatter/chart_common.rb:435 -#: ../lib/report_formatter/chart_common.rb:472 -msgid "Other" -msgstr "其它" +msgid "vCPU Count" +msgstr "vCPU 计数" -#: ../lib/report_formatter/chart_common.rb:394 -#: ../lib/report_formatter/chart_common.rb:424 -#: ../lib/report_formatter/chart_common.rb:469 -#: ../lib/report_formatter/chart_common.rb:498 -#: ../lib/report_formatter/chart_common.rb:501 -msgid "no value" -msgstr "没有值" +msgid "vCPU per Core" +msgstr "每个内核的 vCPU" -#: ../lib/report_formatter/chart_common.rb:560 -msgid "Invalid chart definition" -msgstr "无效的图表定义" +msgid "vCPUs per Core" +msgstr "每个内核的 vCPU" -#: ../lib/report_formatter/timeline_message.rb:43 -msgid "Policy no longer exists" -msgstr "" +msgid "vcpus" +msgstr "vcpus" diff --git a/manageiq-ui-classic.gemspec b/manageiq-ui-classic.gemspec index 5bc1506322e..bcefb11c36e 100644 --- a/manageiq-ui-classic.gemspec +++ b/manageiq-ui-classic.gemspec @@ -27,6 +27,7 @@ Gem::Specification.new do |s| s.add_dependency "lodash-rails", "~>3.10.0" s.add_dependency "patternfly-sass", "~> 3.15.0" s.add_dependency "sass-rails" + s.add_dependency "high_voltage", "~> 3.0.0" s.add_development_dependency "codeclimate-test-reporter", "~> 1.0.0" s.add_development_dependency "guard-rspec", '~> 4.7.3' diff --git a/spec/controllers/application_controller/ci_processing_spec.rb b/spec/controllers/application_controller/ci_processing_spec.rb index dedd3b9de08..c519a814900 100644 --- a/spec/controllers/application_controller/ci_processing_spec.rb +++ b/spec/controllers/application_controller/ci_processing_spec.rb @@ -36,6 +36,7 @@ before do controller.params[:pressed] = "cloud_object_store_container_delete" request.parameters["controller"] = "ems_storage" + controller.instance_variable_set(:@display, "cloud_object_store_containers") end it "get_rec_cls" do @@ -174,6 +175,322 @@ end end + context "Delete object store object" do + before do + allow(controller).to receive(:assert_rbac).and_return(nil) + allow_any_instance_of(CloudObjectStoreObject).to receive(:supports?).and_return(true) + end + + let :object1 do + FactoryGirl.create(:cloud_object_store_object) + end + + let :object2 do + FactoryGirl.create(:cloud_object_store_object) + end + + context "from list view" do + before do + controller.params[:pressed] = "cloud_object_store_object_delete" + request.parameters["controller"] = "cloud_object_store_container" + controller.instance_variable_set(:@display, "cloud_object_store_objects") + end + + it "get_rec_cls" do + expect(controller.send(:get_rec_cls)).to eq(CloudObjectStoreObject) + end + + it "invokes cloud_object_store_button_operation" do + expect(controller).to receive(:cloud_object_store_button_operation).with( + CloudObjectStoreObject, + "delete" + ) + controller.send(:process_cloud_object_storage_buttons, "cloud_object_store_object_delete") + end + + it "invokes process_objects" do + controller.params[:miq_grid_checks] = "#{object1.id}, #{object2.id}" + expect(controller).to receive(:process_objects).with( + [object1.id, object2.id], + "delete_cloud_object_store_object", + "Delete" + ) + controller.send(:cloud_object_store_button_operation, CloudObjectStoreObject, "delete") + end + + it "invokes process_tasks on container class" do + controller.params[:miq_grid_checks] = "#{object1.id}, #{object2.id}" + expect(CloudObjectStoreObject).to receive(:process_tasks).with( + :ids => [object1.id, object2.id], + :task => "delete_cloud_object_store_object", + :userid => anything + ) + controller.send(:process_objects, [object1.id, object2.id], "delete_cloud_object_store_object", "delete") + end + + it "invokes process_tasks overall (when selected)" do + controller.params[:miq_grid_checks] = "#{object1.id}, #{object2.id}" + expect(CloudObjectStoreObject).to receive(:process_tasks).with( + :ids => [object1.id, object2.id], + :task => "delete_cloud_object_store_object", + :userid => anything + ) + controller.send(:process_cloud_object_storage_buttons, "cloud_object_store_object_delete") + end + + it "does not invoke process_tasks overall when nothing selected" do + controller.params[:miq_grid_checks] = "" + expect(CloudObjectStoreObject).not_to receive(:process_tasks) + controller.send(:process_cloud_object_storage_buttons, "cloud_object_store_object_delete") + end + + it "flash - nothing selected" do + controller.params[:miq_grid_checks] = "" + controller.send(:process_cloud_object_storage_buttons, "cloud_object_store_object_delete") + expect(assigns(:flash_array).first[:message]).to include( + "No Cloud Object Store Objects were selected for Delete" + ) + end + + it "flash - task not supported" do + controller.params[:miq_grid_checks] = "#{object1.id}, #{object2.id}" + allow_any_instance_of(CloudObjectStoreObject).to receive(:supports?).and_return(false) + controller.send(:process_cloud_object_storage_buttons, "cloud_object_store_object_delete") + expect(assigns(:flash_array).first[:message]).to include( + "Delete does not apply to at least one of the selected items" + ) + end + end + + context "from details view" do + before do + allow(controller).to receive(:show_list).and_return(nil) + controller.params[:pressed] = "cloud_object_store_object_delete" + request.parameters["controller"] = "cloud_object_store_object" + end + + let :object do + FactoryGirl.create(:cloud_object_store_object) + end + + it "get_rec_cls" do + expect(controller.send(:get_rec_cls)).to eq(CloudObjectStoreObject) + end + + it "invokes cloud_object_store_button_operation" do + expect(controller).to receive(:cloud_object_store_button_operation).with( + CloudObjectStoreObject, + "delete" + ) + controller.send(:process_cloud_object_storage_buttons, "cloud_object_store_object_delete") + end + + it "invokes process_objects" do + controller.params[:id] = object.id.to_s + expect(controller).to receive(:process_objects).with( + [object.id.to_s], + "delete_cloud_object_store_object", + "Delete" + ) + controller.send(:cloud_object_store_button_operation, CloudObjectStoreObject, "delete") + end + + it "invokes process_tasks on object class" do + controller.params[:id] = object.id.to_s + expect(CloudObjectStoreObject).to receive(:process_tasks).with( + :ids => [object.id.to_s], + :task => "delete_cloud_object_store_object", + :userid => anything + ) + controller.send(:process_objects, [object.id.to_s], "delete_cloud_object_store_object", "delete") + end + + it "invokes process_tasks overall" do + controller.params[:id] = object.id.to_s + expect(CloudObjectStoreObject).to receive(:process_tasks).with( + :ids => [object.id.to_s], + :task => "delete_cloud_object_store_object", + :userid => anything + ) + controller.send(:process_cloud_object_storage_buttons, "cloud_object_store_object_delete") + end + + it "flash - container no longer exists" do + object.destroy + controller.send(:process_cloud_object_storage_buttons, "cloud_object_store_object_delete") + expect(assigns(:flash_array).first[:message]).to include( + "Cloud Object Store Object no longer exists" + ) + end + + it "flash - task not supported" do + controller.params[:id] = object.id.to_s + allow_any_instance_of(CloudObjectStoreObject).to receive(:supports?).and_return(false) + controller.send(:process_cloud_object_storage_buttons, "cloud_object_store_object_delete") + expect(assigns(:flash_array).first[:message]).to include( + "Delete does not apply to this item" + ) + end + end + end + + context "Clear object store container" do + before do + allow(controller).to receive(:assert_rbac).and_return(nil) + allow_any_instance_of(CloudObjectStoreContainer).to receive(:supports?).and_return(true) + end + + let :container1 do + FactoryGirl.create(:cloud_object_store_container) + end + + let :container2 do + FactoryGirl.create(:cloud_object_store_container) + end + + context "from list view" do + before do + controller.params[:pressed] = "cloud_object_store_container_clear" + request.parameters["controller"] = "ems_storage" + controller.instance_variable_set(:@display, "cloud_object_store_containers") + end + + it "get_rec_cls" do + expect(controller.send(:get_rec_cls)).to eq(CloudObjectStoreContainer) + end + + it "invokes cloud_object_store_button_operation" do + expect(controller).to receive(:cloud_object_store_button_operation).with( + CloudObjectStoreContainer, + 'clear' + ) + controller.send(:process_cloud_object_storage_buttons, "cloud_object_store_container_clear") + end + + it "invokes process_objects" do + controller.params[:miq_grid_checks] = "#{container1.id}, #{container2.id}" + expect(controller).to receive(:process_objects).with( + [container1.id, container2.id], + 'cloud_object_store_container_clear', + 'Clear' + ) + controller.send(:cloud_object_store_button_operation, CloudObjectStoreContainer, 'clear') + end + + it "invokes process_tasks on container class" do + expect(CloudObjectStoreContainer).to receive(:process_tasks).with( + :ids => [container1.id, container2.id], + :task => 'cloud_object_store_container_clear', + :userid => anything + ) + controller.send(:process_objects, [container1.id, container2.id], 'cloud_object_store_container_clear', + 'clear') + end + + it "invokes process_tasks overall (when selected)" do + controller.params[:miq_grid_checks] = "#{container1.id}, #{container2.id}" + expect(CloudObjectStoreContainer).to receive(:process_tasks).with( + :ids => [container1.id, container2.id], + :task => 'cloud_object_store_container_clear', + :userid => anything + ) + controller.send(:process_cloud_object_storage_buttons, "cloud_object_store_container_clear") + end + + it "does not invoke process_tasks overall when nothing selected" do + controller.params[:miq_grid_checks] = '' + expect(CloudObjectStoreContainer).not_to receive(:process_tasks) + controller.send(:process_cloud_object_storage_buttons, "cloud_object_store_container_clear") + end + + it "flash - nothing selected" do + controller.params[:miq_grid_checks] = '' + controller.send(:process_cloud_object_storage_buttons, "cloud_object_store_container_clear") + expect(assigns(:flash_array).first[:message]).to include( + "No Cloud Object Store Containers were selected for Clear" + ) + end + + it "flash - task not supported" do + controller.params[:miq_grid_checks] = "#{container1.id}, #{container2.id}" + allow_any_instance_of(CloudObjectStoreContainer).to receive(:supports?).and_return(false) + controller.send(:process_cloud_object_storage_buttons, "cloud_object_store_container_clear") + expect(assigns(:flash_array).first[:message]).to include( + "Clear does not apply to at least one of the selected items" + ) + end + end + + context "from details view" do + before do + allow(controller).to receive(:show_list).and_return(nil) + controller.params[:pressed] = "cloud_object_store_container_clear" + request.parameters["controller"] = "cloud_object_store_container" + end + + let :container do + FactoryGirl.create(:cloud_object_store_container) + end + + it "get_rec_cls" do + expect(controller.send(:get_rec_cls)).to eq(CloudObjectStoreContainer) + end + + it "invokes cloud_object_store_button_operation" do + expect(controller).to receive(:cloud_object_store_button_operation).with( + CloudObjectStoreContainer, + 'clear' + ) + controller.send(:process_cloud_object_storage_buttons, "cloud_object_store_container_clear") + end + + it "invokes process_objects" do + controller.params[:id] = container.id + expect(controller).to receive(:process_objects).with( + [container.id], + 'cloud_object_store_container_clear', + 'Clear' + ) + controller.send(:cloud_object_store_button_operation, CloudObjectStoreContainer, 'clear') + end + + it "invokes process_tasks on container class" do + expect(CloudObjectStoreContainer).to receive(:process_tasks).with( + :ids => [container.id], + :task => 'cloud_object_store_container_clear', + :userid => anything + ) + controller.send(:process_objects, [container.id], 'cloud_object_store_container_clear', 'clear') + end + + it "invokes process_tasks overall" do + controller.params[:id] = container.id + expect(CloudObjectStoreContainer).to receive(:process_tasks).with( + :ids => [container.id], + :task => 'cloud_object_store_container_clear', + :userid => anything + ) + controller.send(:process_cloud_object_storage_buttons, "cloud_object_store_container_clear") + end + + it "flash - container no longer exists" do + controller.send(:process_cloud_object_storage_buttons, "cloud_object_store_container_clear") + expect(assigns(:flash_array).first[:message]).to include( + "Cloud Object Store Container no longer exists" + ) + end + + it "flash - task not supported" do + controller.params[:id] = container.id + allow_any_instance_of(CloudObjectStoreContainer).to receive(:supports?).and_return(false) + controller.send(:process_cloud_object_storage_buttons, "cloud_object_store_container_clear") + expect(assigns(:flash_array).first[:message]).to include( + "Clear does not apply to this item" + ) + end + end + end + # some methods should not be accessible through the legacy routes # either by being private or through the hide_action mechanism it 'should not allow call of hidden/private actions' do diff --git a/spec/controllers/catalog_controller_spec.rb b/spec/controllers/catalog_controller_spec.rb index 03025b96d69..f07977ddcc1 100644 --- a/spec/controllers/catalog_controller_spec.rb +++ b/spec/controllers/catalog_controller_spec.rb @@ -690,4 +690,116 @@ expect(response).to have_http_status 200 end end + + context "#need_ansible_locals?" do + before do + controller.instance_variable_set(:@nodetype, 'st') + st = FactoryGirl.create(:service_template, + :type => "ServiceTemplateAnsiblePlaybook", + :prov_type => "generic_ansible_playbook") + controller.instance_variable_set(:@record, st) + end + + it "returns true for Ansible Playbook Service Template in Catalog Items accordion only" do + controller.instance_variable_set(:@sb, + :trees => {:sandt_tree => {:open_nodes => []}}, + :active_tree => :sandt_tree) + expect(controller.send(:need_ansible_locals?)).to be_truthy + end + + it "returns false for Ansible Playbook Service Template in other accordions" do + controller.instance_variable_set(:@sb, + :trees => {:svccat_tree => {:open_nodes => []}}, + :active_tree => :svccat_tree) + expect(controller.send(:need_ansible_locals?)).to be_falsey + end + + it "returns false for any other Service Template in Catalog Items accordions" do + controller.instance_variable_set(:@record, FactoryGirl.create(:service_template)) + controller.instance_variable_set(:@sb, + :trees => {:svccat_tree => {:open_nodes => []}}, + :active_tree => :svccat_tree) + expect(controller.send(:need_ansible_locals?)).to be_falsey + end + + it "returns false for any other Service Template in other accordions" do + controller.instance_variable_set(:@record, FactoryGirl.create(:service_template)) + controller.instance_variable_set(:@sb, + :trees => {:svccat_tree => {:open_nodes => []}}, + :active_tree => :svccat_tree) + expect(controller.send(:need_ansible_locals?)).to be_falsey + end + end + + context "#get_available_resources" do + it "list of available resources should not include Ansible Playbook Service Templates" do + FactoryGirl.create(:service_template, :type => "ServiceTemplateAnsiblePlaybook") + controller.instance_variable_set(:@edit, :new => {:selected_resources => []}) + controller.send(:get_available_resources, "ServiceTemplate") + expect(assigns(:edit)[:new][:available_resources].count).to eq(2) + end + end + + context "#fetch_playbook_details" do + let(:auth) { FactoryGirl.create(:authentication, :name => "machine_cred", :manager_ref => 6, :type => "ManageIQ::Providers::EmbeddedAnsible::AutomationManager::MachineCredential") } + let(:repository) { FactoryGirl.create(:configuration_script_source, :manager => ems, :type => "ManageIQ::Providers::EmbeddedAnsible::AutomationManager::ConfigurationScriptSource") } + let(:inventory_root_group) { FactoryGirl.create(:inventory_root_group, :name => 'Demo Inventory') } + let(:ems) do + FactoryGirl.create(:automation_manager_ansible_tower, :inventory_root_groups => [inventory_root_group], :provider => FactoryGirl.create(:provider_embedded_ansible)) + end + let(:dialog) { FactoryGirl.create(:dialog, :label => "Some Label") } + let(:playbook) do + FactoryGirl.create(:embedded_playbook, + :configuration_script_source => repository, + :manager => ems, + :inventory_root_group => inventory_root_group) + end + + it "returns playbook service template details for provision & retirement tabs for summary screen" do + options = { + :name => 'test_ansible_catalog_item', + :description => 'test ansible', + :display => true, + :config_info => { + :provision => { + :new_dialog_name => 'test_dialog', + :hosts => 'many', + :credential_id => auth.id, + :repository_id => repository.id, + :playbook_id => playbook.id, + :dialog_id => dialog.id + }, + :retirement => { + :new_dialog_name => 'test_dialog', + :hosts => 'many', + :credential_id => auth.id, + :repository_id => repository.id, + :playbook_id => playbook.id, + :dialog_id => dialog.id + } + } + } + service_template = double("ServiceTemplateAnsiblePlaybook", options) + controller.instance_variable_set(:@record, service_template) + playbook_details = controller.send(:fetch_playbook_details) + st_details = { + :provisioning => { + :repository => repository.name, + :playbook => playbook.name, + :machine_credential => auth.name, + :dialog => "Some Label", + :dialog_id => dialog.id + }, + :retirement => { + :remove_resources => nil, + :repository => repository.name, + :playbook => playbook.name, + :machine_credential => auth.name, + :dialog => "Some Label", + :dialog_id => dialog.id + } + } + expect(playbook_details).to eq(st_details) + end + end end diff --git a/spec/controllers/cloud_object_store_object_spec.rb b/spec/controllers/cloud_object_store_object_spec.rb index a326a3bd6fb..751c93fef65 100644 --- a/spec/controllers/cloud_object_store_object_spec.rb +++ b/spec/controllers/cloud_object_store_object_spec.rb @@ -1,4 +1,13 @@ describe CloudObjectStoreObjectController do + before do + EvmSpecHelper.create_guid_miq_server_zone + allow_any_instance_of(CloudObjectStoreObject).to receive(:supports?).and_return(true) + end + + let :object do + FactoryGirl.create(:cloud_object_store_object) + end + context "#tags_edit" do let!(:user) { stub_user(:features => :all) } before(:each) do @@ -48,5 +57,65 @@ end end + context "delete object store object" do + before do + login_as FactoryGirl.create(:user, :features => "everything") + request.parameters["controller"] = "cloud_object_store_object" + allow(controller).to receive(:role_allows?).and_return(true) + end + + it "delete invokes process_cloud_object_storage_buttons" do + expect(controller).to receive(:process_cloud_object_storage_buttons) + post :button, :params => { + :pressed => "cloud_object_store_object_delete", :format => :js, :id => object.id + } + end + + it "delete triggers delete" do + expect(controller).to receive(:cloud_object_store_button_operation).with( + CloudObjectStoreObject, + 'delete' + ) + post :button, :params => { + :pressed => "cloud_object_store_object_delete", :format => :js, :id => object.id + } + end + + it "delete redirects to show_list" do + expect(controller).to receive(:javascript_redirect).with( + :action => 'show_list', + :flash_msg => anything, + :flash_error => false + ) + post :button, :params => { + :pressed => "cloud_object_store_object_delete", :format => :js, :id => object.id + } + end + + it "delete shows expected flash" do + post :button, :params => { + :pressed => "cloud_object_store_object_delete", :format => :js, :id => object.id + } + + expect(assigns(:flash_array).first[:message]).to include( + "Delete initiated for 1 Cloud Object Store Object from the ManageIQ Database" + ) + expect(response.status).to eq(200) + end + + it "delete shows expected flash (non-existing object)" do + object.destroy + + post :button, :params => { + :pressed => "cloud_object_store_object_delete", :format => :js, :id => object.id + } + + expect(assigns(:flash_array).first[:message]).to include( + "Cloud Object Store Object no longer exists" + ) + expect(response.status).to eq(200) + end + end + include_examples '#download_summary_pdf', :cloud_object_store_object end diff --git a/spec/controllers/cloud_tenant_controller_spec.rb b/spec/controllers/cloud_tenant_controller_spec.rb index 85433af05dd..c7a5f906d17 100644 --- a/spec/controllers/cloud_tenant_controller_spec.rb +++ b/spec/controllers/cloud_tenant_controller_spec.rb @@ -203,4 +203,6 @@ end include_examples '#download_summary_pdf', :cloud_tenant + + it_behaves_like "controller with custom buttons" end diff --git a/spec/controllers/cloud_volume_controller_spec.rb b/spec/controllers/cloud_volume_controller_spec.rb index 8856b798862..2d4d6127e4f 100644 --- a/spec/controllers/cloud_volume_controller_spec.rb +++ b/spec/controllers/cloud_volume_controller_spec.rb @@ -175,5 +175,116 @@ end end + describe "#create_volume" do + before do + stub_user(:features => :all) + EvmSpecHelper.create_guid_miq_server_zone + end + + shared_examples "queue create volume task" do + let(:task_options) do + { + :action => "creating Cloud Volume for user %{user}" % {:user => controller.current_user.userid}, + :userid => controller.current_user.userid + } + end + let(:queue_options) do + { + :class_name => "CloudVolume", + :method_name => 'create_volume', + :role => 'ems_operations', + :zone => @ems.my_zone, + :args => @task_options + } + end + + it "builds add new volume screen" do + post :button, :params => { :pressed => "cloud_volume_new", :format => :js } + expect(assigns(:flash_array)).to be_nil + end + + it "queues the create cloud volume action form OpenStack" do + expect(MiqTask).to receive(:generic_action_with_callback).with(task_options, queue_options) + post :create, :params => @form_params.merge(:button => "add", :format => :js) + end + end + + context "in OpenStack cloud" do + before do + @ems = FactoryGirl.create(:ems_openstack) + @tenant = FactoryGirl.create(:cloud_tenant_openstack, :ext_management_system => @ems) + + @form_params = { :name => "volume", :size => 1, :cloud_tenant_id => @tenant.id, + :emstype => "ManageIQ::Providers::StorageManager::CinderManager" } + @task_options = [@ems.id, { :name => "volume", :size => 1, :cloud_tenant => @tenant }] + end + + it_behaves_like "queue create volume task" + end + + context "in Amazon EBS" do + before do + @cloud_manager = FactoryGirl.create(:ems_amazon) + @ems = FactoryGirl.create(:ems_amazon_ebs, :parent_manager => @cloud_manager) + @availability_zone = FactoryGirl.create(:availability_zone, + :ems_ref => "us-east-1e", + :ext_management_system => @cloud_manager) + + # Common form parameters for the Amazon EBS volume. + @form_params = { + :emstype => "ManageIQ::Providers::Amazon::StorageManager::Ebs", + :storage_manager_id => @ems.id, + :name => "volume", + :size => 1, + :aws_availability_zone_id => @availability_zone.ems_ref, + } + # Common EC2 client options + @aws_options = { + :name => "volume", :size => 1, + :availability_zone => @availability_zone.ems_ref + } + # Task options include the ID of the EMS and provider-specific options. + @task_options = [@ems.id, @aws_options] + end + + context "for volume type 'gp2'" do + before do + # 'gp2' volume type requires only the type + @form_params[:aws_volume_type] = "gp2" + @aws_options[:volume_type] = "gp2" + @aws_options[:encrypted] = nil + end + + it_behaves_like "queue create volume task" + end + + context "for volume type 'io1'" do + before do + # 'io1' volume type requires the IOPS as well. + @form_params[:aws_volume_type] = "io1" + @form_params[:aws_iops] = "100" + + @aws_options[:volume_type] = "io1" + @aws_options[:iops] = "100" + @aws_options[:encrypted] = nil + end + + it_behaves_like "queue create volume task" + end + + context "for encrypted volume" do + before do + # 'gp2' volume type requires only the type + @form_params[:aws_volume_type] = "gp2" + @form_params[:aws_encryption] = "true" + @aws_options[:volume_type] = "gp2" + @aws_options[:encrypted] = "true" + end + + it_behaves_like "queue create volume task" + end + end + end + include_examples '#download_summary_pdf', :cloud_volume end diff --git a/spec/controllers/container_build_controller_spec.rb b/spec/controllers/container_build_controller_spec.rb index f04b822048b..5aefba8f1e8 100644 --- a/spec/controllers/container_build_controller_spec.rb +++ b/spec/controllers/container_build_controller_spec.rb @@ -17,6 +17,7 @@ get :show, :params => { :id => container_build.id } expect(response.status).to eq(200) expect(response.body).to_not be_empty + expect(response).to render_template('shared/summary/_textual_multilabel') expect(assigns(:breadcrumbs)).to eq([{:name => "Builds", :url => "/container_build/show_list?page=&refresh=y"}, {:name => "Test Build (Summary)", diff --git a/spec/controllers/container_controller_spec.rb b/spec/controllers/container_controller_spec.rb index 98fac1b4ad1..45876f64d66 100644 --- a/spec/controllers/container_controller_spec.rb +++ b/spec/controllers/container_controller_spec.rb @@ -133,6 +133,7 @@ expect(response).to render_template('layouts/_textual_groups_generic') expect(response).to render_template('shared/summary/_textual_tags') + expect(response).to render_template('shared/summary/_textual_multilabel') expect(response.status).to eq(200) end end diff --git a/spec/controllers/container_group_controller_spec.rb b/spec/controllers/container_group_controller_spec.rb index 74986291403..5d75bf68e28 100644 --- a/spec/controllers/container_group_controller_spec.rb +++ b/spec/controllers/container_group_controller_spec.rb @@ -52,6 +52,7 @@ it do is_expected.to have_http_status 200 is_expected.to render_template(:partial => "layouts/listnav/_container_group") + is_expected.to render_template('shared/summary/_textual_multilabel') end end end diff --git a/spec/controllers/container_image_controller_spec.rb b/spec/controllers/container_image_controller_spec.rb index 7fb47fad613..123631e1029 100644 --- a/spec/controllers/container_image_controller_spec.rb +++ b/spec/controllers/container_image_controller_spec.rb @@ -63,6 +63,7 @@ it do is_expected.to have_http_status 200 is_expected.to render_template(:partial => "layouts/listnav/_container_image") + is_expected.to render_template('shared/summary/_textual_multilabel') end end end diff --git a/spec/controllers/container_node_controller_spec.rb b/spec/controllers/container_node_controller_spec.rb index 25c44646b6f..dac07557e2c 100644 --- a/spec/controllers/container_node_controller_spec.rb +++ b/spec/controllers/container_node_controller_spec.rb @@ -38,6 +38,7 @@ it do is_expected.to have_http_status 200 is_expected.to render_template(:partial => "layouts/listnav/_container_node") + is_expected.to render_template('shared/summary/_textual_multilabel') end end end diff --git a/spec/controllers/container_project_controller_spec.rb b/spec/controllers/container_project_controller_spec.rb index 183eb0205a2..dcc280042d0 100644 --- a/spec/controllers/container_project_controller_spec.rb +++ b/spec/controllers/container_project_controller_spec.rb @@ -38,6 +38,7 @@ it do is_expected.to have_http_status 200 is_expected.to render_template(:partial => "layouts/listnav/_container_project") + is_expected.to render_template('shared/summary/_textual_multilabel') end end end diff --git a/spec/controllers/container_service_controller_spec.rb b/spec/controllers/container_service_controller_spec.rb index 70b94497793..a2c9d21fc57 100644 --- a/spec/controllers/container_service_controller_spec.rb +++ b/spec/controllers/container_service_controller_spec.rb @@ -38,6 +38,7 @@ it do is_expected.to have_http_status 200 is_expected.to render_template(:partial => "layouts/listnav/_container_service") + is_expected.to render_template('shared/summary/_textual_multilabel') end end end diff --git a/spec/controllers/container_template_controller_spec.rb b/spec/controllers/container_template_controller_spec.rb index aeb52919fd9..acf017ca5d3 100644 --- a/spec/controllers/container_template_controller_spec.rb +++ b/spec/controllers/container_template_controller_spec.rb @@ -17,6 +17,7 @@ get :show, :params => { :id => container_template.id } expect(response.status).to eq(200) expect(response.body).to_not be_empty + expect(response).to render_template('shared/summary/_textual_multilabel') expect(assigns(:breadcrumbs)).to eq([{:name => "Container Templates", :url => "/container_template/show_list?page=&refresh=y"}, {:name => "Test Template (Summary)", diff --git a/spec/controllers/ems_cloud_controller_spec.rb b/spec/controllers/ems_cloud_controller_spec.rb index 3e5675dcc64..50b1a0c0bdd 100644 --- a/spec/controllers/ems_cloud_controller_spec.rb +++ b/spec/controllers/ems_cloud_controller_spec.rb @@ -574,4 +574,6 @@ end include_examples '#download_summary_pdf', :ems_amazon + + it_behaves_like "controller with custom buttons" end diff --git a/spec/controllers/ems_cluster_controller_spec.rb b/spec/controllers/ems_cluster_controller_spec.rb index a98bb7eb5e8..27c12df61cb 100644 --- a/spec/controllers/ems_cluster_controller_spec.rb +++ b/spec/controllers/ems_cluster_controller_spec.rb @@ -82,4 +82,6 @@ end include_examples '#download_summary_pdf', :ems_cluster + + it_behaves_like "controller with custom buttons" end diff --git a/spec/controllers/ems_common_controller_spec.rb b/spec/controllers/ems_common_controller_spec.rb index 949a50b825c..cdd5c243430 100644 --- a/spec/controllers/ems_common_controller_spec.rb +++ b/spec/controllers/ems_common_controller_spec.rb @@ -53,26 +53,6 @@ end end - context "#form_field_changed" do - before :each do - stub_user(:features => :all) - end - - it "form_div should be updated when server type is sent up" do - controller.instance_variable_set(:@edit, :new => {}, :key => "ems_edit__new") - session[:edit] = assigns(:edit) - post :form_field_changed, :params => { :server_emstype => "rhevm", :id => "new" } - expect(response.body).to include("form_div") - end - - it "form_div should not be updated when other fields are sent up" do - controller.instance_variable_set(:@edit, :new => {}, :key => "ems_edit__new") - session[:edit] = assigns(:edit) - post :form_field_changed, :params => { :name => "Test", :id => "new" } - expect(response.body).not_to include("form_div") - end - end - context "#set_record_vars" do context "strip leading/trailing whitespace from hostname/ipaddress" do after :each do diff --git a/spec/controllers/ems_infra_controller_spec.rb b/spec/controllers/ems_infra_controller_spec.rb index 0dda1f6ceec..9b2e782b34b 100644 --- a/spec/controllers/ems_infra_controller_spec.rb +++ b/spec/controllers/ems_infra_controller_spec.rb @@ -369,33 +369,6 @@ it { expect(response.status).to eq(200) } end - describe "UI interactions in the form" do - render_views - context "#form_field_changed" do - before do - stub_user(:features => :all) - EvmSpecHelper.create_guid_miq_server_zone - end - - it "retains the name field when server emstype is selected from the dropdown" do - ems = ManageIQ::Providers::InfraManager.new - controller.instance_variable_set(:@ems, ems) - controller.send(:set_form_vars) - edit = controller.instance_variable_get(:@edit) - edit[:new][:name] = "abc" - edit[:ems_types] = {"scvmm" => "Microsoft System Center VMM", - "openstack_infra" => "OpenStack Platform Director", - "rhevm" => "Red Hat Virtualization Manager", - "vmwarews" => "VMware vCenter"} - controller.instance_variable_set(:@edit, edit) - post :form_field_changed, :params => { :id => "new", :server_emstype => "scvmm" } - edit = controller.instance_variable_get(:@edit) - expect(edit[:new][:name]).to eq('abc') - expect(response.body).to include('input type=\"text\" name=\"name\" id=\"name\" value=\"abc\"') - end - end - end - describe "breadcrumbs path on a 'show' page of an Infrastructure Provider accessed from Dashboard maintab" do before do stub_user(:features => :all) @@ -813,4 +786,6 @@ end include_examples '#download_summary_pdf', :ems_vmware + + it_behaves_like "controller with custom buttons" end diff --git a/spec/controllers/ems_network_controller_spec.rb b/spec/controllers/ems_network_controller_spec.rb index 3b1434b12a7..3f2faa5873e 100644 --- a/spec/controllers/ems_network_controller_spec.rb +++ b/spec/controllers/ems_network_controller_spec.rb @@ -1,3 +1,5 @@ describe EmsNetworkController do include_examples :shared_examples_for_ems_network_controller, %w(openstack azure google amazon) + + it_behaves_like "controller with custom buttons" end diff --git a/spec/controllers/ems_physical_infra_controller_spec.rb b/spec/controllers/ems_physical_infra_controller_spec.rb index d3bc17ea260..1ec90a7bdc7 100644 --- a/spec/controllers/ems_physical_infra_controller_spec.rb +++ b/spec/controllers/ems_physical_infra_controller_spec.rb @@ -223,4 +223,6 @@ end include_examples '#download_summary_pdf', :ems_physical_infra + + it_behaves_like "controller with custom buttons" end diff --git a/spec/controllers/ems_storage_controller_spec.rb b/spec/controllers/ems_storage_controller_spec.rb index b336bef4eed..e68d71943b2 100644 --- a/spec/controllers/ems_storage_controller_spec.rb +++ b/spec/controllers/ems_storage_controller_spec.rb @@ -1,3 +1,5 @@ describe EmsStorageController do include_examples :shared_examples_for_ems_storage_controller, %w(openstack) + + it_behaves_like "controller with custom buttons" end diff --git a/spec/controllers/host_controller_spec.rb b/spec/controllers/host_controller_spec.rb index 0c8c4b78585..86d8cda3378 100644 --- a/spec/controllers/host_controller_spec.rb +++ b/spec/controllers/host_controller_spec.rb @@ -273,7 +273,9 @@ it "renders a new page with ng-required condition set to false for password" do get :new expect(response.status).to eq(200) - expect(response.body).to include("name='default_password' ng-disabled='!showVerify('default_userid')' ng-model='hostModel.default_password' ng-required='false'") + expect(response.body).to include("name='default_password' ng-disabled='!vm.showVerify('default_userid')' ng-model='$parent.hostModel.default_password' ng-required='false'") end end + + it_behaves_like "controller with custom buttons" end diff --git a/spec/controllers/middleware_server_controller_spec.rb b/spec/controllers/middleware_server_controller_spec.rb index fdc4c88b81e..b6c95d86672 100644 --- a/spec/controllers/middleware_server_controller_spec.rb +++ b/spec/controllers/middleware_server_controller_spec.rb @@ -30,4 +30,18 @@ end end end + + # FIXME: should test for nested entities: %w(middleware_datasources middleware_deployments middleware_messagings) + describe '#show' do + before do + EvmSpecHelper.create_guid_miq_server_zone + end + + let(:server) { FactoryGirl.create(:middleware_server) } + let(:deployment) { FactoryGirl.create(:middleware_deployment, :middleware_server => server) } + + it "show associated server groups" do + assert_nested_list(server, [deployment], 'middleware_deployments', 'All Middleware Deployments') + end + end end diff --git a/spec/controllers/miq_ae_tools_controller_spec.rb b/spec/controllers/miq_ae_tools_controller_spec.rb index 4e43a89af79..456ec2ba6f3 100644 --- a/spec/controllers/miq_ae_tools_controller_spec.rb +++ b/spec/controllers/miq_ae_tools_controller_spec.rb @@ -5,6 +5,19 @@ context "#form_field_changed" do it "resets target id to nil, when target class is " do + new = { + :target_class => "EmsCluster", + :target_id => 1 + } + controller.instance_variable_set(:@resolve, :throw_ready => true, :new => new) + expect(controller).to receive(:render) + controller.instance_variable_set(:@_params, :target_class => '', :id => 'new') + controller.send(:form_field_changed) + expect(assigns(:resolve)[:new][:target_class]).to eq('') + expect(assigns(:resolve)[:new][:target_id]).to eq(nil) + end + + it "resets target id to nil, when target class is Vm" do new = { :target_class => "EmsCluster", :target_id => 1 diff --git a/spec/controllers/network_router_controller_spec.rb b/spec/controllers/network_router_controller_spec.rb index c61673391b7..fe3f33c86d1 100644 --- a/spec/controllers/network_router_controller_spec.rb +++ b/spec/controllers/network_router_controller_spec.rb @@ -151,7 +151,7 @@ :priority => MiqQueue::HIGH_PRIORITY, :role => 'ems_operations', :zone => @ems.my_zone, - :args => [{:name => "foo2"}] + :args => [{:name => "foo2", :external_gateway_info => {}}] } end diff --git a/spec/controllers/ops_controller/settings/label_tag_mapping_spec.rb b/spec/controllers/ops_controller/settings/label_tag_mapping_spec.rb index 36271ee5d8d..007d9800a80 100644 --- a/spec/controllers/ops_controller/settings/label_tag_mapping_spec.rb +++ b/spec/controllers/ops_controller/settings/label_tag_mapping_spec.rb @@ -15,6 +15,14 @@ def use_form_to_create_mapping post :label_tag_mapping_edit, :button => 'add' end + def use_form_to_create_scoped_mapping + post :label_tag_mapping_edit + post :label_tag_mapping_field_changed, :id => 'new', :entity => 'Amazon::Vm' + post :label_tag_mapping_field_changed, :id => 'new', :label_name => 'some-amazon-label' + post :label_tag_mapping_field_changed, :id => 'new', :category => 'Amazon Vms' + post :label_tag_mapping_edit, :button => 'add' + end + it "creates new mapping on save" do use_form_to_create_mapping mapping = ContainerLabelTagMapping.last @@ -25,7 +33,17 @@ def use_form_to_create_mapping expect(mapping.tag.classification.description).to eq('My Cat') end - it "can edit existing mapping" do + it "creates new scoped mapping on save" do + use_form_to_create_scoped_mapping + mapping = ContainerLabelTagMapping.last + expect(mapping.labeled_resource_type).to eq('Vm') + expect(mapping.label_name).to eq('some-amazon-label') + expect(mapping.label_value).to be nil + expect(mapping.tag.classification.category?).to be true + expect(mapping.tag.classification.description).to eq('Amazon Vms') + end + + it "can edit an existing mapping" do use_form_to_create_mapping mapping = ContainerLabelTagMapping.last @@ -55,5 +73,34 @@ def use_form_to_create_mapping post :label_tag_mapping_edit, :id => mapping.id.to_s, :button => 'save' expect(mapping.tag.classification.description).to eq('Edited Again Cat') end + + it "can edit an existing scoped mapping" do + use_form_to_create_scoped_mapping + mapping = ContainerLabelTagMapping.last + + post :label_tag_mapping_edit, :id => mapping.id.to_s + expect(assigns(:edit)[:new]).to include(:entity => 'Vm', + :label_name => 'some-amazon-label', + :category => 'Amazon Vms') + + post :label_tag_mapping_field_changed, :id => mapping.id.to_s, :category => 'Edited Amazon' + expect(assigns(:edit)[:new]).to include(:entity => 'Vm', + :label_name => 'some-amazon-label', + :category => 'Edited Amazon') + + post :label_tag_mapping_edit, :id => mapping.id.to_s, :button => 'reset' + expect(assigns(:edit)[:new]).to include(:entity => 'Vm', + :label_name => 'some-amazon-label', + :category => 'Amazon Vms') + + post :label_tag_mapping_field_changed, :id => mapping.id.to_s, :category => 'Edited Again Amazon' + expect(assigns(:edit)[:new]).to include(:entity => 'Vm', + :label_name => 'some-amazon-label', + :category => 'Edited Again Amazon') + + controller.instance_variable_set :@flash_array, nil + post :label_tag_mapping_edit, :id => mapping.id.to_s, :button => 'save' + expect(mapping.tag.classification.description).to eq('Edited Again Amazon') + end end end diff --git a/spec/controllers/ops_controller/settings/schedules_spec.rb b/spec/controllers/ops_controller/settings/schedules_spec.rb index d93af588b13..f463e3ebe5c 100644 --- a/spec/controllers/ops_controller/settings/schedules_spec.rb +++ b/spec/controllers/ops_controller/settings/schedules_spec.rb @@ -139,6 +139,26 @@ expect(set_vars[:parameters]).to include(:request => filter_params[:object_request], "key1" => "value1", "VmOrTemplate::vm" => vm.id) expect(set_vars[:uri_parts]).to include(:namespace => filter_params[:starting_object]) end + + it "sets proper filter values for 'container_image_check_compliance' action type" do + params[:action_typ] = "container_image_check_compliance" + + allow(controller).to receive(:params).and_return(params) + controller.send(:schedule_set_record_vars, schedule) + key = schedule.filter.exp.keys.first + expect(schedule.filter.exp[key]["field"]).to eq("ContainerImage-name") + expect(schedule.sched_action).to eq(:method=>"check_compliance") + end + + it "sets proper filter values for 'vm_check_compliance' action type" do + params[:action_typ] = "vm_check_compliance" + + allow(controller).to receive(:params).and_return(params) + controller.send(:schedule_set_record_vars, schedule) + key = schedule.filter.exp.keys.first + expect(schedule.filter.exp[key]["field"]).to eq("Vm-name") + expect(schedule.sched_action).to eq(:method=>"check_compliance") + end end context "#build_attrs_from_params" do diff --git a/spec/controllers/persistent_volume_controller_spec.rb b/spec/controllers/persistent_volume_controller_spec.rb index 7474284afe4..206aa54b151 100644 --- a/spec/controllers/persistent_volume_controller_spec.rb +++ b/spec/controllers/persistent_volume_controller_spec.rb @@ -61,6 +61,7 @@ is_expected.to have_http_status 200 is_expected.to render_template(:partial => 'layouts/_textual_groups_generic') is_expected.to render_template(:partial => 'layouts/listnav/_persistent_volume') + is_expected.to render_template('shared/summary/_textual_multilabel') end end end diff --git a/spec/controllers/service_controller_spec.rb b/spec/controllers/service_controller_spec.rb index 45b76c26171..302fa3bc5a2 100644 --- a/spec/controllers/service_controller_spec.rb +++ b/spec/controllers/service_controller_spec.rb @@ -66,4 +66,6 @@ expect(flash_message[:level]).to be(:success) end end + + it_behaves_like "explorer controller with custom buttons" end diff --git a/spec/controllers/storage_controller_spec.rb b/spec/controllers/storage_controller_spec.rb index 2e657bef895..77a66084687 100644 --- a/spec/controllers/storage_controller_spec.rb +++ b/spec/controllers/storage_controller_spec.rb @@ -296,4 +296,6 @@ end include_examples '#download_summary_pdf', :storage + + it_behaves_like "controller with custom buttons" end diff --git a/spec/controllers/vm_cloud_controller/trees_spec.rb b/spec/controllers/vm_cloud_controller/trees_spec.rb index 5daa75434e7..65211c85750 100644 --- a/spec/controllers/vm_cloud_controller/trees_spec.rb +++ b/spec/controllers/vm_cloud_controller/trees_spec.rb @@ -33,7 +33,7 @@ %w(vm_amazon Amazon) ].each do |instance, name| it "renders Instance details for #{name} node" do - instance = FactoryGirl.create(instance.to_sym) + instance = FactoryGirl.create(instance.to_sym, :with_provider) session[:settings] = {} seed_session_trees('vm_cloud', 'instances_tree') diff --git a/spec/controllers/vm_cloud_controller_spec.rb b/spec/controllers/vm_cloud_controller_spec.rb index f603db7cfca..39ad798f888 100644 --- a/spec/controllers/vm_cloud_controller_spec.rb +++ b/spec/controllers/vm_cloud_controller_spec.rb @@ -186,4 +186,6 @@ include_examples '#download_summary_pdf', :vm_cloud include_examples '#download_summary_pdf', :template_azure + + it_behaves_like "explorer controller with custom buttons" end diff --git a/spec/controllers/vm_infra_controller_spec.rb b/spec/controllers/vm_infra_controller_spec.rb index c4c0e2333cf..2770e0dfe2e 100644 --- a/spec/controllers/vm_infra_controller_spec.rb +++ b/spec/controllers/vm_infra_controller_spec.rb @@ -475,4 +475,6 @@ include_examples '#download_summary_pdf', :vm_vmware include_examples '#download_summary_pdf', :template_vmware + + it_behaves_like "explorer controller with custom buttons" end diff --git a/spec/controllers/vm_or_template_controller_spec.rb b/spec/controllers/vm_or_template_controller_spec.rb index 3bafdcc6a61..a066811268d 100644 --- a/spec/controllers/vm_or_template_controller_spec.rb +++ b/spec/controllers/vm_or_template_controller_spec.rb @@ -127,4 +127,6 @@ end end end + + it_behaves_like "explorer controller with custom buttons" end diff --git a/spec/helpers/application_helper/buttons/middleware_standalone_server_action_spec.rb b/spec/helpers/application_helper/buttons/middleware_standalone_server_action_spec.rb index aa762def9dd..ea0a95b9c27 100644 --- a/spec/helpers/application_helper/buttons/middleware_standalone_server_action_spec.rb +++ b/spec/helpers/application_helper/buttons/middleware_standalone_server_action_spec.rb @@ -14,6 +14,27 @@ it { expect(subject.visible?).to be_truthy } end end + + context 'when record responds to #immutable?' do + def create_immutable(value) + {'Immutable' => value.to_s } + end + + context 'when server.properties.immutable? == true' do + let(:immutable_server) { FactoryGirl.create(:middleware_server, :properties => create_immutable(true)) } + let(:record) { immutable_server } + subject { described_class.new(setup_view_context_with_sandbox({}), {}, {'record' => record}, {}) } + it { expect(subject).not_to be_visible } + end + + context 'when server.properties.immutable? == false' do + let(:mutable_server) { FactoryGirl.create(:middleware_server, :properties => create_immutable(false)) } + let(:record) { mutable_server } + subject { described_class.new(setup_view_context_with_sandbox({}), {}, {'record' => record}, {}) } + it { expect(subject).to be_visible } + end + end + context 'when record does not respond to #in_domain?' do let(:record) { FactoryGirl.create(:middleware_deployment, :middleware_server => server) } context 'when server.in_domain? == true' do diff --git a/spec/helpers/application_helper/buttons/set_ownership_spec.rb b/spec/helpers/application_helper/buttons/set_ownership_spec.rb new file mode 100644 index 00000000000..01ff0b90b2c --- /dev/null +++ b/spec/helpers/application_helper/buttons/set_ownership_spec.rb @@ -0,0 +1,30 @@ +describe ApplicationHelper::Button::SetOwnership do + let(:view_context) { setup_view_context_with_sandbox({}) } + + let(:ext_management_system) do + FactoryGirl.create(:ext_management_system, :tenant_mapping_enabled => tenant_mapping_enabled) + end + + let(:record) { FactoryGirl.create(:vm, :ext_management_system => ext_management_system) } + + let(:button) { described_class.new(view_context, {}, {'record' => record}, {}) } + + describe '#calculate_properties' do + before { button.calculate_properties } + + context 'when provider has tenant mapping enabled' do + let(:tenant_mapping_enabled) { true } + it_behaves_like 'a disabled button', 'Ownership is controlled by tenant mapping' + end + + context 'when provider has tenant mapping disabled' do + let(:tenant_mapping_enabled) { false } + it_behaves_like 'an enabled button' + end + + context 'when vm is not belong to any Vm' do + let(:ext_management_system) { nil } + it_behaves_like 'an enabled button' + end + end +end diff --git a/spec/helpers/application_helper/dialogs_spec.rb b/spec/helpers/application_helper/dialogs_spec.rb index 1569c8ffcc8..a54f5923be2 100644 --- a/spec/helpers/application_helper/dialogs_spec.rb +++ b/spec/helpers/application_helper/dialogs_spec.rb @@ -11,25 +11,52 @@ let(:trigger_auto_refresh) { nil } describe "#dialog_dropdown_select_values" do - before do - val_array = [["cat", "Cat"], ["dog", "Dog"]] - @val_array_reversed = val_array.collect(&:reverse) - @field = DialogFieldDropDownList.new(:values => val_array) + let(:dialog_field) { instance_double("DialogFieldDropDownList", :values => values, :type => type) } + + context "when the field type includes drop down" do + let(:type) { "BananaDropDown" } + let(:values) { [%w(cat Cat), %w(dog Dog)] } + + it "returns the values collected and reversed" do + reversed_values = values.collect(&:reverse) + expect(helper.dialog_dropdown_select_values(dialog_field)).to eq(reversed_values) + end + end + + context "when the field type includes tag control" do + let(:type) { "BananaTagControl" } + let(:values) { [{:description => "Cat", :id => 123}, {:description => "Dog", :id => 321}] } + + it "returns the values mapped to a description and id" do + expect(helper.dialog_dropdown_select_values(dialog_field)).to eq([["Cat", 123], ["Dog", 321]]) + end end + end - it "not required" do - @field.required = false - expect(helper.dialog_dropdown_select_values(@field, nil)).to eq([["", nil]] + @val_array_reversed) + describe "#category_tags" do + before do + allow(Classification).to receive(:find_by).with(:id => 123).and_return(classification) end - it "required, nil selected" do - @field.required = true - expect(helper.dialog_dropdown_select_values(@field, nil)).to eq([["", nil]] + @val_array_reversed) + context "when the category exists with the given id" do + let(:classification) { instance_double("Classification", :entries => [entry1, entry2]) } + let(:entry1) { instance_double("Classification", :name => "cat", :description => "Cat") } + let(:entry2) { instance_double("Classification", :name => "dog", :description => "Dog") } + + it "returns a list of entries by name and description" do + expect(helper.category_tags(123)).to eq([ + {:name => "cat", :description => "Cat"}, + {:name => "dog", :description => "Dog"} + ]) + end end - it "required, non-nil selected" do - @field.required = true - expect(helper.dialog_dropdown_select_values(@field, "cat")).to eq(@val_array_reversed) + context "when the category does not exist by the given id" do + let(:classification) { nil } + + it "returns an empty array" do + expect(helper.category_tags(123)).to eq([]) + end end end diff --git a/spec/helpers/application_helper_spec.rb b/spec/helpers/application_helper_spec.rb index 79f1336da2c..c84de147864 100644 --- a/spec/helpers/application_helper_spec.rb +++ b/spec/helpers/application_helper_spec.rb @@ -917,115 +917,6 @@ end end - describe "generate custom toolbar file names" do - context "for classic (non-explorer) CI main summary screens" do - before(:each) do - @lastaction = "show" - @record = true - end - - ["miq_template", "ems_cloud", "ems_cluster", "ems_infra", "host", "storage"].each do |table| - it "for table #{table}" do - @layout = table - @display = "main" - text = helper.custom_toolbar_filename - expect(text).to eq("custom_buttons_tb") - end - end - - # Just a few tables that don't have custom toolbars - ["ems_events", "storage_managers"].each do |table| - it "for table #{table}" do - @layout = table - text = helper.custom_toolbar_filename - expect(text).to be_nil - end - end - end - - context "for classic (non-explorer) CI non-main summary screens" do - before(:each) do - @lastaction = "show" - @record = true - end - - ["miq_template", "ems_cluster", "host", "storage", "management_system"].each do |table| - it "for table #{table}" do - @layout = table - @display = "not_main" - text = helper.custom_toolbar_filename - expect(text).to be_nil - end - end - end - - context "for classic (non-explorer) CI list view screens" do - before(:each) do - @lastaction = "show_list" - @record = true - end - - ["miq_template", "ems_cluster", "host", "storage", "management_system"].each do |table| - it "for table #{table}" do - @layout = table - text = helper.custom_toolbar_filename - expect(text).to be_nil - end - end - - # Just a few tables that don't have custom toolbars - ["ems_events", "storage_managers"].each do |table| - it "for table #{table}" do - @layout = table - text = helper.custom_toolbar_filename - expect(text).to be_nil - end - end - end - - context "for explorer-based screens" do - before(:each) do - @explorer = true - @sb = {:active_tree => "my_tree", - :trees => {"my_tree" => {:active_node => nil}} - } - end - - it "for non custom toolbar controller" do - allow(helper).to receive(:params) { {:controller => "policy"} } - text = helper.custom_toolbar_filename - expect(text).to be_nil - end - - ["vm_or_template", "service"].each do |table| - it "for #{table} controller on root node" do - @sb[:trees][@sb[:active_tree]][:active_node] = "root" - allow(helper).to receive(:params) { {:controller => table} } - text = helper.custom_toolbar_filename - expect(text).to eq("blank_view_tb") - end - - it "for #{table} controller on record node summary screen" do - @sb[:trees][@sb[:active_tree]][:active_node] = "v-1r35" - @display = "main" - @record = true - allow(helper).to receive(:params) { {:controller => table} } - text = helper.custom_toolbar_filename - expect(text).to eq("custom_buttons_tb") - end - - it "for #{table} controller on record node, but not summary screen" do - @sb[:trees][@sb[:active_tree]][:active_node] = "v-1r35" - @display = "not_main" - @record = true - allow(helper).to receive(:params) { {:controller => table} } - text = helper.custom_toolbar_filename - expect(text).to eq("blank_view_tb") - end - end - end - end - describe '#pressed2model_action' do examples = { 'miq_template_bar' => ['miq_template', 'bar'], diff --git a/spec/javascripts/controllers/catalog/catalog_item_form_controller_spec.js b/spec/javascripts/controllers/catalog/catalog_item_form_controller_spec.js index d016a085de4..5d09119d4e7 100644 --- a/spec/javascripts/controllers/catalog/catalog_item_form_controller_spec.js +++ b/spec/javascripts/controllers/catalog/catalog_item_form_controller_spec.js @@ -35,6 +35,13 @@ describe('catalogItemFormController', function() { }, network_credential_id: undefined, cloud_credential_id: undefined + }, + retirement: { + remove_resources: 'yes_without_playbook', + hosts: undefined, + extra_vars: Object({ }), + network_credential_id: undefined, + cloud_credential_id: undefined } } }; diff --git a/spec/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller_spec.js b/spec/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller_spec.js index ce20f14fb4a..47d017711e7 100644 --- a/spec/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller_spec.js +++ b/spec/javascripts/controllers/container_live_dashboard/container_live_dashboard_controller_spec.js @@ -1,6 +1,7 @@ describe('adHocMetricsController', function() { var $scope, $controller, $httpBackend, pfViewUtils; var mock_data = getJSONFixture('container_live_dashboard_response.json'); + var mock_tenants_data = getJSONFixture('container_live_dashboard_tenant_response.json'); var mock_metrics_data = getJSONFixture('container_live_dashboard_metrics_response.json'); var mock_data1_data = getJSONFixture('container_live_dashboard_data1_response.json'); var mock_data2_data = getJSONFixture('container_live_dashboard_data2_response.json'); @@ -16,10 +17,11 @@ describe('adHocMetricsController', function() { beforeEach(inject(function(_$httpBackend_, $rootScope, _$controller_) { $httpBackend = _$httpBackend_; - $httpBackend.when('GET','/container_dashboard/data/42/?live=true&tenant=_ops&query=metric_tags&limit=250').respond(mock_data); - $httpBackend.when('GET','/container_dashboard/data/42/?live=true&tenant=_ops&limit=1000&query=metric_definitions&tags={}').respond(mock_metrics_data); - $httpBackend.when('GET','/container_dashboard/data/42/?live=true&type=gauge&tenant=_ops&query=get_data&metric_id=hello1&limit=5&order=DESC').respond(mock_data1_data); - $httpBackend.when('GET','/container_dashboard/data/42/?live=true&type=gauge&tenant=_ops&query=get_data&metric_id=hello2&limit=5&order=DESC').respond(mock_data2_data); + $httpBackend.when('GET','/container_dashboard/data/42/?live=true&query=get_tenants').respond(mock_tenants_data); + $httpBackend.when('GET','/container_dashboard/data/42/?live=true&tenant=_system&query=metric_tags&limit=250').respond(mock_data); + $httpBackend.when('GET','/container_dashboard/data/42/?live=true&tenant=_system&limit=10000&query=metric_definitions&tags={}&page=1&items_per_page=10').respond(mock_metrics_data); + $httpBackend.when('GET','/container_dashboard/data/42/?live=true&type=gauge&tenant=_system&query=get_data&metric_id=hello1&limit=5&order=DESC').respond(mock_data1_data); + $httpBackend.when('GET','/container_dashboard/data/42/?live=true&type=gauge&tenant=_system&query=get_data&metric_id=hello2&limit=5&order=DESC').respond(mock_data2_data); $controller = _$controller_('adHocMetricsController'); $controller.refreshList(); $httpBackend.flush(); diff --git a/spec/javascripts/controllers/credentials/credentials_controller_spec.js b/spec/javascripts/controllers/credentials/credentials_controller_spec.js index 88887f06f31..662c263180f 100644 --- a/spec/javascripts/controllers/credentials/credentials_controller_spec.js +++ b/spec/javascripts/controllers/credentials/credentials_controller_spec.js @@ -1,15 +1,16 @@ describe('CredentialsController', function() { - var $scope, $controller, $httpBackend, miqService; + var $scope, vm, $httpBackend; beforeEach(module('ManageIQ')); - beforeEach(inject(function(_$httpBackend_, $rootScope, _$controller_, _miqService_) { - miqService = _miqService_; + beforeEach(inject(function(_$httpBackend_, $rootScope, _$controller_) { $scope = $rootScope.$new(); $httpBackend = _$httpBackend_; $scope.model = "hostModel"; - $controller = _$controller_('CredentialsController', - {$http: $httpBackend, $scope: $scope, miqService: miqService}); + vm = _$controller_('CredentialsController', + {$http: $httpBackend, + $scope: $scope, + $attrs: {'vmScope': '$parent'}}); })); afterEach(function() { @@ -19,95 +20,99 @@ describe('CredentialsController', function() { describe('when formId is new', function() { beforeEach(inject(function(_$httpBackend_, $rootScope, _$controller_) { - $scope.formId = 'new'; - $controller = _$controller_('CredentialsController', - {$http: $httpBackend, $scope: $scope, miqService: miqService}); + $scope.$parent.formId = 'new'; + vm = _$controller_('CredentialsController', + {$http: $httpBackend, + $scope: $scope, + $attrs: {'vmScope': '$parent'}}); })); it('initializes stored password state flags for new records', function() { - expect($scope.newRecord).toBeTruthy(); - expect($scope.bChangeStoredPassword).toBeUndefined(); - expect($scope.bCancelPasswordChange).toBeUndefined(); + expect(vm.newRecord).toBeTruthy(); + expect(vm.bChangeStoredPassword).toBeUndefined(); + expect(vm.bCancelPasswordChange).toBeUndefined(); }); }); describe('when formId is not new', function() { beforeEach(inject(function(_$httpBackend_, $rootScope, _$controller_) { - $scope.formId = '12345'; - $controller = _$controller_('CredentialsController', - {$http: $httpBackend, $scope: $scope, miqService: miqService}); + $scope.$parent.formId = '12345'; + vm = _$controller_('CredentialsController', + {$http: $httpBackend, $scope: $scope, $attrs: {'vmScope': '$parent'}}); })); it('initializes stored password state flags for existing records', function() { - expect($scope.newRecord).toBeFalsy(); - expect($scope.bChangeStoredPassword).toBeFalsy(); - expect($scope.bCancelPasswordChange).toBeFalsy(); + expect(vm.newRecord).toBeFalsy(); + expect(vm.bChangeStoredPassword).toBeFalsy(); + expect(vm.bCancelPasswordChange).toBeFalsy(); }); }); it('sets proper values when Change Stored Password is clicked', function() { - $scope.changeStoredPassword(); - expect($scope.bChangeStoredPassword).toBeTruthy(); - expect($scope.bCancelPasswordChange).toBeFalsy(); + vm.changeStoredPassword(); + expect(vm.bChangeStoredPassword).toBeTruthy(); + expect(vm.bCancelPasswordChange).toBeFalsy(); }); it('sets proper values when Cancel Password change is clicked', function() { - $scope.changeStoredPassword(); - $scope.cancelPasswordChange(); - expect($scope.bChangeStoredPassword).toBeFalsy(); - expect($scope.bCancelPasswordChange).toBeTruthy(); + vm.changeStoredPassword(); + vm.cancelPasswordChange(); + expect(vm.bChangeStoredPassword).toBeFalsy(); + expect(vm.bCancelPasswordChange).toBeTruthy(); }); it('shows Verify Password field when record is new', function() { - $scope.newRecord = true; - expect($scope.showVerify('default_userid')).toBeTruthy(); + vm.newRecord = true; + $scope.$parent.hostModel = {'default_userid': '', 'default_password': '', 'default_verify': ''}; + $scope.$parent.modelCopy = angular.copy( $scope.$parent.hostModel ); + expect(vm.showVerify('default_userid')).toBeTruthy(); }); it('shows Verify Password field only after Change Stored Password is clicked', function() { - $scope.hostModel = {'default_userid': 'abc', 'default_password': '********', 'default_verify': '********'}; - $scope.modelCopy = angular.copy( $scope.hostModel ); - expect($scope.showVerify('default_userid')).toBeFalsy(); - $scope.changeStoredPassword(); - expect($scope.showVerify('default_userid')).toBeTruthy(); + $scope.$parent.hostModel = {'default_userid': 'abc', 'default_password': '********', 'default_verify': '********'}; + $scope.$parent.modelCopy = angular.copy( $scope.$parent.hostModel ); + expect(vm.showVerify('default_userid')).toBeFalsy(); + vm.changeStoredPassword(); + expect(vm.showVerify('default_userid')).toBeTruthy(); }); it('shows Verify Password field when record is not new, userid does not exist', function() { - $scope.newRecord = false; - $scope.hostModel = {'default_userid': '', 'default_password': '', 'default_verify': ''}; - $scope.modelCopy = angular.copy( $scope.hostModel ); - expect($scope.showVerify('default_userid')).toBeTruthy(); + vm.newRecord = false; + $scope.$parent.hostModel = {'default_userid': '', 'default_password': '', 'default_verify': ''}; + $scope.$parent.modelCopy = angular.copy( $scope.$parent.hostModel ); + expect(vm.showVerify('default_userid')).toBeTruthy(); }); it('shows password change links when record is not new and userid exists', function() { - $scope.newRecord = false; - $scope.hostModel = {'default_userid': 'abc', 'default_password': '********', 'default_verify': '********'}; - $scope.modelCopy = angular.copy( $scope.hostModel ); - expect($scope.showChangePasswordLinks('default_userid')).toBeTruthy(); + vm.newRecord = false; + $scope.$parent.hostModel = {'default_userid': 'abc', 'default_password': '********', 'default_verify': '********'}; + $scope.$parent.modelCopy = angular.copy( $scope.$parent.hostModel ); + expect(vm.showChangePasswordLinks('default_userid')).toBeTruthy(); }); it('does not show password change links when record is not new and userid does not exist', function() { - $scope.newRecord = false; - $scope.hostModel = {'default_userid': '', 'default_password': '', 'default_verify': ''}; - $scope.modelCopy = angular.copy( $scope.hostModel ); - expect($scope.showChangePasswordLinks('default_userid')).toBeFalsy(); + vm.newRecord = false; + $scope.$parent.hostModel = {'default_userid': '', 'default_password': '', 'default_verify': ''}; + $scope.$parent.modelCopy = angular.copy( $scope.$parent.hostModel ); + expect(vm.showChangePasswordLinks('default_userid')).toBeFalsy(); }); it('does not show password change links when record is not new, userid did not exist before but is now filled in by the user', function() { - $scope.newRecord = false; - $scope.hostModel = {'default_userid': '', 'default_password': '', 'default_verify': ''}; - $scope.modelCopy = angular.copy( $scope.hostModel ); - $scope.hostModel.default_userid = 'xyz'; - expect($scope.showChangePasswordLinks('default_userid')).toBeFalsy(); + vm.newRecord = false; + $scope.$parent.hostModel = {'default_userid': '', 'default_password': '', 'default_verify': ''}; + $scope.$parent.modelCopy = angular.copy( $scope.$parent.hostModel ); + $scope.$parent.hostModel.default_userid = 'xyz'; + expect(vm.showChangePasswordLinks('default_userid')).toBeFalsy(); }); it('restores the flag values to original state when reset is clicked after Change stored password link was clicked', function() { - $scope.changeStoredPassword(); - $scope.resetClicked(); - expect($scope.bCancelPasswordChange).toBeTruthy(); - expect($scope.bChangeStoredPassword).toBeFalsy(); + vm.changeStoredPassword(); + vm.resetClicked(); + expect(vm.bCancelPasswordChange).toBeTruthy(); + expect(vm.bChangeStoredPassword).toBeFalsy(); }); it('restores the flag values to original state when reset is clicked before Change stored password link was clicked', function() { - $scope.resetClicked(); - expect($scope.bCancelPasswordChange).toBeFalsy(); - expect($scope.bChangeStoredPassword).toBeFalsy(); + vm.resetClicked(); + expect(vm.bCancelPasswordChange).toBeFalsy(); + expect(vm.bChangeStoredPassword).toBeFalsy(); }); }); diff --git a/spec/javascripts/controllers/provider_foreman/provider_foreman_form_controller_spec.js b/spec/javascripts/controllers/provider_foreman/provider_foreman_form_controller_spec.js index 292714ccebe..c9b3e72f283 100644 --- a/spec/javascripts/controllers/provider_foreman/provider_foreman_form_controller_spec.js +++ b/spec/javascripts/controllers/provider_foreman/provider_foreman_form_controller_spec.js @@ -1,5 +1,5 @@ describe('providerForemanFormController', function() { - var $scope, $controller, $httpBackend, miqService; + var $scope, vm, $httpBackend, miqService; beforeEach(module('ManageIQ')); @@ -22,7 +22,7 @@ describe('providerForemanFormController', function() { $httpBackend = _$httpBackend_; $httpBackend.whenGET('/provider_foreman/provider_foreman_form_fields/new').respond(providerForemanFormResponse); - $controller = _$controller_('providerForemanFormController', { + vm = _$controller_('providerForemanFormController', { $scope: $scope, providerForemanFormId: 'new', miqService: miqService @@ -38,25 +38,25 @@ describe('providerForemanFormController', function() { describe('initialization', function() { describe('when the providerForemanFormId is new', function() { it('sets the name to blank', function () { - expect($scope.providerForemanModel.name).toEqual(''); + expect(vm.providerForemanModel.name).toEqual(''); }); it('sets the zone to blank', function () { - expect($scope.providerForemanModel.zone).toEqual('foo_zone'); + expect(vm.providerForemanModel.zone).toEqual('foo_zone'); }); it('sets the url to blank', function () { - expect($scope.providerForemanModel.url).toEqual(''); + expect(vm.providerForemanModel.url).toEqual(''); }); it('sets the verify_ssl to blank', function () { - expect($scope.providerForemanModel.verify_ssl).toBeFalsy(); + expect(vm.providerForemanModel.verify_ssl).toBeFalsy(); }); it('sets the log_userid to blank', function () { - expect($scope.providerForemanModel.log_userid).toEqual(''); + expect(vm.providerForemanModel.log_userid).toEqual(''); }); it('sets the log_password to blank', function () { - expect($scope.providerForemanModel.log_password).toEqual(''); + expect(vm.providerForemanModel.log_password).toEqual(''); }); it('sets the log_verify to blank', function () { - expect($scope.providerForemanModel.log_verify).toEqual(''); + expect(vm.providerForemanModel.log_verify).toEqual(''); }); }); @@ -71,7 +71,7 @@ describe('providerForemanFormController', function() { beforeEach(inject(function(_$controller_) { $httpBackend.whenGET('/provider_foreman/provider_foreman_form_fields/12345').respond(providerForemanFormResponse); - $controller = _$controller_('providerForemanFormController', + vm = _$controller_('providerForemanFormController', { $scope: $scope, providerForemanFormId: '12345', @@ -81,36 +81,36 @@ describe('providerForemanFormController', function() { })); it('sets the name to the value returned from http request', function () { - expect($scope.providerForemanModel.name).toEqual('Foreman'); + expect(vm.providerForemanModel.name).toEqual('Foreman'); }); it('sets the zone to the value returned from the http request', function () { - expect($scope.providerForemanModel.zone).toEqual('My Test Zone'); + expect(vm.providerForemanModel.zone).toEqual('My Test Zone'); }); it('sets the url to the value returned from http request', function () { - expect($scope.providerForemanModel.url).toEqual('10.10.10.10'); + expect(vm.providerForemanModel.url).toEqual('10.10.10.10'); }); it('sets the verify_ssl to the value returned from http request', function () { - expect($scope.providerForemanModel.verify_ssl).toBeTruthy(); + expect(vm.providerForemanModel.verify_ssl).toBeTruthy(); }); it('sets the log_userid to the value returned from http request', function () { - expect($scope.providerForemanModel.log_userid).toEqual('admin'); + expect(vm.providerForemanModel.log_userid).toEqual('admin'); }); it('sets the log_password to the value returned from http request', function () { - expect($scope.providerForemanModel.log_password).toEqual(miqService.storedPasswordPlaceholder); + expect(vm.providerForemanModel.log_password).toEqual(miqService.storedPasswordPlaceholder); }); it('sets the log_verify to the value returned from http request', function () { - expect($scope.providerForemanModel.log_verify).toEqual(miqService.storedPasswordPlaceholder); + expect(vm.providerForemanModel.log_verify).toEqual(miqService.storedPasswordPlaceholder); }); }); }); describe('#resetClicked', function() { beforeEach(function() { - $scope.angularForm = { + var angularForm = { $setPristine: function (value){}, $setUntouched: function (value){}, }; - $scope.resetClicked(); + vm.resetClicked(angularForm); }); it('does not turn the spinner on', function() { @@ -120,10 +120,10 @@ describe('providerForemanFormController', function() { describe('#saveClicked', function() { beforeEach(function() { - $scope.angularForm = { + var angularForm = { $setPristine: function (value){} }; - $scope.saveClicked(); + vm.saveClicked(angularForm); }); it('turns the spinner on via the miqService', function() { @@ -135,16 +135,17 @@ describe('providerForemanFormController', function() { }); it('delegates to miqService.miqAjaxButton', function() { - expect(miqService.miqAjaxButton).toHaveBeenCalledWith('/provider_foreman/edit/new?button=save', true); + expect(miqService.miqAjaxButton).toHaveBeenCalledWith('/provider_foreman/edit/new?button=save', + vm.providerForemanModel); }); }); describe('#addClicked', function() { beforeEach(function() { - $scope.angularForm = { + var angularForm = { $setPristine: function (value){} }; - $scope.addClicked(); + vm.addClicked(angularForm); }); it('turns the spinner on via the miqService', function() { @@ -152,25 +153,24 @@ describe('providerForemanFormController', function() { }); it('delegates to miqService.miqAjaxButton', function() { - expect(miqService.miqAjaxButton).toHaveBeenCalledWith('/provider_foreman/edit/new?button=save', true); + expect(miqService.miqAjaxButton).toHaveBeenCalledWith('/provider_foreman/edit/new?button=save', + vm.providerForemanModel); }); }); describe('Validates credential fields', function() { beforeEach(inject(function($compile, miqService) { - var angularForm; var element = angular.element( '
' + - '' + - '' + - '' + - '' + + '' + + '' + + '' + + '' + '
' ); $compile(element)($scope); $scope.$digest(); - angularForm = $scope.angularForm; $scope.angularForm.url.$setViewValue('foreman-url'); $scope.angularForm.log_userid.$setViewValue('admin'); @@ -179,13 +179,13 @@ describe('providerForemanFormController', function() { })); it('returns true if all the Validation fields are filled in', function() { - expect($scope.canValidateBasicInfo()).toBe(true); + expect(vm.isBasicInfoValid($scope.angularForm)).toBe(true); }); }); describe('Checks for validateClicked in the scope', function() { it('contains validateClicked in the scope', function() { - expect($scope.validateClicked).toBeDefined(); + expect(vm.validateClicked).toBeDefined(); }); }); }); diff --git a/spec/javascripts/directives/checkchange_spec.js b/spec/javascripts/directives/checkchange_spec.js index b0a99b8da0f..0884bcb5012 100644 --- a/spec/javascripts/directives/checkchange_spec.js +++ b/spec/javascripts/directives/checkchange_spec.js @@ -2,7 +2,7 @@ describe('checkchange initialization', function() { var $scope, form; beforeEach(module('ManageIQ')); beforeEach(inject(function($compile, $rootScope, miqService) { - $scope = $rootScope; + $scope = $rootScope.$new(); var element = angular.element( '
' + '' + diff --git a/spec/javascripts/directives/clear_field_set_focus_spec.js b/spec/javascripts/directives/clear_field_set_focus_spec.js index f26cdb66f81..605378bdb53 100644 --- a/spec/javascripts/directives/clear_field_set_focus_spec.js +++ b/spec/javascripts/directives/clear_field_set_focus_spec.js @@ -1,48 +1,54 @@ describe('clearFieldSetFocus initialization', function() { - var $scope, form; + var $scope, form, ctrl, hostScope, credScope; beforeEach(module('ManageIQ')); - beforeEach(inject(function($compile, $rootScope, _miqService_) { - $scope = $rootScope; + beforeEach(inject(function($compile, $rootScope, _miqService_, _$controller_) { + hostScope = $rootScope.$new(); + credScope = hostScope.$new(); + $scope = credScope.$new(); miqService = _miqService_; + $scope.$parent.formId = '12345'; + ctrl = _$controller_('CredentialsController', + {$scope: credScope, $attrs: {'vmScope': '$parent'}}); + var element = angular.element( '' + - '' + - '' + + '' + + '' + + '' + '' ); - elem = $compile(element)($rootScope); + elem = $compile(element)(credScope); form = $scope.angularForm; - $scope.model = "hostModel"; - $scope.bChangeStoredPassword = false; - $scope.bCancelPasswordChange = false; - $scope.hostModel = {'password': '', 'password_verify': ''}; - $scope.hostModel.password = miqService.storedPasswordPlaceholder; - $scope.hostModel.password_verify = miqService.storedPasswordPlaceholder; + $scope.$parent.model = "hostModel"; + $scope.$parent.hostModel = {'password': '', 'password_verify': ''}; + $scope.$parent.hostModel.password = miqService.storedPasswordPlaceholder; + $scope.$parent.hostModel.password_verify = miqService.storedPasswordPlaceholder; + $scope.$parent.vm = ctrl; })); describe('clear-field-set-focus specs', function() { it('sets focus on the password field and clears out the placeholder', inject(function($timeout) { spyOn(elem[0][0], 'focus'); - $scope.bChangeStoredPassword = true; + ctrl.changeStoredPassword(); $timeout.flush(); - expect($scope.hostModel.password).toBe(''); + expect($scope.$parent.hostModel.password).toBe(''); expect((elem[0][0]).focus).toHaveBeenCalled(); })); it('clears out the placeholder in the password verify field', inject(function($timeout) { spyOn(elem[0][1], 'focus'); - $scope.bChangeStoredPassword = true; + ctrl.bChangeStoredPassword = true; $timeout.flush(); - expect($scope.hostModel.password_verify).toBe(''); + expect($scope.$parent.hostModel.password_verify).toBe(''); expect((elem[0][1]).focus).not.toHaveBeenCalled(); })); it('puts back the placeholder when cancel password change is selected', inject(function($timeout) { - $scope.bCancelPasswordChange = true; + ctrl.bCancelPasswordChange = true; $timeout.flush(); - expect($scope.hostModel.password).toBe(miqService.storedPasswordPlaceholder); - expect($scope.hostModel.password_verify).toBe(miqService.storedPasswordPlaceholder); + expect($scope.$parent.hostModel.password).toBe(miqService.storedPasswordPlaceholder); + expect($scope.$parent.hostModel.password_verify).toBe(miqService.storedPasswordPlaceholder); })); }); -}); \ No newline at end of file +}); diff --git a/spec/javascripts/fixtures/json/container_live_dashboard_tenant_response.json b/spec/javascripts/fixtures/json/container_live_dashboard_tenant_response.json new file mode 100644 index 00000000000..da53f5871ec --- /dev/null +++ b/spec/javascripts/fixtures/json/container_live_dashboard_tenant_response.json @@ -0,0 +1,8 @@ +{ + "tenants": + [ + {"label": "System", "value": "_system"}, + {"label": "Operations", "value": "_ops"}, + {"label": "Default", "value": "default"} + ] +} diff --git a/spec/presenters/tree_builder_services_spec.rb b/spec/presenters/tree_builder_services_spec.rb index ac6c8fbf1e0..915b2b9932f 100644 --- a/spec/presenters/tree_builder_services_spec.rb +++ b/spec/presenters/tree_builder_services_spec.rb @@ -4,17 +4,15 @@ it "generates tree" do create_deep_tree - expect(root_nodes).to eq( - @service => { - @service_c1 => { - @service_c11 => {}, - @service_c12 => { - @service_c121 => {} - } - }, - @service_c2 => {} - } + expect(root_nodes.size).to eq(2) + active_nodes = kid_nodes(root_nodes[0]) + retired_nodes = kid_nodes(root_nodes[1]) + expect(active_nodes).to eq( + @service => {}, + @service_c1 => {}, + @service_c2 => {} ) + expect(retired_nodes).to eq(@service_c3 => {}) end private @@ -24,17 +22,17 @@ def root_nodes end def kid_nodes(node) - builder.send(:x_get_tree_service_kids, node, false) + builder.send(:x_get_tree_custom_kids, node, false, {}) end def create_deep_tree - @service = FactoryGirl.create(:service, :display => true) - @service_c1 = FactoryGirl.create(:service, :service => @service, :display => true) - @service_c11 = FactoryGirl.create(:service, :service => @service_c1, :display => true) - @service_c12 = FactoryGirl.create(:service, :service => @service_c1, :display => true) - @service_c121 = FactoryGirl.create(:service, :service => @service_c12, :display => true) - @service_c2 = FactoryGirl.create(:service, :service => @service, :display => true) + @service = FactoryGirl.create(:service, :display => true, :retired => false) + @service_c1 = FactoryGirl.create(:service, :display => true, :retired => false) + @service_c11 = FactoryGirl.create(:service, :service => @service_c1, :display => true, :retired => false) + @service_c12 = FactoryGirl.create(:service, :service => @service_c1, :display => true, :retired => false) + @service_c121 = FactoryGirl.create(:service, :service => @service_c12, :display => true, :retired => false) + @service_c2 = FactoryGirl.create(:service, :display => true, :retired => false) # hidden - @service_c3 = FactoryGirl.create(:service, :service => @service, :display => false) + @service_c3 = FactoryGirl.create(:service, :retired => true) end end diff --git a/spec/presenters/tree_node_spec.rb b/spec/presenters/tree_node_spec.rb index d10129625a3..9c22820abe6 100644 --- a/spec/presenters/tree_node_spec.rb +++ b/spec/presenters/tree_node_spec.rb @@ -51,4 +51,33 @@ end end end + + describe '.exists?' do + subject { described_class.exists?(object) } + + context 'object has a direct subclass' do + let(:object) { User.new } + it { is_expected.to be_truthy } + end + + context 'object has an indirect subclass' do + let(:object) { VmOrTemplate.new } + it { is_expected.to be_truthy } + end + + context 'object is a hash' do + let(:object) { Hash.new } + it { is_expected.to be_truthy } + end + + context 'object is an array' do + let(:object) { [] } + it { is_expected.to be_falsey } + end + + context 'object is nil' do + let(:object) { nil } + it { is_expected.to be_falsey } + end + end end diff --git a/spec/services/ansible_tower_job_template_dialog_service_spec.rb b/spec/services/ansible_tower_job_template_dialog_service_spec.rb index 823dfe00b71..558b6cd9036 100644 --- a/spec/services/ansible_tower_job_template_dialog_service_spec.rb +++ b/spec/services/ansible_tower_job_template_dialog_service_spec.rb @@ -73,8 +73,8 @@ def assert_survey_group(group) assert_field(fields[1], DialogFieldTextBox, :name => 'param_param2', :data_type => 'string', :default_value => "as") assert_field(fields[2], DialogFieldTextAreaBox, :name => 'param_param3', :data_type => 'string', :default_value => "no\nhello") assert_field(fields[3], DialogFieldTextBox, :name => 'param_param4', :data_type => 'string', :default_value => "mypassword", :options => {:protected => true}) - assert_field(fields[4], DialogFieldDropDownList, :name => "param_param5", :default_value => "Peach", :values => [%w(Apple Apple), %w(Banana Banana), %w(Peach Peach)]) - assert_field(fields[5], DialogFieldDropDownList, :name => "param_param6", :default_value => "opt1", :values => [%w(222 222), %w(opt1 opt1), %w(opt3 opt3)]) + assert_field(fields[4], DialogFieldDropDownList, :name => "param_param5", :default_value => "Peach", :values => [[nil, ""], %w(Apple Apple), %w(Banana Banana), %w(Peach Peach)]) + assert_field(fields[5], DialogFieldDropDownList, :name => "param_param6", :default_value => "opt1", :values => [%w(222 222), [nil, ""], %w(opt1 opt1), %w(opt3 opt3)]) assert_field(fields[6], DialogFieldTextBox, :name => 'param_param7', :data_type => 'string', :default_value => "14.5") end diff --git a/spec/services/orchestration_template_dialog_service_spec.rb b/spec/services/orchestration_template_dialog_service_spec.rb index ce4ef526909..0e36578e1af 100644 --- a/spec/services/orchestration_template_dialog_service_spec.rb +++ b/spec/services/orchestration_template_dialog_service_spec.rb @@ -58,7 +58,7 @@ # Get the dropdown field field = dropdown_field(dialog) # Ensure the allowed values are properly stored. - assert_field(field, DialogFieldDropDownList, :name => "param_dropdown", :default_value => "val1", :values => [%w(val1 val1), %w(val2 val2)]) + assert_field(field, DialogFieldDropDownList, :name => "param_dropdown", :default_value => "val1", :values => [[nil, ""], %w(val1 val1), %w(val2 val2)]) end end @@ -73,7 +73,7 @@ # Get the dropdown field field = dropdown_field(dialog) # Ensure the allowed values are properly stored. - assert_field(field, DialogFieldDropDownList, :name => "param_dropdown", :default_value => "val1", :values => [%w(key1 val1), %w(key2 val2)]) + assert_field(field, DialogFieldDropDownList, :name => "param_dropdown", :default_value => "val1", :values => [[nil, ""], %w(key1 val1), %w(key2 val2)]) end end @@ -124,7 +124,7 @@ def assert_aws_openstack_stack_group(group) expect(fields[0].resource_action.fqname).to eq("/Cloud/Orchestration/Operations/Methods/Available_Tenants") assert_field(fields[0], DialogFieldDropDownList, :name => "tenant_name", :dynamic => true) assert_field(fields[1], DialogFieldTextBox, :name => "stack_name", :validator_rule => '^[A-Za-z][A-Za-z0-9\-]*$') - assert_field(fields[2], DialogFieldDropDownList, :name => "stack_onfailure", :values => [%w(DO_NOTHING Do\ nothing), %w(ROLLBACK Rollback)]) + assert_field(fields[2], DialogFieldDropDownList, :name => "stack_onfailure", :values => [[nil, ""], %w(DO_NOTHING Do\ nothing), %w(ROLLBACK Rollback)]) assert_field(fields[3], DialogFieldTextBox, :name => "stack_timeout", :data_type => 'integer') end @@ -143,7 +143,8 @@ def assert_azure_stack_group(group) assert_field(fields[2], DialogFieldDropDownList, :name => "resource_group", :dynamic => true) assert_field(fields[3], DialogFieldTextBox, :name => "new_resource_group", :validator_rule => '^[A-Za-z][A-Za-z0-9\-_]*$') - mode_values = [["Complete", "Complete (Delete other resources in the group)"], + mode_values = [[nil, ""], + ["Complete", "Complete (Delete other resources in the group)"], ["Incremental", "Incremental (Default)"]] assert_field(fields[4], DialogFieldDropDownList, :name => "deploy_mode", :values => mode_values) expect(fields[4].default_value).to eq("Incremental") @@ -193,7 +194,7 @@ def assert_parameter_group1(group) expect(fields.size).to eq(3) assert_field(fields[0], DialogFieldTextBox, :name => "param_flavor", :default_value => "m1.small") - assert_field(fields[1], DialogFieldDropDownList, :name => "param_image_id", :default_value => "F18-x86_64-cfntools", :values => [%w(F18-i386-cfntools F18-i386-cfntools), %w(F18-x86_64-cfntools F18-x86_64-cfntools)]) + assert_field(fields[1], DialogFieldDropDownList, :name => "param_image_id", :default_value => "F18-x86_64-cfntools", :values => [[nil, ""], %w(F18-i386-cfntools F18-i386-cfntools), %w(F18-x86_64-cfntools F18-x86_64-cfntools)]) assert_field(fields[2], DialogFieldTextBox, :name => "param_cartridges", :default_value => "cron,diy,haproxy,mysql,nodejs,perl,php,postgresql,python,ruby") end diff --git a/spec/shared/controllers/shared_example_for_custom_buttons_spec.rb b/spec/shared/controllers/shared_example_for_custom_buttons_spec.rb new file mode 100644 index 00000000000..e07dedb3903 --- /dev/null +++ b/spec/shared/controllers/shared_example_for_custom_buttons_spec.rb @@ -0,0 +1,65 @@ +shared_examples 'controller with custom buttons' do + it "has custom toolbar when showing main view w/ @record" do + controller.instance_variable_set(:@display, 'main') + controller.instance_variable_set(:@lastaction, 'show') + controller.instance_variable_set(:@record, true) + + expect(controller.custom_toolbar?).to be true + end + + it "has no custom toolbar when showing main view w/o @record" do + controller.instance_variable_set(:@display, 'main') + controller.instance_variable_set(:@lastaction, 'show') + controller.instance_variable_set(:@record, nil) + + expect(controller.custom_toolbar?).to be_falsey + end + + it "has no custom toolbar when not showing main view w/ @record" do + controller.instance_variable_set(:@display, 'not_main') + controller.instance_variable_set(:@lastaction, 'show') + controller.instance_variable_set(:@record, true) + + expect(controller.custom_toolbar?).to be_falsey + end +end + +shared_examples 'explorer controller with custom buttons' do + it "has no custom toolbar when on root node" do + controller.instance_variable_set(:@display, 'main') + controller.instance_variable_set(:@explorer, true) + controller.instance_variable_set( + :@sb, + :active_tree => "my_tree", + :trees => {"my_tree" => {:active_node => 'root'}} + ) + + expect(controller.custom_toolbar?).to eq(:blank) + end + + it "has no custom toolbar when not showing main view w/ @record" do + controller.instance_variable_set(:@display, 'non-main') + controller.instance_variable_set(:@explorer, true) + controller.instance_variable_set(:@record, true) + controller.instance_variable_set( + :@sb, + :active_tree => "my_tree", + :trees => {"my_tree" => {:active_node => 'v-1r35'}} + ) + + expect(controller.custom_toolbar?).to eq(:blank) + end + + it "has custom toolbar when showing main view w/ @record" do + controller.instance_variable_set(:@display, 'main') + controller.instance_variable_set(:@explorer, true) + controller.instance_variable_set(:@record, true) + controller.instance_variable_set( + :@sb, + :active_tree => "my_tree", + :trees => {"my_tree" => {:active_node => 'v-1r35'}} + ) + + expect(controller.custom_toolbar?).to be(true) + end +end diff --git a/spec/support/report_helper.rb b/spec/support/report_helper.rb index d34ba433c6b..2f7248e93fc 100644 --- a/spec/support/report_helper.rb +++ b/spec/support/report_helper.rb @@ -5,7 +5,7 @@ def render_report(report) ReportFormatter::ReportRenderer.render(Charting.format) do |e| e.options.mri = report e.options.show_title = true - e.options.graph_options = MiqReport.graph_options(600, 400) + e.options.graph_options = MiqReport.graph_options e.options.theme = 'miq' yield e if block_given? end diff --git a/spec/views/layouts/listnav/_persistent_volume.html.haml_spec.rb b/spec/views/layouts/listnav/_persistent_volume.html.haml_spec.rb new file mode 100644 index 00000000000..006c20f7f09 --- /dev/null +++ b/spec/views/layouts/listnav/_persistent_volume.html.haml_spec.rb @@ -0,0 +1,21 @@ +describe "layouts/listnav/_persistent_volume.html.haml" do + helper(QuadiconHelper) + + before :each do + set_controller_for_view("persistent_volume") + assign(:panels, "ems_prop" => true, "ems_rel" => true) + allow(view).to receive(:truncate_length).and_return(10) + allow(view).to receive(:role_allows?).and_return(true) + end + + let(:provider) do + allow_any_instance_of(User).to receive(:get_timezone).and_return(Time.zone) + FactoryGirl.create(:ems_openshift) + end + + it "link to parent containers provider uses restful path" do + @record = FactoryGirl.create(:persistent_volume, :parent => provider) + render + expect(response).to include("Show this persistent volume's parent Containers Provider\" href=\"/ems_container/#{@record.parent.id}\">") + end +end