├── Jenkinsfile ├── core └── src │ └── main │ ├── resources │ ├── hudson │ │ ├── model │ │ │ ├── FreeStyleProject │ │ │ │ └── help_zh_CN.html │ │ │ ├── View │ │ │ │ ├── newJobButtonBar_zh_CN.properties │ │ │ │ ├── People │ │ │ │ │ └── index_zh_CN.properties │ │ │ │ ├── configure_zh_CN.properties │ │ │ │ ├── noJob_zh_CN.properties │ │ │ │ └── index_zh_CN.properties │ │ │ ├── MyView │ │ │ │ └── noJob_zh_CN.properties │ │ │ ├── AbstractModelObject │ │ │ │ └── error_zh_CN.properties │ │ │ ├── Computer │ │ │ │ ├── builds_zh_CN.properties │ │ │ │ ├── _api_zh_CN.properties │ │ │ │ └── configure_zh_CN.properties │ │ │ ├── ParametersAction │ │ │ │ └── index_zh_CN.properties │ │ │ ├── UpdateCenter │ │ │ │ ├── DownloadJob │ │ │ │ │ ├── Failure │ │ │ │ │ │ └── status_zh_CN.properties │ │ │ │ │ ├── Pending │ │ │ │ │ │ └── status_zh_CN.properties │ │ │ │ │ ├── Success │ │ │ │ │ │ └── status_zh_CN.properties │ │ │ │ │ └── Installing │ │ │ │ │ │ └── status_zh_CN.properties │ │ │ │ ├── RestartJenkinsJob │ │ │ │ │ ├── Failure │ │ │ │ │ │ └── status_zh_CN.properties │ │ │ │ │ ├── Running │ │ │ │ │ │ └── status_zh_CN.properties │ │ │ │ │ ├── Canceled │ │ │ │ │ │ └── status_zh_CN.properties │ │ │ │ │ ├── Pending │ │ │ │ │ │ └── status_zh_CN.properties │ │ │ │ │ └── row_zh_CN.properties │ │ │ │ └── ConnectionCheckJob │ │ │ │ │ └── row_zh_CN.properties │ │ │ ├── Job │ │ │ │ └── index_zh_CN.properties │ │ │ ├── ComputerSet │ │ │ │ ├── configure_zh_CN.properties │ │ │ │ └── _new_zh_CN.properties │ │ │ ├── User │ │ │ │ ├── configure_zh_CN.properties │ │ │ │ ├── builds_zh_CN.properties │ │ │ │ └── index_zh_CN.properties │ │ │ ├── StringParameterDefinition │ │ │ │ └── config_zh_CN.properties │ │ │ ├── ParametersDefinitionProperty │ │ │ │ ├── index_zh_CN.properties │ │ │ │ └── config-details_zh_CN.properties │ │ │ ├── Node │ │ │ │ ├── help-numExecutors_zh_CN.html │ │ │ │ └── help-labelString_zh_CN.html │ │ │ ├── Cause │ │ │ │ ├── UpstreamCause │ │ │ │ │ └── description_zh_CN.properties │ │ │ │ └── UserCause │ │ │ │ │ └── description_zh_CN.properties │ │ │ ├── AbstractBuild │ │ │ │ └── changes_zh_CN.properties │ │ │ ├── AbstractProject │ │ │ │ └── changes_zh_CN.properties │ │ │ ├── MyViewsProperty │ │ │ │ └── newView_zh_CN.properties │ │ │ ├── JDK │ │ │ │ └── config_zh_CN.properties │ │ │ ├── PermalinkProjectAction │ │ │ │ └── Permalink │ │ │ │ │ └── link_zh_CN.properties │ │ │ ├── Run │ │ │ │ ├── delete_zh_CN.properties │ │ │ │ └── KeepLogBuildBadge │ │ │ │ │ └── badge_zh_CN.properties │ │ │ ├── ListView │ │ │ │ └── newJobButtonBar_zh_CN.properties │ │ │ ├── FileParameterDefinition │ │ │ │ └── config_zh_CN.properties │ │ │ └── ChoiceParameterDefinition │ │ │ │ └── config_zh_CN.properties │ │ ├── tools │ │ │ ├── label_zh_CN.properties │ │ │ ├── ZipExtractionInstaller │ │ │ │ ├── help-subdir_zh_CN.html │ │ │ │ ├── help-url_zh_CN.html │ │ │ │ ├── config_zh_CN.properties │ │ │ │ └── help_zh_CN.html │ │ │ ├── AbstractCommandInstaller │ │ │ │ ├── config_zh_CN.properties │ │ │ │ ├── help-toolHome_zh_CN.html │ │ │ │ ├── help-command_zh_CN.html │ │ │ │ └── help_zh_CN.html │ │ │ ├── ToolInstallation │ │ │ │ └── config_zh_CN.properties │ │ │ ├── InstallSourceProperty │ │ │ │ └── help_zh_CN.html │ │ │ └── DownloadFromUrlInstaller │ │ │ │ └── config_zh_CN.properties │ │ ├── ProxyConfiguration │ │ │ ├── help-port_zh_CN.html │ │ │ ├── help-noProxyHost_zh_CN.html │ │ │ └── help-userName_zh_CN.html │ │ ├── node_monitors │ │ │ ├── ArchitectureMonitor │ │ │ │ └── help_zh_CN.html │ │ │ ├── MonitorMarkedNodeOffline │ │ │ │ └── message_zh_CN.properties │ │ │ ├── AbstractDiskSpaceMonitor │ │ │ │ ├── config_zh_CN.properties │ │ │ │ └── help-freeSpaceThreshold_zh_CN.html │ │ │ └── ClockMonitor │ │ │ │ └── help_zh_CN.html │ │ ├── views │ │ │ ├── LastDurationColumn │ │ │ │ ├── column_zh_CN.properties │ │ │ │ └── columnHeader_zh_CN.properties │ │ │ ├── LastSuccessColumn │ │ │ │ ├── column_zh_CN.properties │ │ │ │ └── columnHeader_zh_CN.properties │ │ │ ├── LastStableColumn │ │ │ │ └── columnHeader_zh_CN.properties │ │ │ ├── LastFailureColumn │ │ │ │ ├── column_zh_CN.properties │ │ │ │ └── columnHeader_zh_CN.properties │ │ │ ├── DefaultViewsTabBar │ │ │ │ └── viewTabs_zh_CN.properties │ │ │ ├── DefaultMyViewsTabBar │ │ │ │ └── myViewTabs_zh_CN.properties │ │ │ ├── GlobalDefaultViewConfiguration │ │ │ │ └── config_zh_CN.properties │ │ │ └── StatusColumn │ │ │ │ └── columnHeader_zh_CN.properties │ │ ├── security │ │ │ ├── LegacyAuthorizationStrategy │ │ │ │ └── help_zh_CN.html │ │ │ ├── HudsonPrivateSecurityRealm │ │ │ │ ├── help_zh_CN.html │ │ │ │ ├── help-allowsSignup_zh_CN.html │ │ │ │ └── loginLink_zh_CN.properties │ │ │ ├── LegacySecurityRealm │ │ │ │ ├── config_zh_CN.properties │ │ │ │ └── help_zh_CN.html │ │ │ ├── csrf │ │ │ │ ├── DefaultCrumbIssuer │ │ │ │ │ └── config_zh_CN.properties │ │ │ │ ├── GlobalCrumbIssuerConfiguration │ │ │ │ │ └── help-csrf_zh_CN.html │ │ │ │ └── Messages_zh_CN.properties │ │ │ ├── AuthorizationStrategy │ │ │ │ └── Unsecured │ │ │ │ │ └── help_zh_CN.html │ │ │ ├── GlobalSecurityConfiguration │ │ │ │ ├── help-slaveAgentPort_zh_CN.html │ │ │ │ └── help-useSecurity_zh_CN.html │ │ │ ├── FullControlOnceLoggedInAuthorizationStrategy │ │ │ │ └── help_zh_CN.html │ │ │ └── SecurityRealm │ │ │ │ └── loginLink_zh_CN.properties │ │ ├── tasks │ │ │ ├── Shell │ │ │ │ └── help-shell_zh_CN.html │ │ │ └── Fingerprinter │ │ │ │ ├── FingerprintAction │ │ │ │ └── index_zh_CN.properties │ │ │ │ └── config_zh_CN.properties │ │ ├── slaves │ │ │ ├── JNLPLauncher │ │ │ │ └── help-vmargs_zh_CN.html │ │ │ └── OfflineCause │ │ │ │ └── ChannelTermination │ │ │ │ └── cause_zh_CN.properties │ │ ├── search │ │ │ ├── UserSearchProperty │ │ │ │ └── config_zh_CN.properties │ │ │ └── Messages_zh_CN.properties │ │ ├── util │ │ │ ├── HudsonIsRestarting │ │ │ │ └── index_zh_CN.properties │ │ │ └── HudsonIsLoading │ │ │ │ └── index_zh_CN.properties │ │ ├── lifecycle │ │ │ └── WindowsInstallerLink │ │ │ │ └── index_zh_CN.properties │ │ ├── triggers │ │ │ ├── SCMTrigger │ │ │ │ └── help.html │ │ │ └── TimerTrigger │ │ │ │ └── config_zh_CN.properties │ │ ├── logging │ │ │ ├── LogRecorder │ │ │ │ └── index_zh_CN.properties │ │ │ └── LogRecorderManager │ │ │ │ └── new_zh_CN.properties │ │ ├── markup │ │ │ └── Messages_zh_CN.properties │ │ ├── scm │ │ │ └── EmptyChangeLogSet │ │ │ │ └── digest_zh_CN.properties │ │ ├── widgets │ │ │ └── HistoryWidget │ │ │ │ └── entry_zh_CN.properties │ │ └── PluginManager │ │ │ └── sites_zh_CN.properties │ ├── lib │ │ ├── form │ │ │ ├── slave-mode_zh_CN.properties │ │ │ ├── breadcrumb-config-outline_zh_CN.properties │ │ │ ├── apply_zh_CN.properties │ │ │ ├── hetero-list_zh_CN.properties │ │ │ ├── submit_zh_CN.properties │ │ │ ├── repeatable_zh_CN.properties │ │ │ ├── booleanRadio_zh_CN.properties │ │ │ ├── helpArea_zh_CN.properties │ │ │ ├── repeatableDeleteButton_zh_CN.properties │ │ │ ├── textarea_zh_CN.properties │ │ │ └── serverTcpPort_zh_CN.properties │ │ ├── hudson │ │ │ ├── artifactList_zh_CN.properties │ │ │ ├── buildHealth_zh_CN.properties │ │ │ ├── node_zh_CN.properties │ │ │ ├── propertyTable_zh_CN.properties │ │ │ ├── buildCaption_zh_CN.properties │ │ │ ├── iconSize_zh_CN.properties │ │ │ ├── project │ │ │ │ ├── config-buildWrappers_zh_CN.properties │ │ │ │ ├── config-scm_zh_CN.properties │ │ │ │ ├── config-trigger_zh_CN.properties │ │ │ │ ├── config-publishers_zh_CN.properties │ │ │ │ ├── config-quietPeriod_zh_CN.properties │ │ │ │ └── config-builders_zh_CN.properties │ │ │ ├── scriptConsole_zh_CN.properties │ │ │ ├── thirdPartyLicenses_zh_CN.properties │ │ │ ├── listScmBrowsers_zh_CN.properties │ │ │ └── newFromList │ │ │ │ └── form_zh_CN.properties │ │ ├── layout │ │ │ ├── task_zh_CN.properties │ │ │ ├── progressiveRendering_zh_CN.properties │ │ │ ├── breadcrumbBar_zh_CN.properties │ │ │ ├── pane_zh_CN.properties │ │ │ ├── main-panel_zh_CN.properties │ │ │ └── layout_zh_CN.properties │ │ └── test │ │ │ └── bar_zh_CN.properties │ └── jenkins │ │ ├── slaves │ │ └── RemotingWorkDirSettings │ │ │ ├── help-internalDir_zh_CN.html │ │ │ ├── help-workDirPath_zh_CN.html │ │ │ ├── help-failIfWorkDirIsMissing_zh_CN.html │ │ │ └── help-disabled_zh_CN.html │ │ ├── tools │ │ └── GlobalToolConfiguration │ │ │ └── index_zh_CN.properties │ │ ├── model │ │ ├── ProjectNamingStrategy │ │ │ └── PatternProjectNamingStrategy │ │ │ │ └── help-description_zh_CN.html │ │ ├── JenkinsLocationConfiguration │ │ │ ├── help-adminAddress_zh_CN.html │ │ │ └── help-url_zh_CN.html │ │ ├── GlobalQuietPeriodConfiguration │ │ │ ├── help-quietPeriod_zh_CN.html │ │ │ └── config_zh_CN.properties │ │ ├── RenameAction │ │ │ └── action_zh_CN.properties │ │ ├── BuildDiscarderProperty │ │ │ └── config-details_zh_CN.properties │ │ ├── Jenkins │ │ │ ├── MasterComputer │ │ │ │ └── _api_zh_CN.properties │ │ │ └── load-statistics_zh_CN.properties │ │ ├── GlobalNodePropertiesConfiguration │ │ │ └── config_zh_CN.properties │ │ └── DefaultSimplePageDecorator │ │ │ └── simple-header_zh_CN.properties │ │ ├── management │ │ └── PluginsLink │ │ │ └── info_zh_CN.properties │ │ └── mvn │ │ ├── FilePathSettingsProvider │ │ └── config_zh_CN.properties │ │ └── FilePathGlobalSettingsProvider │ │ └── config_zh_CN.properties │ └── webapp │ └── help │ ├── parameter │ ├── boolean-default_zh_CN.html │ ├── trim_zh_CN.html │ ├── description_zh_CN.html │ ├── choice-choices_zh_CN.html │ ├── string-default_zh_CN.html │ ├── name_zh_CN.html │ ├── string_zh_CN.html │ ├── choice_zh_CN.html │ ├── file-name_zh_CN.html │ ├── boolean_zh_CN.html │ ├── run_zh_CN.html │ └── file_zh_CN.html │ ├── run-config │ ├── displayName_zh_CN.html │ └── description_zh_CN.html │ ├── system-config │ ├── defaultJobNamingStrategy_zh_CN.html │ ├── master-slave │ │ ├── demand │ │ │ ├── idleDelay_zh_CN.html │ │ │ ├── inDemandDelay_zh_CN.html │ │ │ └── keepUpWhenActive_zh_CN.html │ │ ├── description_zh_CN.html │ │ ├── clock_zh_CN.html │ │ ├── numExecutors_zh_CN.html │ │ ├── usage_zh_CN.html │ │ ├── jnlp-tunnel_zh_CN.html │ │ ├── jnlpSecurity_zh_CN.html │ │ └── availability_zh_CN.html │ ├── systemMessage_zh_CN.html │ ├── globalEnvironmentVariables_zh_CN.html │ ├── patternJobNamingStrategy_zh_CN.html │ └── homeDirectory_zh_CN.html │ ├── project-config │ ├── scmCheckoutRetryCount_zh_CN.html │ ├── block-downstream-building_zh_CN.html │ └── custom-workspace_zh_CN.html │ └── tools │ ├── help-label_zh_CN.html │ └── tool-location-node-property_zh_CN.html ├── src └── main │ ├── resources │ ├── META-INF │ │ └── services │ │ │ └── org.kohsuke.stapler.Facet │ ├── index.jelly │ └── jenkins │ │ └── plugins │ │ └── localization │ │ └── LocalizationMonitor │ │ └── message.jelly │ └── java │ └── jenkins │ └── plugins │ └── localization │ └── L10nDecorator.java ├── mailer-plugin └── src │ └── main │ └── resources │ └── hudson │ └── tasks │ └── Mailer │ ├── help-smtpPort_zh_CN.html │ ├── help-smtpAuth_zh_CN.html │ ├── help-defaultSuffix_zh_CN.html │ ├── help-useSsl_zh_CN.html │ ├── help-smtpServer_zh_CN.html │ ├── help-sendToIndividuals_zh_CN.html │ └── UserProperty │ └── config_zh_CN.properties ├── .gitignore ├── cmakebuilder-plugin └── src │ └── main │ └── resources │ └── hudson │ └── plugins │ └── cmake │ ├── AbstractStep │ └── config_zh_CN.properties │ ├── CmakeBuilder │ ├── config_zh_CN.properties │ └── common-fields_zh_CN.properties │ ├── CmakeTool │ └── config_zh_CN.properties │ ├── CToolBuilder │ ├── config_zh_CN.properties │ └── common-fields_zh_CN.properties │ └── BuildToolStep │ └── config_zh_CN.properties ├── workflow-basic-steps-plugin └── src │ └── main │ └── resources │ └── org │ └── jenkinsci │ └── plugins │ └── workflow │ └── steps │ ├── EchoStep │ └── config_zh_CN.properties │ ├── ErrorStep │ ├── config_zh_CN.properties │ └── help_zh_CN.html │ ├── RetryStep │ └── config_zh_CN.properties │ ├── PwdStep │ └── config_zh_CN.properties │ ├── TimeoutStep │ ├── config_zh_CN.properties │ └── help_zh_CN.html │ ├── ToolStep │ └── config_zh_CN.properties │ ├── ArtifactArchiverStep │ └── config_zh_CN.properties │ ├── SleepStep │ ├── config_zh_CN.properties │ └── help_zh_CN.html │ ├── EnvStep │ ├── config_zh_CN.properties │ ├── help-overrides_zh_CN.html │ └── help_zh_CN.html │ ├── FileExistsStep │ └── config_zh_CN.properties │ ├── ReadFileStep │ └── config_zh_CN.properties │ ├── WriteFileStep │ └── config_zh_CN.properties │ └── MailStep │ └── config_zh_CN.properties ├── bitbucket-branch-source-plugin └── src │ └── main │ └── resources │ └── com │ └── cloudbees │ └── jenkins │ └── plugins │ └── bitbucket │ ├── BranchDiscoveryTrait │ └── config_zh_CN.properties │ ├── SSHCheckoutTrait │ └── config_zh_CN.properties │ ├── OriginPullRequestDiscoveryTrait │ └── config_zh_CN.properties │ ├── endpoints │ ├── BitbucketEndpointConfiguration │ │ └── config_zh_CN.properties │ ├── AbstractBitbucketEndpoint │ │ └── config_zh_CN.properties │ ├── BitbucketServerEndpoint │ │ └── config-detail_zh_CN.properties │ └── BitbucketCloudEndpoint │ │ └── config-detail_zh_CN.properties │ ├── ForkPullRequestDiscoveryTrait │ └── config_zh_CN.properties │ ├── BitbucketSCMNavigator │ └── config_zh_CN.properties │ └── BitbucketSCMSource │ └── config-detail_zh_CN.properties ├── code-coverage-api-plugin └── src │ └── main │ └── resources │ └── io │ └── jenkins │ └── plugins │ └── coverage │ ├── CoverageProjectAction │ └── floatingBox_zh_CN.properties │ ├── coverageAction │ └── summary_zh_CN.properties │ ├── CoveragePublisher │ └── config_zh_CN.properties │ ├── adapter │ └── CoverageReportAdapterDescriptor │ │ └── config_zh_CN.properties │ ├── source │ └── SourceFileResolver │ │ └── config_zh_CN.properties │ └── targets │ └── CoverageResult │ └── index_zh_CN.properties ├── pipeline-stage-view-plugin └── ui │ └── src │ └── main │ └── resources │ └── com │ └── cloudbees │ └── workflow │ └── ui │ └── view │ └── WorkflowStageViewAction │ └── jobMain_zh_CN.properties ├── matrix-auth-plugin └── src │ └── main │ └── resources │ └── hudson │ └── security │ ├── AuthorizationMatrixProperty │ └── config_zh_CN.properties │ ├── ProjectMatrixAuthorizationStrategy │ └── help_zh_CN.html │ └── GlobalMatrixAuthorizationStrategy │ └── help_zh_CN.html ├── workflow-cps-plugin └── src │ └── main │ └── resources │ └── org │ └── jenkinsci │ └── plugins │ └── workflow │ └── cps │ ├── CpsFlowDefinition │ └── help-script_zh_CN.html │ ├── Snippetizer │ ├── globals_zh_CN.properties │ └── html_zh_CN.properties │ ├── steps │ └── LoadStep │ │ └── config_zh_CN.properties │ └── replay │ └── ReplayAction │ └── diff_zh_CN.properties ├── job-restrictions-plugin └── src │ └── main │ └── resources │ └── com │ └── synopsys │ └── arc │ └── jenkinsci │ └── plugins │ └── jobrestrictions │ └── jobs │ └── JobRestrictionProperty │ └── help-config_zh_CN.html ├── cloudbees-folder-plugin └── src │ └── main │ └── resources │ └── com │ └── cloudbees │ └── hudson │ └── plugins │ └── folder │ ├── AbstractFolder │ └── view-index-top_zh_CN.properties │ ├── Folder │ └── tasks-create_zh_CN.properties │ ├── relocate │ ├── RelocationAction │ │ └── index_zh_CN.properties │ └── DefaultRelocationUI │ │ └── main_zh_CN.properties │ └── health │ └── WorstChildHealthMetric │ └── config_zh_CN.properties ├── .github └── PULL_REQUEST_TEMPLATE.md ├── bitbucket-plugin └── src │ └── main │ └── resources │ └── com │ └── cloudbees │ └── jenkins │ └── plugins │ └── BitBucketTrigger │ └── BitBucketWebHookPollingAction │ └── index_zh_CN.properties ├── credentials-binding-plugin └── src │ └── main │ └── resources │ └── org │ └── jenkinsci │ └── plugins │ └── credentialsbinding │ ├── impl │ ├── CertificateMultiBinding │ │ └── config-variables_zh_CN.properties │ ├── BindingStep │ │ └── config_zh_CN.properties │ └── SecretBuildWrapper │ │ └── config_zh_CN.properties │ ├── Binding │ └── config-variables_zh_CN.properties │ └── MultiBinding │ └── config_zh_CN.properties ├── specification.md ├── pipeline-input-step-plugin └── src │ └── main │ └── resources │ └── org │ └── jenkinsci │ └── plugins │ └── workflow │ └── support │ └── steps │ └── input │ ├── Messages_zh_CN.properties │ └── InputStepExecution │ └── index_zh_CN.properties ├── README.md ├── pam-auth-plugin └── src │ └── main │ └── resources │ └── hudson │ └── security │ └── PAMSecurityRealm │ └── config_zh_CN.properties ├── ssh-slaves-plugin └── src │ └── main │ └── resources │ └── hudson │ └── plugins │ └── sshslaves │ ├── SSHLauncher │ └── config_zh_CN.properties │ └── verifiers │ └── TrustHostKeyAction │ └── trustHostKey_zh_CN.properties ├── subversion-plugin └── src │ └── main │ └── resources │ └── hudson │ └── scm │ └── SubversionChangeLogSet │ └── index_zh_CN.properties ├── kubernetes-plugin └── src │ └── main │ └── resources │ └── org │ └── csanchez │ └── jenkins │ └── plugins │ └── kubernetes │ ├── PodImagePullSecret │ └── config_zh_CN.properties │ ├── PodAnnotation │ └── config_zh_CN.properties │ ├── model │ └── KeyValueEnvVar │ │ └── config_zh_CN.properties │ └── volumes │ └── workspace │ └── EmptyDirWorkspaceVolume │ └── config_zh_CN.properties ├── workflow-job-plugin └── src │ └── main │ └── resources │ └── org │ └── jenkinsci │ └── plugins │ └── workflow │ └── job │ └── FlowGraphAction │ └── index_zh_CN.properties ├── credentials-plugin └── src │ └── main │ └── resources │ └── com │ └── cloudbees │ └── plugins │ └── credentials │ ├── BaseCredentials │ └── config_zh_CN.properties │ ├── CredentialsStoreAction │ └── action_zh_CN.properties │ ├── CredentialsSelectHelper │ └── WrappedCredentialsStore │ │ └── credential_zh_CN.properties │ ├── ViewCredentialsAction │ └── action_zh_CN.properties │ └── impl │ └── BaseStandardCredentials │ └── id-and-description_zh_CN.properties └── alauda-devops-sync-plugin └── src └── main └── resources └── io └── alauda └── jenkins └── devops └── sync └── AlaudaSyncGlobalConfiguration └── config_zh_CN.properties /Jenkinsfile: -------------------------------------------------------------------------------- 1 | buildPlugin() 2 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/FreeStyleProject/help_zh_CN.html: -------------------------------------------------------------------------------- 1 | sdfsf -------------------------------------------------------------------------------- /core/src/main/resources/hudson/tools/label_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Label=\u6807\u7b7e 2 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/form/slave-mode_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Usage=\u7528\u6cd5 2 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/View/newJobButtonBar_zh_CN.properties: -------------------------------------------------------------------------------- 1 | OK=\u786E\u5B9A -------------------------------------------------------------------------------- /core/src/main/webapp/help/parameter/boolean-default_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 定义当前参数的默认值。 3 |
-------------------------------------------------------------------------------- /core/src/main/webapp/help/parameter/trim_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 清除字符串前后的空白字符。 3 |
4 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/parameter/description_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 后续展示给用户看的描述信息。 3 |
4 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/parameter/choice-choices_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 备用选项,每行一个。第一行的将作为默认选项。 3 |
-------------------------------------------------------------------------------- /src/main/resources/META-INF/services/org.kohsuke.stapler.Facet: -------------------------------------------------------------------------------- 1 | jenkins.plugins.localization.LocalizationFacet -------------------------------------------------------------------------------- /core/src/main/webapp/help/parameter/string-default_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 定义该字段的默认值,允许用户在保存时修改为真实的值。 3 |
-------------------------------------------------------------------------------- /src/main/resources/index.jelly: -------------------------------------------------------------------------------- 1 | 2 |
3 | Jenkins 及其插件的简体中文语言包。 4 |
5 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/ProxyConfiguration/help-port_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 该字段和代理服务器字段一起使用,用于指定HTTP代理端口。 3 |
-------------------------------------------------------------------------------- /core/src/main/webapp/help/run-config/displayName_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 设置后会替换默认的"#NNN",并指向当前构建。设置为空则显示默认的。 3 |
-------------------------------------------------------------------------------- /core/src/main/webapp/help/system-config/defaultJobNamingStrategy_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 默认设置,允许用户选择任意合法的命名。 3 |
4 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/parameter/name_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 参数名称 3 | 4 |

5 | 这些参数会当作环境变量暴露给构建任务。 6 |

-------------------------------------------------------------------------------- /core/src/main/webapp/help/parameter/string_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 自定义个简单的文本变量,用户可以输入字符串,在构建时使用,或者作为环境变量,或者在配置中做变量替换。 3 |
-------------------------------------------------------------------------------- /mailer-plugin/src/main/resources/hudson/tasks/Mailer/help-smtpPort_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 邮件服务器端口号.不填写此项将使用协议默认端口. 3 |
-------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/*.iml 2 | 3 | .idea 4 | .DS_Store 5 | 6 | # maven stuff 7 | target 8 | 9 | # jenkins stuff 10 | work 11 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/MyView/noJob_zh_CN.properties: -------------------------------------------------------------------------------- 1 | blurb=\u5F53\u524D\u8BD5\u56FE\u4E2D\u6CA1\u6709\u4EFB\u52A1\u3002 -------------------------------------------------------------------------------- /core/src/main/resources/hudson/node_monitors/ArchitectureMonitor/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 只是用于显示代理节点的架构信息,不会使得代理节点下线。 3 |
-------------------------------------------------------------------------------- /core/src/main/webapp/help/parameter/choice_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 定义一个简单的字符串列表,提供给用户选择。,你可以在构建时使用,或者作为环境变量,或者在配置中做变量替换。 3 |
-------------------------------------------------------------------------------- /core/src/main/webapp/help/parameter/file-name_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 指定上传文件的路径,相对于工作空间。(例如:jaxb-ri/data.zip) 3 |
-------------------------------------------------------------------------------- /cmakebuilder-plugin/src/main/resources/hudson/plugins/cmake/AbstractStep/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | CMake\ installation=CMake \u5B89\u88C5 -------------------------------------------------------------------------------- /cmakebuilder-plugin/src/main/resources/hudson/plugins/cmake/CmakeBuilder/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | CMake\ installation=CMake \u5B89\u88C5 -------------------------------------------------------------------------------- /core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-subdir_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 可选子目录,用来放置下载文件和解压文件的目录。 3 |
4 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/project-config/scmCheckoutRetryCount_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 如果从版本库签出代码失败,Jenkins会按照这个指定的次数进行重试之后再放弃. 3 |
-------------------------------------------------------------------------------- /core/src/main/webapp/help/system-config/master-slave/demand/idleDelay_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 在Jenkins会把代理下线之前必须保持的空闲分钟数。 3 |
4 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/tools/help-label_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 可选的标签,用来限制是否使用这种安装方法. 3 | 也就是说只用带有这个标签的子节点才能使用这种安装. 4 |
5 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/hudson/artifactList_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | View=\u67E5\u770B 4 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/layout/task_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | Done.=\u5DF2\u5B8C\u6210 4 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/run-config/description_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 该描述会在构建页面的顶部显示,以便让大家了解构建的内容。你可以使用任意HTML标签(或者配置好的标记语言)。 3 |
4 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/system-config/master-slave/demand/inDemandDelay_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | Jenkins把代理上线之前必须在队列中等待的分钟数。 3 |
4 | -------------------------------------------------------------------------------- /workflow-basic-steps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/steps/EchoStep/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Message=\u6D88\u606F 2 | -------------------------------------------------------------------------------- /workflow-basic-steps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/steps/ErrorStep/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Message=\u6D88\u606F 2 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/slaves/RemotingWorkDirSettings/help-internalDir_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 定义内部数据的存储目录。该目录会在远程工作目录内创建。 3 |
4 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/parameter/boolean_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 定义一个简单的布尔值参数,你可以在构建时使用,或者作为环境变量,或者在配置中做变量替换。对应的字符值为'true'或者'false'。 3 |
-------------------------------------------------------------------------------- /mailer-plugin/src/main/resources/hudson/tasks/Mailer/help-smtpAuth_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 当发送邮件时使用SMTP认证.如果你的环境需要使用SMTP认证,在这里指定其用户名和密码. 3 |
-------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/View/People/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | People=\u7528\u6237 4 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/tools/AbstractCommandInstaller/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Command=\u547d\u4ee4 2 | Tool\ Home=\u5de5\u5177\u76ee\u5f55 3 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/tools/ToolInstallation/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Name=\u522b\u540d 2 | Installation\ directory=\u5b89\u88c5\u76ee\u5f55 3 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/views/LastDurationColumn/column_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | N/A=\u65E0 4 | -------------------------------------------------------------------------------- /bitbucket-branch-source-plugin/src/main/resources/com/cloudbees/jenkins/plugins/bitbucket/BranchDiscoveryTrait/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Strategy=\u7b56\u7565 -------------------------------------------------------------------------------- /bitbucket-branch-source-plugin/src/main/resources/com/cloudbees/jenkins/plugins/bitbucket/SSHCheckoutTrait/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Credentials=\u51ed\u636e -------------------------------------------------------------------------------- /cmakebuilder-plugin/src/main/resources/hudson/plugins/cmake/CmakeTool/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Name=\u540D\u79F0 2 | Path\ to\ cmake=cmake \u8DEF\u5F84 3 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/views/LastSuccessColumn/column_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | N/A=\u6CA1\u6709 4 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/project-config/block-downstream-building_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 该选项勾选后,当有子工程在排队或者构建时Jenkins将会阻塞该工程的构建。子工程包括直接和间接的。 3 |
4 | -------------------------------------------------------------------------------- /workflow-basic-steps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/steps/RetryStep/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Retry Count=\u91CD\u8BD5\u6B21\u6570 2 | -------------------------------------------------------------------------------- /cmakebuilder-plugin/src/main/resources/hudson/plugins/cmake/CToolBuilder/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | CMake\ installation=CMake \u5B89\u88C5 2 | Tool=\u5DE5\u5177 3 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-toolHome_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 安装工具的目录. 3 | (如果需要吧工具解压到磁盘上,可能是一个绝对路径.) 4 |
5 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/tools/GlobalToolConfiguration/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Back\ to\ Dashboard=\u8FD4\u56DE 2 | Manage\ Jenkins=\u7CFB\u7EDF\u7BA1\u7406 -------------------------------------------------------------------------------- /core/src/main/resources/lib/form/breadcrumb-config-outline_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | configuration=\u914D\u7F6E 4 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/system-config/master-slave/description_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 使得该代理更加容易被识别的可选项。 3 |

4 | 可以包含的信息有:CPU的核数、内存大小以及它的物理位置等。 5 |

-------------------------------------------------------------------------------- /core/src/main/webapp/help/system-config/systemMessage_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 这个信息会显示在首页顶部. 3 | 用来向用户发布一些系统范围的通知或公告. 4 | 兼容HTML标签格式. 5 |
-------------------------------------------------------------------------------- /bitbucket-branch-source-plugin/src/main/resources/com/cloudbees/jenkins/plugins/bitbucket/OriginPullRequestDiscoveryTrait/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Strategy=\u7b56\u7565 -------------------------------------------------------------------------------- /code-coverage-api-plugin/src/main/resources/io/jenkins/plugins/coverage/CoverageProjectAction/floatingBox_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Code\ Coverage=\u4ee3\u7801\u8986\u76d6\u7387 -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/AbstractModelObject/error_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | Error=\u51FA\u9519\u5566 4 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/slaves/RemotingWorkDirSettings/help-workDirPath_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 如果定义了自定义远程工作目录,就不会使用代理的根目录。该选项目前无法使用环境变量,建议使用绝对路径。 3 |
4 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/system-config/master-slave/demand/keepUpWhenActive_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 如果勾选,如果该节点上还有构建任务,即使该已经计划要下线,Jenkins还会等构建结束后再使之下线。 3 |
4 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/tools/tool-location-node-property_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 你可以指定此节点上的某些工具的位置,这会覆盖全局的配置. 3 | (你可能更愿意使用自动安装工具,而不再需要单独配置每个节点.) 4 |
5 | -------------------------------------------------------------------------------- /workflow-basic-steps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/steps/PwdStep/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Temporary\ directory=\u4E34\u65F6\u76EE\u5F55 2 | -------------------------------------------------------------------------------- /workflow-basic-steps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/steps/TimeoutStep/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Timeout=\u8D85\u65F6 2 | Unit=\u5355\u4F4D 3 | -------------------------------------------------------------------------------- /code-coverage-api-plugin/src/main/resources/io/jenkins/plugins/coverage/coverageAction/summary_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Coverage\ Reports=\u4ee3\u7801\u8986\u76d6\u7387\u62a5\u544a -------------------------------------------------------------------------------- /pipeline-stage-view-plugin/ui/src/main/resources/com/cloudbees/workflow/ui/view/WorkflowStageViewAction/jobMain_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Stage\ View=\u9636\u6BB5\u89C6\u56FE 2 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/Computer/builds_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | title={0}\u4E0A\u7684\u6784\u5EFA\u5386\u53F2 4 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | Dismiss=\u5FFD\u7565 4 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-command_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 在子节点上使用命令安装工具, 3 | 命令会一直运行,如果工具已经安装了,就要这个命令迅速的运行完成并且没有任何操作. 4 |
5 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/model/ProjectNamingStrategy/PatternProjectNamingStrategy/help-description_zh_CN.html: -------------------------------------------------------------------------------- 1 |

2 | 当任务名称不符合规则时会给出的错误提示信息,用于解释命名约束的可读性描述。 3 |

-------------------------------------------------------------------------------- /core/src/main/resources/lib/layout/progressiveRendering_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | progressMessage=\u8BA1\u7B97\u4E2D\u3002 4 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/test/bar_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | failures={0}\u6B21\u5931\u8D25 4 | tests={0}\u4E2A\u6D4B\u8BD5 5 | -------------------------------------------------------------------------------- /matrix-auth-plugin/src/main/resources/hudson/security/AuthorizationMatrixProperty/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Enable\ project-based\ security=\u542f\u7528\u9879\u76ee\u5b89\u5168 2 | -------------------------------------------------------------------------------- /workflow-basic-steps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/steps/ToolStep/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Tool\ Type=\u5DE5\u5177\u7C7B\u578B 2 | Tool=\u5DE5\u5177 3 | -------------------------------------------------------------------------------- /workflow-cps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/cps/CpsFlowDefinition/help-script_zh_CN.html: -------------------------------------------------------------------------------- 1 |

2 | Groovy定义流水线脚本。详情请参考 流水线语法 。 3 |

4 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/views/LastStableColumn/columnHeader_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | Last\ Stable=\u4E0A\u6B21\u6210\u529F 4 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/management/PluginsLink/info_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | updates\ available=\u53EF\u7528\u66F4\u65B0 4 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/slaves/RemotingWorkDirSettings/help-failIfWorkDirIsMissing_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 勾选后,如果目标目录不存在的话,那么代理启动过程会失败。该选项用于检测基础设施的问题,例如挂载失败。 3 |
4 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/parameter/run_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 定义一个运行参数,用户可以选择一个确定的工程。网站的url地址将会被当作环境变量暴露出来,你可以在构建时使用,或者作为环境变 3 | 量,或者在配置中做变量替换。通过Jenkins可以查询到更多的信息。 4 |
-------------------------------------------------------------------------------- /core/src/main/webapp/help/system-config/master-slave/clock_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 对于一个构建任务来说,很多时候是对时钟敏感的。因此,如果Jenkins和运行构建的节点上时钟不一致的话,可能会引起诡异的问题。 3 | 可以考虑利用NTP来同步时钟。 4 |
5 | -------------------------------------------------------------------------------- /workflow-basic-steps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/steps/ArtifactArchiverStep/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Includes=\u5305\u62EC 2 | Excludes\u6392\u9664 3 | -------------------------------------------------------------------------------- /workflow-basic-steps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/steps/SleepStep/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Unit=\u5355\u4F4D 2 | Sleep\ time=\u7761\u7720\u65F6\u95F4 3 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/system-config/globalEnvironmentVariables_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 这些键值对每个节点上的每个应用都有效.它们可以在Jenkins配置(如$key或者${key})中使用, 3 | 并且在每个构建启动时被加入到环境变量中. 4 |
5 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/ProxyConfiguration/help-noProxyHost_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 指定不通过代理的主机名格式,一个主机占一行。 3 | "*" 星号作为通配符 (例如 "*.jenkins.io" 或者 "www*.jenkins-ci.org") 4 |
-------------------------------------------------------------------------------- /core/src/main/resources/hudson/security/LegacyAuthorizationStrategy/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 适用于Jenkins1.164以前的版本.也就是说,如果你是"admin"角色,那么你将拥有Jenkins的一切控制权,其它角色(包括匿名用户) 3 | 只有查看权限. 4 |
-------------------------------------------------------------------------------- /workflow-basic-steps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/steps/EnvStep/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Environment\ variable\ overrides=\u73AF\u5883\u53D8\u91CF\u91CD\u5199 2 | -------------------------------------------------------------------------------- /bitbucket-branch-source-plugin/src/main/resources/com/cloudbees/jenkins/plugins/bitbucket/endpoints/BitbucketEndpointConfiguration/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Bitbucket\ Endpoints=Bitbucket \u7aef\u70b9 -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/ParametersAction/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | Build=\u6267\u884C 4 | Parameters=\u6784\u5EFA\u53C2\u6570 5 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 使用Hudson自己的用户列表验证, 3 | 而不是外部系统代理. 4 | 这适用于没有用户数据库小范围的设定. 5 |
-------------------------------------------------------------------------------- /bitbucket-branch-source-plugin/src/main/resources/com/cloudbees/jenkins/plugins/bitbucket/ForkPullRequestDiscoveryTrait/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Strategy=\u7b56\u7565 2 | Trust=\u4fe1\u4efb\u7b56\u7565 -------------------------------------------------------------------------------- /cmakebuilder-plugin/src/main/resources/hudson/plugins/cmake/BuildToolStep/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Use cmake=\u4F7F\u7528 cmake 2 | Arguments=\u53C2\u6570 3 | Env.\ Variables=\u73AF\u5883\u53D8\u91CF 4 | -------------------------------------------------------------------------------- /code-coverage-api-plugin/src/main/resources/io/jenkins/plugins/coverage/CoveragePublisher/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Global\ Option=\u5168\u5c40\u9009\u9879 2 | Global\ Thresholds=\u5168\u5c40 Thresholds -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | Details=\u8BE6\u7EC6 4 | Failure=\u5931\u8D25 5 | -------------------------------------------------------------------------------- /code-coverage-api-plugin/src/main/resources/io/jenkins/plugins/coverage/adapter/CoverageReportAdapterDescriptor/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Report\ File\ Path=\u8986\u76d6\u7387\u62a5\u544a\u6587\u4ef6\u8def\u5f84 -------------------------------------------------------------------------------- /core/src/main/resources/hudson/security/LegacySecurityRealm/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | Unprotected\ URLs=\u4E0D\u53D7\u4FDD\u62A4\u7684\u94FE\u63A5 4 | -------------------------------------------------------------------------------- /workflow-basic-steps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/steps/FileExistsStep/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | File\ path\ in\ workspace=\u5DE5\u4F5C\u7A7A\u95F4\u7684\u6587\u4EF6\u8DEF\u5F84 2 | -------------------------------------------------------------------------------- /bitbucket-branch-source-plugin/src/main/resources/com/cloudbees/jenkins/plugins/bitbucket/endpoints/AbstractBitbucketEndpoint/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Manage\ hooks=\u7ba1\u7406 hooks 2 | Credentials=\u51ed\u636e -------------------------------------------------------------------------------- /bitbucket-branch-source-plugin/src/main/resources/com/cloudbees/jenkins/plugins/bitbucket/endpoints/BitbucketServerEndpoint/config-detail_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Name=\u540d\u79f0 2 | Server\ URL=\u670d\u52a1\u5668 URL -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/Job/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | Disable\ Project=\u7981\u7528\u9879\u76EE 4 | Project\ name=\u9879\u76EE\u540D\u79F0 5 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/help-adminAddress_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | Jenkins将用这个地址发送通知邮件给项目拥有者.这里可以填写"foo@acme.org"或者像"Jenkins Daemon <foo@acme.org>"形式的内容. 3 |
4 | -------------------------------------------------------------------------------- /workflow-basic-steps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/steps/TimeoutStep/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 超时执行一个代码块。 3 | 如果超时,则会抛出异常,并导致构建终止(除非被捕获并继续)。 4 | 单位是可选的,默认为分钟。 5 |
6 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | Free\ Space\ Threshold=\u6700\u5C0F\u53EF\u7528\u7A7A\u95F4 4 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/help-freeSpaceThreshold_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 这个选项配置代理的最小可用磁盘空间,使得可以执行适当的操作,例如"1.5GB", "100KB",等等。 3 | 如果发现一个代理的剩余磁盘空间小于该值,将会被下线。 4 |
-------------------------------------------------------------------------------- /core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | Enable\ proxy\ compatibility=\u542F\u7528\u4EE3\u7406\u517C\u5BB9 4 | -------------------------------------------------------------------------------- /job-restrictions-plugin/src/main/resources/com/synopsys/arc/jenkinsci/plugins/jobrestrictions/jobs/JobRestrictionProperty/help-config_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 该选项允许在任务触发之前增加额外的限制。
3 | 你可以设置不同的条件。 4 |
-------------------------------------------------------------------------------- /cloudbees-folder-plugin/src/main/resources/com/cloudbees/hudson/plugins/folder/AbstractFolder/view-index-top_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Folder\ name=\u6587\u4EF6\u5939\u540D\u79F0 2 | disabled=\u7981\u7528 3 | Enable=\u542F\u7528 4 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/ComputerSet/configure_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | OK=\u786E\u8BA4 4 | Preventive\ Node\ Monitoring=\u9632\u5FA1\u6027\u8282\u70B9\u68C0\u6D4B 5 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/tasks/Shell/help-shell_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 通常你不需要填写此项,Jenkins会帮你找到正确的shell执行文件. 3 | 如果你的sh (Windows) 或者 /bin/sh不在系统PATH里, 4 | 那么就指定一个shell执行文件的绝对路径. 5 |
-------------------------------------------------------------------------------- /mailer-plugin/src/main/resources/hudson/tasks/Mailer/help-defaultSuffix_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 如果用户邮件能够自动的指定后缀,那么在此处填写后缀.否则不用填写.注意,用户可以选择性的覆盖邮件地址. 3 | 例如,如果这里设定了@acme.org,那么用户foo的默认邮件地址为foo@acme.org 4 |
-------------------------------------------------------------------------------- /cmakebuilder-plugin/src/main/resources/hudson/plugins/cmake/CToolBuilder/common-fields_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Arguments=\u53C2\u6570 2 | Working\ Directory=\u5DE5\u4F5C\u76EE\u5F55 3 | Ignore\ exit\ codes=\u5FFD\u7565\u9000\u51FA\u7801 4 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/ComputerSet/_new_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | Name=\u540D\u5B57 4 | Name\ is\ mandatory=\u540D\u79F0\uFF08\u5FC5\u586B\uFF09 5 | Save=\u4fdd\u5b58 6 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 从URL下载的工具包(二进制)应该是一个ZIP文件或者GZip压缩过的TAR文件. 3 | 服务器上的时间戳会比对本地版本(如果有的话),所以你可以轻松的发布升级. 4 | URL必须从Jenkins的主节点访问,但是不需要从子节点访问. 5 |
6 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ### Submitter checklist 2 | 3 | - [ ] [Know translation specification](https://github.com/jenkinsci/localization-zh-cn-plugin/specification.md) 4 | 5 | ### Desired reviewers 6 | 7 | @chinese-localization-sig -------------------------------------------------------------------------------- /workflow-basic-steps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/steps/ErrorStep/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 发出错误信号。 3 | 当你在特定条件下要终止程序时很有用。 4 | 你也可以使用 throw new Exception(), 5 | 但这个步骤可以避免打印出异常栈。 6 |
7 | -------------------------------------------------------------------------------- /bitbucket-branch-source-plugin/src/main/resources/com/cloudbees/jenkins/plugins/bitbucket/BitbucketSCMNavigator/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Server=\u670d\u52a1\u5668 2 | Credentials=\u51ed\u636e 3 | Owner=\u62e5\u6709\u8005 4 | Behaviours=\u7279\u6027 -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/slaves/RemotingWorkDirSettings/help-disabled_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 允许禁用该代理的 远程工作目录 。 3 | 这种情况,代理会以旧版本模式下运行,而且默认没有日志记录。 4 |
5 | -------------------------------------------------------------------------------- /mailer-plugin/src/main/resources/hudson/tasks/Mailer/help-useSsl_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 如论SMTP服务器是否使用SSL连接.默认端口都是465. 3 | 4 |

5 | 更高级的配置可以通过设置系统参数来完成. 6 | 参考这个文档了解更多信息. 7 |

-------------------------------------------------------------------------------- /core/src/main/resources/hudson/tools/ZipExtractionInstaller/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Download\ URL\ for\ binary\ archive=\u538b\u7f29\u5305(\u4e8c\u8fdb\u5236)\u7684\u4e0b\u8f7dURL 2 | Subdirectory\ of\ extracted\ archive=\u89e3\u538b\u76ee\u5f55 3 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/User/configure_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | title=\u7528\u6237 ''{0}'' \u914D\u7F6E 4 | Description=\u63cf\u8ff0 5 | Full\ name=\u8d26\u53f7\u540d\u79f0 6 | Save=\u4FDD\u5B58 -------------------------------------------------------------------------------- /core/src/main/resources/hudson/security/AuthorizationStrategy/Unsecured/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 不执行任何授权,任何人都能完全控制Jenkins,这包括没有登录的匿名用户. 3 | 4 |

5 | 这种情况对于可信任的环境(比如公司内网)非常有用,或者你只是使用授权做一些个性化的支持.这样的话,如果某人想快速的更改Jenkins,他就能够避免被强制登录. 6 | 7 |

-------------------------------------------------------------------------------- /core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-slaveAgentPort_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | Jenkins使用一个TCP端口和JNLP节点代理通讯. 3 | 通常这个端口号是随机选取的,以避免冲突,但是这对于系统来说是不固定的.如果你不使用JNLP节点代理, 4 | 推荐你禁用TCP端口.另一种选择就是指定一个不变的端口号,以便你的防火墙做对应的设置. 5 |
-------------------------------------------------------------------------------- /core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/help-allowsSignup_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | Jenkins默认允许用户自己注册一个新账号,通过点击页面右上角的"注册"链接进行操作. 3 | 但如果你想禁止任意注册新账号,而使用严格的方式控制账号创建,那么取消这个选框。 4 | 5 |

6 | 当这个选框被取消,就必须使用系统管理员来创建账号. 7 |

-------------------------------------------------------------------------------- /core/src/main/webapp/help/system-config/patternJobNamingStrategy_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 定义(正则表达式)模式,用于检查命名是否有效。 3 |

4 | 强制检查已经存在的任务,允许你对已经存在的任务保持约束,例如:即使用户不修改名称,也会在每次 5 | 提交的时候做验证,只有验证通过才能保存。
6 | 该选项不影响任务的执行,只会在保存的时候做验证。 7 |

8 | -------------------------------------------------------------------------------- /workflow-basic-steps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/steps/ReadFileStep/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | File\ path\ in\ workspace=\u5DE5\u4F5C\u7A7A\u95F4\u7684\u6587\u4EF6\u8DEF\u5F84 2 | Character\ encoding=\u5B57\u7B26\u7F16\u7801 3 | -------------------------------------------------------------------------------- /workflow-basic-steps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/steps/SleepStep/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 简单地暂停流水线构建,直到给定的时间到期。 3 | 相当于 (Unix中) sh 'sleep …'。 4 | 可以用在暂停 parallel 中的一个分支或者其他进程。 5 |
6 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/slaves/JNLPLauncher/help-vmargs_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 如果代理的Java虚拟机启动时需要附加参数,例如 "-Xmx256m",可以在这里设置。 3 | 这里 4 | 列出了所有可用的参数。 5 |
-------------------------------------------------------------------------------- /core/src/main/resources/lib/layout/breadcrumbBar_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | DISABLE\ AUTO\ REFRESH=\u5173\u95ED\u81EA\u52A8\u5237\u65B0 4 | ENABLE\ AUTO\ REFRESH=\u5141\u8BB8\u81EA\u52A8\u5237\u65B0 5 | 6 | 7 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/ProxyConfiguration/help-userName_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 该字段和代理服务器字段一起使用,用于指定代理的认证的用户名。 3 | 4 |

5 | 如果代理需要通过微软的 NTLM 6 | 认证配置,那么域名和反斜杆'\'应该加到用户名前面,例如:"ACME\John Doo"。 7 |

-------------------------------------------------------------------------------- /core/src/main/resources/hudson/node_monitors/ClockMonitor/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 监控管理节点和代理节点之间的时钟差异。 3 | 虽然Jenkins本身可以系统之间的时钟差,但是版本管理活动及分散式文件读取 4 | (例如 NFS 及 Windows 共享) 在系統之间有时间差会导致很奇怪的问题。 5 | 6 |

7 | 保持时钟同步的方法,参考 "NTP"。 8 |

9 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/search/UserSearchProperty/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | Case-sensitivity=\u5927\u5C0F\u5199\u533A\u5206 4 | Insensitive\ search\ tool=\u641C\u7D22\u4E0D\u533A\u5206\u5927\u5C0F\u5199 5 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/help-url_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 此项是可选的,指定安装Jenkins的HTTP地址,例如http://yourhost.yourdomain/jenkins/. 3 | 这个值用来在邮件中生产Jenkins链接. 4 | 5 |

6 | 此项是有必要的,因为Jenkins无法探测到自己的URL地址. 7 |

8 | -------------------------------------------------------------------------------- /bitbucket-plugin/src/main/resources/com/cloudbees/jenkins/plugins/BitBucketTrigger/BitBucketWebHookPollingAction/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Last\ BitBucket\ Push=\u4e0a\u4e00\u6b21 BitBucket Push 2 | Polling\ has\ not\ run\ yet.=\u8f6e\u8be2\u73b0\u5728\u8fd8\u6ca1\u6709\u542f\u52a8 -------------------------------------------------------------------------------- /core/src/main/resources/hudson/security/FullControlOnceLoggedInAuthorizationStrategy/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 这种授权模式下,每个登录用户都持有对Jenkins的全部控制权限.只有匿名用户没有全部控制权,匿名用户只有查看权限. 3 | 4 |

5 | 这种授权模式的好处是强制用户登录后才能执行操作,这样你可以随时记录谁都做了什么操作.这种设置也适用于公共使用的Jenkins,只有你信任的人才拥有账户. 6 |

-------------------------------------------------------------------------------- /bitbucket-branch-source-plugin/src/main/resources/com/cloudbees/jenkins/plugins/bitbucket/BitbucketSCMSource/config-detail_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Server=\u670d\u52a1\u5668 2 | Credentials=\u51ed\u636e 3 | Owner=\u62e5\u6709\u8005 4 | Repository\ Name=\u4ed3\u5e93\u540d 5 | Behaviours=\u7279\u6027 -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/StringParameterDefinition/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | Default\ Value=\u9ED8\u8BA4\u503C 4 | Description=\u63CF\u8FF0 5 | Name=\u540D\u79F0 6 | Trim\ the\ string=\u6E05\u9664\u7A7A\u767D\u5B57\u7B26 7 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/tools/ZipExtractionInstaller/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 下载工具包并安装在Jenkins下的工作目录中. 3 | 例如:http://apache.promopeddler.com/ant/binaries/apache-ant-1.7.1-bin.zip 4 | (选择离你最近的镜像服务器) 5 | 并指定一个子目录apache-ant-1.7.1. 6 |
7 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | Build=\u5F00\u59CB\u6784\u5EFA 4 | LOADING=\u8F7D\u5165 5 | description=\u9700\u8981\u5982\u4E0B\u53C2\u6570\u7528\u4E8E\u6784\u5EFA\u9879\u76EE: 6 | -------------------------------------------------------------------------------- /credentials-binding-plugin/src/main/resources/org/jenkinsci/plugins/credentialsbinding/impl/CertificateMultiBinding/config-variables_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Keystore\ Variable=\u5BC6\u94A5\u5E93\u53D8\u91CF 2 | Password\ Variable=\u5BC6\u7801\u53D8\u91CF 3 | Alias\ Variable=\u522B\u540D\u53D8\u91CF 4 | -------------------------------------------------------------------------------- /workflow-basic-steps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/steps/WriteFileStep/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | File\ path\ in\ workspace=\u5DE5\u4F5C\u7A7A\u95F4\u7684\u6587\u4EF6\u8DEF\u5F84 2 | Character\ encoding=\u5B57\u7B26\u7F16\u7801 3 | Text\ to\ write=\u8981\u5199\u5165\u7684\u6587\u672C 4 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/util/HudsonIsRestarting/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | Your\ browser\ will\ reload\ automatically\ when\ Jenkins\ is\ ready.=\u5F53Jenkins\u5C31\u7EEA\u7684\u65F6\u5019\uFF0C\u4F60\u7684\u6D4F\u89C8\u5668\u4F1A\u81EA\u52A8\u5237\u65B0 4 | -------------------------------------------------------------------------------- /mailer-plugin/src/main/resources/hudson/tasks/Mailer/help-smtpServer_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 邮件服务器的名称.不填此项则使用默认服务器 3 | (默认服务器通常是运行在本地) 4 | 5 |

6 | Jenkins使用JavaMail发送e-mail,JavaMail允许使用容器系统参数进行附加设置. 7 | 请参阅 8 | 这个文档查找可用到的值. 9 |

10 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/tools/InstallSourceProperty/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 选择此项会让Jenkins立即在你配置的地方安装工具. 3 | 4 |

5 | 如果你选中此项,你将会配置工具的一系列"安装程序",每个安装程序定义了如何尝试安装所需的工具. 6 | 7 |

8 | 对于跨平台工具(例如Ant),对单个工具配置多个安装程序是没意义的.但是如果是平台依赖的工具, 9 | 多个安装程序允许你在不同的节点环境下运行安装。 10 |

11 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/Node/help-numExecutors_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 这个值控制着Jenkins并发构建的数量. 3 | 因此这个值会影响Jenkins系统的负载压力. 4 | 使用处理器个数作为其值会是比较好的选择. 5 | 6 |

7 | 增大这个值会使每个构建的运行时间更长,但是这能够增大整体的构建数量,因为当一个项目在等待I/O时它允许CPU去构建另一个项目. 8 | 9 |

10 | 设置这个值为0对于从Jenkins移除一个失效的从节点非常有用,并且不会丢失配置信息。 11 |

12 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/system-config/master-slave/numExecutors_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 这个值控制着Jenkins并发构建的数量. 3 | 因此这个值会影响Jenkins系统的负载压力. 4 | 使用处理器个数作为其值会是比较好的选择. 5 | 6 |

7 | 增大这个值会使每个构建的运行时间更长,但是这能够增大整体的构建数量,因为当一个项目在等待I/O时它允许CPU去构建另一个项目. 8 | 9 |

10 | 设置这个值为0对于从Jenkins移除一个失效的从节点非常有用,并且不会丢失配置信息。 11 |

-------------------------------------------------------------------------------- /workflow-basic-steps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/steps/EnvStep/help-overrides_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 表中的环境变量列表,每一行 变量=值变量= 3 | 会覆盖或者定义一个变量。 4 | 你还可以使用这样的语法 PATH+WHATEVER=/something 5 | 把 /something 添加到 $PATH。 6 |
7 | -------------------------------------------------------------------------------- /code-coverage-api-plugin/src/main/resources/io/jenkins/plugins/coverage/source/SourceFileResolver/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Source\ Files\ Storing\ Level=\u6e90\u6587\u4ef6\u4fdd\u5b58\u7b49\u7ea7 2 | Source\ code\ is\ unavailable.=\u6e90\u4ee3\u7801\u6d4f\u89c8\u4e0d\u53ef\u7528 3 | Some\ possible\ reasons\ are\:=\u53ef\u80fd\u7684\u539f\u56e0 -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/Node/help-labelString_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 标记(又叫做标签)用来对多节点分组,标记之间用空格分隔.例如'refression java6'将会把一个节点标记上'regression'和'java6'. 3 | 4 |

5 | 举例来说,如果你有多个Windows系统的构建节点并且你的Job也需要在Windows系统上运行,那么你可以配置所有的Windows系统节点都标记为'windows', 6 | 然后把Job也标记为'windows'.这样的话你的Job就不会运行在除了Windows节点以外的其它节点之上了. 7 |

-------------------------------------------------------------------------------- /matrix-auth-plugin/src/main/resources/hudson/security/ProjectMatrixAuthorizationStrategy/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 这个授权模型扩展自"安全矩阵",允许把下面的ACL(访问控制列表)矩阵附加到每个项目定义中(在Job配置页面). 3 | 4 |

5 | 这允许你宣布类似这样的声明"约翰能够访问A,B和C,但是不能访问D." 查看"安全矩阵"的帮助文档来了解安全矩阵. 6 | 7 |

8 | ACL配置是追加的,就是说下面的访问控制会追加到所有的项目配置中。 9 |

10 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/security/LegacySecurityRealm/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 使用Servlet容器认证用户,遵循Servlet规范. 3 | 这是Jenkins1.163版本遗留的历史.这主要对下列情况非常有用: 4 | 5 |
    6 |
  1. 7 | 你使用1.164之前版本的Jenkins并且愿意继续使用. 8 |
  2. 9 |
  3. 10 | 你已经在你的容器上配置了很好的安全域,并且宁愿Jenkins继续使用它.(有些容器提供更好的文档或者能够定制实现用户的安全域) 11 |
  4. 12 |
13 |
-------------------------------------------------------------------------------- /core/src/main/resources/hudson/security/csrf/GlobalCrumbIssuerConfiguration/help-csrf_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 跨站点请求伪造(或CSRF/XSRF)是一种利用你的身份通过未经授权的第三方手段在网站上执行操作.对于Jenkins,这能够让某些人删除任务,构建或者更改配置. 3 |

4 | 当启用此项,Jenkins会检查临时生成的值,以及任何导致Jenkins服务器改变的请求.这包括任何形式的提交和远程API调用. 5 |

6 | CSRF的更多信息可以在这里找到. 7 |

8 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/View/configure_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | Description=\u63CF\u8FF0 4 | Filter\ build\ executors=\u8FC7\u6EE4\u6784\u5EFA\u6267\u884C\u5668 5 | Filter\ build\ queue=\u8FC7\u6EE4\u6784\u5EFA\u961F\u5217 6 | Name=\u540D\u79F0 7 | OK=\u4FDD\u5B58 8 | Apply=\u5E94\u7528 9 | Edit\ View=\u7F16\u8F91\u89C6\u56FE 10 | -------------------------------------------------------------------------------- /workflow-cps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/cps/Snippetizer/globals_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Pipeline\ Syntax:\ Global\ Variable\ Reference=\u6D41\u6C34\u7EBF\u8BED\u6CD5\uFF1A\u5168\u5C40\u53D8\u91CF\u53C2\u8003 2 | Overview=\u6982\u89C8 3 | Global\ Variable\ Reference=\u5168\u5C40\u53D8\u91CF\u53C2\u8003 4 | Variables=\u53D8\u91CF 5 | (no\ help)=\u6CA1\u6709\u5E2E\u52A9\u6587\u6863 6 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/util/HudsonIsLoading/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | Please\ wait\ while\ Jenkins\ is\ getting\ ready\ to\ work=Jenkins\u6B63\u5728\u542F\u52A8\uFF0C\u8BF7\u7A0D\u540E... 4 | Your\ browser\ will\ reload\ automatically\ when\ Jenkins\ is\ ready.=Jenkins\u542F\u52A8\u5B8C\u6210\u540E\u6D4F\u89C8\u5668\u5C06\u81EA\u52A8\u5237\u65B0 5 | -------------------------------------------------------------------------------- /workflow-basic-steps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/steps/MailStep/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | To=\u6536\u4EF6\u4EBA 2 | CC=\u6284\u9001 3 | BCC=\u5BC6\u9001 4 | Subject=\u4E3B\u9898 5 | Body=\u6B63\u6587 6 | From=\u53D1\u4EF6\u4EBA 7 | Reply-To=\u56DE\u590D\u4EBA 8 | Body\ MIME\ Type=\u6B63\u6587\u5A92\u4F53\u7C7B\u578B 9 | Body\ Character\ Set=\u6B63\u6587\u5B57\u7B26\u96C6 10 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | Age=\u6784\u5EFA\u5386\u53F2 4 | File=\u6587\u4EF6 5 | Original\ owner=\u539F\u4E3B 6 | Recorded\ Fingerprints=\u6587\u4EF6\u6307\u7EB9\u6863\u6848 7 | more\ details=\u8BE6\u7EC6\u4FE1\u606F 8 | outside\ Jenkins=\u975Ejenkins 9 | this\ build=\u672C\u6B21\u6784\u5EFA 10 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/system-config/homeDirectory_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | Jenkins储存所有的数据文件在这个目录下. 3 | 你可以通过以下几种方式更改: 4 |
    5 |
  1. 6 | 使用你Web容器的管理工具设置JENKINS_HOME环境参数. 7 |
  2. 8 | 在启动Web容器之前设置JENKINS_HOME环境变量. 9 |
  3. 10 | (不推荐)更改Jenkins.war(或者在展开的Web容器)内的web.xml配置文件. 11 |
12 | 这个值在Jenkins运行时是不能更改的. 13 | 其通常用来确保你的配置是否生效. 14 |
15 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/lifecycle/WindowsInstallerLink/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | Install=\u5B89\u88C5 4 | Install\ as\ Windows\ Service=\u5B89\u88C5\u4E3AWindows\u670D\u52A1 5 | Installation\ Directory=\u5B89\u88C5\u76EE\u5F55 6 | installBlurb=\u5C06Jenkins \u5B89\u88C5\u4E3AWindows\u7CFB\u7EDF\u670D\u52A1\u4EE5\u4FBFJenkins\u80FD\u5F00\u673A\u81EA\u52A8\u542F\u52A8\u3002 7 | -------------------------------------------------------------------------------- /specification.md: -------------------------------------------------------------------------------- 1 | 为了能够保证在中文本地化翻译过程中,风格、术语翻译保持一致,请您在提交 PR 之前先详细地阅读下面的介绍。 2 | 3 | # 风格 4 | 5 | * 中英文之间使用一个空格分割 6 | 7 | # 术语 8 | 9 | 部分技术术语,我们无需进行翻译,应该保留。 10 | 11 | * Pull Request 12 | * master 13 | 14 | # 中英文对照表 15 | 16 | 为了能保证在整个文档网站中保持一致的翻译,请参考下面的对照表: 17 | 18 | |英文|中文|说明| 19 | |---|---|---| 20 | |artifacts|制品| 21 | |Credentials|凭据| 22 | |Dashboard|工作台| 23 | |Job|任务| 24 | |Pipeline|流水线| 25 | 26 | 如果有任何疑问,请先针对该说明发起讨论。 27 | -------------------------------------------------------------------------------- /workflow-basic-steps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/steps/EnvStep/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 定义一个或者多个环境变量。在这个范围内,对任何外部的进程都是可见的。 3 | 例如: 4 |

 5 | node {
 6 |   withEnv(['MYTOOL_HOME=/usr/local/mytool']) {
 7 |     sh '$MYTOOL_HOME/bin/start'
 8 |   }
 9 | }
10 | 
11 |

(注意在Groovy中,我们使用的是单引号,因此是在 Bourne shell 中扩展的变量,而不是Jenkins中。) 12 |

在文档中有关环境变量处,可以看到更多有关 env 的信息。 13 |

14 | -------------------------------------------------------------------------------- /workflow-cps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/cps/Snippetizer/html_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Pipeline\ Syntax:\ Global\ Variable\ Reference=\u6D41\u6C34\u7EBF\u8BED\u6CD5\uFF1A\u5168\u5C40\u53D8\u91CF\u53C2\u8003 2 | Overview=\u6982\u89C8 3 | DSL\ Reference=DSL \u53C2\u8003 4 | Steps=\u6B65\u9AA4 5 | Advanced/Deprecated\ Steps=\u9AD8\u7EA7\u6216\u5F03\u7528\u7684\u6B65\u9AA4 6 | Type:=\u7C7B\u578B\uFF1A 7 | Values:=\u503C\uFF1A 8 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/View/noJob_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | description_1=\u8BE5\u89C6\u56FE\u4E0B\u76EE\u524D\u6CA1\u6709\u76F8\u5173\u7684\u4EFB\u52A1\u3002 4 | description_2=\u4F60\u53EF\u4EE5\u6DFB\u52A0\u73B0\u6709\u7684\u4EFB\u52A1\u5230\u8BE5\u89C6\u56FE\u4E2D\u6216\u8005\u5728\u8BE5\u8BE5\u89C6\u56FE\u4E2D\u521B\u5EFA\u4E00\u4E2A\u65B0\u7684\u4EFB\u52A1\u3002 5 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/triggers/SCMTrigger/help.html: -------------------------------------------------------------------------------- 1 |
2 | Configure Jenkins to poll changes in SCM.-- 3 | 4 |

5 | Note that this is going to be an expensive operation for CVS, as every polling 6 | requires Jenkins to scan the entire workspace and verify it with the server. 7 | Consider setting up a "push" trigger to avoid this overhead, as described in 8 | this document 9 |

10 | -------------------------------------------------------------------------------- /bitbucket-branch-source-plugin/src/main/resources/com/cloudbees/jenkins/plugins/bitbucket/endpoints/BitbucketCloudEndpoint/config-detail_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Enable\ cache=\u542f\u7528\u7f13\u5b58 2 | How\ long\ to\ cache\ team,\ in\ minutes=team \u7f13\u5b58\u65f6\u95f4, \u5206\u949f\u8868\u793a 3 | How\ long\ to\ cache\ repositories,\ in\ minutes=\u4ed3\u5e93\u7f13\u5b58\u65f6\u95f4, \u5206\u949f\u8868\u793a 4 | Clear\ caches=\u6e05\u9664\u7f13\u5b58 5 | Show\ statistics=\u663e\u793a\u7edf\u8ba1 -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/Cause/UpstreamCause/description_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | caused_by=\u89E6\u53D1\u6784\u5EFA 4 | started_by_project=\u7531\u4E0A\u6E38\u9879\u76EE {0} \u6784\u5EFA\u53F7 {1} 5 | started_by_project_with_deleted_build=\u7531\u4E0A\u6E38\u9879\u76EE {0} \u6784\u5EFA\u53F7 {1} 6 | -------------------------------------------------------------------------------- /matrix-auth-plugin/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 在这种授权模型中,你可以通过一个大的表格来配置什么用户可以做什么事. 3 | 4 |

5 | 每一列代表一个权限.把鼠标移动到权限名称上可以查看更详细的权限说明信息. 6 | 7 |

8 | 每一行代表一个用户或组(通常称为'角色',取决于安全域.),这其中包含特殊用户'anonymous',其代表未登录用户,同样还有'authenticated',其代表所有已认证的用户(也就是除了匿名用户的所有用户.) 9 | 可以使用表格下方的输入框来添加新的用户/组/角色到表格中,并且可以点击[x]图标将其从表格中删除. 10 | 11 |

12 | 权限是追加的,这说明如果一个用户X在A,B,C三个组中,那么X的权限是联合了X,A,B,C和匿名用户的所有权限. 13 |

14 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/help-quietPeriod_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 如果设置此选项,一个计划中的构建在开始之前需要等待选项中设置的秒数。 3 | 这会对下面的情况非常有用: 4 | 15 | 如果没有在项目级别设置此项,则会使用系统默认值。 16 |
-------------------------------------------------------------------------------- /mailer-plugin/src/main/resources/hudson/tasks/Mailer/help-sendToIndividuals_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | If this option is checked, the notification e-mail will be sent to individuals who have 3 | committed changes for the broken build (by assuming that those changes broke the build). 4 |

5 | If e-mail addresses are also specified in the recipient list, then both the individuals 6 | as well as the specified addresses get the notification e-mail. If the recipient list 7 | is empty, then only the individuals will receive e-mails. 8 |

-------------------------------------------------------------------------------- /src/main/resources/jenkins/plugins/localization/LocalizationMonitor/message.jelly: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 | 6 | 7 | ${%Chinese Localization is conflict with} ${it.plugin.getDisplayName()}:${it.plugin.getVersion()} 8 |
9 |
-------------------------------------------------------------------------------- /core/src/main/resources/hudson/security/GlobalSecurityConfiguration/help-useSecurity_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 如果启动此项,你必须使用用户名/密码登录才能配置和执行构建,并且用户要具有"admin"权限(在页面的右上角会看到"login"链接). 3 | 配置用户账户取决于你使用哪种Web容器.(比如,在Tomcat中,默认在$TOMCAT_HOME/conf/tomcat-users.xml中配置) 4 | 5 |

6 | 如果你的Jenkins在内网环境(或者是一个"可信任"的环境),通常会禁用此项,以便项目开发人员能够配置他们自己的项目,而不用麻烦你. 7 | 8 |

9 | 如果你的Jenkins暴露在公网环境,你最好启用此项.Jenkins如果在一个不安全的环境下必定会遭到黑客的攻击. 10 | 11 |

12 | 更多Jenkins安全相关信息,请看 13 | 这个文档. 14 |

15 | -------------------------------------------------------------------------------- /pipeline-input-step-plugin/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/input/Messages_zh_CN.properties: -------------------------------------------------------------------------------- 1 | paused_for_input=\u9700\u8981\u8F93\u5165\u800C\u6682\u505C 2 | pipeline_need_input=\u6D41\u6C34\u7EBF\u5DF2\u7ECF\u88AB\u6682\u505C\uFF0C\u9700\u8981\u4F60\u8F93\u5165\u540E\u624D\u53EF\u4EE5\u7EE7\u7EED\u8FD0\u884C 3 | wait_for_interactive_input=\u7B49\u5F85\u4EA4\u4E92\u5F0F\u8F93\u5165 4 | Abort=\u7EC8\u6B62 5 | Rejected=\u62D2\u7EDD 6 | Rejected_by=\u88AB {0} \u62D2\u7EDD 7 | input_submitted=\u8F93\u5165\u5DF2\u63D0\u4EA4 8 | proceed=\u7EE7\u7EED 9 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/system-config/master-slave/usage_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 控制Jenkins如何在这台机器上安排构建. 3 | 4 |
5 |
6 | 尽可能的使用这个节点 7 |
8 |
9 | 这是默认和常用的设置. 10 | 在这种模式下,Jenkins会尽可能的使用这个节点.任何时候如果一个构建能使用这个节点构建,那么Jenkins就会使用它. 11 |
12 | 13 |
14 | 只允许运行绑定到这台机器的Job 15 |
16 |
17 | 这种模式下,Jenkins只会构建哪些分配到这台机器的Job. 18 | 19 | 这允许一个节点专门保留给某种类型的Job.例如,在Jenkins上连续的执行测试,你可以设置执行者数量为1,那么同一时间就只会有一个构建, 20 | 一个实行者不会阻止其它构建,其它构建会在另外的节点运行. 21 |
22 |
23 |
-------------------------------------------------------------------------------- /cmakebuilder-plugin/src/main/resources/hudson/plugins/cmake/CmakeBuilder/common-fields_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Script\ Generator=\u811A\u672C\u751F\u6210\u5668 2 | Source\ Directory=\u6E90\u7801\u76EE\u5F55 3 | Build\ Type=\u6784\u5EFA\u7C7B\u578B 4 | Build\ Directory=\u6784\u5EFA\u76EE\u5F55 5 | Clean\ Build=\u6E05\u7406\u6784\u5EFA 6 | Preload\ Script=\u9884\u52A0\u8F7D\u811A\u672C 7 | Other\ CMake\ Arguments=\u5176\u4ED6 CMake \u53C2\u6570 8 | Build\ tool=\u6784\u5EFA\u5DE5\u5177 9 | Run\ build\ tool=\u8FD0\u884C\u6784\u5EFA\u5DE5\u5177 10 | Add\ build\ tool\ invocation=\u6DFB\u52A0\u6784\u5EFA\u5DE5\u5177 11 | -------------------------------------------------------------------------------- /code-coverage-api-plugin/src/main/resources/io/jenkins/plugins/coverage/targets/CoverageResult/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Source\ code\ is\ unavailable.=\u6e90\u4ee3\u7801\u6d4f\u89c8\u4e0d\u53ef\u7528 2 | Some\ possible\ reasons\ are\:=\u53ef\u80fd\u7684\u539f\u56e0 3 | reason.1=\ 4 | \u60a8\u5c06\u6e90\u6587\u4ef6\u4fdd\u5b58\u7b49\u7ea7\u8bbe\u7f6e\u4e3a\u4e86\u6c38\u4e0d\u4fdd\u5b58 5 | reason.2=\ 6 | Code Coverage API plugin \u60a8\u5c06\u6e90\u6587\u4ef6\u4fdd\u5b58\u7b49\u7ea7\u8bbe\u7f6e\u4e3a\u4e86\u6c38\u4e0d\u4fdd\u5b58 7 | reason.3=\ 8 | \u4f60\u6ca1\u6709\u8db3\u591f\u7684\u6743\u9650\u6d4f\u89c8\u6e90\u6587\u4ef6 9 | Code\ Coverage=\u4ee3\u7801\u8986\u76d6\u7387 10 | 11 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/system-config/master-slave/jnlp-tunnel_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 当从节点通过JNLP启动后,节点会尝试与Jenkins指定的TCP端口连接,作为通讯通道。 3 | 但某些对安全敏感的网络可能会阻止该连接。 4 | 当Jenkins在一个负载均衡环境中运行时,也是有可能发生的,通过 5 | apache 反向代理 6 | 到 DMZ 等等。 7 | 8 |

9 | 该通道选项,允许你指定其他的主机(或者端口),这对以上情况是很有用的。该字段的格式可以是"HOST:PORT", ":PORT", 10 | 或者"HOST:"。第一种格式下,JNLP 代理会连接指定的主机和端口,并且假设已经配置好了网络。 11 | 12 |

13 | 后面的两种格式,使用默认的主机名和端口号(主机名是Jenkins所运行的主机,TCP端口是Jenkins打开的端口)。在特殊情况下,HOST: format 14 | 这种格式是当Jenkins运行在反向代理环境下。 15 |

-------------------------------------------------------------------------------- /core/src/main/webapp/help/project-config/custom-workspace_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | Jenkins 会为每项任务分配一个独立的“工作区目录”。这个目录会被用来检出代码并执行构建的。 3 | 一般情况下您应该让Jenkins分配及清除工作区目录,但在某些情况下这是有问题的, 4 | 在这些情况下,此选项可以让您手动设定工作区目录 5 | 6 |

7 | 一种可能的情况是您的代码中的路径是写死的,只能在特定位置才能构建。 8 | 毋庸置疑的这种构建一点儿也不妙,但是这个选项是能让您继续进行下去。 9 | 10 |

11 | 另一种适用情况是当您适用项目类型不执行软件构建,但执行某个批处理任务,或许是作为cron的替代。 12 | 在这种情况下,您可以适用此选项将相关目录映射为工作区,以便人们可以通过Jenkins网页查看文件。 13 | 您执行相关命令也可以更轻松。 14 | 15 |

16 | 如果您处于分布式构建环境中,除非将任务绑定到特定节点,否则Jenkins可能会将作业分配到不同的节点。 17 | 有时这是可取的,有时这是不可取的。另外,您可以将多个项目映射到同一工作区,但是如果这样做,请确保 18 | 项目同时执行时彼此不会有干扰。 19 | 20 |

21 | 如果使用相对路径,在节点上会从远端档案系统根目录开始算起; 22 | 在Master上则从$JENKINS_HOME 开始。 23 |

-------------------------------------------------------------------------------- /core/src/main/resources/hudson/tools/AbstractCommandInstaller/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |

2 | 运行Shell命令来安装你选择的工具.用Ubunte举例, 3 | 假设Jenkins用户在/etc/sudoers内: 4 |

5 |
sudo apt-get --yes install openjdk-6-jdk
6 |

7 | (这个例子中指定 /usr/lib/jvm/java-6-openjdk 作为工具安装目录.) 8 |

9 |

10 | 其它情况的例子,在(x86) Linux下安装JDK6, 11 | 你可以使用DLJ: 12 |

13 |
bin=jdk-6u13-dlj-linux-i586.bin
14 | if [ \! -f $bin ]
15 | then
16 |     wget --no-verbose http://download.java.net/dlj/binaries/$bin
17 |     sh $bin --unpack --accept-license
18 | fi
19 |

20 | (这个例子中指定 jdk1.6.0_13 作为安装目录DLJ:.) 21 |

22 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/parameter/file_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 从浏览器表单提交中接受一个文件,作为构建参数。上传后的文件将会放在工作空间中指定的位置,你 3 | 可以在构建任务中访问并使用它。 4 |

这对于很多场景下是有帮助的,例如:

    5 |
  1. 让用户基于他们构建出来的成品运行测试。
  2. 6 |
  3. 允许用户在自动化上传、发布、部署过程中替换文件。
  4. 7 |
  5. 通过上传一个数据集来处理数据。
  6. 8 |
9 |

10 | 表单提交中的文件名称就是文件的路径,并且是在环境变量中可见的。例如:你把文件路径设置为 11 | abc.zip,然后${abc.zip}会从浏览器传递给你原始的文件名称。 12 | (例如my.zip。)这里的名称不会包含目录部分。 13 |

14 |

15 | 文件的上传是可选的。如果用户不上传任何文件,Jenkins只是简单地跳过这个参数并不会替换 16 | 任何文件(但是也不会删除任何已经存在的文件)。 17 |

18 |

19 | 在命令行模式下参数-p对于构建命令build会选择一个本地文件 20 | (-remoting),或者从标准输出中读取。(在字符模式下,只允许定义一个文件参数) 21 |

22 |
-------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Simplified Chinese Plugin 2 | 3 | Simplified Chinese Localization for Jenkins core and plugins. 4 | See [JEP-216](https://github.com/jenkinsci/jep/blob/master/jep/216/README.adoc) for design details. 5 | 6 | # Limitation 7 | 8 | The plugin only support *.jelly and help-*.html localization resources for now. 9 | 10 | # How-To Guides 11 | 12 | Here are some guides about [how to contribute localization](https://jenkins.io/doc/developer/internationalization/) for a Jenkins plugin. 13 | 14 | # Contribution 15 | 16 | If you are interested in localization, please check [Chinese Localization SIG](https://jenkins.io/sigs/chinese-localization/) first. 17 | 18 | All Chinese characters will convert to ASCII. It's hard to read. So you could use [online tools](https://native2ascii.net/). 19 | 20 | Everyone should follow the [translation specification](specification.md). -------------------------------------------------------------------------------- /src/main/java/jenkins/plugins/localization/L10nDecorator.java: -------------------------------------------------------------------------------- 1 | package jenkins.plugins.localization; 2 | 3 | import hudson.Extension; 4 | import hudson.model.Hudson; 5 | import hudson.model.PageDecorator; 6 | import org.kohsuke.stapler.WebApp; 7 | import org.kohsuke.stapler.jelly.JellyFacet; 8 | 9 | /** 10 | * {@link PageDecorator} that loading Chinese Localization from current plugin. 11 | * 12 | * @author suren 13 | */ 14 | @Extension 15 | public class L10nDecorator extends PageDecorator { 16 | public L10nDecorator() { 17 | super(L10nDecorator.class); 18 | 19 | // hook into Stapler to activate contributed l10n 20 | Hudson hudson = Hudson.getInstance(); 21 | WebApp webContext = WebApp.get(hudson.servletContext); 22 | JellyFacet facet = webContext.getFacet(JellyFacet.class); 23 | facet.resourceBundleFactory = new ResourceBundleFactoryImpl(facet.resourceBundleFactory); 24 | 25 | webContext.facets.add(new LocalizationFacet()); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/system-config/master-slave/jnlpSecurity_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 控制 Jenkins 如何允许通过JNLP启动。 3 | 4 |
5 |
6 | 只能由“节点”页面启动。安全性启用时需要登录。 7 |
8 |
9 | 这是预设也是最常用的设定。 10 | 该模式下,Jenkins会在节点页面里显示JNLP启动链接。 11 | 在启用安全性的情况下,只有验证通过的用户才能看到链接。 12 |
13 | 14 |
15 | 由页面启动。如果启用安全设置的话需要登录。 16 |
17 |
18 | 此模式下,Jenkins提供JNLP的启动链接在节点界面和执行状态侧栏。 19 | 如果启用安全设置,只有验证通过的用户才能看到链接。 20 |
21 | 22 |
23 | 只能通过节点界面启动,永远不要求登录。 24 |
25 |
26 | 此模式下,Jenkins会在节点页面里显示JNLP启动链接。 27 | 不管节点是否离线都会显示链接。 28 |
29 | 警告! 这个模式是不安全性。所以节点可以被 任何能访问该服务器的人 启动。 30 | 从节点可以在主节点上执行任意代码。 不要使用该选项,除非你对风险很清楚 31 |
32 | 33 | 40 | 41 |
42 |
-------------------------------------------------------------------------------- /core/src/main/resources/lib/form/apply_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018 suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Apply=\u5E94\u7528 24 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/form/hetero-list_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Add=\u65B0\u589E 24 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/form/submit_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018 suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Submit=\u63D0\u4EA4 24 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/form/repeatable_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Add=\u65B0\u589E 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/User/builds_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2017, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | title={0}\u7684\u6784\u5EFA 23 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/form/booleanRadio_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Yes=\u662F 24 | No=\u5426 25 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/system-config/master-slave/availability_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 决定Jenkins的启动和停止。 3 | 4 |
5 |
6 | 尽可能保持代理在线 7 |
8 |
9 | 该模式下,Jenkins会尽可能让代理保持在线。 10 |

11 | 如果该代理由于临时性网络故障,Jenkins会定期尝试重启它。 12 |

13 | 14 |
15 | 让代理在特定的时间段内在线或者离线 16 |
17 |
18 | 该模式下,Jenkins会根据一个计划表来启动代理,并保持指定的时长。 19 |

20 | 如果在计划周期内代理掉线,Jenkins会定期尝试重启它。 21 |

22 | 当代理在线时间达到字段计划启动的时间,它将会被下线。 23 |
24 | 如果勾选了当有构建时保持在线,并且根据计划表应该下线,Jenkins会等所有的 25 | 构建任务完成后再下线。 26 |

27 | 28 |
29 | 当代理被需要时保持在线,空闲时离线 30 |
31 |
32 | 该模式下,当代理被需要时Jenkins将会让代理上线,例如有排队的构建任务满足下列条件: 33 |
    34 |
  • 在队列中排队时间达到需求延迟时间限制
  • 35 |
  • 被构建任务指定(例如有一个匹配的标签表达式)
  • 36 |
37 | 38 | 如果发生下述情况,代理将会被下线: 39 |
    40 |
  • 代理没有需要构建的任务
  • 41 |
  • 该代理已经空闲了指定的时间
  • 42 |
43 |
44 |
45 |
46 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/View/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Dashboard=\u5DE5\u4F5C\u53F0 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/views/LastFailureColumn/column_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | N/A=\u65E0 24 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/hudson/buildHealth_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Description=\u63CF\u8FF0 24 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/hudson/node_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | master=\u4E3B\u670D\u52A1\u5668 24 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/mvn/FilePathSettingsProvider/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright 2018, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | File\ path=\u6587\u4EF6\u8DEF\u5F84 24 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/form/helpArea_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Loading...=\u52A0\u8F7D\u4E2D... 24 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/form/repeatableDeleteButton_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Delete=\u5220\u9664 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/logging/LogRecorder/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, linuxsuren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Clear\ This\ Log=\u6E05\u9664\u65E5\u5FD7 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/logging/LogRecorderManager/new_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Name=\u540D\u79F0 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/security/SecurityRealm/loginLink_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | login=\u767b\u5f55 24 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/model/RenameAction/action_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Rename=\u91cd\u547d\u540d 24 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/layout/pane_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | expand=\u5C55\u5F00 24 | collapse=\u5408\u4E0A 25 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/Computer/_api_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Load\ Statistics=\u8d1f\u8f7d\u7edf\u8ba1 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Failure/status_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, linuxsuren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Failure=\u5931\u8D25 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/triggers/TimerTrigger/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Schedule=\u65E5\u7A0B\u8868 24 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/mvn/FilePathGlobalSettingsProvider/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright 2018, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | File\ path=\u6587\u4EF6\u8DEF\u5F84 24 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/hudson/propertyTable_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Name=\u540D\u79F0 24 | Value=\u503C 25 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/AbstractBuild/changes_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Changes=\u53D8\u66F4\u8BB0\u5F55 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, linuxsuren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Running=\u6267\u884C\u4E2D 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/User/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Jenkins\ User\ ID=Jenkins \u7528\u6237 ID 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/search/Messages_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2017, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | UserSearchProperty.DisplayName=\u67E5\u627E\u8BBE\u7F6E 23 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/tools/DownloadFromUrlInstaller/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Version=\u7248\u672c 24 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/model/BuildDiscarderProperty/config-details_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Strategy=\u7b56\u7565 24 | -------------------------------------------------------------------------------- /pam-auth-plugin/src/main/resources/hudson/security/PAMSecurityRealm/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Test=\u6d4b\u8bd5 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/AbstractProject/changes_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Changes=\u4FEE\u6539\u8BB0\u5F55 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/MyViewsProperty/newView_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | View\ name=\u89C6\u56FE\u540D\u79F0 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Preparation=\u51C6\u5907 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Pending=\u7B49\u5F85 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Success=\u5B8C\u6210 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, linuxsuren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Canceled=\u5DF2\u53D6\u6D88 24 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/hudson/buildCaption_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Progress=\u8FDB\u5EA6 24 | cancel=\u53D6\u6D88 25 | -------------------------------------------------------------------------------- /ssh-slaves-plugin/src/main/resources/hudson/plugins/sshslaves/SSHLauncher/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2017, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Host=\u4E3B\u673A 24 | -------------------------------------------------------------------------------- /subversion-plugin/src/main/resources/hudson/scm/SubversionChangeLogSet/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Summary=\u6C47\u603B 24 | -------------------------------------------------------------------------------- /cloudbees-folder-plugin/src/main/resources/com/cloudbees/hudson/plugins/folder/Folder/tasks-create_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2017, linuxsuren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | newJob=\u65B0\u5EFA{0} -------------------------------------------------------------------------------- /core/src/main/resources/hudson/markup/Messages_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2017, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | EscapedMarkupFormatter.DisplayName=\u7EAF\u6587\u672C 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/JDK/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Name=\u522b\u540d 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | sign\ up=\u6ce8\u518c 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | New\ View=\u65B0\u5EFA\u89C6\u56FE 24 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/model/Jenkins/MasterComputer/_api_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Load\ Statistics=\u8d1f\u8f7d\u7edf\u8ba1 24 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/model/Jenkins/load-statistics_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Load\ Statistics=\u8d1f\u8f7d\u7edf\u8ba1 24 | -------------------------------------------------------------------------------- /kubernetes-plugin/src/main/resources/org/csanchez/jenkins/plugins/kubernetes/PodImagePullSecret/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, Alauda 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Name=\u540D\u79F0 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | format={0}({1}),{2}\u4E4B\u524D 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/Run/delete_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Delete\ this\ build=\u5220\u9664\u672C\u6B21\u751F\u6210 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Pending=\u7B49\u5F85 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | No\ changes.=\u6CA1\u6709\u53D8\u5316\u3002 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | New\ View=\u65B0\u5EFA\u89C6\u56FE 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Last\ Failure=\u4E0A\u6B21\u5931\u8D25 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Last\ Success=\u4E0A\u6B21\u6210\u529F 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/widgets/HistoryWidget/entry_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Console\ Output=\u63A7\u5236\u53F0\u8F93\u51FA 24 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/form/textarea_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Hide\ preview=\u9690\u85CF\u9884\u89C8 24 | Preview=\u9884\u89C8 25 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/hudson/iconSize_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Icon=\u56FE\u6807 24 | S=\u5C0F 25 | M=\u4E2D 26 | L=\u5927 27 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/hudson/project/config-buildWrappers_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Build\ Environment=\u6784\u5EFA\u73AF\u5883 24 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/hudson/project/config-scm_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Source\ Code\ Management=\u6E90\u7801\u7BA1\u7406 24 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/hudson/project/config-trigger_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Build\ Triggers=\u6784\u5EFA\u89E6\u53D1\u5668 24 | -------------------------------------------------------------------------------- /kubernetes-plugin/src/main/resources/org/csanchez/jenkins/plugins/kubernetes/PodAnnotation/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, Alauda 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Key=\u952E 24 | Value=\u503C 25 | -------------------------------------------------------------------------------- /workflow-job-plugin/src/main/resources/org/jenkinsci/plugins/workflow/job/FlowGraphAction/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2017, suren 4 | 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Step=\u6B65\u9AA4 24 | -------------------------------------------------------------------------------- /cloudbees-folder-plugin/src/main/resources/com/cloudbees/hudson/plugins/folder/relocate/RelocationAction/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, linuxsuren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Move=\u79FB\u52A8 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Installing=\u5B89\u88C5\u4E2D 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Restarting\ Jenkins=\u91CD\u542F Jenkins 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/views/GlobalDefaultViewConfiguration/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Default\ view=\u9ED8\u8BA4\u89C6\u56FE 24 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/hudson/project/config-publishers_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Post-build\ Actions=\u6784\u5EFA\u540E\u64CD\u4F5C 24 | -------------------------------------------------------------------------------- /credentials-binding-plugin/src/main/resources/org/jenkinsci/plugins/credentialsbinding/impl/BindingStep/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, linuxsuren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | Bindings=\u7ED1\u5B9A 23 | -------------------------------------------------------------------------------- /credentials-plugin/src/main/resources/com/cloudbees/plugins/credentials/BaseCredentials/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2017, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Scope=\u8303\u56F4 24 | -------------------------------------------------------------------------------- /kubernetes-plugin/src/main/resources/org/csanchez/jenkins/plugins/kubernetes/model/KeyValueEnvVar/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, Alauda 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Key=\u952E 24 | Value=\u503C 25 | -------------------------------------------------------------------------------- /workflow-cps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/cps/steps/LoadStep/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2017, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Path=\u8DEF\u5F84 24 | -------------------------------------------------------------------------------- /alauda-devops-sync-plugin/src/main/resources/io/alauda/jenkins/devops/sync/AlaudaSyncGlobalConfiguration/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, Alauda, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Credentials=\u51ED\u636E -------------------------------------------------------------------------------- /cloudbees-folder-plugin/src/main/resources/com/cloudbees/hudson/plugins/folder/relocate/DefaultRelocationUI/main_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, linuxsuren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Move=\u79FB\u52A8 24 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/hudson/scriptConsole_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Run=\u8FD0\u884C 24 | Script\ Console=\u811A\u672C\u547D\u4EE4\u884C 25 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/layout/main-panel_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Jenkins\ is\ going\ to\ shut\ down=Jenkins \u5373\u5C06\u5173\u95ED 24 | -------------------------------------------------------------------------------- /credentials-binding-plugin/src/main/resources/org/jenkinsci/plugins/credentialsbinding/Binding/config-variables_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, linuxsuren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Variable=\u53D8\u91CF 24 | -------------------------------------------------------------------------------- /credentials-binding-plugin/src/main/resources/org/jenkinsci/plugins/credentialsbinding/MultiBinding/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, linuxsuren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Credentials=\u51ED\u636E 24 | -------------------------------------------------------------------------------- /mailer-plugin/src/main/resources/hudson/tasks/Mailer/UserProperty/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | E-mail\ address=\u90ae\u4ef6\u5730\u5740 24 | -------------------------------------------------------------------------------- /workflow-cps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/cps/replay/ReplayAction/diff_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Replay\ Diff=\u56DE\u653E\u6BD4\u8F83 24 | -------------------------------------------------------------------------------- /cloudbees-folder-plugin/src/main/resources/com/cloudbees/hudson/plugins/folder/health/WorstChildHealthMetric/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, linuxsuren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Recursive=\u9012\u5F52 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/Computer/configure_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2017, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | title={0} \u8BBE\u7F6E 24 | Name=\u540D\u79F0 25 | Save=\u4FDD\u5B58 26 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/ListView/newJobButtonBar_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2017, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Add\ to\ current\ view=\u6DFB\u52A0\u5230\u5F53\u524D\u89C6\u56FE 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/ParametersDefinitionProperty/config-details_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Add\ Parameter=\u6DFB\u52A0\u53C2\u6570 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/security/csrf/Messages_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | DefaultCrumbIssuer.DisplayName=\u9ED8\u8BA4\u788E\u7247\u751F\u6210\u5668 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2017, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Connection\ was\ broken=\u8FDE\u63A5\u4E2D\u65AD 24 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/form/serverTcpPort_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright 2011 Seiji Sogabe 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Fixed=\u6307\u5b9a\u7aef\u53e3 24 | Random=\u968f\u673a\u9009\u53d6 25 | Disable=\u7981\u7528 26 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/hudson/thirdPartyLicenses_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | License=\u8BB8\u53EF 24 | Maven\ ID=Maven ID 25 | Name=\u540D\u79F0 26 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Last\ Duration=\u4E0A\u6B21\u6301\u7EED\u65F6\u95F4 24 | 25 | -------------------------------------------------------------------------------- /ssh-slaves-plugin/src/main/resources/hudson/plugins/sshslaves/verifiers/TrustHostKeyAction/trustHostKey_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2017, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Yes=\u662F 24 | No=\u5426 25 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/FileParameterDefinition/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2017, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | File\ location=\u6587\u4EF6\u8DEF\u5F84 24 | Description=\u63CF\u8FF0 25 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/tasks/Fingerprinter/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Files\ to\ fingerprint=\u9700\u8981\u8bb0\u5f55\u6307\u7eb9\u7684\u6587\u4ef6 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/views/StatusColumn/columnHeader_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Status\ of\ the\ last\ build=\u4E0A\u6B21\u6784\u5EFA\u72B6\u6001 24 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/model/GlobalNodePropertiesConfiguration/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Global\ properties=\u5168\u5c40\u5c5e\u6027 24 | 25 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/hudson/listScmBrowsers_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Auto=\u81EA\u52A8 24 | Repository\ browser=\u6E90\u7801\u5E93\u6D4F\u89C8\u5668 25 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/hudson/newFromList/form_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Copy\ from=\u8981\u590D\u5236\u7684\u4EFB\u52A1\u540D\u79F0 24 | OK=\u786E\u5B9A 25 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/hudson/project/config-quietPeriod_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Number\ of\ seconds=\u79D2\u949F 24 | Quiet\ period=\u5B89\u9759\u671F 25 | -------------------------------------------------------------------------------- /credentials-binding-plugin/src/main/resources/org/jenkinsci/plugins/credentialsbinding/impl/SecretBuildWrapper/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | 2 | # The MIT License 3 | # 4 | # Copyright (c) 2018, linuxsuren 5 | # 6 | # Permission is hereby granted, free of charge, to any person obtaining a copy 7 | # of this software and associated documentation files (the "Software"), to deal 8 | # in the Software without restriction, including without limitation the rights 9 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | # copies of the Software, and to permit persons to whom the Software is 11 | # furnished to do so, subject to the following conditions: 12 | # 13 | # The above copyright notice and this permission notice shall be included in 14 | # all copies or substantial portions of the Software. 15 | # 16 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 | # THE SOFTWARE. 23 | 24 | Bindings=\u7ED1\u5B9A 25 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/Cause/UserCause/description_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | started_by_user=\u542F\u52A8\u7528\u6237{0} 24 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/model/DefaultSimplePageDecorator/simple-header_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Welcome\ to\ Jenkins!=\u6B22\u8FCE\u6765\u5230 Jenkins\uFF01 24 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/hudson/project/config-builders_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Add\ build\ step=\u589E\u52A0\u6784\u5EFA\u6B65\u9AA4 24 | Build=\u6784\u5EFA 25 | -------------------------------------------------------------------------------- /credentials-plugin/src/main/resources/com/cloudbees/plugins/credentials/CredentialsStoreAction/action_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2017, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Add\ domain=\u6DFB\u52A0\u57DF 24 | 25 | -------------------------------------------------------------------------------- /kubernetes-plugin/src/main/resources/org/csanchez/jenkins/plugins/kubernetes/volumes/workspace/EmptyDirWorkspaceVolume/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, Alauda 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | In\ Memory=\u5185\u5B58\u4E2D 24 | -------------------------------------------------------------------------------- /pipeline-input-step-plugin/src/main/resources/org/jenkinsci/plugins/workflow/support/steps/input/InputStepExecution/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2018, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Abort=\u7EC8\u6B62 24 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/PluginManager/sites_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2017, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Update\ Center=\u66F4\u65B0\u4E2D\u5FC3 24 | Add...=\u65B0\u589E... 25 | Remove=\u79FB\u9664 26 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/ChoiceParameterDefinition/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2017, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Name=\u540D\u79F0 24 | Choices=\u9009\u9879 25 | Description=\u63CF\u8FF0 26 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Keep\ this\ build\ forever=\u6C38\u4E45\u4FDD\u5B58\u6B64\u6B21\u7F16\u8BD1 24 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Quiet\ period=\u751f\u6210\u524d\u7b49\u5f85\u65f6\u95f4 24 | 25 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/layout/layout_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Page\ generated=\u751F\u6210\u9875\u9762 24 | logout=\u6CE8\u9500 25 | search=\u67E5\u627E 26 | 27 | -------------------------------------------------------------------------------- /credentials-plugin/src/main/resources/com/cloudbees/plugins/credentials/CredentialsSelectHelper/WrappedCredentialsStore/credential_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright 2017, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Kind=\u7C7B\u578B 24 | -------------------------------------------------------------------------------- /credentials-plugin/src/main/resources/com/cloudbees/plugins/credentials/ViewCredentialsAction/action_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # 2 | # The MIT License 3 | # 4 | # Copyright (c) 2017, suren 5 | # 6 | # Permission is hereby granted, free of charge, to any person obtaining a copy 7 | # of this software and associated documentation files (the "Software"), to deal 8 | # in the Software without restriction, including without limitation the rights 9 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | # copies of the Software, and to permit persons to whom the Software is 11 | # furnished to do so, subject to the following conditions: 12 | # 13 | # The above copyright notice and this permission notice shall be included in 14 | # all copies or substantial portions of the Software. 15 | # 16 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 | # THE SOFTWARE. 23 | # 24 | 25 | Add\ domain=\u6DFB\u52A0\u57DF 26 | -------------------------------------------------------------------------------- /credentials-plugin/src/main/resources/com/cloudbees/plugins/credentials/impl/BaseStandardCredentials/id-and-description_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2017, suren 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Description=\u63CF\u8FF0 24 | --------------------------------------------------------------------------------