├── .github ├── FUNDING.yml ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── cd.yaml │ └── jenkins-security-scan.yml ├── .gitignore ├── .mvn ├── extensions.xml └── maven.config ├── CHANGELOG.md ├── Jenkinsfile ├── LICENSE ├── Makefile ├── README.md ├── README_zh_CN.md ├── cli └── src │ └── main │ └── resources │ └── hudson │ └── cli │ └── client │ └── Messages_zh_CN.properties ├── core └── src │ └── main │ ├── resources │ ├── hudson │ │ ├── AboutJenkins │ │ │ └── index_zh_CN.properties │ │ ├── Messages_zh_CN.properties │ │ ├── PluginManager │ │ │ ├── PluginCycleDependenciesMonitor │ │ │ │ ├── description_zh_CN.properties │ │ │ │ └── message_zh_CN.properties │ │ │ ├── PluginDeprecationMonitor │ │ │ │ ├── description_zh_CN.properties │ │ │ │ └── message_zh_CN.properties │ │ │ ├── PluginUpdateMonitor │ │ │ │ └── message_zh_CN.properties │ │ │ ├── advanced_zh_CN.properties │ │ │ ├── available_zh_CN.properties │ │ │ ├── checkUpdates_zh_CN.properties │ │ │ ├── check_zh_CN.properties │ │ │ ├── index_zh_CN.properties │ │ │ ├── installed_zh_CN.properties │ │ │ ├── sidepanel_zh_CN.properties │ │ │ ├── sites_zh_CN.properties │ │ │ ├── tabBar_zh_CN.properties │ │ │ ├── table_zh_CN.properties │ │ │ └── updates_zh_CN.properties │ │ ├── PluginWrapper │ │ │ ├── PluginWrapperAdministrativeMonitor │ │ │ │ └── message_zh_CN.properties │ │ │ ├── thirdPartyLicenses_zh_CN.properties │ │ │ └── uninstall_zh_CN.properties │ │ ├── ProxyConfiguration │ │ │ ├── config_zh_CN.properties │ │ │ ├── help-noProxyHost_zh_CN.html │ │ │ ├── help-port_zh_CN.html │ │ │ └── help-userName_zh_CN.html │ │ ├── cli │ │ │ ├── CLIAction │ │ │ │ └── index_zh_CN.properties │ │ │ └── Messages_zh_CN.properties │ │ ├── diagnosis │ │ │ ├── HudsonHomeDiskUsageMonitor │ │ │ │ ├── index_zh_CN.properties │ │ │ │ └── message_zh_CN.properties │ │ │ ├── Messages_zh_CN.properties │ │ │ ├── OldDataMonitor │ │ │ │ ├── manage_zh_CN.properties │ │ │ │ └── message_zh_CN.properties │ │ │ ├── ReverseProxySetupMonitor │ │ │ │ └── message_zh_CN.properties │ │ │ └── TooManyJobsButNoView │ │ │ │ └── message_zh_CN.properties │ │ ├── lifecycle │ │ │ └── WindowsInstallerLink │ │ │ │ ├── _restart_zh_CN.properties │ │ │ │ └── index_zh_CN.properties │ │ ├── logging │ │ │ ├── LogRecorder │ │ │ │ ├── configure_zh_CN.properties │ │ │ │ ├── delete_zh_CN.properties │ │ │ │ ├── index_zh_CN.properties │ │ │ │ └── sidepanel_zh_CN.properties │ │ │ └── LogRecorderManager │ │ │ │ ├── all_zh_CN.properties │ │ │ │ ├── feeds_zh_CN.properties │ │ │ │ ├── index_zh_CN.properties │ │ │ │ ├── levels_zh_CN.properties │ │ │ │ ├── new_zh_CN.properties │ │ │ │ └── sidepanel_zh_CN.properties │ │ ├── markup │ │ │ ├── EscapedMarkupFormatter │ │ │ │ └── config_zh_CN.properties │ │ │ └── Messages_zh_CN.properties │ │ ├── model │ │ │ ├── AbstractBuild │ │ │ │ ├── changes_zh_CN.properties │ │ │ │ ├── index_zh_CN.properties │ │ │ │ ├── sidepanel_zh_CN.properties │ │ │ │ └── tasks_zh_CN.properties │ │ │ ├── AbstractItem │ │ │ │ ├── confirm-rename_zh_CN.properties │ │ │ │ ├── delete_zh_CN.properties │ │ │ │ └── noWorkspace_zh_CN.properties │ │ │ ├── AbstractModelObject │ │ │ │ └── error_zh_CN.properties │ │ │ ├── AbstractProject │ │ │ │ ├── changes_zh_CN.properties │ │ │ │ ├── configure-common_zh_CN.properties │ │ │ │ ├── main_zh_CN.properties │ │ │ │ └── sidepanel_zh_CN.properties │ │ │ ├── AllView │ │ │ │ ├── newViewDetail_zh_CN.properties │ │ │ │ └── noJob_zh_CN.properties │ │ │ ├── BooleanParameterDefinition │ │ │ │ └── config_zh_CN.properties │ │ │ ├── BuildAuthorizationToken │ │ │ │ └── config_zh_CN.properties │ │ │ ├── Cause │ │ │ │ ├── UpstreamCause │ │ │ │ │ └── description_zh_CN.properties │ │ │ │ ├── UserCause │ │ │ │ │ └── description_zh_CN.properties │ │ │ │ └── UserIdCause │ │ │ │ │ └── description_zh_CN.properties │ │ │ ├── ChoiceParameterDefinition │ │ │ │ └── config_zh_CN.properties │ │ │ ├── Computer │ │ │ │ ├── _api_zh_CN.properties │ │ │ │ ├── builds_zh_CN.properties │ │ │ │ ├── configure_zh_CN.properties │ │ │ │ ├── index_zh_CN.properties │ │ │ │ ├── markOffline_zh_CN.properties │ │ │ │ ├── setOfflineCause_zh_CN.properties │ │ │ │ └── sidepanel_zh_CN.properties │ │ │ ├── ComputerSet │ │ │ │ ├── _new_zh_CN.properties │ │ │ │ ├── configure_zh_CN.properties │ │ │ │ ├── index_zh_CN.properties │ │ │ │ ├── new_zh_CN.properties │ │ │ │ └── sidepanel_zh_CN.properties │ │ │ ├── DirectoryBrowserSupport │ │ │ │ └── dir_zh_CN.properties │ │ │ ├── FileParameterDefinition │ │ │ │ └── config_zh_CN.properties │ │ │ ├── FreeStyleProject │ │ │ │ └── help_zh_CN.html │ │ │ ├── JDK │ │ │ │ └── config_zh_CN.properties │ │ │ ├── Job │ │ │ │ ├── buildTimeTrend_zh_CN.properties │ │ │ │ ├── configure_zh_CN.properties │ │ │ │ ├── index_zh_CN.properties │ │ │ │ └── permalinks_zh_CN.properties │ │ │ ├── ListView │ │ │ │ ├── configure-entries_zh_CN.properties │ │ │ │ ├── newJobButtonBar_zh_CN.properties │ │ │ │ └── newViewDetail_zh_CN.properties │ │ │ ├── LoadStatistics │ │ │ │ └── main_zh_CN.properties │ │ │ ├── Messages_zh_CN.properties │ │ │ ├── MyView │ │ │ │ ├── newViewDetail_zh_CN.properties │ │ │ │ └── noJob_zh_CN.properties │ │ │ ├── MyViewsProperty │ │ │ │ ├── config_zh_CN.properties │ │ │ │ └── newView_zh_CN.properties │ │ │ ├── NoFingerprintMatch │ │ │ │ └── index_zh_CN.properties │ │ │ ├── Node │ │ │ │ ├── help-labelString_zh_CN.html │ │ │ │ ├── help-name_zh_CN.html │ │ │ │ └── help-numExecutors_zh_CN.html │ │ │ ├── ParametersAction │ │ │ │ └── index_zh_CN.properties │ │ │ ├── ParametersDefinitionProperty │ │ │ │ ├── config-details_zh_CN.properties │ │ │ │ └── index_zh_CN.properties │ │ │ ├── PasswordParameterDefinition │ │ │ │ └── config_zh_CN.properties │ │ │ ├── PermalinkProjectAction │ │ │ │ └── Permalink │ │ │ │ │ └── link_zh_CN.properties │ │ │ ├── Run │ │ │ │ ├── KeepLogBuildBadge │ │ │ │ │ └── badge_zh_CN.properties │ │ │ │ ├── configure_zh_CN.properties │ │ │ │ ├── confirmDelete_zh_CN.properties │ │ │ │ ├── console_zh_CN.properties │ │ │ │ ├── delete_zh_CN.properties │ │ │ │ └── logKeep_zh_CN.properties │ │ │ ├── RunParameterDefinition │ │ │ │ └── config_zh_CN.properties │ │ │ ├── StringParameterDefinition │ │ │ │ └── config_zh_CN.properties │ │ │ ├── TextParameterDefinition │ │ │ │ └── config_zh_CN.properties │ │ │ ├── UpdateCenter │ │ │ │ ├── ConnectionCheckJob │ │ │ │ │ └── row_zh_CN.properties │ │ │ │ ├── CoreUpdateMonitor │ │ │ │ │ └── message_zh_CN.properties │ │ │ │ ├── DownloadJob │ │ │ │ │ ├── Failure │ │ │ │ │ │ └── status_zh_CN.properties │ │ │ │ │ ├── Installing │ │ │ │ │ │ └── status_zh_CN.properties │ │ │ │ │ ├── Pending │ │ │ │ │ │ └── status_zh_CN.properties │ │ │ │ │ └── Success │ │ │ │ │ │ └── status_zh_CN.properties │ │ │ │ ├── RestartJenkinsJob │ │ │ │ │ ├── Canceled │ │ │ │ │ │ └── status_zh_CN.properties │ │ │ │ │ ├── Failure │ │ │ │ │ │ └── status_zh_CN.properties │ │ │ │ │ ├── Pending │ │ │ │ │ │ └── status_zh_CN.properties │ │ │ │ │ ├── Running │ │ │ │ │ │ └── status_zh_CN.properties │ │ │ │ │ └── row_zh_CN.properties │ │ │ │ ├── body_zh_CN.properties │ │ │ │ ├── index_zh_CN.properties │ │ │ │ └── sidepanel_zh_CN.properties │ │ │ ├── UsageStatistics │ │ │ │ └── global_zh_CN.properties │ │ │ ├── User │ │ │ │ ├── builds_zh_CN.properties │ │ │ │ ├── configure_zh_CN.properties │ │ │ │ ├── delete_zh_CN.properties │ │ │ │ ├── index_zh_CN.properties │ │ │ │ └── sidepanel_zh_CN.properties │ │ │ └── View │ │ │ │ ├── AsynchPeople │ │ │ │ └── index_zh_CN.properties │ │ │ │ ├── People │ │ │ │ └── index_zh_CN.properties │ │ │ │ ├── builds_zh_CN.properties │ │ │ │ ├── configure_zh_CN.properties │ │ │ │ ├── delete_zh_CN.properties │ │ │ │ ├── index_zh_CN.properties │ │ │ │ ├── newJobButtonBar_zh_CN.properties │ │ │ │ ├── newJob_zh_CN.properties │ │ │ │ ├── noJob_zh_CN.properties │ │ │ │ └── sidepanel_zh_CN.properties │ │ ├── node_monitors │ │ │ ├── AbstractDiskSpaceMonitor │ │ │ │ ├── config_zh_CN.properties │ │ │ │ └── help-freeSpaceThreshold_zh_CN.html │ │ │ ├── ArchitectureMonitor │ │ │ │ └── help_zh_CN.html │ │ │ ├── ClockMonitor │ │ │ │ └── help_zh_CN.html │ │ │ ├── Messages_zh_CN.properties │ │ │ └── MonitorMarkedNodeOffline │ │ │ │ └── message_zh_CN.properties │ │ ├── scheduler │ │ │ └── Messages_zh_CN.properties │ │ ├── scm │ │ │ ├── EmptyChangeLogSet │ │ │ │ └── digest_zh_CN.properties │ │ │ ├── Messages_zh_CN.properties │ │ │ └── SCM │ │ │ │ └── project-changes_zh_CN.properties │ │ ├── search │ │ │ ├── Messages_zh_CN.properties │ │ │ ├── Search │ │ │ │ └── search-failed_zh_CN.properties │ │ │ └── UserSearchProperty │ │ │ │ └── config_zh_CN.properties │ │ ├── security │ │ │ ├── AuthorizationStrategy │ │ │ │ └── Unsecured │ │ │ │ │ └── help_zh_CN.html │ │ │ ├── FullControlOnceLoggedInAuthorizationStrategy │ │ │ │ ├── config_zh_CN.properties │ │ │ │ └── help_zh_CN.html │ │ │ ├── GlobalSecurityConfiguration │ │ │ │ ├── config_zh_CN.properties │ │ │ │ ├── help-slaveAgentPort_zh_CN.html │ │ │ │ ├── help-useSecurity_zh_CN.html │ │ │ │ └── index_zh_CN.properties │ │ │ ├── HudsonPrivateSecurityRealm │ │ │ │ ├── Details │ │ │ │ │ └── config_zh_CN.properties │ │ │ │ ├── _entryForm_zh_CN.properties │ │ │ │ ├── addUser_zh_CN.properties │ │ │ │ ├── config_zh_CN.properties │ │ │ │ ├── firstUser_zh_CN.properties │ │ │ │ ├── help-allowsSignup_zh_CN.html │ │ │ │ ├── help_zh_CN.html │ │ │ │ ├── index_zh_CN.properties │ │ │ │ ├── loginLink_zh_CN.properties │ │ │ │ ├── sidepanel_zh_CN.properties │ │ │ │ ├── signupWithFederatedIdentity_zh_CN.properties │ │ │ │ ├── signup_zh_CN.properties │ │ │ │ └── success_zh_CN.properties │ │ │ ├── LegacyAuthorizationStrategy │ │ │ │ └── help_zh_CN.html │ │ │ ├── LegacySecurityRealm │ │ │ │ ├── config_zh_CN.properties │ │ │ │ └── help_zh_CN.html │ │ │ ├── Messages_zh_CN.properties │ │ │ ├── SecurityRealm │ │ │ │ ├── loginLink_zh_CN.properties │ │ │ │ └── signup_zh_CN.properties │ │ │ └── csrf │ │ │ │ ├── CrumbFilter │ │ │ │ └── retry_zh_CN.properties │ │ │ │ ├── DefaultCrumbIssuer │ │ │ │ └── config_zh_CN.properties │ │ │ │ ├── GlobalCrumbIssuerConfiguration │ │ │ │ ├── config_zh_CN.properties │ │ │ │ └── help-csrf_zh_CN.html │ │ │ │ └── Messages_zh_CN.properties │ │ ├── slaves │ │ │ ├── ComputerLauncher │ │ │ │ └── main_zh_CN.properties │ │ │ ├── DumbSlave │ │ │ │ ├── configure-entries_zh_CN.properties │ │ │ │ └── newInstanceDetail_zh_CN.properties │ │ │ ├── EnvironmentVariablesNodeProperty │ │ │ │ └── config_zh_CN.properties │ │ │ ├── JNLPLauncher │ │ │ │ ├── config_zh_CN.properties │ │ │ │ ├── help-vmargs_zh_CN.html │ │ │ │ └── main_zh_CN.properties │ │ │ ├── Messages_zh_CN.properties │ │ │ ├── OfflineCause │ │ │ │ ├── ChannelTermination │ │ │ │ │ └── cause_zh_CN.properties │ │ │ │ └── LaunchFailed │ │ │ │ │ └── cause_zh_CN.properties │ │ │ └── SlaveComputer │ │ │ │ ├── disconnect_zh_CN.properties │ │ │ │ ├── sidepanel2_zh_CN.properties │ │ │ │ └── systemInfo_zh_CN.properties │ │ ├── tasks │ │ │ ├── ArtifactArchiver │ │ │ │ └── config_zh_CN.properties │ │ │ ├── BatchFile │ │ │ │ └── config_zh_CN.properties │ │ │ ├── BuildTrigger │ │ │ │ └── config_zh_CN.properties │ │ │ ├── Fingerprinter │ │ │ │ ├── FingerprintAction │ │ │ │ │ └── index_zh_CN.properties │ │ │ │ └── config_zh_CN.properties │ │ │ ├── LogRotator │ │ │ │ └── config_zh_CN.properties │ │ │ ├── Maven │ │ │ │ └── config_zh_CN.properties │ │ │ ├── Messages_zh_CN.properties │ │ │ └── Shell │ │ │ │ ├── config_zh_CN.properties │ │ │ │ └── help-shell_zh_CN.html │ │ ├── tools │ │ │ ├── AbstractCommandInstaller │ │ │ │ ├── config_zh_CN.properties │ │ │ │ ├── help-command_zh_CN.html │ │ │ │ ├── help-toolHome_zh_CN.html │ │ │ │ └── help_zh_CN.html │ │ │ ├── DownloadFromUrlInstaller │ │ │ │ └── config_zh_CN.properties │ │ │ ├── InstallSourceProperty │ │ │ │ ├── config_zh_CN.properties │ │ │ │ └── help_zh_CN.html │ │ │ ├── Messages_zh_CN.properties │ │ │ ├── ToolInstallation │ │ │ │ ├── config_zh_CN.properties │ │ │ │ └── global_zh_CN.properties │ │ │ ├── ToolLocationNodeProperty │ │ │ │ └── config_zh_CN.properties │ │ │ ├── ZipExtractionInstaller │ │ │ │ ├── config_zh_CN.properties │ │ │ │ ├── help-subdir_zh_CN.html │ │ │ │ ├── help-url_zh_CN.html │ │ │ │ └── help_zh_CN.html │ │ │ └── label_zh_CN.properties │ │ ├── triggers │ │ │ ├── Messages_zh_CN.properties │ │ │ ├── SCMTrigger │ │ │ │ ├── BuildAction │ │ │ │ │ └── index_zh_CN.properties │ │ │ │ ├── SCMAction │ │ │ │ │ └── index_zh_CN.properties │ │ │ │ ├── config_zh_CN.properties │ │ │ │ ├── global_zh_CN.properties │ │ │ │ ├── help.html │ │ │ │ └── help_zh_CN.html │ │ │ └── TimerTrigger │ │ │ │ └── config_zh_CN.properties │ │ ├── util │ │ │ ├── HudsonIsLoading │ │ │ │ └── index_zh_CN.properties │ │ │ ├── HudsonIsRestarting │ │ │ │ └── index_zh_CN.properties │ │ │ └── Messages_zh_CN.properties │ │ ├── views │ │ │ ├── DefaultMyViewsTabBar │ │ │ │ └── myViewTabs_zh_CN.properties │ │ │ ├── DefaultViewsTabBar │ │ │ │ └── viewTabs_zh_CN.properties │ │ │ ├── GlobalDefaultViewConfiguration │ │ │ │ └── config_zh_CN.properties │ │ │ ├── LastDurationColumn │ │ │ │ ├── columnHeader_zh_CN.properties │ │ │ │ └── column_zh_CN.properties │ │ │ ├── LastFailureColumn │ │ │ │ ├── columnHeader_zh_CN.properties │ │ │ │ └── column_zh_CN.properties │ │ │ ├── LastStableColumn │ │ │ │ └── columnHeader_zh_CN.properties │ │ │ ├── LastSuccessColumn │ │ │ │ ├── columnHeader_zh_CN.properties │ │ │ │ └── column_zh_CN.properties │ │ │ ├── Messages_zh_CN.properties │ │ │ ├── StatusColumn │ │ │ │ └── columnHeader_zh_CN.properties │ │ │ └── WeatherColumn │ │ │ │ └── columnHeader_zh_CN.properties │ │ └── widgets │ │ │ ├── HistoryWidget │ │ │ ├── entry_zh_CN.properties │ │ │ └── index_zh_CN.properties │ │ │ └── Messages_zh_CN.properties │ ├── jenkins │ │ ├── CLI │ │ │ ├── WarnWhenEnabled │ │ │ │ └── message_zh_CN.properties │ │ │ └── config_zh_CN.properties │ │ ├── agents │ │ │ ├── CloudSet │ │ │ │ └── index_zh_CN.properties │ │ │ └── Messages_zh_CN.properties │ │ ├── appearance │ │ │ ├── AppearanceGlobalConfiguration │ │ │ │ └── index_zh_CN.properties │ │ │ └── Messages_zh_CN.properties │ │ ├── diagnostics │ │ │ ├── CompletedInitializationMonitor │ │ │ │ └── message_zh_CN.properties │ │ │ ├── Messages_zh_CN.properties │ │ │ ├── RootUrlNotSetMonitor │ │ │ │ └── message_zh_CN.properties │ │ │ └── SecurityIsOffMonitor │ │ │ │ └── message_zh_CN.properties │ │ ├── install │ │ │ ├── README.md │ │ │ ├── SetupWizard │ │ │ │ └── README.md │ │ │ └── UpgradeWizard │ │ │ │ └── README.md │ │ ├── management │ │ │ ├── AdministrativeMonitorsApiData │ │ │ │ └── monitorsList_zh_CN.properties │ │ │ ├── AdministrativeMonitorsConfiguration │ │ │ │ └── config_zh_CN.properties │ │ │ ├── AdministrativeMonitorsDecorator │ │ │ │ └── footer_zh_CN.properties │ │ │ ├── Messages_zh_CN.properties │ │ │ └── PluginsLink │ │ │ │ └── info_zh_CN.properties │ │ ├── model │ │ │ ├── BuildDiscarderProperty │ │ │ │ └── config-details_zh_CN.properties │ │ │ ├── DefaultSimplePageDecorator │ │ │ │ └── simple-header_zh_CN.properties │ │ │ ├── DownloadSettings │ │ │ │ └── config_zh_CN.properties │ │ │ ├── GlobalCloudConfiguration │ │ │ │ └── config_zh_CN.properties │ │ │ ├── GlobalNodePropertiesConfiguration │ │ │ │ └── config_zh_CN.properties │ │ │ ├── GlobalProjectNamingStrategyConfiguration │ │ │ │ └── config_zh_CN.properties │ │ │ ├── GlobalQuietPeriodConfiguration │ │ │ │ ├── config_zh_CN.properties │ │ │ │ └── help-quietPeriod_zh_CN.html │ │ │ ├── GlobalSCMRetryCountConfiguration │ │ │ │ └── config_zh_CN.properties │ │ │ ├── Jenkins │ │ │ │ ├── MasterComputer │ │ │ │ │ ├── _api_zh_CN.properties │ │ │ │ │ └── configure_zh_CN.properties │ │ │ │ ├── _restart_zh_CN.properties │ │ │ │ ├── _safeRestart_zh_CN.properties │ │ │ │ ├── configure_zh_CN.properties │ │ │ │ ├── downgrade_zh_CN.properties │ │ │ │ ├── fingerprintCheck_zh_CN.properties │ │ │ │ ├── legend_zh_CN.properties │ │ │ │ ├── load-statistics_zh_CN.properties │ │ │ │ ├── loginError_zh_CN.properties │ │ │ │ ├── login_zh_CN.properties │ │ │ │ ├── manage_zh_CN.properties │ │ │ │ ├── newView_zh_CN.properties │ │ │ │ ├── oops_zh_CN.properties │ │ │ │ ├── projectRelationship_zh_CN.properties │ │ │ │ ├── systemInfo_zh_CN.properties │ │ │ │ └── threadDump_zh_CN.properties │ │ │ ├── JenkinsLocationConfiguration │ │ │ │ ├── config_zh_CN.properties │ │ │ │ ├── help-adminAddress_zh_CN.html │ │ │ │ └── help-url_zh_CN.html │ │ │ ├── MasterBuildConfiguration │ │ │ │ └── config_zh_CN.properties │ │ │ ├── Messages_zh_CN.properties │ │ │ ├── ProjectNamingStrategy │ │ │ │ └── PatternProjectNamingStrategy │ │ │ │ │ ├── config_zh_CN.properties │ │ │ │ │ └── help-description_zh_CN.html │ │ │ └── RenameAction │ │ │ │ └── action_zh_CN.properties │ │ ├── mvn │ │ │ ├── FilePathGlobalSettingsProvider │ │ │ │ └── config_zh_CN.properties │ │ │ ├── FilePathSettingsProvider │ │ │ │ └── config_zh_CN.properties │ │ │ ├── GlobalMavenConfig │ │ │ │ └── config_zh_CN.properties │ │ │ └── Messages_zh_CN.properties │ │ ├── security │ │ │ ├── ApiTokenProperty │ │ │ │ └── config_zh_CN.properties │ │ │ ├── Messages_zh_CN.properties │ │ │ ├── UpdateSiteWarningsConfiguration │ │ │ │ └── config_zh_CN.properties │ │ │ ├── UpdateSiteWarningsMonitor │ │ │ │ └── message_zh_CN.properties │ │ │ ├── apitoken │ │ │ │ ├── ApiTokenPropertyConfiguration │ │ │ │ │ └── config_zh_CN.properties │ │ │ │ ├── ApiTokenPropertyDisabledDefaultAdministrativeMonitor │ │ │ │ │ └── message_zh_CN.properties │ │ │ │ ├── ApiTokenPropertyEnabledNewLegacyAdministrativeMonitor │ │ │ │ │ └── message_zh_CN.properties │ │ │ │ ├── LegacyApiTokenAdministrativeMonitor │ │ │ │ │ ├── manage_zh_CN.properties │ │ │ │ │ └── message_zh_CN.properties │ │ │ │ └── Messages_zh_CN.properties │ │ │ ├── csrf │ │ │ │ ├── CSRFAdministrativeMonitor │ │ │ │ │ └── message_zh_CN.properties │ │ │ │ └── Messages_zh_CN.properties │ │ │ ├── s2m │ │ │ │ ├── MasterKillSwitchWarning │ │ │ │ │ └── message_zh_CN.properties │ │ │ │ └── Messages_zh_CN.properties │ │ │ └── seed │ │ │ │ ├── Messages_zh_CN.properties │ │ │ │ └── UserSeedProperty │ │ │ │ ├── config_zh_CN.properties │ │ │ │ └── help-resetSeed_zh_CN.html │ │ ├── slaves │ │ │ ├── DeprecatedAgentProtocolMonitor │ │ │ │ └── message_zh_CN.properties │ │ │ ├── Messages_zh_CN.properties │ │ │ ├── RemotingWorkDirSettings │ │ │ │ ├── config_zh_CN.properties │ │ │ │ ├── help-disabled_zh_CN.html │ │ │ │ ├── help-failIfWorkDirIsMissing_zh_CN.html │ │ │ │ ├── help-internalDir_zh_CN.html │ │ │ │ └── help-workDirPath_zh_CN.html │ │ │ └── systemInfo │ │ │ │ └── Messages_zh_CN.properties │ │ ├── tools │ │ │ └── GlobalToolConfiguration │ │ │ │ └── index_zh_CN.properties │ │ └── triggers │ │ │ ├── Messages_zh_CN.properties │ │ │ └── ReverseBuildTrigger │ │ │ └── config_zh_CN.properties │ └── lib │ │ ├── form │ │ ├── advanced_zh_CN.properties │ │ ├── apply_zh_CN.properties │ │ ├── booleanRadio_zh_CN.properties │ │ ├── breadcrumb-config-outline_zh_CN.properties │ │ ├── expandableTextbox_zh_CN.properties │ │ ├── helpArea_zh_CN.properties │ │ ├── hetero-list_zh_CN.properties │ │ ├── password_zh_CN.properties │ │ ├── repeatableDeleteButton_zh_CN.properties │ │ ├── repeatable_zh_CN.properties │ │ ├── secretTextarea_zh_CN.properties │ │ ├── serverTcpPort_zh_CN.properties │ │ ├── slave-mode_zh_CN.properties │ │ ├── submit_zh_CN.properties │ │ └── textarea_zh_CN.properties │ │ ├── hudson │ │ ├── artifactList_zh_CN.properties │ │ ├── buildCaption_zh_CN.properties │ │ ├── buildHealth_zh_CN.properties │ │ ├── buildListTable_zh_CN.properties │ │ ├── buildProgressBar_zh_CN.properties │ │ ├── editableDescription_zh_CN.properties │ │ ├── executors_zh_CN.properties │ │ ├── iconSize_zh_CN.properties │ │ ├── listScmBrowsers_zh_CN.properties │ │ ├── newFromList │ │ │ └── form_zh_CN.properties │ │ ├── node_zh_CN.properties │ │ ├── project │ │ │ ├── config-assignedLabel_zh_CN.properties │ │ │ ├── config-blockWhenDownstreamBuilding_zh_CN.properties │ │ │ ├── config-blockWhenUpstreamBuilding_zh_CN.properties │ │ │ ├── config-buildWrappers_zh_CN.properties │ │ │ ├── config-builders_zh_CN.properties │ │ │ ├── config-concurrentBuild_zh_CN.properties │ │ │ ├── config-customWorkspace_zh_CN.properties │ │ │ ├── config-disableBuild_zh_CN.properties │ │ │ ├── config-publishers2_zh_CN.properties │ │ │ ├── config-publishers_zh_CN.properties │ │ │ ├── config-quietPeriod_zh_CN.properties │ │ │ ├── config-retryCount_zh_CN.properties │ │ │ ├── config-scm_zh_CN.properties │ │ │ ├── config-trigger_zh_CN.properties │ │ │ ├── configurable_zh_CN.properties │ │ │ ├── console-link_zh_CN.properties │ │ │ ├── makeDisabled_zh_CN.properties │ │ │ └── upstream-downstream_zh_CN.properties │ │ ├── propertyTable_zh_CN.properties │ │ ├── queue_zh_CN.properties │ │ ├── rssBar_zh_CN.properties │ │ ├── scriptConsole_zh_CN.properties │ │ └── thirdPartyLicenses_zh_CN.properties │ │ ├── layout │ │ ├── breadcrumbBar_zh_CN.properties │ │ ├── layout_zh_CN.properties │ │ ├── main-panel_zh_CN.properties │ │ ├── pane_zh_CN.properties │ │ ├── progressiveRendering_zh_CN.properties │ │ └── task_zh_CN.properties │ │ └── test │ │ └── bar_zh_CN.properties │ └── webapp │ └── help │ ├── parameter │ ├── boolean-default_zh_CN.html │ ├── boolean_zh_CN.html │ ├── choice-choices_zh_CN.html │ ├── choice_zh_CN.html │ ├── description_zh_CN.html │ ├── file-name_zh_CN.html │ ├── file_zh_CN.html │ ├── name_zh_CN.html │ ├── run_zh_CN.html │ ├── string-default_zh_CN.html │ ├── string_zh_CN.html │ └── trim_zh_CN.html │ ├── project-config │ ├── block-downstream-building_zh_CN.html │ ├── custom-workspace_zh_CN.html │ └── scmCheckoutRetryCount_zh_CN.html │ ├── run-config │ ├── description_zh_CN.html │ └── displayName_zh_CN.html │ ├── system-config │ ├── defaultJobNamingStrategy_zh_CN.html │ ├── globalEnvironmentVariables_zh_CN.html │ ├── homeDirectory_zh_CN.html │ ├── master-slave │ │ ├── availability_zh_CN.html │ │ ├── clock_zh_CN.html │ │ ├── demand │ │ │ ├── idleDelay_zh_CN.html │ │ │ ├── inDemandDelay_zh_CN.html │ │ │ └── keepUpWhenActive_zh_CN.html │ │ ├── description_zh_CN.html │ │ ├── jnlp-tunnel_zh_CN.html │ │ ├── jnlpSecurity_zh_CN.html │ │ ├── numExecutors_zh_CN.html │ │ └── usage_zh_CN.html │ ├── patternJobNamingStrategy_zh_CN.html │ └── systemMessage_zh_CN.html │ └── tools │ ├── help-label_zh_CN.html │ └── tool-location-node-property_zh_CN.html ├── plugins ├── alauda-devops-sync-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── io │ │ └── alauda │ │ └── jenkins │ │ └── devops │ │ └── sync │ │ └── AlaudaSyncGlobalConfiguration │ │ └── config_zh_CN.properties ├── bitbucket-branch-source-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── com │ │ └── cloudbees │ │ └── jenkins │ │ └── plugins │ │ └── bitbucket │ │ ├── BitbucketSCMNavigator │ │ └── config_zh_CN.properties │ │ ├── BitbucketSCMSource │ │ └── config-detail_zh_CN.properties │ │ ├── BranchDiscoveryTrait │ │ └── config_zh_CN.properties │ │ ├── ForkPullRequestDiscoveryTrait │ │ └── config_zh_CN.properties │ │ ├── OriginPullRequestDiscoveryTrait │ │ └── config_zh_CN.properties │ │ ├── SSHCheckoutTrait │ │ └── config_zh_CN.properties │ │ └── endpoints │ │ ├── AbstractBitbucketEndpoint │ │ └── config_zh_CN.properties │ │ ├── BitbucketCloudEndpoint │ │ └── config-detail_zh_CN.properties │ │ ├── BitbucketEndpointConfiguration │ │ └── config_zh_CN.properties │ │ └── BitbucketServerEndpoint │ │ └── config-detail_zh_CN.properties ├── bitbucket-build-status-notifier-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── org │ │ └── jenkinsci │ │ └── plugins │ │ └── bitbucket │ │ └── BitbucketBuildStatusNotifier │ │ ├── config_zh_CN.properties │ │ └── global_zh_CN.properties ├── bitbucket-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── com │ │ └── cloudbees │ │ └── jenkins │ │ └── plugins │ │ └── BitBucketTrigger │ │ └── BitBucketWebHookPollingAction │ │ └── index_zh_CN.properties ├── branch-api-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── jenkins │ │ └── branch │ │ ├── BaseEmptyView │ │ └── index_zh_CN.properties │ │ ├── Messages_zh_CN.properties │ │ ├── MultiBranchProject │ │ └── configure-branches_zh_CN.properties │ │ ├── ParameterDefinitionBranchProperty │ │ └── config_zh_CN.properties │ │ └── RateLimitBranchProperty │ │ ├── JobPropertyImpl │ │ └── config_zh_CN.properties │ │ └── config_zh_CN.properties ├── cloudbees-folder-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── com │ │ └── cloudbees │ │ └── hudson │ │ └── plugins │ │ └── folder │ │ ├── AbstractFolder │ │ ├── configure_zh_CN.properties │ │ ├── newView_zh_CN.properties │ │ ├── tasks-new_zh_CN.properties │ │ ├── tasks-top_zh_CN.properties │ │ └── view-index-top_zh_CN.properties │ │ ├── Folder │ │ └── tasks-create_zh_CN.properties │ │ ├── computed │ │ ├── ComputedFolder │ │ │ ├── configure-details_zh_CN.properties │ │ │ └── tasks-top-extra_zh_CN.properties │ │ ├── DefaultOrphanedItemStrategy │ │ │ └── config_zh_CN.properties │ │ ├── FolderComputation │ │ │ ├── console_zh_CN.properties │ │ │ ├── events_zh_CN.properties │ │ │ ├── executorCell_zh_CN.properties │ │ │ └── index_zh_CN.properties │ │ └── PeriodicFolderTrigger │ │ │ └── config_zh_CN.properties │ │ ├── health │ │ └── WorstChildHealthMetric │ │ │ └── config_zh_CN.properties │ │ ├── properties │ │ └── FolderCredentialsProvider │ │ │ └── FolderCredentialsProperty │ │ │ └── Messages_zh_CN.properties │ │ └── relocate │ │ ├── DefaultRelocationUI │ │ └── main_zh_CN.properties │ │ └── RelocationAction │ │ └── index_zh_CN.properties ├── cmakebuilder-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── hudson │ │ └── plugins │ │ └── cmake │ │ ├── AbstractStep │ │ └── config_zh_CN.properties │ │ ├── BuildToolStep │ │ └── config_zh_CN.properties │ │ ├── CToolBuilder │ │ ├── common-fields_zh_CN.properties │ │ └── config_zh_CN.properties │ │ ├── CmakeBuilder │ │ ├── common-fields_zh_CN.properties │ │ └── config_zh_CN.properties │ │ ├── CmakeTool │ │ └── config_zh_CN.properties │ │ └── messages_zh_CN.properties ├── code-coverage-api-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── io │ │ └── jenkins │ │ └── plugins │ │ └── coverage │ │ ├── CoverageProjectAction │ │ └── floatingBox_zh_CN.properties │ │ ├── CoveragePublisher │ │ └── config_zh_CN.properties │ │ ├── adapter │ │ └── CoverageReportAdapterDescriptor │ │ │ └── config_zh_CN.properties │ │ ├── coverageAction │ │ └── summary_zh_CN.properties │ │ ├── source │ │ └── SourceFileResolver │ │ │ └── config_zh_CN.properties │ │ └── targets │ │ └── CoverageResult │ │ └── index_zh_CN.properties ├── configuration-as-code-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── io │ │ └── jenkins │ │ └── plugins │ │ └── casc │ │ ├── CasCGlobalConfig │ │ └── config_zh_CN.properties │ │ └── ConfigurationAsCode │ │ ├── index_zh_CN.properties │ │ ├── reference_zh_CN.properties │ │ └── viewExport_zh_CN.properties ├── credentials-binding-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── org │ │ └── jenkinsci │ │ └── plugins │ │ └── credentialsbinding │ │ ├── Binding │ │ └── config-variables_zh_CN.properties │ │ ├── MultiBinding │ │ └── config_zh_CN.properties │ │ └── impl │ │ ├── BindingStep │ │ └── config_zh_CN.properties │ │ ├── CertificateMultiBinding │ │ └── config-variables_zh_CN.properties │ │ ├── SSHUserPrivateKeyBinding │ │ └── config-variables_zh_CN.properties │ │ ├── SecretBuildWrapper │ │ └── config_zh_CN.properties │ │ └── UsernamePasswordMultiBinding │ │ └── config-variables_zh_CN.properties ├── credentials-plugin │ └── src │ │ └── main │ │ ├── resources │ │ ├── com │ │ │ └── cloudbees │ │ │ │ └── plugins │ │ │ │ └── credentials │ │ │ │ ├── BaseCredentials │ │ │ │ └── config_zh_CN.properties │ │ │ │ ├── CredentialsParameterDefinition │ │ │ │ └── config_zh_CN.properties │ │ │ │ ├── CredentialsProviderManager │ │ │ │ └── Configuration │ │ │ │ │ └── config_zh_CN.properties │ │ │ │ ├── CredentialsSelectHelper │ │ │ │ └── WrappedCredentialsStore │ │ │ │ │ ├── credential_zh_CN.properties │ │ │ │ │ └── dialog_zh_CN.properties │ │ │ │ ├── CredentialsStoreAction │ │ │ │ ├── CredentialsWrapper │ │ │ │ │ ├── delete_zh_CN.properties │ │ │ │ │ ├── index_zh_CN.properties │ │ │ │ │ ├── move_zh_CN.properties │ │ │ │ │ ├── sidepanel_zh_CN.properties │ │ │ │ │ └── update_zh_CN.properties │ │ │ │ ├── DomainWrapper │ │ │ │ │ ├── configure_zh_CN.properties │ │ │ │ │ ├── index_zh_CN.properties │ │ │ │ │ ├── newCredentials_zh_CN.properties │ │ │ │ │ └── sidepanel_zh_CN.properties │ │ │ │ ├── action_zh_CN.properties │ │ │ │ ├── index_zh_CN.properties │ │ │ │ └── newDomain_zh_CN.properties │ │ │ │ ├── GlobalCredentialsConfiguration │ │ │ │ └── index_zh_CN.properties │ │ │ │ ├── Messages_zh_CN.properties │ │ │ │ ├── UserCredentialsProperty │ │ │ │ └── UserCredentialsProperty │ │ │ │ │ └── config_zh_CN.properties │ │ │ │ ├── ViewCredentialsAction │ │ │ │ ├── action_zh_CN.properties │ │ │ │ └── index_zh_CN.properties │ │ │ │ ├── common │ │ │ │ └── Messages_zh_CN.properties │ │ │ │ ├── domains │ │ │ │ ├── HostnamePortSpecification │ │ │ │ │ └── config_zh_CN.properties │ │ │ │ ├── HostnameSpecification │ │ │ │ │ └── config_zh_CN.properties │ │ │ │ ├── Messages_zh_CN.properties │ │ │ │ └── PathSpecification │ │ │ │ │ └── config_zh_CN.properties │ │ │ │ └── impl │ │ │ │ ├── BaseStandardCredentials │ │ │ │ └── id-and-description_zh_CN.properties │ │ │ │ ├── CertificateCredentialsImpl │ │ │ │ ├── FileOnMasterKeyStoreSource │ │ │ │ │ └── config_zh_CN.properties │ │ │ │ ├── UploadedKeyStoreSource │ │ │ │ │ ├── Upload │ │ │ │ │ │ └── index_zh_CN.properties │ │ │ │ │ └── config_zh_CN.properties │ │ │ │ └── credentials_zh_CN.properties │ │ │ │ └── UsernamePasswordCredentialsImpl │ │ │ │ └── credentials_zh_CN.properties │ │ └── lib │ │ │ └── credentials │ │ │ ├── domainCredential_zh_CN.properties │ │ │ ├── domainCredentials_zh_CN.properties │ │ │ └── select_zh_CN.properties │ │ └── webapp │ │ └── help │ │ └── domain │ │ ├── description_zh_CN.html │ │ ├── name_zh_CN.html │ │ └── specification_zh_CN.html ├── customize-build-now-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── org │ │ └── jenkinsci │ │ └── plugins │ │ └── customizebuildnow │ │ └── BuildNowTextProperty │ │ └── config_zh_CN.properties ├── git-parameter-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── net │ │ └── uaznia │ │ └── lukanus │ │ └── hudson │ │ └── plugins │ │ └── gitparameter │ │ ├── GitParameterDefinition │ │ ├── config_zh_CN.properties │ │ ├── global_zh_CN.properties │ │ └── index_zh_CH.properties │ │ ├── Messages_zh_CN.properties │ │ ├── jobs │ │ └── Messages_zh_CH.properties │ │ └── scms │ │ └── Messages_zh_CH.properties ├── git-plugin │ └── src │ │ └── main │ │ └── resources │ │ ├── hudson │ │ └── plugins │ │ │ └── git │ │ │ ├── BranchSpec │ │ │ └── config_zh_CN.properties │ │ │ ├── Messages_zh_CN.properties │ │ │ ├── browser │ │ │ └── AssemblaWeb │ │ │ │ └── config_zh_CN.properties │ │ │ └── extensions │ │ │ └── impl │ │ │ ├── CheckoutOption │ │ │ └── config_zh_CN.properties │ │ │ ├── CloneOption │ │ │ └── config_zh_CN.properties │ │ │ ├── LocalBranch │ │ │ └── config_zh_CN.properties │ │ │ ├── Messages_zh_CN.properties │ │ │ ├── RelativeTargetDirectory │ │ │ └── config_zh_CN.properties │ │ │ ├── SubmoduleOption │ │ │ └── config_zh_CN.properties │ │ │ └── UserExclusion │ │ │ └── config__zh_CN.properties │ │ └── jenkins │ │ └── plugins │ │ └── git │ │ ├── GitSCMSource │ │ └── config-detail_zh_CN.properties │ │ ├── GitStep │ │ └── config_zh_CN.properties │ │ ├── Messages_zh_CN.properties │ │ └── traits │ │ └── Messages_zh_CN.properties ├── github-branch-source-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── org │ │ └── jenkinsci │ │ └── plugins │ │ └── github_branch_source │ │ ├── BranchDiscoveryTrait │ │ ├── config_zh_CN.properties │ │ ├── help-strategyId_zh_CN.html │ │ └── help_zh_CN.html │ │ ├── Endpoint │ │ ├── config_zh_CN.properties │ │ └── help-apiUri_zh_CN.html │ │ ├── ForkPullRequestDiscoveryTrait │ │ ├── TrustContributors │ │ │ └── config_zh_CN.properties │ │ ├── TrustEveryone │ │ │ └── config_zh_CN.properties │ │ ├── TrustPermission │ │ │ └── config_zh_CN.properties │ │ ├── config_zh_CN.properties │ │ ├── help-strategyId_zh_CN.html │ │ └── help_zn_CN.html │ │ ├── GitHubRepositoryDescriptionColumn │ │ └── columnHeader_zh_CN.properties │ │ ├── GitHubSCMNavigator │ │ ├── config_zh_CN.properties │ │ ├── help-apiUri_zh_CN.html │ │ ├── help-credentialsId_zh_CN.html │ │ └── help-repoOwner_zh_CN.html │ │ ├── GitHubSCMSource │ │ ├── config-detail_zh_CN.properties │ │ ├── help-apiUri_zh_CN.html │ │ ├── help-credentialsId_zh_CN.html │ │ ├── help-repoOwner_zh_CN.html │ │ ├── help-repository_zh_CN.html │ │ └── help-traits_zh_CN.html │ │ ├── Messages_zh_CN.properties │ │ ├── OriginPullRequestDiscoveryTrait │ │ ├── config_zh_CN.properties │ │ ├── help-strategyId_zh_CN.html │ │ └── help_zh_CN.html │ │ ├── SSHCheckoutTrait │ │ ├── config_zh_CN.properties │ │ ├── help-credentialsId._zh_CN.html │ │ └── help_zh_CN.html │ │ └── TagDiscoveryTrait │ │ └── help_zh_CN.html ├── gitlab-branch-source-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── io │ │ └── jenkins │ │ └── plugins │ │ ├── gitlabbranchsource │ │ ├── BranchDiscoveryTrait │ │ │ └── config_zh_CN.properties │ │ ├── ForkMergeRequestDiscoveryTrait │ │ │ └── config_zh_CN.properties │ │ ├── GitLabBrowser │ │ │ └── config_zh_CN.properties │ │ ├── GitLabSCMNavigator │ │ │ └── config_zh_CN.properties │ │ ├── GitLabSCMSource │ │ │ └── config-detail_zh_CN.properties │ │ ├── HookRegistrationTrait │ │ │ └── config_zh_CN.properties │ │ ├── LogCommentTrait │ │ │ └── config_zh_CN.properties │ │ ├── Messages_zh_CN.properties │ │ ├── OriginMergeRequestDiscoveryTrait │ │ │ └── config_zh_CN.properties │ │ ├── SSHCheckoutTrait │ │ │ └── config_zh_CN.properties │ │ └── TriggerMRCommentTrait │ │ │ └── config_zh_CN.properties │ │ └── gitlabserverconfig │ │ ├── credentials │ │ ├── Messages_zh_CN.properties │ │ └── PersonalAccessTokenImpl │ │ │ └── credentials_zh_CN.properties │ │ └── servers │ │ ├── GitLabServer │ │ └── config_zh_CN.properties │ │ ├── GitLabServers │ │ └── config_zh_CN.properties │ │ └── Messages_zh_CN.properties ├── hugo-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── io │ │ └── jenkins │ │ └── plugins │ │ └── hugo │ │ ├── HugoBuilder │ │ └── config_zh_CN.properties │ │ ├── HugoGitPublisher │ │ └── config_zh_CN.properties │ │ └── HugoGitSubmodulePublisher │ │ └── config_zh_CN.properties ├── job-restrictions-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── com │ │ └── synopsys │ │ └── arc │ │ └── jenkinsci │ │ └── plugins │ │ └── jobrestrictions │ │ └── jobs │ │ └── JobRestrictionProperty │ │ ├── config_zh_CN.properties │ │ └── help-config_zh_CN.html ├── kubernetes-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── org │ │ └── csanchez │ │ └── jenkins │ │ └── plugins │ │ └── kubernetes │ │ ├── ContainerLivenessProbe │ │ └── config_zh_CN.properties │ │ ├── ContainerTemplate │ │ └── config_zh_CN.properties │ │ ├── KubectlBuildWrapper │ │ └── config_zh_CN.properties │ │ ├── KubernetesCloud │ │ └── config_zh_CN.properties │ │ ├── KubernetesFolderProperty │ │ └── config_zh_CN.properties │ │ ├── KubernetesSlave │ │ └── configure-entries_zh_CN.properties │ │ ├── Messages_zh_CN.properties │ │ ├── PodAnnotation │ │ └── config_zh_CN.properties │ │ ├── PodImagePullSecret │ │ └── config_zh_CN.properties │ │ ├── PodTemplate │ │ └── config_zh_CN.properties │ │ ├── PortMapping │ │ └── config_zh_CN.properties │ │ ├── model │ │ ├── KeyValueEnvVar │ │ │ └── config_zh_CN.properties │ │ └── SecretEnvVar │ │ │ └── config_zh_CN.properties │ │ ├── pod │ │ └── retention │ │ │ └── Messages_zh_CN.properties │ │ └── volumes │ │ ├── ConfigMapVolume │ │ └── config_zh_CN.properties │ │ ├── EmptyDirVolume │ │ └── config_zh_CN.properties │ │ ├── HostPathVolume │ │ └── config_zh_CN.properties │ │ ├── NfsVolume │ │ └── config_zh_CN.properties │ │ ├── PersistentVolumeClaim │ │ └── config_zh_CN.properties │ │ ├── SecretVolume │ │ └── config_zh_CN.properties │ │ └── workspace │ │ ├── EmptyDirWorkspaceVolume │ │ └── config_zh_CN.properties │ │ ├── HostPathWorkspaceVolume │ │ └── config_zh_CN.properties │ │ ├── NfsWorkspaceVolume │ │ └── config_zh_CN.properties │ │ └── PersistentVolumeClaimWorkspaceVolume │ │ └── config_zh_CN.properties ├── label-verifier-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── hudson │ │ └── plugins │ │ └── label_verifier │ │ └── Messages_zh_CN.properties ├── ldap-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── hudson │ │ └── security │ │ └── LDAPSecurityRealm │ │ └── config_zh_CN.properties ├── locale-plugin │ └── src │ │ └── resources │ │ └── hudson │ │ └── plugins │ │ └── locale │ │ └── PluginImpl │ │ └── config_zh_CN.properties ├── mailer-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── hudson │ │ └── tasks │ │ └── Mailer │ │ ├── UserProperty │ │ └── config_zh_CN.properties │ │ ├── config_zh_CN.properties │ │ ├── global_zh_CN.properties │ │ ├── help-defaultSuffix_zh_CN.html │ │ ├── help-sendToIndividuals_zh_CN.html │ │ ├── help-smtpAuth_zh_CN.html │ │ ├── help-smtpPort_zh_CN.html │ │ ├── help-smtpServer_zh_CN.html │ │ └── help-useSsl_zh_CN.html ├── matrix-auth-plugin │ └── src │ │ └── main │ │ └── resources │ │ ├── hudson │ │ └── security │ │ │ ├── AuthorizationMatrixProperty │ │ │ └── config_zh_CN.properties │ │ │ ├── GlobalMatrixAuthorizationStrategy │ │ │ ├── config_zh_CN.properties │ │ │ └── help_zh_CN.html │ │ │ └── ProjectMatrixAuthorizationStrategy │ │ │ └── help_zh_CN.html │ │ └── org │ │ └── jenkinsci │ │ └── plugins │ │ └── matrixauth │ │ └── Messages_zh_CN.properties ├── pam-auth-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── hudson │ │ └── security │ │ └── PAMSecurityRealm │ │ └── config_zh_CN.properties ├── pipeline-input-step-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── org │ │ └── jenkinsci │ │ └── plugins │ │ └── workflow │ │ └── support │ │ └── steps │ │ └── input │ │ ├── ApproverAction │ │ └── summary_zh_CN.properties │ │ ├── InputStep │ │ └── config_zh_CN.properties │ │ ├── InputStepExecution │ │ └── index_zh_CN.properties │ │ └── Messages_zh_CN.properties ├── pipeline-model-definition-plugin │ └── pipeline-model-definition │ │ └── src │ │ └── main │ │ └── resources │ │ └── org │ │ └── jenkinsci │ │ └── plugins │ │ └── pipeline │ │ └── modeldefinition │ │ ├── actions │ │ └── RestartDeclarativePipelineAction │ │ │ └── index_zh_CN.properties │ │ └── generator │ │ ├── DirectiveGenerator │ │ └── index_zh_CN.properties │ │ ├── EnvironmentDirective │ │ └── config_zh_CN.properties │ │ ├── PostDirective │ │ └── config_zh_CN.properties │ │ ├── StageDirective │ │ └── config_zh_CN.properties │ │ └── ToolsDirective │ │ └── config_zh_CN.properties ├── pipeline-stage-view-plugin │ └── ui │ │ └── src │ │ └── main │ │ └── resources │ │ └── com │ │ └── cloudbees │ │ └── workflow │ │ └── ui │ │ └── view │ │ ├── Messages_zh_CN.properties │ │ └── WorkflowStageViewAction │ │ └── jobMain_zh_CN.properties ├── priority-sorter-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── jenkins │ │ └── advancedqueue │ │ ├── Messages_zh_CN.properties │ │ ├── PriorityConfiguration │ │ └── index_zh_CN.properties │ │ ├── PrioritySorterConfiguration │ │ └── config_zh_CN.properties │ │ ├── PrioritySorterJobColumn │ │ ├── columnHeader_zh_CN.properties │ │ └── index_zh_CN.properties │ │ └── strategy │ │ └── Messages_zh_CN.properties ├── role-strategy-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── com │ │ └── michelin │ │ └── cio │ │ └── hudson │ │ └── plugins │ │ └── rolestrategy │ │ └── RoleStrategyConfig │ │ ├── Messages_zh_CN.properties │ │ ├── RoleBasedAuthorizationStrategy │ │ └── help_zh_CN.html │ │ ├── RoleStrategyConfig copy │ │ ├── assign-global-roles_zh_CN.properties │ │ ├── assign-project-roles_zh_CN.properties │ │ ├── assign-roles_zh_CN.properties │ │ ├── index_zh_CN.properties │ │ ├── manage-global-roles_zh_CN.properties │ │ ├── manage-project-roles_zh_CN.properties │ │ ├── permission-templates_zh_CN.properties │ │ └── sidepanel_zh_CN.properties │ │ ├── RoleStrategyConfig │ │ └── index_zh_CN.properties │ │ ├── RoleStrategyConfig_zh_CN.properties │ │ └── index_zh_CN.properties ├── scm-api-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── jenkins │ │ └── scm │ │ ├── api │ │ └── Messages_zh_CN.properties │ │ └── impl │ │ ├── Messages_zh_CN.properties │ │ ├── SingleSCMNavigator │ │ └── config_zh_CN.properties │ │ ├── SingleSCMSource │ │ └── config-detail_zh_CN.properties │ │ └── trait │ │ ├── Messages_zh_CN.properties │ │ ├── RegexSCMHeadFilterTrait │ │ └── config_zh_CN.properties │ │ ├── RegexSCMSourceFilterTrait │ │ └── config_zh_CN.properties │ │ ├── WildcardSCMHeadFilterTrait │ │ └── config_zh_CN.properties │ │ └── WildcardSCMSourceFilterTrait │ │ └── config_zh_CN.properties ├── ssh-slaves-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── hudson │ │ └── plugins │ │ └── sshslaves │ │ ├── Messages_zh_CN.properties │ │ ├── SSHConnector │ │ └── config_zh_CN.properties │ │ ├── SSHLauncher │ │ └── config_zh_CN.properties │ │ └── verifiers │ │ └── TrustHostKeyAction │ │ └── trustHostKey_zh_CN.properties ├── subversion-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── hudson │ │ └── scm │ │ └── SubversionChangeLogSet │ │ ├── digest_zh_CN.properties │ │ └── index_zh_CN.properties ├── timestamper-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── hudson │ │ └── plugins │ │ └── timestamper │ │ ├── Messages_zh_CN.properties │ │ ├── TimestamperConfig │ │ ├── config_zh_CN.properties │ │ ├── help-allPipelines_zh_CN.html │ │ ├── help-elapsedTimeFormat_zh_CN.html │ │ └── help-systemTimeFormat_zh_CN.html │ │ └── annotator │ │ └── TimestampAnnotatorFactory3 │ │ ├── settingsForm_zh_CN.properties │ │ └── usersettings_zh_CN.properties ├── translation-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── hudson │ │ └── plugins │ │ └── translation │ │ └── L10nDecorator │ │ ├── dialog_zh_CN.properties │ │ └── footer_zh_CN.properties ├── workflow-basic-steps-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── org │ │ └── jenkinsci │ │ └── plugins │ │ └── workflow │ │ └── steps │ │ ├── ArtifactArchiverStep │ │ └── config_zh_CN.properties │ │ ├── EchoStep │ │ └── config_zh_CN.properties │ │ ├── EnvStep │ │ ├── config_zh_CN.properties │ │ ├── help-overrides_zh_CN.html │ │ └── help_zh_CN.html │ │ ├── ErrorStep │ │ ├── config_zh_CN.properties │ │ └── help_zh_CN.html │ │ ├── FileExistsStep │ │ └── config_zh_CN.properties │ │ ├── MailStep │ │ └── config_zh_CN.properties │ │ ├── PwdStep │ │ └── config_zh_CN.properties │ │ ├── ReadFileStep │ │ └── config_zh_CN.properties │ │ ├── RetryStep │ │ └── config_zh_CN.properties │ │ ├── SleepStep │ │ ├── config_zh_CN.properties │ │ └── help_zh_CN.html │ │ ├── TimeoutStep │ │ ├── config_zh_CN.properties │ │ └── help_zh_CN.html │ │ ├── ToolStep │ │ └── config_zh_CN.properties │ │ └── WriteFileStep │ │ └── config_zh_CN.properties ├── workflow-cps-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── org │ │ └── jenkinsci │ │ └── plugins │ │ └── workflow │ │ └── cps │ │ ├── CpsFlowDefinition │ │ ├── config_zh_CN.properties │ │ └── help-script_zh_CN.html │ │ ├── CpsScmFlowDefinition │ │ └── config_zh_CN.properties │ │ ├── CpsThreadDumpAction │ │ └── index_zh_CN.properties │ │ ├── PauseUnpauseAction │ │ └── action_zh_CN.properties │ │ ├── Snippetizer │ │ ├── block_zh_CN.properties │ │ ├── globals_zh_CN.properties │ │ ├── html_zh_CN.properties │ │ ├── index_zh_CN.properties │ │ └── sidepanel_zh_CN.properties │ │ ├── replay │ │ ├── ReplayAction │ │ │ ├── diff_zh_CN.properties │ │ │ └── index_zh_CN.properties │ │ └── ReplayCause │ │ │ └── description_zh_CN.properties │ │ └── steps │ │ └── LoadStep │ │ └── config_zh_CN.properties ├── workflow-job-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── org │ │ └── jenkinsci │ │ └── plugins │ │ └── workflow │ │ └── job │ │ ├── FlowGraphAction │ │ └── index_zh_CN.properties │ │ ├── FlowGraphTableAction │ │ └── index_zh_CN.properties │ │ ├── Messages_zh_CN.properties │ │ ├── WorkflowJob │ │ ├── configure-entries_zh_CN.properties │ │ ├── main_zh_CN.properties │ │ └── sidepanel_zh_CN.properties │ │ ├── WorkflowRun │ │ └── sidepanel_zh_CN.properties │ │ ├── properties │ │ ├── Messages_zh_CN.properties │ │ └── PipelineTriggersJobProperty │ │ │ └── config_zh_CN.properties │ │ └── views │ │ └── Messages_zh_CN.properties ├── workflow-multibranch-plugin │ └── src │ │ └── main │ │ └── resources │ │ └── org │ │ └── jenkinsci │ │ └── plugins │ │ └── workflow │ │ └── multibranch │ │ ├── ResolveScmStep │ │ └── config_zh_CN.properties │ │ ├── WorkflowBranchProjectFactory │ │ └── config_zh_CN.properties │ │ └── WorkflowMultiBranchProjectFactory │ │ └── config_zh_CN.properties └── workflow-support-plugin │ └── src │ └── main │ └── resources │ └── org │ └── jenkinsci │ └── plugins │ └── workflow │ └── support │ ├── actions │ ├── LogActionImpl │ │ └── index_zh_CN.properties │ └── LogStorageAction │ │ └── index_zh_CN.properties │ └── visualization │ └── table │ └── FlowGraphTable │ └── ajax_zh_CN.properties ├── pom.xml └── src ├── main ├── java │ └── io │ │ └── jenkins │ │ └── plugins │ │ └── localization_zh_cn │ │ ├── CommunityDecorator.java │ │ ├── CommunityPage.java │ │ ├── LocalizationContributorImpl.java │ │ ├── UpdateCenterAction.java │ │ └── UserCommunityProperty.java ├── resources │ ├── index.jelly │ ├── io │ │ └── jenkins │ │ │ └── plugins │ │ │ └── localization_zh_cn │ │ │ ├── CommunityDecorator │ │ │ └── footer.jelly │ │ │ ├── CommunityPage │ │ │ └── index.jelly │ │ │ └── UserCommunityProperty │ │ │ └── config.jelly │ └── mirror-adapter.crt └── webapp │ └── images │ └── jenkins-wechat.png └── test └── java └── io └── jenkins └── plugins └── localization_zh_cn └── CommunityPageTest.java /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://space.bilibili.com/433584098'] 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 9 | 10 | ### Submitter checklist 11 | 12 | - [ ] [Know translation specification](https://github.com/jenkins-zh/translation-spec/blob/master/specification.md) 13 | 14 | Here is [an online tool](https://native2ascii.net/) which can help you to do the review work. 15 | 16 | ### Desired reviewers 17 | 18 | @jenkinsci/chinese-localization-sig 19 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "maven" 4 | directory: "/" 5 | schedule: 6 | interval: "weekly" 7 | - package-ecosystem: github-actions 8 | directory: / 9 | schedule: 10 | interval: weekly 11 | -------------------------------------------------------------------------------- /.github/workflows/cd.yaml: -------------------------------------------------------------------------------- 1 | # Note: additional setup is required, see https://www.jenkins.io/redirect/continuous-delivery-of-plugins 2 | 3 | name: cd 4 | on: 5 | workflow_dispatch: 6 | check_run: 7 | types: 8 | - completed 9 | 10 | permissions: 11 | checks: read 12 | contents: write 13 | 14 | jobs: 15 | maven-cd: 16 | uses: jenkins-infra/github-reusable-workflows/.github/workflows/maven-cd.yml@v1 17 | secrets: 18 | MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} 19 | MAVEN_TOKEN: ${{ secrets.MAVEN_TOKEN }} 20 | -------------------------------------------------------------------------------- /.github/workflows/jenkins-security-scan.yml: -------------------------------------------------------------------------------- 1 | name: Jenkins Security Scan 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | pull_request: 8 | types: [ opened, synchronize, reopened ] 9 | workflow_dispatch: 10 | 11 | permissions: 12 | security-events: write 13 | contents: read 14 | actions: read 15 | 16 | jobs: 17 | security-scan: 18 | uses: jenkins-infra/jenkins-security-scan/.github/workflows/jenkins-security-scan.yaml@v2 19 | with: 20 | java-cache: 'maven' # Optionally enable use of a build dependency cache. Specify 'maven' or 'gradle' as appropriate. 21 | # java-version: 21 # Optionally specify what version of Java to set up for the build, or remove to use a recent default. 22 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/*.iml 2 | 3 | .idea 4 | .DS_Store 5 | .vscode 6 | bin/ 7 | 8 | # maven stuff 9 | target 10 | 11 | # jenkins stuff 12 | work 13 | 14 | .classpath 15 | .settings/ 16 | .bin/ 17 | .factorypath 18 | .project 19 | 20 | # private files 21 | env.sh -------------------------------------------------------------------------------- /.mvn/extensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | io.jenkins.tools.incrementals 4 | git-changelist-maven-extension 5 | 1.8 6 | 7 | 8 | -------------------------------------------------------------------------------- /.mvn/maven.config: -------------------------------------------------------------------------------- 1 | -Pconsume-incrementals 2 | -Pmight-produce-incrementals 3 | -Dchangelist.format=%d.v%s 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 0.0.16 (not release yet) 2 | 3 | # 0.0.15 4 | 5 | * oops 页面 6 | * 凭据插件 7 | * 线程转存 8 | * 修复了流水线相关的两个插件配置错误导致无法加载本地化 [#66](https://github.com/jenkinsci/localization-zh-cn-plugin/pull/66) 9 | * 增加插件:为"立即构建"增加自定义名称 [#65](https://github.com/jenkinsci/localization-zh-cn-plugin/pull/65) 10 | * 安全重启 [#60](https://github.com/jenkinsci/localization-zh-cn-plugin/pull/60) 11 | * 控制台输出 [#59](https://github.com/jenkinsci/localization-zh-cn-plugin/pull/59) 12 | * 线程堆栈,流水线语法 [#58](https://github.com/jenkinsci/localization-zh-cn-plugin/pull/58) 13 | 14 | # 0.0.14 15 | 16 | * 登陆页面,用户名或密码错 17 | * 断开回话 18 | * 管理员警告信息 19 | * Manage Jenkins 统一调整为 管理 Jenkins -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- 1 | /* 2 | See the documentation for more options: 3 | https://github.com/jenkins-infra/pipeline-library/ 4 | */ 5 | buildPlugin( 6 | useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests 7 | configurations: [ 8 | [platform: 'linux', jdk: 21], 9 | [platform: 'windows', jdk: 17], 10 | ]) 11 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Jenkins Chinese Localization 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 all 13 | 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 THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | install: 2 | mvn clean install -DskipTests 3 | 4 | package: 5 | mvn clean package -DskipTests 6 | 7 | upload: 8 | ./upload.sh 9 | 10 | pu: package upload 11 | 12 | clean: 13 | rm -rf target 14 | -------------------------------------------------------------------------------- /README_zh_CN.md: -------------------------------------------------------------------------------- 1 | # 简体中文插件 2 | [![Jenkins Plugin](https://img.shields.io/jenkins/plugin/v/localization-zh-cn.svg)](https://plugins.jenkins.io/localization-zh-cn) 3 | [![Jenkins Plugin Installs](https://img.shields.io/jenkins/plugin/i/localization-zh-cn.svg?color=blue)](https://plugins.jenkins.io/localization-zh-cn) 4 | [![Gitter](https://badges.gitter.im/jenkinsci/localization-zh-cn-plugin.svg)](https://gitter.im/jenkinsci/localization-zh-cn-plugin) 5 | 6 | 7 | 本插件包括 Jenkins 核心以及插件的中文本地化。查看 [JEP-216](https://github.com/jenkinsci/jep/blob/master/jep/216/README.adoc) 了解设计细节。 8 | 9 | # 入门教程 10 | 11 | 这里有一些关于 [如何为 Jenkins 插件贡献本地化](https://www.jenkins.io/doc/developer/internationalization/) 的教程。 12 | 13 | [jcli](https://github.com/jenkins-zh/jenkins-cli) 可以帮助你快速地把插件上传到你的 Jenkins 中。命令为:`jcli plugin upload`。 14 | 15 | # 贡献 16 | 17 | 如果,你对本地化感兴趣,请首先查看 [中文本地化 SIG](https://www.jenkins.io/sigs/chinese-localization/)。 18 | 19 | 所有的中文字符都需要转为为 ASCII.这样难以阅读,你可以使用这个[在线工具](https://native2ascii.net/)进行快速地转化。 20 | 21 | 注意,每位贡献者都应该遵循[翻译规范](specification.md)。 22 | 23 | # Actions 24 | 25 | 我们使用 [git-backup-actions](https://github.com/jenkins-zh/git-backup-actions/) 来备份当前仓库到 26 | [gitee](https://gitee.com/jenkins-zh/localization-zh-cn-plugin). 27 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/PluginManager/PluginCycleDependenciesMonitor/description_zh_CN.properties: -------------------------------------------------------------------------------- 1 | blurb=\u5f53 Jenkins \u68c0\u6d4b\u5230\u63d2\u4ef6\u4e4b\u95f4\u7684\u5faa\u73af\u4f9d\u8d56\u5173\u7cfb\ 2 | \uff08\u4e00\u4e2a\u6216\u591a\u4e2a\u63d2\u4ef6\u4e2d\u7684\u9519\u8bef\uff09\u65f6\uff0c\u4f1a\u663e\ 3 | \u793a\u6b64\u6d88\u606f\u3002 4 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/PluginManager/PluginDeprecationMonitor/description_zh_CN.properties: -------------------------------------------------------------------------------- 1 | blurb=\ 2 | \u901a\u77e5\u7ba1\u7406\u5458\u5f03\u7528\u4e00\u4e2a\u6216\u591a\u4e2a\u5f53\u524d\u5df2\u5b89\u88c5\u7684\u63d2\ 3 | \u4ef6\u3002\u8fd9\u4e9b\u5143\u6570\u636e\u7531\u914d\u7f6e\u7684\u5347\u7ea7\u7ad9\u70b9\u63d0\u4f9b\uff0c\u63d2\ 4 | \u4ef6\u7684\u6587\u6863\u901a\u5e38\u4f1a\u89e3\u91ca\u5f03\u7528\u7684\u539f\u56e0\u3002 -------------------------------------------------------------------------------- /core/src/main/resources/hudson/PluginManager/PluginDeprecationMonitor/message_zh_CN.properties: -------------------------------------------------------------------------------- 1 | DeprecatedPlugins=\u4ee5\u4e0b\u5b89\u88c5\u7684\u63d2\u4ef6\u5df2\u5f03\u7528 2 | DeprecatedPluginsDescription=\ 3 | \u4e00\u822c\u6765\u8bf4\uff0c\u8fd9\u610f\u5473\u7740\u8fd9\u4e9b\u63d2\u4ef6\u8981\u4e48\u5df2\u8fc7\u65f6\uff0c\ 4 | \u4e0d\u518d\u5f00\u53d1\uff0c\u8981\u4e48\u53ef\u80fd\u4e0d\u518d\u5de5\u4f5c\u3002
\ 5 | \u6709\u5173\u5f03\u7528\u539f\u56e0\u7684\u66f4\u591a\u4fe1\u606f\uff0c\u4ee5\u53ca\u5982\u4f55\u5904\u7406\ 6 | \u7684\u5efa\u8bae\uff0c\u8bf7\u53c2\u9605\u94fe\u63a5\u7684\u7f51\u9875\u3002 7 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/PluginManager/available_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Download\ now\ and\ install\ after\ restart=\u4E0B\u8F7D\u5F85\u91CD\u542F\u540E\u5B89\u88C5 2 | Install\ without\ restart=\u76F4\u63A5\u5B89\u88C5 3 | Install=\u5B89\u88C5 4 | Name=\u540D\u79F0 -------------------------------------------------------------------------------- /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/ProxyConfiguration/help-port_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 该字段和代理服务器字段一起使用,用于指定HTTP代理端口。 3 |
-------------------------------------------------------------------------------- /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/lifecycle/WindowsInstallerLink/_restart_zh_CN.properties: -------------------------------------------------------------------------------- 1 | blurb=\u5728\u51E0\u79D2\u5185\u4F60\u4F1A\u81EA\u52A8\u8FDB\u5165\u65B0\u7684 Jenkins\u3002 \ 2 | \u5982\u679C\u7531\u4E8E\u6709\u4E9B\u539F\u56E0\u5BFC\u81F4\u670D\u52A1\u542F\u52A8\u5931\u8D25\uFF0C\u8BF7\u68C0\u67E5 Windows \u4E8B\u4EF6\u65E5\u5FD7\u4E2D\u7684\u9519\u8BEF\uFF0C\u5E76\u67E5\u770B\ 3 | \u5B98\u65B9 wiki \u9875\u9762\u3002 4 | Please\ wait\ while\ Jenkins\ is\ restarting=Jenkins \u6B63\u5728\u91CD\u542F\uFF0C\u8BF7\u7A0D\u7B49 5 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/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/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/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/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/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 | -------------------------------------------------------------------------------- /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/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/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/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/model/FreeStyleProject/help_zh_CN.html: -------------------------------------------------------------------------------- 1 | sdfsf -------------------------------------------------------------------------------- /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/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/hudson/model/MyView/noJob_zh_CN.properties: -------------------------------------------------------------------------------- 1 | blurb=\u5F53\u524D\u8BD5\u56FE\u4E2D\u6CA1\u6709\u4EFB\u52A1\u3002 -------------------------------------------------------------------------------- /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/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 |

-------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/Node/help-name_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 名称是用于唯一标识一个代理的。 3 |

4 | 它不需要和代理的主机名保持一致, 5 | 但通常会是相同的。 6 |

7 | 名称不允许包含下列特殊字符: 8 | ?*/\%!@#$^&|<>[]:; 9 | 10 |

11 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/model/Node/help-numExecutors_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | Jenkins 可以在此节点上执行并发构建的最大数目。 3 |

4 | 在开始的时候,使用节点的 CPU 个数作为该值是一个不错的选择。一个较大的值将会使每个构建花费更多的时间, 5 | 但是却有可能增加系统整体的吞吐量。例如,一个构建可能是 CPU 密集型的,而在同一时刻另一个构建可能是 I/O 密集型的,因此,后者可以有效的利用空闲的 I/O。 6 |

7 | 代理节点(非 master 节点)必须至少拥有一个执行器。如需暂时阻止其执行构建,请使用其页面右上方的临时断开此节点按钮。 8 |

9 | 对于 master 节点,设置执行器的数目为零将会阻止构建在其上执行。注意:master 节点将总是能够执行轻量级的任务,包括顶级的流水线任务。 10 |

11 | -------------------------------------------------------------------------------- /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/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 | -------------------------------------------------------------------------------- /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/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/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/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 | -------------------------------------------------------------------------------- /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/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/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/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/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/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/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/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/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/model/View/People/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | People=\u7528\u6237\u5217\u8868 4 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/model/View/newJobButtonBar_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 | OK=\u786E\u5B9A 24 | -------------------------------------------------------------------------------- /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/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/node_monitors/ArchitectureMonitor/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 只是用于显示代理节点的架构信息,不会使得代理节点下线。 3 |
-------------------------------------------------------------------------------- /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/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/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/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/search/Search/search-failed_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Search\ for=\u67E5\u627E 2 | Nothing\ seems\ to\ match.=\u6CA1\u6709\u641C\u7D22\u5230\u76F8\u5173\u8BB0\u5F55\u3002 -------------------------------------------------------------------------------- /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=\u533A\u5206\u5927\u5C0F\u5199 4 | Insensitive\ search\ tool=\u641C\u7D22\u4E0D\u533A\u5206\u5927\u5C0F\u5199 5 | -------------------------------------------------------------------------------- /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/FullControlOnceLoggedInAuthorizationStrategy/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 这种授权模式下,每个登录用户都持有对Jenkins的全部控制权限.只有匿名用户没有全部控制权,匿名用户只有查看权限. 3 | 4 |

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

-------------------------------------------------------------------------------- /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/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 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/help-allowsSignup_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | Jenkins默认允许用户自己注册一个新账号,通过点击页面右上角的"注册"链接进行操作. 3 | 但如果你想禁止任意注册新账号,而使用严格的方式控制账号创建,那么取消这个选框。 4 | 5 |

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

-------------------------------------------------------------------------------- /core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 使用Hudson自己的用户列表验证, 3 | 而不是外部系统代理. 4 | 这适用于没有用户数据库小范围的设定. 5 |
-------------------------------------------------------------------------------- /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/security/LegacyAuthorizationStrategy/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 适用于Jenkins1.164以前的版本.也就是说,如果你是"admin"角色,那么你将拥有Jenkins的一切控制权,其它角色(包括匿名用户) 3 | 只有查看权限. 4 |
-------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/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/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 | -------------------------------------------------------------------------------- /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/slaves/JNLPLauncher/help-vmargs_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 如果代理的Java虚拟机启动时需要附加参数,例如 "-Xmx256m",可以在这里设置。 3 | 这里 4 | 列出了所有可用的参数。 5 |
-------------------------------------------------------------------------------- /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/resources/hudson/tasks/Shell/help-shell_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 通常你不需要填写此项,Jenkins会帮你找到正确的shell执行文件. 3 | 如果你的sh (Windows) 或者 /bin/sh不在系统PATH里, 4 | 那么就指定一个shell执行文件的绝对路径. 5 |
-------------------------------------------------------------------------------- /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/AbstractCommandInstaller/help-command_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 在子节点上使用命令安装工具, 3 | 命令会一直运行,如果工具已经安装了,就要这个命令迅速的运行完成并且没有任何操作. 4 |
5 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/tools/AbstractCommandInstaller/help-toolHome_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 安装工具的目录. 3 | (如果需要吧工具解压到磁盘上,可能是一个绝对路径.) 4 |
5 | -------------------------------------------------------------------------------- /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/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/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/tools/ToolInstallation/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Name=\u522b\u540d 2 | Installation\ directory=\u5b89\u88c5\u76ee\u5f55 3 | -------------------------------------------------------------------------------- /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/tools/ZipExtractionInstaller/help-subdir_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 可选子目录,用来放置下载文件和解压文件的目录。 3 |
4 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/tools/ZipExtractionInstaller/help-url_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 从URL下载的工具包(二进制)应该是一个ZIP文件或者GZip压缩过的TAR文件. 3 | 服务器上的时间戳会比对本地版本(如果有的话),所以你可以轻松的发布升级. 4 | URL必须从Jenkins的主节点访问,但是不需要从子节点访问. 5 |
6 | -------------------------------------------------------------------------------- /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/tools/label_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Label=\u6807\u7b7e 2 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /core/src/main/resources/hudson/triggers/SCMTrigger/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 设置让 Jenkins 持续检查(轮询)SCM触发器。 3 |

4 | 请注意,这对CVS而言代价很高,每次轮询Jenkins 5 | 都需要扫描整个工作区,并与服务器相对比。建议参考 6 | 这份文件 7 | 设置"push"触发程序,避免额外的负担。 8 |

9 |
10 | -------------------------------------------------------------------------------- /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/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\u5019... 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 | -------------------------------------------------------------------------------- /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.=\u5F53 Jenkins \u5C31\u7EEA\u7684\u65F6\u5019\uFF0C\u4F60\u7684\u6D4F\u89C8\u5668\u4F1A\u81EA\u52A8\u5237\u65B0\u3002 4 | Please\ wait\ while\ Jenkins\ is\ restarting=Jenkins \u6B63\u5728\u91CD\u542F\uFF0C\u8BF7\u7A0D\u7B49 5 | Restarting\ Jenkins=\u6B63\u5728\u91CD\u542F Jenkins 6 | -------------------------------------------------------------------------------- /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/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/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/hudson/views/LastDurationColumn/column_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # This file is under the MIT License by authors 2 | 3 | N/A=\u65E0 4 | -------------------------------------------------------------------------------- /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/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/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/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/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/resources/hudson/widgets/Messages_zh_CN.properties: -------------------------------------------------------------------------------- 1 | BuildHistoryWidget.DisplayName=\u6784\u5efa\u5386\u53f2 -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/agents/CloudSet/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | learnMoreDistributedBuilds=\u4e86\u89e3\u66f4\u591a\u6709\u5173\u4e8e\u5206\u5e03\u5f0f\u7684\u4fe1\u606f 2 | noCloudAvailableCTA=\u76ee\u524d\u6ca1\u6709\u4e00\u4e2a\u4e91\u8282\u70b9\u8bbe\u7f6e\u5b8c\u6bd5\u3002\u521b\u5efa\u4e00\u4e2a\uff0c\u6216\u8005\u5b89\u88c5\u63d2\u4ef6\u6765\u83b7\u53d6\u66f4\u591a\u7684\u4e91\u76f8\u5173\u914d\u7f6e\u3002 3 | noCloudAvailable=\u76ee\u524d\u6ca1\u6709\u4e00\u4e2a\u4e91\u8282\u70b9\u8bbe\u7f6e\u5b8c\u6bd5\u3002 4 | noCloudPlugin=\u73b0\u5728\u6ca1\u6709\u652f\u6301\u4e91\u914d\u7f6e\u7684\u63d2\u4ef6\u5b89\u88c5\u3002 5 | newCloud=\u65b0\u7684\u4e91\u8282\u70b9 6 | installCloudPlugin=\u5b89\u88c5\u4e91\u63d2\u4ef6 7 | description=\u5728\u8282\u70b9\u914d\u7f6e\u7684\u8fc7\u7a0b\u4e2d\uff0c\u6309\u8868\u4e2d\u987a\u5e8f\u8fdb\u884c\u5c1d\u8bd5 8 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/diagnostics/CompletedInitializationMonitor/message_zh_CN.properties: -------------------------------------------------------------------------------- 1 | blurb=\u914D\u7F6E\u91CD\u65B0\u52A0\u8F7D\u540E Jenkins \u521D\u59CB\u5316\u6CA1\u6709\u5230\u8FBE COMPLETED \u7684\u521D\u59CB\u5316\u9636\u6BB5\u3002\ 2 | \u5F53\u524D\u72B6\u6001\u4E3A\uFF1A\"{0}\"\u3002 \ 3 | \u8FD9\u6837\u4E0D\u6B63\u786E\u7684\u72B6\u6001\u53EF\u80FD\u4F1A\u5BFC\u81F4 Jenkins \u63D2\u4EF6\u9519\u8BEF\u7684\u884C\u4E3A\u3002 \ 4 | \u5B83\u53EF\u80FD\u662F Jenkins \u521D\u59CB\u5316\u6216\u91CD\u65B0\u52A0\u8F7D\u4EFB\u52A1\u56FE\u7684\u95EE\u9898\u3002 5 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/install/README.md: -------------------------------------------------------------------------------- 1 | 安装向导相关的本地化资源文件存放在 Jenkins Core 中。 -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/install/SetupWizard/README.md: -------------------------------------------------------------------------------- 1 | 安装向导相关的本地化资源文件存放在 Jenkins Core 中。 -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/install/UpgradeWizard/README.md: -------------------------------------------------------------------------------- 1 | 安装向导相关的本地化资源文件存放在 Jenkins Core 中。 -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/management/AdministrativeMonitorsApiData/monitorsList_zh_CN.properties: -------------------------------------------------------------------------------- 1 | no_active_monitors=\u5f53\u524d\u6ca1\u6709\u8b66\u544a 2 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/management/AdministrativeMonitorsDecorator/footer_zh_CN.properties: -------------------------------------------------------------------------------- 1 | tooltip=\u6709 {0} \u9879\u6FC0\u6D3B\u7684\u7BA1\u7406\u5458\u68C0\u67E5\u9879 2 | tooltipSec=\u6709 {0} \u9879\u6fc0\u6d3b\u7684\u7ba1\u7406\u5458\u5b89\u5168\u68c0\u67e5\u9879 3 | Manage\ Jenkins=\u7BA1\u7406 Jenkins -------------------------------------------------------------------------------- /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/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 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/model/GlobalQuietPeriodConfiguration/help-quietPeriod_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 如果设置此选项,一个计划中的构建在开始之前需要等待选项中设置的秒数。 3 | 这会对下面的情况非常有用: 4 |
    5 |
  • 6 | 合并多封CVS变更通知邮件为一封(当一次提交跨越多个目录时,一些CVS的变更日志邮件发生脚本会接二连三的生成多封通知邮件)。 7 |
  • 8 |
  • 9 | 如果你的编码风格导致你更改一个逻辑需要几次cvs/svn操作,那么设置一个较长时间的等待会防止Jenkins过早的构建而失败。 10 |
  • 11 |
  • 12 | 节省构建。如果你的Jenkins有太多并且高频率的构建,设置长时间的等待会舒缓这些构建。 13 |
  • 14 |
15 | 如果没有在项目级别设置此项,则会使用系统默认值。 16 |
-------------------------------------------------------------------------------- /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/_restart_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Restart\ Jenkins=\u91CD\u542F Jenkins 2 | Are\ you\ sure\ you\ want\ to\ restart\ Jenkins?=\u4F60\u786E\u5B9A\u8981\u91CD\u542F Jenkins \u5417\uFF1F 3 | Yes=\u662F 4 | Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Jenkins \u5728\u5F53\u524D\u914D\u7F6E\u4E0B\u65E0\u6CD5\u81EA\u6211\u91CD\u542F\u3002 5 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/model/Jenkins/_safeRestart_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Are\ you\ sure\ you\ want\ to\ restart\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=\u4F60\u786E\u5B9A\u8981\u91CD\u542F Jenkins \u5417\uFF1F\u5F53\u6240\u6709\u8FD0\u884C\u4E2D\u7684\u4EFB\u52A1\u7ED3\u675F\u540E Jenkins \u91CD\u542F\u3002 2 | Yes=\u662F 3 | Jenkins\ cannot\ restart\ itself\ as\ currently\ configured.=Jenkins \u5728\u5F53\u524D\u914D\u7F6E\u4E0B\u65E0\u6CD5\u81EA\u6211\u91CD\u542F\u3002 -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/model/Jenkins/oops_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Jenkins\ project=Jenkins \u9879\u76EE 2 | Bug\ tracker=\u7F3A\u9677\u8DDF\u8E2A\u7CFB\u7EDF 3 | Mailing\ Lists=\u90AE\u4EF6\u5217\u8868 4 | Oops!=\u7CDF\u7CD5\uFF01 5 | problemHappened=\u5904\u7406\u5F53\u524D\u8BF7\u6C42\u65F6\u53D1\u751F\u4E86\u9519\u8BEF\u3002 6 | checkJIRA=\u8BF7\u68C0\u67E5\u6211\u4EEC\u7684\u7F3A\u9677\u8DDF\u8E2A\u7CFB\u7EDF\u4E2D\u662F\u5426\u5DF2\u7ECF\u62A5\u544A\u8FC7\u8BE5\u95EE\u9898\u3002 7 | vote=\u5982\u679C\u5DF2\u7ECF\u62A5\u544A\u8FC7\uFF0C\u8BF7\u6295\u7968\u5E76\u8BC4\u8BBA\uFF0C\u4EE5\u4FBF\u6211\u4EEC\u6743\u8861\u8BE5\u95EE\u9898\u7684\u5F71\u54CD\u3002 8 | pleaseReport=\u5982\u679C\u60A8\u8BA4\u4E3A\u8FD9\u662F\u4E00\u4E2A\u65B0\u7684\u7F3A\u9677\uFF0C\u8BF7\u63D0\u4EA4\u5230\u7CFB\u7EDF\u4E2D\u3002 9 | stackTracePlease=\u5F53\u4F60\u63D0\u4EA4\u4E00\u4E2A\u7F3A\u9677\u65F6\uFF0C\u786E\u4FDD\u6DFB\u52A0\u5B8C\u6574\u7684\u5806\u6808\u8DDF\u8E2A\uFF0C\u4EE5\u53CA Jenkins \u548C\u76F8\u5173\u63D2\u4EF6\u7684\u7248\u672C\u3002 10 | checkML=\u5728\u7528\u6237\u90AE\u4EF6\u5217\u8868\u4E2D\u53EF\u4EE5\u5F97\u5230\u8BE5\u95EE\u9898\u7684\u5E2E\u52A9\u3002 11 | Stack\ trace=\u5806\u6808\u8DDF\u8E2A 12 | 13 | 14 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/model/Jenkins/threadDump_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Thread\ dump=\u7EBF\u7A0B\u8F6C\u50A8 2 | Thread\ Dump=\u7EBF\u7A0B\u8F6C\u50A8 3 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/model/ProjectNamingStrategy/PatternProjectNamingStrategy/help-description_zh_CN.html: -------------------------------------------------------------------------------- 1 |

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

-------------------------------------------------------------------------------- /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/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/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/jenkins/security/s2m/MasterKillSwitchWarning/message_zh_CN.properties: -------------------------------------------------------------------------------- 1 | blurb=Agent \u4E0E master \u4E4B\u95F4\u7684\u5B89\u5168\u5B50\u7CFB\u7EDF\u5F53\u524D\u5904\u4E8E\u5173\u95ED\u72B6\u6001\u3002 \ 2 | \u8BF7\u9605\u8BFB\u8BE5\u6587\u6863\u5E76\u8003\u8651\u6253\u5F00\u5B83\u3002 3 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/security/seed/Messages_zh_CN.properties: -------------------------------------------------------------------------------- 1 | UserSeedProperty.DisplayName=\u65AD\u5F00\u4F1A\u8BDD 2 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/security/seed/UserSeedProperty/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | resetSeed.button=\u65AD\u5F00\u6240\u6709\u4F1A\u8BDD 2 | resetSeed.result=\u64CD\u4F5C\u6210\u529F\u3002\u6240\u6709\u4F1A\u8BDD\u5DF2\u65AD\u5F00\u3002 3 | resetSeed.confirmation=\u5F53\u524D\u7528\u6237\u7684\u6240\u6709\u5DF2\u8FDE\u63A5\u7684\u4F1A\u8BDD\u5C06\u4F1A\u88AB\u65AD\u5F00\u3002 \n\ 4 | \u4ED6\u4EEC\u5C06\u9700\u8981\u518D\u6B21\u767B\u9646\u3002 \n\ 5 | \u4F60\u786E\u5B9A\u8981\u8FD9\u4E48\u64CD\u4F5C\u5417\uFF1F 6 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/security/seed/UserSeedProperty/help-resetSeed_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 该动作将会断开该用户的所有已连接的计算机和设备。
3 | 该用户在执行任何操作前将需要再次登陆。
4 |
5 |
6 | API tokens 和 SSH 公钥具有另外的访问机制,因而不会受到该动作的影响。
7 | 撤销该用户的所有访问也会撤销这些机制。 8 |
9 |
10 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/slaves/RemotingWorkDirSettings/help-disabled_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 允许禁用该代理的 远程工作目录 。 3 | 这种情况,代理会以旧版本模式下运行,而且默认没有日志记录。 4 |
5 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/slaves/RemotingWorkDirSettings/help-failIfWorkDirIsMissing_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 勾选后,如果目标目录不存在的话,那么代理启动过程会失败。该选项用于检测基础设施的问题,例如挂载失败。 3 |
4 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/slaves/RemotingWorkDirSettings/help-internalDir_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 定义内部数据的存储目录。该目录会在远程工作目录内创建。 3 |
4 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/slaves/RemotingWorkDirSettings/help-workDirPath_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 如果定义了自定义远程工作目录,就不会使用代理的根目录。该选项目前无法使用环境变量,建议使用绝对路径。 3 |
4 | -------------------------------------------------------------------------------- /core/src/main/resources/jenkins/tools/GlobalToolConfiguration/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Save=\u4FDD\u5B58 2 | Apply=\u5E94\u7528 3 | Back\ to\ Dashboard=\u8FD4\u56DE\u5DE5\u4F5C\u53F0 4 | Manage\ Jenkins=\u7BA1\u7406 Jenkins -------------------------------------------------------------------------------- /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/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/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/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/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/password_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Change\ Password=\u4FEE\u6539\u5BC6\u7801 2 | Concealed=\u5DF2\u9690\u85CF 3 | -------------------------------------------------------------------------------- /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/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/lib/form/secretTextarea_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Add=\u6DFB\u52A0 2 | Replace=\u66FF\u6362 3 | EnterSecret=\u5728\u4E0B\u9762\u8F93\u5165\u65B0\u79D8\u6587 4 | Concealed=\u5DF2\u9690\u85CF 5 | NoStoredValue=\u6CA1\u6709\u503C 6 | -------------------------------------------------------------------------------- /core/src/main/resources/lib/form/slave-mode_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Usage=\u7528\u6cd5 2 | -------------------------------------------------------------------------------- /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/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/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/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 | -------------------------------------------------------------------------------- /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/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/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/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-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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/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/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/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/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/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 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/parameter/boolean-default_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 定义当前参数的默认值。 3 |
-------------------------------------------------------------------------------- /core/src/main/webapp/help/parameter/boolean_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 定义一个简单的布尔值参数,你可以在构建时使用,或者作为环境变量,或者在配置中做变量替换。对应的字符值为'true'或者'false'。 3 |
-------------------------------------------------------------------------------- /core/src/main/webapp/help/parameter/choice-choices_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/description_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 后续展示给用户看的描述信息。 3 |
4 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/parameter/file-name_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 指定上传文件的路径,相对于工作空间。(例如:jaxb-ri/data.zip) 3 |
-------------------------------------------------------------------------------- /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 |
-------------------------------------------------------------------------------- /core/src/main/webapp/help/parameter/name_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 参数名称 3 | 4 |

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

-------------------------------------------------------------------------------- /core/src/main/webapp/help/parameter/run_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 定义一个运行参数,用户可以选择一个确定的工程。网站的url地址将会被当作环境变量暴露出来,你可以在构建时使用,或者作为环境变 3 | 量,或者在配置中做变量替换。通过Jenkins可以查询到更多的信息。 4 |
-------------------------------------------------------------------------------- /core/src/main/webapp/help/parameter/string-default_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 定义该字段的默认值,允许用户在保存时修改为真实的值。 3 |
-------------------------------------------------------------------------------- /core/src/main/webapp/help/parameter/string_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/project-config/block-downstream-building_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 该选项勾选后,当有子工程在排队或者构建时Jenkins将会阻塞该工程的构建。子工程包括直接和间接的。 3 |
4 | -------------------------------------------------------------------------------- /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/webapp/help/project-config/scmCheckoutRetryCount_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 如果从版本库签出代码失败,Jenkins会按照这个指定的次数进行重试之后再放弃. 3 |
-------------------------------------------------------------------------------- /core/src/main/webapp/help/run-config/description_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 该描述会在构建页面的顶部显示,以便让大家了解构建的内容。你可以使用任意HTML标签(或者配置好的标记语言)。 3 |
4 | -------------------------------------------------------------------------------- /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/system-config/globalEnvironmentVariables_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 这些键值对每个节点上的每个应用都有效.它们可以在Jenkins配置(如$key或者${key})中使用, 3 | 并且在每个构建启动时被加入到环境变量中. 4 |
5 | -------------------------------------------------------------------------------- /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/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/webapp/help/system-config/master-slave/clock_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 对于一个构建任务来说,很多时候是对时钟敏感的。因此,如果Jenkins和运行构建的节点上时钟不一致的话,可能会引起诡异的问题。 3 | 可以考虑利用NTP来同步时钟。 4 |
5 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/system-config/master-slave/demand/idleDelay_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 在Jenkins会把代理下线之前必须保持的空闲分钟数。 3 |
4 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/system-config/master-slave/demand/inDemandDelay_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | Jenkins把代理上线之前必须在队列中等待的分钟数。 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/system-config/master-slave/description_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 使得该代理更加容易被识别的可选项。 3 |

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

-------------------------------------------------------------------------------- /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/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/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 |

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

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

8 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/system-config/systemMessage_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 这个信息会显示在首页顶部. 3 | 用来向用户发布一些系统范围的通知或公告. 4 | 兼容HTML标签格式. 5 |
-------------------------------------------------------------------------------- /core/src/main/webapp/help/tools/help-label_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 可选的标签,用来限制是否使用这种安装方法. 3 | 也就是说只用带有这个标签的子节点才能使用这种安装. 4 |
5 | -------------------------------------------------------------------------------- /core/src/main/webapp/help/tools/tool-location-node-property_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 你可以指定此节点上的某些工具的位置,这会覆盖全局的配置. 3 | (你可能更愿意使用自动安装工具,而不再需要单独配置每个节点.) 4 |
5 | -------------------------------------------------------------------------------- /plugins/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 -------------------------------------------------------------------------------- /plugins/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 -------------------------------------------------------------------------------- /plugins/bitbucket-branch-source-plugin/src/main/resources/com/cloudbees/jenkins/plugins/bitbucket/BranchDiscoveryTrait/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Strategy=\u7b56\u7565 -------------------------------------------------------------------------------- /plugins/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 -------------------------------------------------------------------------------- /plugins/bitbucket-branch-source-plugin/src/main/resources/com/cloudbees/jenkins/plugins/bitbucket/OriginPullRequestDiscoveryTrait/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Strategy=\u7b56\u7565 -------------------------------------------------------------------------------- /plugins/bitbucket-branch-source-plugin/src/main/resources/com/cloudbees/jenkins/plugins/bitbucket/SSHCheckoutTrait/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Credentials=\u51ed\u636e -------------------------------------------------------------------------------- /plugins/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 3 | Custom\ Jenkins\ Root\ URL=\u81EA\u5B9A\u4E49 Jenkins \u6839\u5730\u5740 4 | -------------------------------------------------------------------------------- /plugins/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 -------------------------------------------------------------------------------- /plugins/bitbucket-branch-source-plugin/src/main/resources/com/cloudbees/jenkins/plugins/bitbucket/endpoints/BitbucketEndpointConfiguration/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Bitbucket\ Endpoints=Bitbucket \u7aef\u70b9 -------------------------------------------------------------------------------- /plugins/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 -------------------------------------------------------------------------------- /plugins/bitbucket-build-status-notifier-plugin/src/main/resources/org/jenkinsci/plugins/bitbucket/BitbucketBuildStatusNotifier/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Notify\ build\ start=\u6784\u5efa\u5f00\u59cb\u65f6\u901a\u77e5 2 | Notify\ build\ finish=\u6784\u5efa\u7ed3\u675f\u65f6\u901a\u77e5 3 | Only\ show\ latest\ build\ status=\u53ea\u5c55\u793a\u6700\u8fd1\u4e00\u6b21\u6784\u5efa\u7684\u72b6\u6001 4 | Credentials=\u51ed\u636e -------------------------------------------------------------------------------- /plugins/bitbucket-build-status-notifier-plugin/src/main/resources/org/jenkinsci/plugins/bitbucket/BitbucketBuildStatusNotifier/global_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Global\ Credentials=\u5168\u5c40\u51ed\u636e -------------------------------------------------------------------------------- /plugins/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 -------------------------------------------------------------------------------- /plugins/branch-api-plugin/src/main/resources/jenkins/branch/BaseEmptyView/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 | Welcome=\u6B22\u8FCE 24 | -------------------------------------------------------------------------------- /plugins/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 | disable=\u7981\u7528{0} 3 | disabled={0}\u5df2\u7981\u7528 4 | Enable=\u542f\u7528 5 | -------------------------------------------------------------------------------- /plugins/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} -------------------------------------------------------------------------------- /plugins/cloudbees-folder-plugin/src/main/resources/com/cloudbees/hudson/plugins/folder/computed/ComputedFolder/configure-details_zh_CN.properties: -------------------------------------------------------------------------------- 1 | triggers={0} \u89E6\u53D1\u5668 2 | Orphaned\ Item\ Strategy=\u5B64\u513F\u9879\u7B56\u7565 -------------------------------------------------------------------------------- /plugins/cloudbees-folder-plugin/src/main/resources/com/cloudbees/hudson/plugins/folder/computed/ComputedFolder/tasks-top-extra_zh_CN.properties: -------------------------------------------------------------------------------- 1 | computeNow=\u7ACB\u523B{0} 2 | computeLog={0}\u65E5\u5FD7 3 | events={0}\u4E8B\u4EF6 4 | -------------------------------------------------------------------------------- /plugins/cloudbees-folder-plugin/src/main/resources/com/cloudbees/hudson/plugins/folder/properties/FolderCredentialsProvider/FolderCredentialsProperty/Messages_zh_CN.properties: -------------------------------------------------------------------------------- 1 | FolderCredentialsProvider_DisplayName=\u51ED\u636E 2 | Folder=\u6587\u4EF6\u5939 -------------------------------------------------------------------------------- /plugins/cmakebuilder-plugin/src/main/resources/hudson/plugins/cmake/AbstractStep/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | CMake\ installation=CMake \u5B89\u88C5 -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/cmakebuilder-plugin/src/main/resources/hudson/plugins/cmake/CToolBuilder/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | CMake\ installation=CMake \u5B89\u88C5 2 | Tool=\u5DE5\u5177 3 | -------------------------------------------------------------------------------- /plugins/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 | 12 | build_steps=\u6784\u5EFA\u6B65\u9AA4 13 | actual_build_tool=make, ninja, nmake, ... 14 | -------------------------------------------------------------------------------- /plugins/cmakebuilder-plugin/src/main/resources/hudson/plugins/cmake/CmakeBuilder/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | CMake\ installation=CMake \u5B89\u88C5 -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/code-coverage-api-plugin/src/main/resources/io/jenkins/plugins/coverage/CoverageProjectAction/floatingBox_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Code\ Coverage=\u4ee3\u7801\u8986\u76d6\u7387 -------------------------------------------------------------------------------- /plugins/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 -------------------------------------------------------------------------------- /plugins/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 -------------------------------------------------------------------------------- /plugins/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 -------------------------------------------------------------------------------- /plugins/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 -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/configuration-as-code-plugin/src/main/resources/io/jenkins/plugins/casc/ConfigurationAsCode/viewExport_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Configuration\ as\ Code=\u914D\u7F6E\u53CA\u4EE3\u7801 2 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/credentials-plugin/src/main/resources/com/cloudbees/plugins/credentials/CredentialsProviderManager/Configuration/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Providers=\u63D0\u4F9B\u8005 2 | Types=\u7C7B\u578B 3 | Restrictions=\u9650\u5236 -------------------------------------------------------------------------------- /plugins/credentials-plugin/src/main/resources/com/cloudbees/plugins/credentials/UserCredentialsProperty/UserCredentialsProperty/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | blurb=\u7531\u7528\u6237\u51ed\u636e\u7ba1\u7406\u754c\u9762\u6240\u7ba1\u7406\u3002 2 | Credentials\ are\ only\ available\ to\ the\ user\ they\ belong\ to=\u53ea\u6709\u5f53\u524d\u7528\u6237\u53ef\u89c1\u7684\u51ed\u636e 3 | -------------------------------------------------------------------------------- /plugins/credentials-plugin/src/main/webapp/help/domain/description_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 对域的描述,Jenkins 自身不会用到。 3 |
-------------------------------------------------------------------------------- /plugins/credentials-plugin/src/main/webapp/help/domain/name_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 用于识别凭据域的简短名称。凭据域用于将有相同元素的凭据组织在一起,例如: 3 | 相同的用户名或密码组合用在多个服务或者主机上。 4 |
5 | -------------------------------------------------------------------------------- /plugins/credentials-plugin/src/main/webapp/help/domain/specification_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 用于定义如何识别对该凭据域的请求是合法的规范列表。 3 |
-------------------------------------------------------------------------------- /plugins/customize-build-now-plugin/src/main/resources/org/jenkinsci/plugins/customizebuildnow/BuildNowTextProperty/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | alternate.buildnow=\u4E3A"\u7ACB\u5373\u6784\u5EFA"\u63D0\u4F9B\u53E6\u5916\u4E00\u4E2A\u6807\u7B7E 2 | New\ Label=\u65B0\u6807\u7B7E 3 | -------------------------------------------------------------------------------- /plugins/git-parameter-plugin/src/main/resources/net/uaznia/lukanus/hudson/plugins/gitparameter/GitParameterDefinition/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | parameter.name=\u540D\u79F0 2 | parameter.description=\u63CF\u8FF0 3 | parameter.type=\u53C2\u6570\u7C7B\u578B 4 | parameter.tag=\u6807\u7B7E 5 | parameter.tag.filter=\u6807\u7B7E\u8FC7\u6EE4 6 | parameter.branch=\u5206\u652F 7 | parameter.branch.filter=\u5206\u652F\u8FC7\u6EE4 8 | parameter.branch.or.tag=\u5206\u652F\u6216\u6807\u7B7E 9 | parameter.revision=\u4FEE\u8BA2 10 | parameter.pull.request=Pull Request 11 | parameter.sort.mode=\u6392\u5E8F\u65B9\u5F0F 12 | parameter.default.value=\u9ED8\u8BA4\u503C 13 | parameter.selected.value=\u5DF2\u9009\u503C 14 | parameter.use.repository=\u5DF2\u9009\u4ED3\u5E93 15 | parameter.quick.filter=\u5FEB\u901F\u8FC7\u6EE4 16 | parameter.list.size=\u5217\u8868\u6570\u91CF 17 | -------------------------------------------------------------------------------- /plugins/git-parameter-plugin/src/main/resources/net/uaznia/lukanus/hudson/plugins/gitparameter/GitParameterDefinition/global_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Show\ need\ to\ clone\ information=\u663E\u793A"\u9700\u8981\u514B\u9686"\u4FE1\u606F 2 | -------------------------------------------------------------------------------- /plugins/git-parameter-plugin/src/main/resources/net/uaznia/lukanus/hudson/plugins/gitparameter/GitParameterDefinition/index_zh_CH.properties: -------------------------------------------------------------------------------- 1 | retrieving.references=\u68C0\u7D22 Git \u5F15\u7528... 2 | needs.to.clone=\u5982\u679C\u5DE5\u4F5C\u7A7A\u95F4\u4E3A\u7A7A\uFF0C\u5219\u63D2\u4EF6\u9700\u8981\u514B\u9686\u4ED3\u5E93\uFF0C\u7136\u540E\u624D\u80FD\u663E\u793A\u5185\u5BB9\u3002 \u5982\u679C\u8FDE\u63A5\u901F\u5EA6\u6162\u6216\u4ED3\u5E93\u5F88\u5927\uFF0C\u5219\u53EF\u80FD\u9700\u8981\u82B1\u8D39\u4E00\u4E9B\u65F6\u95F4\u3002 3 | -------------------------------------------------------------------------------- /plugins/git-parameter-plugin/src/main/resources/net/uaznia/lukanus/hudson/plugins/gitparameter/jobs/Messages_zh_CH.properties: -------------------------------------------------------------------------------- 1 | JobWrapperFactory.UnsupportedJobType=\u4E0D\u652F\u6301\u7684\u4EFB\u52A1\u7C7B\u578B\uFF0C\u7C7B: {0} 2 | WorkflowJobWrapper.GetWorkflowRepoScmFail=\u4ECE\u6D41\u6C34\u7EBF\u4E2D\u83B7\u53D6 SCM \u6E90\u5931\u8D25 3 | WorkflowJobWrapper.GetEnvironmentsFromWorkflowrun=\u4ECE\u6784\u5EFA\u4E2D\u83B7\u53D6\u73AF\u5883\u5931\u8D25 4 | AbstractProjectJobWrapper.GetEnvironmentsFromAbstractProject=\u4ECE\u6784\u5EFA\u9879\u76EE\u4E2D\u83B7\u53D6\u73AF\u5883\u5931\u8D25 5 | -------------------------------------------------------------------------------- /plugins/git-parameter-plugin/src/main/resources/net/uaznia/lukanus/hudson/plugins/gitparameter/scms/Messages_zh_CH.properties: -------------------------------------------------------------------------------- 1 | ProxySCM.getSCMFromProxySCM=\u4ECE\u4EE3\u7406\u83B7\u53D6 SCM \u6E90\u5931\u8D25 2 | RepoSCM.getRepoScmFailed=\u83B7\u53D6 SCM \u6E90\u5931\u8D25 3 | MultiSCM.getMultiScmFailed=\u83B7\u53D6\u591A\u4E2A SCM \u6E90\u5931\u8D25 4 | SCMFactory.invalidUseRepositoryPattern=\u6A21\u5F0F {0} \u65E0\u6548\u3002 5 | -------------------------------------------------------------------------------- /plugins/git-plugin/src/main/resources/hudson/plugins/git/BranchSpec/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Branch\ Specifier\ (blank\ for\ 'any')=\u6307\u5B9A\u5206\u652F\uFF08\u4E3A\u7A7A\u65F6\u4EE3\u8868'any'\uFF09 2 | Add\ Branch=\u589E\u52A0\u5206\u652F 3 | Delete\ Branch=\u5220\u9664\u5206\u652F 4 | -------------------------------------------------------------------------------- /plugins/git-plugin/src/main/resources/hudson/plugins/git/browser/AssemblaWeb/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Assembla\ Git\ URL=Assembla Git URL 2 | -------------------------------------------------------------------------------- /plugins/git-plugin/src/main/resources/hudson/plugins/git/extensions/impl/CheckoutOption/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Timeout\ (in\ minutes)\ for\ checkout\ operation=\u68C0\u51FA\u64CD\u4F5C\u7684\u8D85\u65F6\u65F6\u95F4\uFF08\u5206\u949F\uFF09 2 | -------------------------------------------------------------------------------- /plugins/git-plugin/src/main/resources/hudson/plugins/git/extensions/impl/CloneOption/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Shallow\ clone=\u6D45\u514B\u9686 2 | Shallow\ clone\ depth=\u6D45\u514B\u9686\u6DF1\u5EA6 3 | Do\ not\ fetch\ tags=\u4E0D\u62C9\u53D6\u6807\u7B7E 4 | Path\ of\ the\ reference\ repo\ to\ use\ during\ clone=\u5728\u514B\u9686\u65F6\u7684\u5F15\u7528\u8DEF\u5F84 5 | Timeout\ (in\ minutes)\ for\ clone\ and\ fetch\ operations=\u514B\u9686\u548C\u62C9\u53D6\u64CD\u4F5C\u7684\u8D85\u65F6\u65F6\u95F4\uFF08\u5206\u949F\uFF09 6 | -------------------------------------------------------------------------------- /plugins/git-plugin/src/main/resources/hudson/plugins/git/extensions/impl/LocalBranch/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Branch\ name=\u5206\u652F\u540D\u79F0 2 | -------------------------------------------------------------------------------- /plugins/git-plugin/src/main/resources/hudson/plugins/git/extensions/impl/Messages_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Advanced.clone.behaviours=\u9AD8\u7EA7\u7684\u514B\u9686\u884C\u4E3A 2 | -------------------------------------------------------------------------------- /plugins/git-plugin/src/main/resources/hudson/plugins/git/extensions/impl/RelativeTargetDirectory/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Local\ subdirectory\ for\ repo=\u4ED3\u5E93\u7684\u672C\u5730\u5B50\u76EE\u5F55 2 | -------------------------------------------------------------------------------- /plugins/git-plugin/src/main/resources/hudson/plugins/git/extensions/impl/SubmoduleOption/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Disable\ submodules\ processing=\u7981\u7528\u5B50\u6A21\u5757\u5904\u7406 2 | Recursively\ update\ submodules=\u9012\u5F52\u66F4\u65B0\u5B50\u6A21\u5757 3 | Timeout\ (in\ minutes)\ for\ submodules\ operations=\u5B50\u6A21\u5757\u64CD\u4F5C\u7684\u8D85\u65F6\u65F6\u95F4\uFF08\u79D2\uFF09 4 | -------------------------------------------------------------------------------- /plugins/git-plugin/src/main/resources/hudson/plugins/git/extensions/impl/UserExclusion/config__zh_CN.properties: -------------------------------------------------------------------------------- 1 | Excluded\ Users=\u6392\u9664\u7684\u7528\u6237 2 | -------------------------------------------------------------------------------- /plugins/git-plugin/src/main/resources/jenkins/plugins/git/GitSCMSource/config-detail_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Project\ Repository=\u9879\u76EE\u4ED3\u5E93 2 | Credentials=\u51ED\u636E 3 | Behaviours=\u884C\u4E3A 4 | -------------------------------------------------------------------------------- /plugins/git-plugin/src/main/resources/jenkins/plugins/git/GitStep/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Repository\ URL=\u4ED3\u5E93 URL 2 | Branch=\u5206\u652F 3 | Credentials=\u51ED\u636E 4 | -------------------------------------------------------------------------------- /plugins/git-plugin/src/main/resources/jenkins/plugins/git/traits/Messages_zh_CN.properties: -------------------------------------------------------------------------------- 1 | BranchDiscoveryTrait.authorityDisplayName=\u4FE1\u4EFB\u7684\u5206\u652F 2 | BranchDiscoveryTrait.displayName=\u53D1\u73B0\u5206\u652F 3 | TagDiscoveryTrait.authorityDisplayName=\u4FE1\u4EFB\u7684\u6807\u7B7E 4 | TagDiscoveryTrait.displayName=\u53D1\u73B0\u6807\u7B7E 5 | DiscoverOtherRefsTrait.displayName=\u53D1\u73B0\u5176\u4ED6\u5F15\u7528 6 | 7 | Advanced.clone.behaviours=\u9AD8\u7EA7\u7684\u514B\u9686\u884C\u4E3A 8 | -------------------------------------------------------------------------------- /plugins/github-branch-source-plugin/src/main/resources/org/jenkinsci/plugins/github_branch_source/BranchDiscoveryTrait/help-strategyId_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 发现分支策略 3 |
4 |
不包括作为 PRs 的分支
5 |
6 | 如果你想要发现 PR 分支,那同时发现 PR 分支和与其拥有相同变更的分支是没有意义的。 7 |
8 |
只包括作为 PRs 的分支
9 |
10 | 此选项用于在从插件的旧版本升级时保留遗留行为。 11 | 注释: 如果你有这个选项的实际使用场景,可以对本段文本提一个 Pull Request。 12 |
13 |
所有分支
14 |
15 | 发现所有的源仓库分支。 16 |
17 |
18 |
19 | -------------------------------------------------------------------------------- /plugins/github-branch-source-plugin/src/main/resources/org/jenkinsci/plugins/github_branch_source/BranchDiscoveryTrait/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 在目标仓库中发现分支。 3 |
4 | -------------------------------------------------------------------------------- /plugins/github-branch-source-plugin/src/main/resources/org/jenkinsci/plugins/github_branch_source/Endpoint/help-apiUri_zh_CN.html: -------------------------------------------------------------------------------- 1 |

2 | GitHub API 地址,例如:https://github.example.com/api/v3/。 3 |

-------------------------------------------------------------------------------- /plugins/github-branch-source-plugin/src/main/resources/org/jenkinsci/plugins/github_branch_source/ForkPullRequestDiscoveryTrait/help-strategyId_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 发现 Pull Request 的策略 3 |
4 |
合并该 Pull Request 到当前目标分支的版本
5 |
6 | 一次发现操作,找到要合并到当前目标分支的 Pull Request。 7 |
8 |
当前 Pull Request 的版本
9 |
10 | 一次发现操作,找到相对于其自己修改的 Pull Request。 11 |
12 |
当前 Pull Request 的版本和已经与目标分支合并了的 Pull Request
13 |
14 | 两次发现操作,第一次找到要合并到当前目标分支的 Pull Request,紧接着第二次并行的找到相对于其自己修改的 Pull Request。 15 |
16 |
17 |
18 | -------------------------------------------------------------------------------- /plugins/github-branch-source-plugin/src/main/resources/org/jenkinsci/plugins/github_branch_source/ForkPullRequestDiscoveryTrait/help_zn_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 从目标库的派生库发现 Pull Request。 3 |
4 | -------------------------------------------------------------------------------- /plugins/github-branch-source-plugin/src/main/resources/org/jenkinsci/plugins/github_branch_source/GitHubSCMNavigator/help-apiUri_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 需要连接的服务器地址。已配置的服务列表在系统管理 » 系统配置 › GitHub Enterprise Servers区域。 3 |
4 | -------------------------------------------------------------------------------- /plugins/github-branch-source-plugin/src/main/resources/org/jenkinsci/plugins/github_branch_source/GitHubSCMNavigator/help-credentialsId_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | 用于扫描分支和 Pull Request,获取源代码,标记提交状态。 4 |

5 |

6 | 注意: 仅支持“用户名+密码”类型的凭据。 7 | 由于 Jenkins 使用的是 GitHub API, 而它仅支持上述类型的授权方式,所以其他类型的凭据将会被过滤掉。 8 |

9 |

10 | 如果凭据为空,则只能访问公有代码仓库,且本地的变更信息不能同步到 GitHub。 11 |

12 |

13 | 如果您的组织下包含私有库,您需要指定一个对这些库有访问权限的凭据。 14 | 可以通过创建一个“用户名密+码类型”的凭据,密码通配置 Token 获取:GitHub personal access tokens。 15 | 必要的权限范围为 "repo"。 16 |

17 |
18 | -------------------------------------------------------------------------------- /plugins/github-branch-source-plugin/src/main/resources/org/jenkinsci/plugins/github_branch_source/GitHubSCMNavigator/help-repoOwner_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 |

指定Github 组织名GitHub 用户名

3 |
4 | -------------------------------------------------------------------------------- /plugins/github-branch-source-plugin/src/main/resources/org/jenkinsci/plugins/github_branch_source/GitHubSCMSource/help-apiUri_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 需要连接的服务器地址。已配置的服务列表在系统管理 » 系统配置 › GitHub Enterprise Servers区域。 3 |
4 | -------------------------------------------------------------------------------- /plugins/github-branch-source-plugin/src/main/resources/org/jenkinsci/plugins/github_branch_source/GitHubSCMSource/help-credentialsId_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | 用于扫描分支和 Pull Request,获取源代码,标记提交状态。 4 |

5 |

6 | 注意: 仅支持“用户名+密码”类型的凭据。 7 | 由于 Jenkins 使用的是 GitHub API, 而它仅支持上述类型的授权方式,所以其他类型的凭据将会被过滤掉。 8 |

9 |

10 | 如果凭据为空,则只能访问公有代码仓库,且本地的变更信息不能同步到 GitHub。 11 |

12 |

13 | 如果您的组织下包含私有库,您需要指定一个对这些库有访问权限的凭据。 14 | 可以通过创建一个“用户名密+码类型”的凭据,密码通配置 Token 获取:GitHub personal access tokens。 15 | 必要的权限范围为 "repo"。 16 |

17 |
18 | -------------------------------------------------------------------------------- /plugins/github-branch-source-plugin/src/main/resources/org/jenkinsci/plugins/github_branch_source/GitHubSCMSource/help-repoOwner_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 |

指定Github 组织名GitHub 用户名

3 |
4 | -------------------------------------------------------------------------------- /plugins/github-branch-source-plugin/src/main/resources/org/jenkinsci/plugins/github_branch_source/GitHubSCMSource/help-repository_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 需要扫描的代码仓库。 3 |
4 | -------------------------------------------------------------------------------- /plugins/github-branch-source-plugin/src/main/resources/org/jenkinsci/plugins/github_branch_source/GitHubSCMSource/help-traits_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 控制行为来源于 Github 仓库。所有的行为都按编号分组。 3 |
4 |
仓库内
5 |
这些行为决定会发现的结果,如果没有配置发现行为,则什么都不会被发现
6 |
普通行为
7 |
这种行为影响所有的分支和 pull request 8 |
9 |
10 |
11 | -------------------------------------------------------------------------------- /plugins/github-branch-source-plugin/src/main/resources/org/jenkinsci/plugins/github_branch_source/OriginPullRequestDiscoveryTrait/help-strategyId_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 发现 Pull Request 的策略 3 |
4 |
合并该 Pull Request 到当前目标分支的版本
5 |
6 | 一次发现操作,找到要合并到当前目标分支的 Pull Request。 7 |
8 |
当前 Pull Request 的版本
9 |
10 | 一次发现操作,找到相对于其自己修改的 Pull Request。 11 |
12 |
当前 Pull Request 的版本和已经与目标分支合并了的 Pull Request
13 |
14 | 两次发现操作,第一次找到要合并到当前目标分支的 Pull Request,紧接着第二次并行的找到相对于其自己修改的 Pull Request。 15 |
16 |
17 |
18 | -------------------------------------------------------------------------------- /plugins/github-branch-source-plugin/src/main/resources/org/jenkinsci/plugins/github_branch_source/OriginPullRequestDiscoveryTrait/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 发现源仓库和目标仓库相同的 Pull Request。 3 |
4 | -------------------------------------------------------------------------------- /plugins/github-branch-source-plugin/src/main/resources/org/jenkinsci/plugins/github_branch_source/SSHCheckoutTrait/help-credentialsId._zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 用于获取源码的凭据,必须是一个基于 SSH key 的凭据。 3 |
4 | -------------------------------------------------------------------------------- /plugins/github-branch-source-plugin/src/main/resources/org/jenkinsci/plugins/github_branch_source/SSHCheckoutTrait/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 默认情况下,发现分支和 Pull Request 将和获取源代码的凭据一样使用“用户名加密码”类型。 3 | 这意味着获取代码就需要使用https://协议. 4 |

5 | 这个选项可以让你使用选择的 SSH 私有 key 的凭据来通过ssh://协议拉取代码。 6 |

7 |
8 | -------------------------------------------------------------------------------- /plugins/github-branch-source-plugin/src/main/resources/org/jenkinsci/plugins/github_branch_source/TagDiscoveryTrait/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 发现代码库的标签。 3 |
4 | -------------------------------------------------------------------------------- /plugins/gitlab-branch-source-plugin/src/main/resources/io/jenkins/plugins/gitlabbranchsource/BranchDiscoveryTrait/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Strategy=\u7B56\u7565 2 | -------------------------------------------------------------------------------- /plugins/gitlab-branch-source-plugin/src/main/resources/io/jenkins/plugins/gitlabbranchsource/ForkMergeRequestDiscoveryTrait/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Strategy=\u7B56\u7565 2 | Trust=\u4FE1\u4EFB 3 | -------------------------------------------------------------------------------- /plugins/gitlab-branch-source-plugin/src/main/resources/io/jenkins/plugins/gitlabbranchsource/GitLabBrowser/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Project\ URL=\u9879\u76EE URL 2 | -------------------------------------------------------------------------------- /plugins/gitlab-branch-source-plugin/src/main/resources/io/jenkins/plugins/gitlabbranchsource/GitLabSCMNavigator/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Servers=\u670D\u52A1\u5217\u8868 2 | Checkout\ Credentials=\u4EE3\u7801\u68C0\u51FA\u51ED\u636E 3 | Owner=\u6240\u6709\u8005 4 | Behaviours=\u884C\u4E3A\u5217\u8868 5 | -------------------------------------------------------------------------------- /plugins/gitlab-branch-source-plugin/src/main/resources/io/jenkins/plugins/gitlabbranchsource/GitLabSCMSource/config-detail_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Server=\u670D\u52A1\u5668 2 | Checkout\ Credentials=\u4EE3\u7801\u68C0\u67E5\u51ED\u636E 3 | Owner=\u6240\u6709\u8005 4 | Projects=\u9879\u76EE\u5217\u8868 5 | Behaviours=\u884C\u4E3A\u5217\u8868 6 | -------------------------------------------------------------------------------- /plugins/gitlab-branch-source-plugin/src/main/resources/io/jenkins/plugins/gitlabbranchsource/HookRegistrationTrait/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Web\ Hook\ Strategy=Web Hook \u7B56\u7565 2 | System\ Hook\ Strategy=\u7CFB\u7EDF Hook \u7B56\u7565 3 | -------------------------------------------------------------------------------- /plugins/gitlab-branch-source-plugin/src/main/resources/io/jenkins/plugins/gitlabbranchsource/LogCommentTrait/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Sudo\ username=Sudo \u7528\u6237\u540D 2 | Enable\ logging\ successful\ builds=\u8BB0\u5F55\u6210\u529F\u7684\u6784\u5EFA 3 | -------------------------------------------------------------------------------- /plugins/gitlab-branch-source-plugin/src/main/resources/io/jenkins/plugins/gitlabbranchsource/OriginMergeRequestDiscoveryTrait/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Strategy=\u7B56\u7565 2 | -------------------------------------------------------------------------------- /plugins/gitlab-branch-source-plugin/src/main/resources/io/jenkins/plugins/gitlabbranchsource/SSHCheckoutTrait/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Credentials=\u51ED\u636E 2 | -------------------------------------------------------------------------------- /plugins/gitlab-branch-source-plugin/src/main/resources/io/jenkins/plugins/gitlabbranchsource/TriggerMRCommentTrait/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Comment\ Body=\u8BC4\u8BBA\u5185\u5BB9 2 | -------------------------------------------------------------------------------- /plugins/gitlab-branch-source-plugin/src/main/resources/io/jenkins/plugins/gitlabserverconfig/credentials/Messages_zh_CN.properties: -------------------------------------------------------------------------------- 1 | PersonalAccessTokenImpl.displayName=GitLab \u4E2A\u4EBA\u4EE4\u724C 2 | PersonalAccessTokenImpl.tokenRequired=\u9700\u8981\u4EE4\u724C 3 | PersonalAccessTokenImpl.tokenWrongLength=\u4EE4\u724C\u5E94\u8BE5\u662F20\u4E2A\u5B57\u7B26 4 | -------------------------------------------------------------------------------- /plugins/gitlab-branch-source-plugin/src/main/resources/io/jenkins/plugins/gitlabserverconfig/credentials/PersonalAccessTokenImpl/credentials_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Token=\u4EE4\u724C 2 | -------------------------------------------------------------------------------- /plugins/gitlab-branch-source-plugin/src/main/resources/io/jenkins/plugins/gitlabserverconfig/servers/GitLabServer/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Display\ Name=\u663E\u793A\u540D\u79F0 2 | Server\ URL=\u670D\u52A1 URL 3 | Credentials=\u51ED\u636E 4 | Web\ Hook=Web Hook 5 | Manage\ Web\ Hooks=\u7BA1\u7406 Web Hook 6 | System\ Hook=\u7CFB\u7EDF Hook 7 | Manage\ System\ Hooks=\u7BA1\u7406\u7CFB\u7EDF Hook 8 | Test\ connection=\u6D4B\u8BD5\u8FDE\u63A5 9 | Testing..=\u6D4B\u8BD5\u4E2D... 10 | -------------------------------------------------------------------------------- /plugins/gitlab-branch-source-plugin/src/main/resources/io/jenkins/plugins/gitlabserverconfig/servers/GitLabServers/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | GitLab\ Servers=GitLab \u670D\u52A1\u5217\u8868 2 | Add\ GitLab\ Server=\u589E\u52A0 GitLab \u670D\u52A1 3 | Additional\ actions=\u9644\u52A0\u7684\u52A8\u4F5C 4 | Manage\ additional\ GitLab\ actions=\u7BA1\u7406\u9644\u52A0\u7684 GitLab \u52A8\u4F5C 5 | -------------------------------------------------------------------------------- /plugins/gitlab-branch-source-plugin/src/main/resources/io/jenkins/plugins/gitlabserverconfig/servers/Messages_zh_CN.properties: -------------------------------------------------------------------------------- 1 | GitLabServers.displayName=GitLab 2 | GitLabServer.displayName=GitLab \u670D\u52A1 3 | GitLabServer.hookManagementAs=Hook \u7BA1\u7406\u5C06\u4F1A\u4EE5 {0} \u7684\u5F62\u5F0F\u6267\u884C 4 | GitLabServer.validateInterrupted=\u5C1D\u8BD5\u6821\u9A8C\u51ED\u636E\u65F6\u88AB\u4E2D\u65AD 5 | GitLabServer.versionInterrupted=\u5C1D\u8BD5\u786E\u5B9A\u670D\u52A1\u7248\u672C\u65F6\u88AB\u4E2D\u65AD 6 | GitLabServer.invalidUrl=\u65E0\u6548\u7684 GitLab \u670D\u52A1 URL: {0} 7 | GitLabServer.serverVersion=GitLab \u7248\u672C\uFF1A{0} 8 | GitLabServer.failedValidation=\u65E0\u6CD5\u9A8C\u8BC1\u8D26\u53F7 {0} 9 | GitLabServer.credentialsNotResolved=\u65E0\u6CD5\u4F7F\u7528\u552F\u4E00\u6807\u8BC6\u7B26 {0} \u89E3\u6790\u5230\u53EF\u7528\u7684\u51ED\u636E 10 | GitLabServer.advancedSectionForFuture=\u9AD8\u7EA7\u914D\u7F6E\u5C06\u4F1A\u5728\u540E\u7EED\u7684\u7248\u672C\u4E2D\u6DFB\u52A0 11 | -------------------------------------------------------------------------------- /plugins/job-restrictions-plugin/src/main/resources/com/synopsys/arc/jenkinsci/plugins/jobrestrictions/jobs/JobRestrictionProperty/help-config_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 该选项允许在任务触发之前增加额外的限制。
3 | 你可以设置不同的条件。 4 |
-------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/label-verifier-plugin/src/main/resources/hudson/plugins/label_verifier/Messages_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # Main 2 | LabelAtomPropertyImpl.displayName=\u9A8C\u8BC1\u6B64\u6807\u7B7E 3 | 4 | # Shared messages 5 | shared.validatingLabelMessage=\u9A8C\u8BC1\u6807\u7B7E ''{0}'' 6 | shared.evalFailureMessage=\u8BC4\u4F30 ''{0}'' \u8868\u8FBE\u5F0F\u8FD4\u56DE\u662F\u5426\u6B63\u5E38 7 | 8 | # Verifiers 9 | verifiers.shell.displayName=\u901A\u8FC7 shell \u811A\u672C\u9A8C\u8BC1 10 | verifiers.shell.shortName=Shell \u811A\u672C 11 | verifiers.shell.failMessage=\u811A\u672C\u5931\u8D25\u3002\u6807\u7B7E ''{0}'' \u88AB\u62D2\u7EDD\u3002 12 | verifiers.regex.displayName=\u901A\u8FC7\u6B63\u5219\u8868\u8FBE\u5F0F\u9A8C\u8BC1\u8BA1\u7B97\u673A\u540D\u79F0 13 | verifiers.regex.shortName=\u6B63\u5219\u8868\u8FBE\u5F0F 14 | verifiers.regex.invalidRegexMessage=\u6807\u7B7E\u7684\u6B63\u5219\u8868\u8FBE\u5F0F ''{0}'' \u65E0\u6548\u3002\u9650\u5236\u5C06\u88AB\u8DF3\u8FC7 15 | logic.always.displayName=\u603B\u662F\u5931\u8D25 16 | logic.never.displayName=\u4ECE\u672A\u5931\u8D25 17 | logic.and.displayName=\u548C 18 | logic.or.displayName=\u6216\u8005 19 | logic.not.displayName=\u4E0D 20 | -------------------------------------------------------------------------------- /plugins/mailer-plugin/src/main/resources/hudson/tasks/Mailer/help-defaultSuffix_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 如果用户邮件能够自动的指定后缀,那么在此处填写后缀.否则不用填写.注意,用户可以选择性的覆盖邮件地址. 3 | 例如,如果这里设定了@acme.org,那么用户foo的默认邮件地址为foo@acme.org 4 |
-------------------------------------------------------------------------------- /plugins/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 |

-------------------------------------------------------------------------------- /plugins/mailer-plugin/src/main/resources/hudson/tasks/Mailer/help-smtpAuth_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 当发送邮件时使用SMTP认证.如果你的环境需要使用SMTP认证,在这里指定其用户名和密码. 3 |
-------------------------------------------------------------------------------- /plugins/mailer-plugin/src/main/resources/hudson/tasks/Mailer/help-smtpPort_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 邮件服务器端口号.不填写此项将使用协议默认端口. 3 |
-------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/mailer-plugin/src/main/resources/hudson/tasks/Mailer/help-useSsl_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 如论SMTP服务器是否使用SSL连接.默认端口都是465. 3 | 4 |

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

-------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/pipeline-stage-view-plugin/ui/src/main/resources/com/cloudbees/workflow/ui/view/Messages_zh_CN.properties: -------------------------------------------------------------------------------- 1 | full_stage_view=\u5B8C\u6574\u9636\u6BB5\u89C6\u56FE 2 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/priority-sorter-plugin/src/main/resources/jenkins/advancedqueue/Messages_zh_CN.properties: -------------------------------------------------------------------------------- 1 | ActualAdvancedQueueSorterJobProperty.displayName=\u771F\u6B63\uFF08\u8BA1\u7B97\u540E\uFF09\u7684\u7684\u4EFB\u52A1\u4F18\u5148\u7EA7 2 | AdvancedQueueSorterJobProperty.displayName=\u4EFB\u52A1\u4F18\u5148\u7EA7 3 | PriorityConfiguration.displayName=\u4EFB\u52A1\u4F18\u5148\u7EA7\u5217\u8868 4 | PrioritySorterConfiguration.enterValueRequestMessage=\u8BF7\u8F93\u5165\u4E00\u4E2A\u6B63\u6574\u6570\u3002 5 | All.jobs=\u6240\u6709\u4EFB\u52A1 6 | Jobs.included.in.folder=\u6587\u4EF6\u5939\u4E2D\u7684\u4EFB\u52A1 7 | Jobs.included.in.a.view=\u89C6\u56FE\u4E2D\u7684\u4EFB\u52A1 8 | Priority.from.prioritySorter=\u4F18\u5148\u7EA7\u6392\u5E8F\u4E2D\u7684\u7EA7\u522B 9 | Job.triggered.by.a.user=\u7531\u7528\u6237\u89E6\u53D1\u7684\u4EFB\u52A1 10 | Job.triggered.by.a.upstream.build=\u4E0A\u6E38\u6784\u5EFA\u89E6\u53D1\u7684\u4EFB\u52A1 11 | Take.the.priority.from.property.on.the.job=\u4ECE\u4EFB\u52A1\u7684\u5C5E\u6027\u4E2D\u83B7\u53D6\u4F18\u5148\u7EA7 12 | Using.the.jobs.health=\u5229\u7528\u4EFB\u52A1\u7684\u5065\u5EB7\u5EA6 13 | Job.triggered.from.CLI=\u7531\u547D\u4EE4\u63A5\u53E3\u89E6\u53D1\u7684\u4EFB\u52A1 14 | Use.Priority.from.Build.Parameter=\u4F7F\u7528\u6784\u5EFA\u53C2\u6570\u4E2D\u7684\u4F18\u5148\u7EA7 15 | -------------------------------------------------------------------------------- /plugins/priority-sorter-plugin/src/main/resources/jenkins/advancedqueue/PriorityConfiguration/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Back\ to\ Dashboard=\u8FD4\u56DE\u5DE5\u4F5C\u53F0 2 | Assign\ Priorities\ by\ creating\ JobGroups.\ Priorities\ are\ assigned\ top\ down\ by\ first\ match.=\ 3 | \u901A\u8FC7\u521B\u5EFA\u4EFB\u52A1\u7EC4\u8BBE\u7F6E\u4F18\u5148\u7EA7\u3002\u4F18\u5148\u7EA7\u8BBE\u7F6E\u65F6\u4ECE\u4E0A\u5F80\u4E0B\uFF0C\u4F7F\u7528\u5339\u914D\u5230\u7684\u7B2C\u4E00\u4E2A\u3002 4 | Description=\u63CF\u8FF0 5 | Jobs\ to\ include=\u5305\u542B\u7684\u4EFB\u52A1\u5217\u8868 6 | Use\ additional\ rules\ when\ assigning\ a\ priority\ to\ a\ Job=\u7ED9\u4EFB\u52A1\u8BBE\u7F6E\u4F18\u5148\u7EA7\u65F6\u4F7F\u7528\u9644\u52A0\u7684\u89C4\u5219 7 | Select\ Strategy=\u9009\u62E9\u7B56\u7565 8 | Save=\u4FDD\u5B58 9 | -------------------------------------------------------------------------------- /plugins/priority-sorter-plugin/src/main/resources/jenkins/advancedqueue/PrioritySorterConfiguration/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Priority\ Sorter=\u4F18\u5148\u7EA7\u6392\u5E8F 2 | Strategy=\u7B56\u7565 3 | Only\ Admins\ can\ edit\ Job\ Priorities=\u53EA\u6709\u7BA1\u7406\u5458\u53EF\u4EE5 4 | Check\ if\ only\ Administrators\ should\ be\ allowed\ to\ view\ and\ edit\ the\ Job\ Priorities=\ 5 | \u52FE\u9009\u540E\u53EA\u5141\u8BB8\u7BA1\u7406\u5458\u67E5\u770B\u548C\u7F16\u8F91\u4EFB\u52A1\u4F18\u5148\u7EA7 6 | -------------------------------------------------------------------------------- /plugins/priority-sorter-plugin/src/main/resources/jenkins/advancedqueue/PrioritySorterJobColumn/columnHeader_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Job\ Priority=\u4EFB\u52A1\u4F18\u5148\u7EA7 2 | -------------------------------------------------------------------------------- /plugins/priority-sorter-plugin/src/main/resources/jenkins/advancedqueue/PrioritySorterJobColumn/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Column\ showing\ the\ priority\ of\ a\ job.=\ 2 | \u5C55\u793A\u4EFB\u52A1\u4F18\u5148\u7EA7\u7684\u5217 3 | -------------------------------------------------------------------------------- /plugins/priority-sorter-plugin/src/main/resources/jenkins/advancedqueue/strategy/Messages_zh_CN.properties: -------------------------------------------------------------------------------- 1 | SorterStrategy.FIFO.displayName=\u5148\u8FDB\u5148\u51FA 2 | SorterStrategy.FIFO.shortName=FIFO 3 | SorterStrategy.ABSOLUTE.displayName=\u7EDD\u5BF9 4 | SorterStrategy.ABSOLUTE.shortName=\u7EDD\u5BF9 5 | SorterStrategy.FQ.displayName=\u516C\u5E73\u6392\u961F 6 | SorterStrategy.FQ.shortName=FQ 7 | SorterStrategy.WFQ.displayName=\u52A0\u6743\u516C\u5E73\u6392\u961F 8 | SorterStrategy.WFQ.shortName=WFQ -------------------------------------------------------------------------------- /plugins/role-strategy-plugin/src/main/resources/com/michelin/cio/hudson/plugins/rolestrategy/RoleStrategyConfig/RoleStrategyConfig copy/permission-templates_zh_CN.properties: -------------------------------------------------------------------------------- 1 | #blurb=Templates allow to simplify role management when many item roles with identical permissions are required. \ 2 | # Changing the template will automatically change the permissions of all roles that are using the template. 3 | blurb=模板可以在需要许多具有相同权限的项目角色时简化角色管理。更改模板将自动更改使用该模板的所有角色的权限。 4 | blurb=\u6a21\u677f\u53ef\u4ee5\u5728\u9700\u8981\u8bb8\u591a\u5177\u6709\u76f8\u540c\u6743\u9650\u7684\u9879\u76ee\u89d2\u8272\u65f6\u7b80\u5316\u89d2\u8272\u7ba1\u7406\u3002\u66f4\u6539\u6a21\u677f\u5c06\u81ea\u52a8\u66f4\u6539\u4f7f\u7528\u8be5\u6a21\u677f\u7684\u6240\u6709\u89d2\u8272\u7684\u6743\u9650\u3002 -------------------------------------------------------------------------------- /plugins/scm-api-plugin/src/main/resources/jenkins/scm/api/Messages_zh_CN.properties: -------------------------------------------------------------------------------- 1 | SCMNavigator.Description=SCM \u4ED3\u5E93\u96C6\u5408 2 | 3 | SCMCategory.Join={0} / {1} 4 | SCMHeadCategory.DisplayName=\u5206\u652F 5 | SCMSourceCategory.DisplayName=\u4ED3\u5E93 6 | -------------------------------------------------------------------------------- /plugins/scm-api-plugin/src/main/resources/jenkins/scm/impl/Messages_zh_CN.properties: -------------------------------------------------------------------------------- 1 | SingleSCMSource.DisplayName=\u5355\u4E2A\u4ED3\u5E93\u4E0E\u5206\u652F 2 | SingleSCMNavigator.DisplayName=\u5355\u4E2A\u4ED3\u5E93 3 | ChangeRequestSCMHeadCategory.DisplayName=\u53D8\u66F4\u8BF7\u6C42 4 | TagSCMHeadCategory.DisplayName=\u6807\u7B7E 5 | UncategorizedSCMHeadCategory.DisplayName=\u5206\u652F 6 | UncategorizedSCMSourceCategory.DisplayName=\u4ED3\u5E93 7 | -------------------------------------------------------------------------------- /plugins/scm-api-plugin/src/main/resources/jenkins/scm/impl/SingleSCMNavigator/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | blurb=\u53EF\u4EE5\u914D\u7F6E\u5355\u4E00\u5E76\u4E14\u56FA\u5B9A\u7684 SCM \u4ED3\u5E93\u3002\u901A\u5E38\u4E0D\u4F1A\u7528\u5230\uFF0C\u56E0\u4E3A\u5B83\u65E0\u6CD5\u4ECE\u591A\u4E2A\u4ED3\u5E93\u4E2D\u81EA\u52A8\u68C0\u6D4B\u3002 2 | Name=\u540D\u79F0 3 | Sources=\u6E90 4 | -------------------------------------------------------------------------------- /plugins/scm-api-plugin/src/main/resources/jenkins/scm/impl/SingleSCMSource/config-detail_zh_CN.properties: -------------------------------------------------------------------------------- 1 | blurb=\ 2 | \u53EF\u4EE5\u914D\u7F6E\u5355\u4E00\u5E76\u4E14\u56FA\u5B9A\u7684\u5206\u652F\u3002\u901A\u5E38\u4E0D\u4F1A\u7528\u5230\uFF0C\u56E0\u4E3A\u5B83\u65E0\u6CD5\u81EA\u52A8\u68C0\u6D4B\u5206\u652F\u3002\ 3 | \u5F53\u4F60\u5E0C\u671B\u6784\u5EFA\u67D0\u4E2A\u4ED3\u5E93\u7684\u6240\u6709\u5206\u652F\uFF0C\u4EE5\u53CA\u53EA\u514B\u9686\u7279\u6B8A\u7684master\u5206\u652F\u65F6\uFF0C\u53EF\u80FD\u4F1A\u7528\u5230\u3002 4 | Source\ Code\ Management=\u6E90\u4EE3\u7801\u7BA1\u7406 5 | Name=\u540D\u79F0 6 | -------------------------------------------------------------------------------- /plugins/scm-api-plugin/src/main/resources/jenkins/scm/impl/trait/Messages_zh_CN.properties: -------------------------------------------------------------------------------- 1 | WildcardSCMHeadFilterTrait.DisplayName=\u6839\u636E\u540D\u79F0\u8FC7\u6EE4\uFF08\u652F\u6301\u901A\u914D\u7B26\uFF09 2 | WildcardSCMSourceFilterTrait.DisplayName=\u6839\u636E\u540D\u79F0\u8FC7\u6EE4\uFF08\u652F\u6301\u901A\u914D\u7B26\uFF09 3 | RegexSCMHeadFilterTrait.DisplayName=\u6839\u636E\u540D\u79F0\u8FC7\u6EE4\uFF08\u652F\u6301\u6B63\u5219\u8868\u8FBE\u5F0F\uFF09 4 | RegexSCMSourceFilterTrait.DisplayName=\u6839\u636E\u540D\u79F0\u8FC7\u6EE4\uFF08\u652F\u6301\u6B63\u5219\u8868\u8FBE\u5F0F\uFF09 5 | -------------------------------------------------------------------------------- /plugins/scm-api-plugin/src/main/resources/jenkins/scm/impl/trait/RegexSCMHeadFilterTrait/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Regular\ expression=\u6B63\u5219\u8868\u8FBE\u5F0F 2 | -------------------------------------------------------------------------------- /plugins/scm-api-plugin/src/main/resources/jenkins/scm/impl/trait/RegexSCMSourceFilterTrait/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Regular\ expression=\u6B63\u5219\u8868\u8FBE\u5F0F 2 | -------------------------------------------------------------------------------- /plugins/scm-api-plugin/src/main/resources/jenkins/scm/impl/trait/WildcardSCMHeadFilterTrait/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Include=\u5305\u542B 2 | Exclude=\u6392\u9664 3 | -------------------------------------------------------------------------------- /plugins/scm-api-plugin/src/main/resources/jenkins/scm/impl/trait/WildcardSCMSourceFilterTrait/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Include=\u5305\u542B 2 | Exclude=\u6392\u9664 3 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/timestamper-plugin/src/main/resources/hudson/plugins/timestamper/Messages_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Timestamps=Timestamps 2 | # 在构建日志中添加时间戳前缀 3 | Description=\u5728\u6784\u5efa\u65e5\u5fd7\u4e2d\u6dfb\u52a0\u65f6\u95f4\u6233\u524d\u7f00 -------------------------------------------------------------------------------- /plugins/timestamper-plugin/src/main/resources/hudson/plugins/timestamper/TimestamperConfig/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Timestamper=Timestamper 2 | # 系统时间的格式 3 | System\ clock\ time\ format=\u7cfb\u7edf\u65f6\u95f4\u7684\u683c\u5f0f 4 | # 执行消耗时间的格式 5 | Elapsed\ time\ format=\u6267\u884c\u6d88\u8017\u65f6\u95f4\u7684\u683c\u5f0f -------------------------------------------------------------------------------- /plugins/timestamper-plugin/src/main/resources/hudson/plugins/timestamper/TimestamperConfig/help-allPipelines_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 选中后将会向所有流水线的构建日志添加时间戳前缀。 3 | 开启该选项后,脚本式流水线不再需要使用 timestamps {…} 步骤, 4 | 声明式流水线不再需要在 option 中使用 timestamps()。 5 |
-------------------------------------------------------------------------------- /plugins/timestamper-plugin/src/main/resources/hudson/plugins/timestamper/TimestamperConfig/help-elapsedTimeFormat_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 执行消耗时间的格式定义了开启 [执行消耗时间] 选项后时间戳的呈现方式。 3 | 时间格式遵循 Commons Lang DurationFormatUtils 中的规范。 4 |

5 | 默认格式为:'<b>'HH:mm:ss.S'</b> ' 6 |

-------------------------------------------------------------------------------- /plugins/timestamper-plugin/src/main/resources/hudson/plugins/timestamper/TimestamperConfig/help-systemTimeFormat_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 系统时间的格式定义了开启 [系统时间] 选项后时间戳的呈现方式。 3 | 时间格式遵循 JDK SimpleDateFormat 中的规范。 4 |

5 | 默认格式为:'<b>'HH:mm:ss'</b> '
6 | 更详细的时间显示,请使用:yyyy-MM-dd HH:mm:ss.SSS' | ' 7 |

-------------------------------------------------------------------------------- /plugins/timestamper-plugin/src/main/resources/hudson/plugins/timestamper/annotator/TimestampAnnotatorFactory3/settingsForm_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # 系统时间 2 | System\ clock\ time=\u7cfb\u7edf\u65f6\u95f4 3 | # 使用浏览器时区 4 | Use\ browser\ timezone=\u4f7f\u7528\u6d4f\u89c8\u5668\u65f6\u533a 5 | # 执行消耗时间 6 | Elapsed\ time=\u6267\u884c\u6d88\u8017\u65f6\u95f4 7 | # 无 8 | None=\u65e0 -------------------------------------------------------------------------------- /plugins/timestamper-plugin/src/main/resources/hudson/plugins/timestamper/annotator/TimestampAnnotatorFactory3/usersettings_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Timestamps=Timestamps 2 | # 以纯文本形式查看 3 | View\ as\ plain\ text=\u4ee5\u7eaf\u6587\u672c\u5f62\u5f0f\u67e5\u770b -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/workflow-basic-steps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/steps/EchoStep/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Message=\u6D88\u606F 2 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/workflow-basic-steps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/steps/ErrorStep/config_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Message=\u6D88\u606F 2 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/workflow-basic-steps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/steps/TimeoutStep/help_zh_CN.html: -------------------------------------------------------------------------------- 1 |
2 | 超时执行一个代码块。 3 | 如果超时,则会抛出异常,并导致构建终止(除非被捕获并继续)。 4 | 单位是可选的,默认为分钟。 5 |
6 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/workflow-cps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/cps/CpsFlowDefinition/help-script_zh_CN.html: -------------------------------------------------------------------------------- 1 |

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

4 | -------------------------------------------------------------------------------- /plugins/workflow-cps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/cps/CpsThreadDumpAction/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Thread\ Dump=\u7EBF\u7A0B\u8F6C\u5B58 2 | Up=\u5411\u4E0A 3 | Thread\ dump\ copied\ to\ clipboard=\u628A\u7EBF\u7A0B\u8F6C\u5B58\u62F7\u8D1D\u5230\u526A\u8D34\u677F 4 | -------------------------------------------------------------------------------- /plugins/workflow-cps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/cps/PauseUnpauseAction/action_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Pause/resume=\u6682\u505C\uFF08\u6062\u590D\uFF09 2 | -------------------------------------------------------------------------------- /plugins/workflow-cps-plugin/src/main/resources/org/jenkinsci/plugins/workflow/cps/Snippetizer/block_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Pipeline\ Syntax=\u6D41\u6C34\u7EBF\u8BED\u6CD5 2 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/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 | -------------------------------------------------------------------------------- /plugins/workflow-job-plugin/src/main/resources/org/jenkinsci/plugins/workflow/job/views/Messages_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Pipeline.Steps=\u6D41\u6C34\u7EBF\u6B65\u9AA4 -------------------------------------------------------------------------------- /plugins/workflow-support-plugin/src/main/resources/org/jenkinsci/plugins/workflow/support/actions/LogStorageAction/index_zh_CN.properties: -------------------------------------------------------------------------------- 1 | Console\ Output=\u63A7\u5236\u53F0\u8F93\u51FA 2 | skipSome=\u8DF3\u8FC7 {0,number,integer} KB.. \u5168\u90E8\u65E5\u5FD7 3 | -------------------------------------------------------------------------------- /src/main/java/io/jenkins/plugins/localization_zh_cn/CommunityPage.java: -------------------------------------------------------------------------------- 1 | package io.jenkins.plugins.localization_zh_cn; 2 | 3 | import edu.umd.cs.findbugs.annotations.NonNull; 4 | import hudson.Extension; 5 | import hudson.model.UnprotectedRootAction; 6 | import org.jenkinsci.Symbol; 7 | 8 | import edu.umd.cs.findbugs.annotations.CheckForNull; 9 | 10 | @Extension 11 | @Symbol("chinese") 12 | public class CommunityPage implements UnprotectedRootAction { 13 | @CheckForNull 14 | @Override 15 | public String getIconFileName() { 16 | return null; 17 | } 18 | 19 | @NonNull 20 | @Override 21 | public String getDisplayName() { 22 | return "Jenkins Chinese Community"; 23 | } 24 | 25 | @CheckForNull 26 | @Override 27 | public String getUrlName() { 28 | return "chinese"; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/main/java/io/jenkins/plugins/localization_zh_cn/LocalizationContributorImpl.java: -------------------------------------------------------------------------------- 1 | package io.jenkins.plugins.localization_zh_cn; 2 | 3 | import edu.umd.cs.findbugs.annotations.NonNull; 4 | import hudson.Extension; 5 | import hudson.PluginWrapper; 6 | import io.jenkins.plugins.localization.support.LocalizationContributor; 7 | 8 | import edu.umd.cs.findbugs.annotations.CheckForNull; 9 | import java.net.URL; 10 | 11 | @Extension 12 | public class LocalizationContributorImpl extends LocalizationContributor { 13 | @CheckForNull 14 | @Override 15 | public URL getResource(@NonNull String s) { 16 | if (s.startsWith("/")) { 17 | s = s.substring(1); 18 | } 19 | return getClass().getClassLoader().getResource(s); 20 | } 21 | 22 | @CheckForNull 23 | @Override 24 | public URL getPluginResource(@NonNull String s, @NonNull PluginWrapper pluginWrapper) { 25 | return getClass().getClassLoader().getResource("webapp/" + s); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/main/resources/index.jelly: -------------------------------------------------------------------------------- 1 | 2 |
3 | Jenkins Core 及其插件的简体中文语言包,由 Jenkins 中文社区维护。 4 |
5 | -------------------------------------------------------------------------------- /src/main/resources/io/jenkins/plugins/localization_zh_cn/CommunityDecorator/footer.jelly: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/main/resources/io/jenkins/plugins/localization_zh_cn/UserCommunityProperty/config.jelly: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/main/resources/mirror-adapter.crt: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE----- 2 | MIICcTCCAdoCCQD/jZ7AgrzJKTANBgkqhkiG9w0BAQsFADB9MQswCQYDVQQGEwJD 3 | TjELMAkGA1UECAwCR0QxCzAJBgNVBAcMAlNaMQ4wDAYDVQQKDAV2aWhvbzEMMAoG 4 | A1UECwwDZGV2MREwDwYDVQQDDAhkZW1vLmNvbTEjMCEGCSqGSIb3DQEJARYUYWRt 5 | aW5AamVua2lucy16aC5jb20wHhcNMTkxMTA5MTA0MDA5WhcNMjIxMTA4MTA0MDA5 6 | WjB9MQswCQYDVQQGEwJDTjELMAkGA1UECAwCR0QxCzAJBgNVBAcMAlNaMQ4wDAYD 7 | VQQKDAV2aWhvbzEMMAoGA1UECwwDZGV2MREwDwYDVQQDDAhkZW1vLmNvbTEjMCEG 8 | CSqGSIb3DQEJARYUYWRtaW5AamVua2lucy16aC5jb20wgZ8wDQYJKoZIhvcNAQEB 9 | BQADgY0AMIGJAoGBAN+6jN8rCIjVkQ0Q7ZbJLk4IdcHor2WdskOQMhlbR0gOyb4g 10 | RX+CorjDRjDm6mj2OohqlrtRxLGYxBnXFeQGU7wWjQHyfKDghtP51G/672lXFtzB 11 | KXukHByHjtzrDxAutKTdolyBCuIDDGJmRk+LavIBY3/Lxh6f0ZQSeCSJYiyxAgMB 12 | AAEwDQYJKoZIhvcNAQELBQADgYEAD92l26PoJcbl9GojK2L3pyOQjeeDm/vV9e3R 13 | EgwGmoIQzlubM0mjxpCz1J73nesoAcuplTEps/46L7yoMjptCA3TU9FZAHNQ8dbz 14 | a0vm4CF9841/FIk8tsLtwCT6ivkAi0lXGwhX0FK7FaAyU0nNeo/EPvDwzTim4XDK 15 | 9j1WGpE= 16 | -----END CERTIFICATE----- 17 | -------------------------------------------------------------------------------- /src/main/webapp/images/jenkins-wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/localization-zh-cn-plugin/24015969c5c80d609a3f2dff0261a270380de42a/src/main/webapp/images/jenkins-wechat.png --------------------------------------------------------------------------------